/* Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 80027 Source Host : localhost:3306 Source Schema : xjs-cloud Target Server Type : MySQL Target Server Version : 80027 File Encoding : 65001 Date: 08/04/2022 17:01:37 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for gen_table -- ---------------------------- DROP TABLE IF EXISTS `gen_table`; CREATE TABLE `gen_table` ( `table_id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `table_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '表名称', `table_comment` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '表描述', `sub_table_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '关联子表的表名', `sub_table_fk_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '子表关联的外键名', `class_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '实体类名称', `tpl_category` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)', `package_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成包路径', `module_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成模块名', `business_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成业务名', `function_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成功能名', `function_author` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成功能作者', `gen_type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)', `gen_path` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '/' COMMENT '生成路径(不填默认项目路径)', `options` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '其它生成选项', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', PRIMARY KEY (`table_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '代码生成业务表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of gen_table -- ---------------------------- -- ---------------------------- -- Table structure for gen_table_column -- ---------------------------- DROP TABLE IF EXISTS `gen_table_column`; CREATE TABLE `gen_table_column` ( `column_id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `table_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '归属表编号', `column_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '列名称', `column_comment` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '列描述', `column_type` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '列类型', `java_type` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'JAVA类型', `java_field` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'JAVA字段名', `is_pk` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否主键(1是)', `is_increment` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否自增(1是)', `is_required` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否必填(1是)', `is_insert` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否为插入字段(1是)', `is_edit` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否编辑字段(1是)', `is_list` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否列表字段(1是)', `is_query` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否查询字段(1是)', `query_type` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)', `html_type` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)', `dict_type` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '字典类型', `sort` int NULL DEFAULT NULL COMMENT '排序', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`column_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '代码生成业务表字段' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of gen_table_column -- ---------------------------- -- ---------------------------- -- Table structure for gen_table_copy1 -- ---------------------------- DROP TABLE IF EXISTS `gen_table_copy1`; CREATE TABLE `gen_table_copy1` ( `table_id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `table_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '表名称', `table_comment` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '表描述', `sub_table_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '关联子表的表名', `sub_table_fk_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '子表关联的外键名', `class_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '实体类名称', `tpl_category` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)', `package_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成包路径', `module_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成模块名', `business_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成业务名', `function_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成功能名', `function_author` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成功能作者', `gen_type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)', `gen_path` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '/' COMMENT '生成路径(不填默认项目路径)', `options` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '其它生成选项', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', PRIMARY KEY (`table_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '代码生成业务表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of gen_table_copy1 -- ---------------------------- -- ---------------------------- -- Table structure for qrtz_blob_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_blob_triggers`; CREATE TABLE `qrtz_blob_triggers` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `trigger_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', `trigger_group` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', `blob_data` blob NULL COMMENT '存放持久化Trigger对象', PRIMARY KEY (`sched_name`, `trigger_name`, `trigger_group`) USING BTREE, CONSTRAINT `qrtz_blob_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = 'Blob类型的触发器表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_blob_triggers -- ---------------------------- -- ---------------------------- -- Table structure for qrtz_calendars -- ---------------------------- DROP TABLE IF EXISTS `qrtz_calendars`; CREATE TABLE `qrtz_calendars` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `calendar_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '日历名称', `calendar` blob NOT NULL COMMENT '存放持久化calendar对象', PRIMARY KEY (`sched_name`, `calendar_name`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '日历信息表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_calendars -- ---------------------------- -- ---------------------------- -- Table structure for qrtz_cron_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_cron_triggers`; CREATE TABLE `qrtz_cron_triggers` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `trigger_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', `trigger_group` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', `cron_expression` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'cron表达式', `time_zone_id` varchar(80) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '时区', PRIMARY KEY (`sched_name`, `trigger_name`, `trigger_group`) USING BTREE, CONSTRAINT `qrtz_cron_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = 'Cron类型的触发器表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_cron_triggers -- ---------------------------- INSERT INTO `qrtz_cron_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME100', 'API', '0 0/10 * * * ?', 'Asia/Shanghai'); INSERT INTO `qrtz_cron_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME101', 'API', '0 0/20 * 1/1 * ?', 'Asia/Shanghai'); INSERT INTO `qrtz_cron_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME102', 'SYSTEM', '10 0 0 * * ? ', 'Asia/Shanghai'); INSERT INTO `qrtz_cron_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME103', 'API', '0 0/10 * * * ?', 'Asia/Shanghai'); INSERT INTO `qrtz_cron_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME104', 'REPTILE', '0 0 0/3 * * ?', 'Asia/Shanghai'); INSERT INTO `qrtz_cron_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME105', 'REPTILE', '0 10 3/6 * * ?', 'Asia/Shanghai'); INSERT INTO `qrtz_cron_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME106', 'REPTILE', '0 20 20 * * ?', 'Asia/Shanghai'); INSERT INTO `qrtz_cron_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME107', 'SYSTEM', '0 0 22 * * ?', 'Asia/Shanghai'); INSERT INTO `qrtz_cron_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME108', 'REPTILE', '30 15 0/1 * * ?', 'Asia/Shanghai'); -- ---------------------------- -- Table structure for qrtz_fired_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_fired_triggers`; CREATE TABLE `qrtz_fired_triggers` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `entry_id` varchar(95) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度器实例id', `trigger_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', `trigger_group` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', `instance_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度器实例名', `fired_time` bigint NOT NULL COMMENT '触发的时间', `sched_time` bigint NOT NULL COMMENT '定时器制定的时间', `priority` int NOT NULL COMMENT '优先级', `state` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '状态', `job_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '任务名称', `job_group` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '任务组名', `is_nonconcurrent` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否并发', `requests_recovery` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否接受恢复执行', PRIMARY KEY (`sched_name`, `entry_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '已触发的触发器表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_fired_triggers -- ---------------------------- -- ---------------------------- -- Table structure for qrtz_job_details -- ---------------------------- DROP TABLE IF EXISTS `qrtz_job_details`; CREATE TABLE `qrtz_job_details` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `job_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '任务名称', `job_group` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '任务组名', `description` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '相关介绍', `job_class_name` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '执行任务类名称', `is_durable` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否持久化', `is_nonconcurrent` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否并发', `is_update_data` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否更新数据', `requests_recovery` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '是否接受恢复执行', `job_data` blob NULL COMMENT '存放持久化job对象', PRIMARY KEY (`sched_name`, `job_name`, `job_group`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '任务详细信息表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_job_details -- ---------------------------- INSERT INTO `qrtz_job_details` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME100', 'API', NULL, 'com.ruoyi.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E72756F79692E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E72756F79692E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E7469747900000000000000010200074C0008637265617465427971007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017DFC9D930878707400007070707400013174000E3020302F3130202A202A202A203F740017436F707957726974696E675461736B2E657865637574657400034150497372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000000000064740012E69687E6A188E8B083E794A8E4BBBBE58AA174000131740001307800); INSERT INTO `qrtz_job_details` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME101', 'API', NULL, 'com.ruoyi.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E72756F79692E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E72756F79692E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E7469747900000000000000010200074C0008637265617465427971007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017E632E22B87870740000707070740001317400103020302F3230202A20312F31202A203F740013576561746865725461736B2E657865637574657400034150497372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000000000065740018E5A4A9E6B094E9A284E68AA5E5AE9AE697B6E4BBBBE58AA174000131740001307800); INSERT INTO `qrtz_job_details` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME102', 'SYSTEM', NULL, 'com.ruoyi.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E72756F79692E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E72756F79692E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E7469747900000000000000010200074C0008637265617465427971007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017E90750C2878707400007070707400013174000D313020302030202A202A203F2074001C5761726E696E675461736B2E68616E646C655265636F72644461746574000653595354454D7372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000006674002A415049E9A284E8ADA6E6AF8FE5A4A9E8B083E794A8E6ACA1E695B0E5889DE5A78BE58C96E4BBBBE58AA174000131740001307800); INSERT INTO `qrtz_job_details` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME103', 'API', NULL, 'com.ruoyi.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E72756F79692E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E72756F79692E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E7469747900000000000000010200074C0008637265617465427971007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017E93E38E9878707400007070707400013174000E3020302F3130202A202A202A203F74001A546F705365617263685461736B2E676574546F705365617263687400034150497372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000000000067740015E783ADE6909CE6A69CE5AE9AE697B6E4BBBBE58AA174000131740001307800); INSERT INTO `qrtz_job_details` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME104', 'REPTILE', NULL, 'com.ruoyi.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E72756F79692E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E72756F79692E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E7469747900000000000000010200074C0008637265617465427971007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017EFD4BFE3878707400007070707400013174000D30203020302F33202A202A203F74001153696E615461736B2E73696E614E65777374000752455054494C457372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000000000068740020E696B0E6B5AAE696B0E997BB2DE788ACE899AB2DE5AE9AE697B6E4BBBBE58AA174000131740001307800); INSERT INTO `qrtz_job_details` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME105', 'REPTILE', NULL, 'com.ruoyi.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E72756F79692E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E72756F79692E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E7469747900000000000000010200074C0008637265617465427971007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017F053E4F6078707400007070707400013174000E3020313020332F36202A202A203F740029436F707957726974696E674E6574776F726B5461736B2E636F707957726974696E674E6574776F726B74000752455054494C457372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000006974001DE69687E6A188E7BD912DE788ACE899AB2DE5AE9AE697B6E4BBBBE58AA174000131740001307800); INSERT INTO `qrtz_job_details` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME106', 'REPTILE', NULL, 'com.ruoyi.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E72756F79692E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E72756F79692E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E7469747900000000000000010200074C0008637265617465427971007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017F16ABE37078707400007070707400013174000D30203230203230202A202A203F74001D57616C6C70617065725F33365461736B2E5F333677616C6C706170657274000752455054494C457372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000006A74001F3336E5A381E7BAB8E7BD912DE788ACE899AB2DE5AE9AE697B6E4BBBBE58AA174000131740001307800); INSERT INTO `qrtz_job_details` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME107', 'SYSTEM', NULL, 'com.ruoyi.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E72756F79692E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E72756F79692E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E7469747900000000000000010200074C0008637265617465427971007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017F1A39D8A878707400007070707400013174000C302030203232202A202A203F740021436865636B4170695374617475735461736B2E636865636B41706953746174757374000653595354454D7372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000006B74001BE6A380E69FA5415049E78AB6E68081E5AE9AE697B6E4BBBBE58AA174000131740001307800); INSERT INTO `qrtz_job_details` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME108', 'REPTILE', NULL, 'com.ruoyi.job.util.QuartzDisallowConcurrentExecution', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000F5441534B5F50524F504552544945537372001B636F6D2E72756F79692E6A6F622E646F6D61696E2E5379734A6F6200000000000000010200084C000A636F6E63757272656E747400124C6A6176612F6C616E672F537472696E673B4C000E63726F6E45787072657373696F6E71007E00094C000C696E766F6B6554617267657471007E00094C00086A6F6247726F757071007E00094C00056A6F6249647400104C6A6176612F6C616E672F4C6F6E673B4C00076A6F624E616D6571007E00094C000D6D697366697265506F6C69637971007E00094C000673746174757371007E00097872002B636F6D2E72756F79692E636F6D6D6F6E2E636F72652E7765622E646F6D61696E2E42617365456E7469747900000000000000010200074C0008637265617465427971007E00094C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C0006706172616D7371007E00034C000672656D61726B71007E00094C000B73656172636856616C756571007E00094C0008757064617465427971007E00094C000A75706461746554696D6571007E000C787074000561646D696E7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017F1F2419F078707400007070707400013174000F333020313520302F31202A202A203F74001D57656958696E536F75476F755461736B2E77656958696E536F75476F7574000752455054494C457372000E6A6176612E6C616E672E4C6F6E673B8BE490CC8F23DF0200014A000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000000000006C740020E5BEAEE4BFA1E6909CE78B972DE788ACE899AB2DE5AE9AE697B6E4BBBBE58AA174000131740001307800); -- ---------------------------- -- Table structure for qrtz_locks -- ---------------------------- DROP TABLE IF EXISTS `qrtz_locks`; CREATE TABLE `qrtz_locks` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `lock_name` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '悲观锁名称', PRIMARY KEY (`sched_name`, `lock_name`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '存储的悲观锁信息表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_locks -- ---------------------------- INSERT INTO `qrtz_locks` VALUES ('RuoyiScheduler', 'STATE_ACCESS'); INSERT INTO `qrtz_locks` VALUES ('RuoyiScheduler', 'TRIGGER_ACCESS'); -- ---------------------------- -- Table structure for qrtz_paused_trigger_grps -- ---------------------------- DROP TABLE IF EXISTS `qrtz_paused_trigger_grps`; CREATE TABLE `qrtz_paused_trigger_grps` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `trigger_group` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', PRIMARY KEY (`sched_name`, `trigger_group`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '暂停的触发器表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_paused_trigger_grps -- ---------------------------- -- ---------------------------- -- Table structure for qrtz_scheduler_state -- ---------------------------- DROP TABLE IF EXISTS `qrtz_scheduler_state`; CREATE TABLE `qrtz_scheduler_state` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `instance_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '实例名称', `last_checkin_time` bigint NOT NULL COMMENT '上次检查时间', `checkin_interval` bigint NOT NULL COMMENT '检查间隔时间', PRIMARY KEY (`sched_name`, `instance_name`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '调度器状态表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_scheduler_state -- ---------------------------- INSERT INTO `qrtz_scheduler_state` VALUES ('RuoyiScheduler', 'LAPTOP-HMOUQOTL1649401285621', 1649408483171, 15000); -- ---------------------------- -- Table structure for qrtz_simple_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_simple_triggers`; CREATE TABLE `qrtz_simple_triggers` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `trigger_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', `trigger_group` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', `repeat_count` bigint NOT NULL COMMENT '重复的次数统计', `repeat_interval` bigint NOT NULL COMMENT '重复的间隔时间', `times_triggered` bigint NOT NULL COMMENT '已经触发的次数', PRIMARY KEY (`sched_name`, `trigger_name`, `trigger_group`) USING BTREE, CONSTRAINT `qrtz_simple_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '简单触发器的信息表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_simple_triggers -- ---------------------------- -- ---------------------------- -- Table structure for qrtz_simprop_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_simprop_triggers`; CREATE TABLE `qrtz_simprop_triggers` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `trigger_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_name的外键', `trigger_group` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_triggers表trigger_group的外键', `str_prop_1` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'String类型的trigger的第一个参数', `str_prop_2` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'String类型的trigger的第二个参数', `str_prop_3` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'String类型的trigger的第三个参数', `int_prop_1` int NULL DEFAULT NULL COMMENT 'int类型的trigger的第一个参数', `int_prop_2` int NULL DEFAULT NULL COMMENT 'int类型的trigger的第二个参数', `long_prop_1` bigint NULL DEFAULT NULL COMMENT 'long类型的trigger的第一个参数', `long_prop_2` bigint NULL DEFAULT NULL COMMENT 'long类型的trigger的第二个参数', `dec_prop_1` decimal(13, 4) NULL DEFAULT NULL COMMENT 'decimal类型的trigger的第一个参数', `dec_prop_2` decimal(13, 4) NULL DEFAULT NULL COMMENT 'decimal类型的trigger的第二个参数', `bool_prop_1` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'Boolean类型的trigger的第一个参数', `bool_prop_2` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'Boolean类型的trigger的第二个参数', PRIMARY KEY (`sched_name`, `trigger_name`, `trigger_group`) USING BTREE, CONSTRAINT `qrtz_simprop_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `trigger_name`, `trigger_group`) REFERENCES `qrtz_triggers` (`sched_name`, `trigger_name`, `trigger_group`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '同步机制的行锁表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_simprop_triggers -- ---------------------------- -- ---------------------------- -- Table structure for qrtz_triggers -- ---------------------------- DROP TABLE IF EXISTS `qrtz_triggers`; CREATE TABLE `qrtz_triggers` ( `sched_name` varchar(120) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调度名称', `trigger_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '触发器的名字', `trigger_group` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '触发器所属组的名字', `job_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_job_details表job_name的外键', `job_group` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'qrtz_job_details表job_group的外键', `description` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '相关介绍', `next_fire_time` bigint NULL DEFAULT NULL COMMENT '上一次触发时间(毫秒)', `prev_fire_time` bigint NULL DEFAULT NULL COMMENT '下一次触发时间(默认为-1表示不触发)', `priority` int NULL DEFAULT NULL COMMENT '优先级', `trigger_state` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '触发器状态', `trigger_type` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '触发器的类型', `start_time` bigint NOT NULL COMMENT '开始时间', `end_time` bigint NULL DEFAULT NULL COMMENT '结束时间', `calendar_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '日程表名称', `misfire_instr` smallint NULL DEFAULT NULL COMMENT '补偿执行的策略', `job_data` blob NULL COMMENT '存放持久化job对象', PRIMARY KEY (`sched_name`, `trigger_name`, `trigger_group`) USING BTREE, INDEX `sched_name`(`sched_name`, `job_name`, `job_group`) USING BTREE, CONSTRAINT `qrtz_triggers_ibfk_1` FOREIGN KEY (`sched_name`, `job_name`, `job_group`) REFERENCES `qrtz_job_details` (`sched_name`, `job_name`, `job_group`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '触发器详细信息表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of qrtz_triggers -- ---------------------------- INSERT INTO `qrtz_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME100', 'API', 'TASK_CLASS_NAME100', 'API', NULL, 1649409000000, 1649408400000, 5, 'WAITING', 'CRON', 1649406126000, 0, NULL, -1, ''); INSERT INTO `qrtz_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME101', 'API', 'TASK_CLASS_NAME101', 'API', NULL, 1649409600000, 1649408400000, 5, 'WAITING', 'CRON', 1649406126000, 0, NULL, -1, ''); INSERT INTO `qrtz_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME102', 'SYSTEM', 'TASK_CLASS_NAME102', 'SYSTEM', NULL, 1649433610000, -1, 5, 'WAITING', 'CRON', 1649406126000, 0, NULL, -1, ''); INSERT INTO `qrtz_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME103', 'API', 'TASK_CLASS_NAME103', 'API', NULL, 1649409000000, 1649408400000, 5, 'WAITING', 'CRON', 1649406126000, 0, NULL, -1, ''); INSERT INTO `qrtz_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME104', 'REPTILE', 'TASK_CLASS_NAME104', 'REPTILE', NULL, 1649412000000, -1, 5, 'WAITING', 'CRON', 1649406126000, 0, NULL, -1, ''); INSERT INTO `qrtz_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME105', 'REPTILE', 'TASK_CLASS_NAME105', 'REPTILE', NULL, 1649423400000, -1, 5, 'WAITING', 'CRON', 1649406126000, 0, NULL, -1, ''); INSERT INTO `qrtz_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME106', 'REPTILE', 'TASK_CLASS_NAME106', 'REPTILE', NULL, 1649420400000, -1, 5, 'WAITING', 'CRON', 1649406126000, 0, NULL, -1, ''); INSERT INTO `qrtz_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME107', 'SYSTEM', 'TASK_CLASS_NAME107', 'SYSTEM', NULL, 1649426400000, -1, 5, 'WAITING', 'CRON', 1649406126000, 0, NULL, -1, ''); INSERT INTO `qrtz_triggers` VALUES ('RuoyiScheduler', 'TASK_CLASS_NAME108', 'REPTILE', 'TASK_CLASS_NAME108', 'REPTILE', NULL, 1649409330000, -1, 5, 'WAITING', 'CRON', 1649406126000, 0, NULL, -1, ''); -- ---------------------------- -- Table structure for sys_config -- ---------------------------- DROP TABLE IF EXISTS `sys_config`; CREATE TABLE `sys_config` ( `config_id` int NOT NULL AUTO_INCREMENT COMMENT '参数主键', `config_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '参数名称', `config_key` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '参数键名', `config_value` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '参数键值', `config_type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'N' COMMENT '系统内置(Y是 N否)', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', PRIMARY KEY (`config_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 102 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '参数配置表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_config -- ---------------------------- INSERT INTO `sys_config` VALUES (2, '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 'admin', '2021-12-24 17:05:44', '', NULL, '初始化密码 123456'); INSERT INTO `sys_config` VALUES (100, '36壁纸网参数配置', 'xjs.webmagic._36wallpaper', '{\"path\":\"D:\\\\Dev\\\\WebCrawler\\\\36wallpaper\",\"init\":true,\"downloadImg\":true}', 'Y', 'admin', '2022-02-20 20:54:17', 'admin', '2022-02-20 22:17:57', 'json格式值'); INSERT INTO `sys_config` VALUES (101, '微信图片', 'xjs.webmagic.wechatPicture', 'D:\\Dev\\WebCrawler\\Wechat', 'Y', 'admin', '2022-03-17 22:39:59', 'admin', '2022-03-17 22:40:42', '微信文章图片存放磁盘地址'); -- ---------------------------- -- Table structure for sys_dept -- ---------------------------- DROP TABLE IF EXISTS `sys_dept`; CREATE TABLE `sys_dept` ( `dept_id` bigint NOT NULL AUTO_INCREMENT COMMENT '部门id', `parent_id` bigint NULL DEFAULT 0 COMMENT '父部门id', `ancestors` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '祖级列表', `dept_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '部门名称', `order_num` int NULL DEFAULT 0 COMMENT '显示顺序', `leader` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '负责人', `phone` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', `email` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮箱', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '部门状态(0正常 1停用)', `del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', PRIMARY KEY (`dept_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 200 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '部门表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_dept -- ---------------------------- INSERT INTO `sys_dept` VALUES (100, 0, '0', '谢哥科技', 0, '谢哥', '18907084291', '1294405880@qq.com', '0', '0', 'admin', '2021-12-24 17:05:44', 'admin', '2021-12-24 21:46:18'); INSERT INTO `sys_dept` VALUES (101, 100, '0,100', '南昌公司', 1, '谢哥', '18907084291', '1294405880@qq.com', '0', '0', 'admin', '2021-12-24 17:05:44', 'admin', '2021-12-24 21:46:57'); INSERT INTO `sys_dept` VALUES (102, 100, '0,100', '长沙分公司', 2, '若依', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2021-12-24 17:05:44', '', NULL); INSERT INTO `sys_dept` VALUES (103, 101, '0,100,101', '研发部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '0', 'admin', '2021-12-24 17:05:44', '', NULL); INSERT INTO `sys_dept` VALUES (104, 101, '0,100,101', '市场部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2021-12-24 17:05:44', '', NULL); INSERT INTO `sys_dept` VALUES (105, 101, '0,100,101', '测试部门', 3, '若依', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2021-12-24 17:05:44', '', NULL); INSERT INTO `sys_dept` VALUES (106, 101, '0,100,101', '财务部门', 4, '若依', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2021-12-24 17:05:44', '', NULL); INSERT INTO `sys_dept` VALUES (107, 101, '0,100,101', '运维部门', 5, '若依', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2021-12-24 17:05:44', '', NULL); INSERT INTO `sys_dept` VALUES (108, 102, '0,100,102', '市场部门', 1, '若依', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2021-12-24 17:05:44', '', NULL); INSERT INTO `sys_dept` VALUES (109, 102, '0,100,102', '财务部门', 2, '若依', '15888888888', 'ry@qq.com', '0', '2', 'admin', '2021-12-24 17:05:44', '', NULL); -- ---------------------------- -- Table structure for sys_dict_data -- ---------------------------- DROP TABLE IF EXISTS `sys_dict_data`; CREATE TABLE `sys_dict_data` ( `dict_code` bigint NOT NULL AUTO_INCREMENT COMMENT '字典编码', `dict_sort` int NULL DEFAULT 0 COMMENT '字典排序', `dict_label` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '字典标签', `dict_value` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '字典键值', `dict_type` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '字典类型', `css_class` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '样式属性(其他样式扩展)', `list_class` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表格回显样式', `is_default` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'N' COMMENT '是否默认(Y是 N否)', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '状态(0正常 1停用)', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', PRIMARY KEY (`dict_code`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 175 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '字典数据表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_dict_data -- ---------------------------- INSERT INTO `sys_dict_data` VALUES (1, 1, '男', '0', 'sys_user_sex', '', '', 'Y', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '性别男'); INSERT INTO `sys_dict_data` VALUES (2, 2, '女', '1', 'sys_user_sex', '', '', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '性别女'); INSERT INTO `sys_dict_data` VALUES (4, 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '显示菜单'); INSERT INTO `sys_dict_data` VALUES (5, 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '隐藏菜单'); INSERT INTO `sys_dict_data` VALUES (6, 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '正常状态'); INSERT INTO `sys_dict_data` VALUES (7, 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '停用状态'); INSERT INTO `sys_dict_data` VALUES (8, 1, '正常', '0', 'sys_job_status', '', 'primary', 'Y', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '正常状态'); INSERT INTO `sys_dict_data` VALUES (9, 2, '暂停', '1', 'sys_job_status', '', 'danger', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '停用状态'); INSERT INTO `sys_dict_data` VALUES (10, 1, '默认', 'DEFAULT', 'sys_job_group', '', '', 'Y', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '默认分组'); INSERT INTO `sys_dict_data` VALUES (11, 2, '系统', 'SYSTEM', 'sys_job_group', '', '', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '系统分组'); INSERT INTO `sys_dict_data` VALUES (12, 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '系统默认是'); INSERT INTO `sys_dict_data` VALUES (13, 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '系统默认否'); INSERT INTO `sys_dict_data` VALUES (14, 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '通知'); INSERT INTO `sys_dict_data` VALUES (15, 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '公告'); INSERT INTO `sys_dict_data` VALUES (16, 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '正常状态'); INSERT INTO `sys_dict_data` VALUES (17, 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '关闭状态'); INSERT INTO `sys_dict_data` VALUES (18, 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '新增操作'); INSERT INTO `sys_dict_data` VALUES (19, 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '修改操作'); INSERT INTO `sys_dict_data` VALUES (20, 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '删除操作'); INSERT INTO `sys_dict_data` VALUES (21, 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '授权操作'); INSERT INTO `sys_dict_data` VALUES (22, 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '导出操作'); INSERT INTO `sys_dict_data` VALUES (23, 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '导入操作'); INSERT INTO `sys_dict_data` VALUES (24, 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '强退操作'); INSERT INTO `sys_dict_data` VALUES (25, 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '生成操作'); INSERT INTO `sys_dict_data` VALUES (26, 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '清空操作'); INSERT INTO `sys_dict_data` VALUES (27, 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '正常状态'); INSERT INTO `sys_dict_data` VALUES (28, 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '停用状态'); INSERT INTO `sys_dict_data` VALUES (101, 1, '百度', '1', 'translation_type', NULL, 'warning', 'N', '0', 'admin', '2021-12-25 23:05:14', 'admin', '2021-12-26 13:28:02', '百度翻译'); INSERT INTO `sys_dict_data` VALUES (102, 2, '有道', '2', 'translation_type', NULL, 'success', 'N', '0', 'admin', '2021-12-25 23:05:31', 'admin', '2021-12-26 13:27:58', '有道翻译'); INSERT INTO `sys_dict_data` VALUES (103, 0, '其他', '0', 'sys_oper_type', NULL, 'info', 'N', '0', 'admin', '2021-12-26 13:27:04', 'admin', '2021-12-26 13:27:24', '其他'); INSERT INTO `sys_dict_data` VALUES (104, 1, '朋友圈文案', '1', 'copywriting_type', NULL, 'info', 'N', '0', 'admin', '2021-12-28 20:16:32', '', NULL, '朋友圈文案'); INSERT INTO `sys_dict_data` VALUES (105, 0, '网易云热评', '2', 'copywriting_type', NULL, 'primary', 'N', '0', 'admin', '2021-12-28 20:16:44', '', NULL, '网易云热评'); INSERT INTO `sys_dict_data` VALUES (106, 0, '经典台词', '3', 'copywriting_type', NULL, 'warning', 'N', '0', 'admin', '2021-12-29 10:43:26', '', NULL, '经典台词'); INSERT INTO `sys_dict_data` VALUES (107, 0, '名人名言', '4', 'copywriting_type', NULL, 'danger', 'N', '0', 'admin', '2021-12-29 11:07:28', '', NULL, '名人名言'); INSERT INTO `sys_dict_data` VALUES (109, 0, '已收藏', '1', 'english_collect', NULL, 'primary', 'N', '0', 'admin', '2021-12-29 16:30:05', '', NULL, '已收藏'); INSERT INTO `sys_dict_data` VALUES (110, 0, '未收藏', '2', 'english_collect', NULL, 'warning', 'N', '0', 'admin', '2021-12-29 16:30:23', '', NULL, '未收藏'); INSERT INTO `sys_dict_data` VALUES (111, 0, '已置顶', '1', 'english_top', NULL, 'success', 'N', '0', 'admin', '2021-12-29 16:35:13', '', NULL, '已置顶'); INSERT INTO `sys_dict_data` VALUES (112, 0, '未置顶', '2', 'english_top', NULL, 'warning', 'N', '0', 'admin', '2021-12-29 16:35:25', '', NULL, '未置顶'); INSERT INTO `sys_dict_data` VALUES (113, 0, 'ROLL', '3', 'translation_type', NULL, 'danger', 'N', '0', 'admin', '2022-01-07 23:18:41', 'admin', '2022-01-07 23:18:53', 'ROLL平台翻译'); INSERT INTO `sys_dict_data` VALUES (114, 0, '每日一句', '5', 'copywriting_type', NULL, 'success', 'N', '0', 'admin', '2022-01-08 16:05:35', 'admin', '2022-01-08 16:05:42', 'roll平台的每日一句'); INSERT INTO `sys_dict_data` VALUES (115, 0, '成功', '1', 'request_status', NULL, 'success', 'N', '0', 'admin', '2022-01-21 23:38:38', 'admin', '2022-01-21 23:42:34', '成功'); INSERT INTO `sys_dict_data` VALUES (116, 0, '失败', '2', 'request_status', NULL, 'danger', 'N', '0', 'admin', '2022-01-21 23:38:52', 'admin', '2022-01-21 23:42:39', '失败'); INSERT INTO `sys_dict_data` VALUES (117, 0, 'PUT', 'Put', 'request_method', NULL, 'default', 'N', '0', 'admin', '2022-01-21 23:44:18', '', NULL, NULL); INSERT INTO `sys_dict_data` VALUES (118, 0, 'POST', 'Post', 'request_method', NULL, 'default', 'N', '0', 'admin', '2022-01-21 23:44:40', '', NULL, NULL); INSERT INTO `sys_dict_data` VALUES (119, 0, 'GET', 'Get', 'request_method', NULL, 'default', 'N', '0', 'admin', '2022-01-21 23:44:49', '', NULL, NULL); INSERT INTO `sys_dict_data` VALUES (120, 0, 'DELETE', 'Delete', 'request_method', NULL, 'default', 'N', '0', 'admin', '2022-01-21 23:45:00', '', NULL, NULL); INSERT INTO `sys_dict_data` VALUES (121, 0, '舔狗日记', '6', 'copywriting_type', NULL, 'primary', 'N', '0', 'admin', '2022-02-14 17:55:39', 'admin', '2022-02-14 17:55:47', '舔狗日记'); INSERT INTO `sys_dict_data` VALUES (122, 0, '毒鸡汤', '7', 'copywriting_type', NULL, 'success', 'N', '0', 'admin', '2022-02-14 18:48:49', '', NULL, '毒鸡汤'); INSERT INTO `sys_dict_data` VALUES (123, 0, '一言', '8', 'copywriting_type', NULL, 'danger', 'N', '0', 'admin', '2022-02-14 19:55:55', 'admin', '2022-02-15 10:03:18', '一言'); INSERT INTO `sys_dict_data` VALUES (124, 0, '笑话大全', '10', 'copywriting_type', NULL, 'warning', 'N', '0', 'admin', '2022-02-15 09:31:59', '', NULL, '笑话大全'); INSERT INTO `sys_dict_data` VALUES (125, 0, '搞笑段子', '11', 'copywriting_type', NULL, 'info', 'N', '0', 'admin', '2022-02-15 09:54:46', '', NULL, '搞笑段子'); INSERT INTO `sys_dict_data` VALUES (126, 1, '爬虫', 'REPTILE', 'sys_job_group', NULL, 'warning', 'N', '0', 'admin', '2022-02-22 09:57:41', 'admin', '2022-02-22 09:57:50', '爬虫分组'); INSERT INTO `sys_dict_data` VALUES (127, 2, 'API', 'API', 'sys_job_group', NULL, 'primary', 'N', '0', 'admin', '2022-02-22 09:58:11', '', NULL, '第三方API分组'); INSERT INTO `sys_dict_data` VALUES (128, 1, '系统', '1', 'sys_dict_group', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 10:44:35', 'admin', '2022-03-02 10:57:21', '系统'); INSERT INTO `sys_dict_data` VALUES (129, 1, '业务', '2', 'sys_dict_group', NULL, 'success', 'N', '0', 'admin', '2022-03-02 10:44:45', 'admin', '2022-03-02 10:51:41', '业务'); INSERT INTO `sys_dict_data` VALUES (130, 2, '尚融宝', '3', 'sys_dict_group', NULL, 'info', 'N', '0', 'admin', '2022-03-02 10:44:55', 'admin', '2022-03-02 10:51:46', '尚融宝'); INSERT INTO `sys_dict_data` VALUES (131, 0, 'IT', '1', 'srb_industry', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 11:03:56', 'admin', '2022-03-02 11:04:36', 'IT'); INSERT INTO `sys_dict_data` VALUES (132, 0, '医生', '2', 'srb_industry', NULL, 'primary', 'N', '0', 'admin', '2022-03-02 11:04:06', '', NULL, '医生'); INSERT INTO `sys_dict_data` VALUES (133, 0, '教师', '3', 'srb_industry', NULL, 'info', 'N', '0', 'admin', '2022-03-02 11:04:16', '', NULL, '教师'); INSERT INTO `sys_dict_data` VALUES (134, 0, '导游', '4', 'srb_industry', NULL, 'info', 'N', '0', 'admin', '2022-03-02 11:04:31', '', NULL, '导游'); INSERT INTO `sys_dict_data` VALUES (135, 0, '律师', '5', 'srb_industry', NULL, 'danger', 'N', '0', 'admin', '2022-03-02 11:04:48', '', NULL, '律师'); INSERT INTO `sys_dict_data` VALUES (136, 0, '其他', '6', 'srb_industry', NULL, 'success', 'N', '0', 'admin', '2022-03-02 11:05:00', '', NULL, '其他'); INSERT INTO `sys_dict_data` VALUES (137, 0, '高中', '1', 'srb_education', NULL, 'primary', 'N', '0', 'admin', '2022-03-02 11:05:53', '', NULL, '高中'); INSERT INTO `sys_dict_data` VALUES (138, 0, '大专', '2', 'srb_education', NULL, 'success', 'N', '0', 'admin', '2022-03-02 11:06:06', '', NULL, '大专'); INSERT INTO `sys_dict_data` VALUES (139, 0, '本科', '3', 'srb_education', NULL, 'info', 'N', '0', 'admin', '2022-03-02 11:06:19', '', NULL, '本科'); INSERT INTO `sys_dict_data` VALUES (140, 0, '研究生', '4', 'srb_education', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 11:06:30', '', NULL, '研究生'); INSERT INTO `sys_dict_data` VALUES (141, 0, '其他', '5', 'srb_education', NULL, 'danger', 'N', '0', 'admin', '2022-03-02 11:06:39', '', NULL, '其他'); INSERT INTO `sys_dict_data` VALUES (142, 0, '0-3000', '1', 'srb_income', NULL, 'primary', 'N', '0', 'admin', '2022-03-02 11:07:38', '', NULL, '0-3000元'); INSERT INTO `sys_dict_data` VALUES (143, 0, '3000-5000', '2', 'srb_income', NULL, 'success', 'N', '0', 'admin', '2022-03-02 11:07:51', '', NULL, '3000-5000元'); INSERT INTO `sys_dict_data` VALUES (144, 0, '5000-10000', '3', 'srb_income', NULL, 'info', 'N', '0', 'admin', '2022-03-02 11:08:03', '', NULL, '5000-10000元'); INSERT INTO `sys_dict_data` VALUES (145, 0, '10000+', '4', 'srb_income', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 11:08:16', 'admin', '2022-03-02 11:08:22', '10000元以上'); INSERT INTO `sys_dict_data` VALUES (146, 0, '工资', '1', 'srb_returnSource', NULL, 'primary', 'N', '0', 'admin', '2022-03-02 11:09:11', '', NULL, '工资'); INSERT INTO `sys_dict_data` VALUES (147, 0, '股票', '2', 'srb_returnSource', NULL, 'success', 'N', '0', 'admin', '2022-03-02 11:09:18', '', NULL, '股票'); INSERT INTO `sys_dict_data` VALUES (148, 0, '兼职', '3', 'srb_returnSource', NULL, 'danger', 'N', '0', 'admin', '2022-03-02 11:09:27', '', NULL, '兼职'); INSERT INTO `sys_dict_data` VALUES (149, 0, '夫妻', '1', 'srb_relation', NULL, 'success', 'N', '0', 'admin', '2022-03-02 11:10:23', '', NULL, '夫妻'); INSERT INTO `sys_dict_data` VALUES (150, 0, '兄妹', '2', 'srb_relation', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 11:10:33', '', NULL, '兄妹'); INSERT INTO `sys_dict_data` VALUES (151, 0, '父母', '3', 'srb_relation', NULL, 'primary', 'N', '0', 'admin', '2022-03-02 11:10:43', '', NULL, '父母'); INSERT INTO `sys_dict_data` VALUES (152, 0, '其他', '4', 'srb_relation', NULL, 'info', 'N', '0', 'admin', '2022-03-02 11:10:53', '', NULL, '其他'); INSERT INTO `sys_dict_data` VALUES (153, 0, '等额本息', '1', 'srb_returnMethod', NULL, 'success', 'N', '0', 'admin', '2022-03-02 11:11:36', '', NULL, '等额本息'); INSERT INTO `sys_dict_data` VALUES (154, 0, '等额本金', '2', 'srb_returnMethod', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 11:11:42', '', NULL, '等额本金'); INSERT INTO `sys_dict_data` VALUES (155, 0, '每月还息一次还本', '3', 'srb_returnMethod', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 11:12:01', '', NULL, '每月还息一次还本'); INSERT INTO `sys_dict_data` VALUES (156, 0, '一次还本还息', '4', 'srb_returnMethod', NULL, 'danger', 'N', '0', 'admin', '2022-03-02 11:12:11', '', NULL, '一次还本还息'); INSERT INTO `sys_dict_data` VALUES (157, 0, '旅游', '1', 'srb_moneyUse', NULL, 'primary', 'N', '0', 'admin', '2022-03-02 11:12:51', '', NULL, '旅游'); INSERT INTO `sys_dict_data` VALUES (158, 0, '买房', '2', 'srb_moneyUse', NULL, 'success', 'N', '0', 'admin', '2022-03-02 11:12:59', '', NULL, '买房'); INSERT INTO `sys_dict_data` VALUES (159, 0, '装修', '3', 'srb_moneyUse', NULL, 'info', 'N', '0', 'admin', '2022-03-02 11:13:08', '', NULL, '装修'); INSERT INTO `sys_dict_data` VALUES (160, 0, '医疗', '4', 'srb_moneyUse', NULL, 'danger', 'N', '0', 'admin', '2022-03-02 11:13:17', '', NULL, '医疗'); INSERT INTO `sys_dict_data` VALUES (161, 0, '美容', '5', 'srb_moneyUse', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 11:13:31', '', NULL, '美容'); INSERT INTO `sys_dict_data` VALUES (162, 0, '其他', '6', 'srb_moneyUse', NULL, 'info', 'N', '0', 'admin', '2022-03-02 11:13:42', '', NULL, '其他'); INSERT INTO `sys_dict_data` VALUES (163, 0, '待审核', '0', 'srb_borrowStatus', NULL, 'primary', 'N', '0', 'admin', '2022-03-02 11:14:49', '', NULL, '待审核'); INSERT INTO `sys_dict_data` VALUES (164, 0, '审批通过', '1', 'srb_borrowStatus', NULL, 'success', 'N', '0', 'admin', '2022-03-02 11:14:57', '', NULL, '审批通过'); INSERT INTO `sys_dict_data` VALUES (165, 0, '还款中', '2', 'srb_borrowStatus', NULL, 'info', 'N', '0', 'admin', '2022-03-02 11:15:12', '', NULL, '还款中'); INSERT INTO `sys_dict_data` VALUES (166, 0, '结束', '3', 'srb_borrowStatus', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 11:15:22', 'admin', '2022-03-02 11:15:26', '结束'); INSERT INTO `sys_dict_data` VALUES (167, 0, '审批不通过', '-1', 'srb_borrowStatus', NULL, 'danger', 'N', '0', 'admin', '2022-03-02 11:15:41', '', NULL, '审批不通过'); INSERT INTO `sys_dict_data` VALUES (168, 0, '211/985', '1', 'srb_SchoolStatus', NULL, 'primary', 'N', '0', 'admin', '2022-03-02 11:16:20', '', NULL, '211/985'); INSERT INTO `sys_dict_data` VALUES (169, 0, '一本', '2', 'srb_SchoolStatus', NULL, 'info', 'N', '0', 'admin', '2022-03-02 11:16:30', '', NULL, '一本'); INSERT INTO `sys_dict_data` VALUES (170, 0, '二本', '3', 'srb_SchoolStatus', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 11:16:40', '', NULL, '二本'); INSERT INTO `sys_dict_data` VALUES (171, 0, '三本', '4', 'srb_SchoolStatus', NULL, 'danger', 'N', '0', 'admin', '2022-03-02 11:16:49', '', NULL, '三本'); INSERT INTO `sys_dict_data` VALUES (172, 0, '高职高专', '5', 'srb_SchoolStatus', NULL, 'primary', 'N', '0', 'admin', '2022-03-02 11:16:59', '', NULL, '高职高专'); INSERT INTO `sys_dict_data` VALUES (173, 0, '中职中专', '6', 'srb_SchoolStatus', NULL, 'success', 'N', '0', 'admin', '2022-03-02 11:17:09', '', NULL, '中职中专'); INSERT INTO `sys_dict_data` VALUES (174, 0, '高中及以下', '7', 'srb_SchoolStatus', NULL, 'warning', 'N', '0', 'admin', '2022-03-02 11:17:19', '', NULL, '高中及以下'); -- ---------------------------- -- Table structure for sys_dict_type -- ---------------------------- DROP TABLE IF EXISTS `sys_dict_type`; CREATE TABLE `sys_dict_type` ( `dict_id` bigint NOT NULL AUTO_INCREMENT COMMENT '字典主键', `dict_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '字典名称', `dict_type` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '字典类型', `dict_group` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '字典分组', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '状态(0正常 1停用)', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', PRIMARY KEY (`dict_id`) USING BTREE, UNIQUE INDEX `dict_type`(`dict_type`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 117 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '字典类型表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_dict_type -- ---------------------------- INSERT INTO `sys_dict_type` VALUES (1, '用户性别', 'sys_user_sex', '1', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '用户性别列表'); INSERT INTO `sys_dict_type` VALUES (2, '菜单状态', 'sys_show_hide', '1', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '菜单状态列表'); INSERT INTO `sys_dict_type` VALUES (3, '系统开关', 'sys_normal_disable', '1', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '系统开关列表'); INSERT INTO `sys_dict_type` VALUES (4, '任务状态', 'sys_job_status', '1', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '任务状态列表'); INSERT INTO `sys_dict_type` VALUES (5, '任务分组', 'sys_job_group', '1', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '任务分组列表'); INSERT INTO `sys_dict_type` VALUES (6, '系统是否', 'sys_yes_no', '1', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '系统是否列表'); INSERT INTO `sys_dict_type` VALUES (7, '通知类型', 'sys_notice_type', '1', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '通知类型列表'); INSERT INTO `sys_dict_type` VALUES (8, '通知状态', 'sys_notice_status', '1', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '通知状态列表'); INSERT INTO `sys_dict_type` VALUES (9, '操作类型', 'sys_oper_type', '1', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '操作类型列表'); INSERT INTO `sys_dict_type` VALUES (10, '系统状态', 'sys_common_status', '1', '0', 'admin', '2021-12-24 17:05:44', 'admin', '2022-03-02 10:56:56', '登录状态列表'); INSERT INTO `sys_dict_type` VALUES (100, '翻译API类型', 'translation_type', '2', '0', 'admin', '2021-12-25 23:04:29', '', NULL, '翻译软件类型'); INSERT INTO `sys_dict_type` VALUES (101, '文案类型', 'copywriting_type', '2', '0', 'admin', '2021-12-28 20:15:46', 'admin', '2022-03-02 10:52:16', '文案类型'); INSERT INTO `sys_dict_type` VALUES (102, '单词收藏', 'english_collect', '2', '0', 'admin', '2021-12-29 16:24:02', '', NULL, '单词是否收藏'); INSERT INTO `sys_dict_type` VALUES (103, '单词置顶', 'english_top', '2', '0', 'admin', '2021-12-29 16:34:07', 'admin', '2022-03-02 11:02:16', '单词置顶'); INSERT INTO `sys_dict_type` VALUES (104, '请求是否成功', 'request_status', '2', '0', 'admin', '2022-01-21 23:38:09', 'admin', '2022-03-02 10:52:27', '请求是否成功'); INSERT INTO `sys_dict_type` VALUES (105, '请求方法', 'request_method', '2', '0', 'admin', '2022-01-21 23:43:35', 'admin', '2022-03-02 10:52:48', '请求方法'); INSERT INTO `sys_dict_type` VALUES (106, '字典分组', 'sys_dict_group', '1', '0', 'admin', '2022-03-02 10:41:51', 'admin', '2022-03-02 10:51:54', '字典的分组'); INSERT INTO `sys_dict_type` VALUES (108, '行业', 'srb_industry', '3', '0', 'admin', '2022-03-02 11:03:35', '', NULL, '尚融宝行业'); INSERT INTO `sys_dict_type` VALUES (109, '学历', 'srb_education', '3', '0', 'admin', '2022-03-02 11:05:37', '', NULL, '尚融宝的学历'); INSERT INTO `sys_dict_type` VALUES (110, '收入', 'srb_income', '3', '0', 'admin', '2022-03-02 11:07:16', '', NULL, '尚融宝的收入'); INSERT INTO `sys_dict_type` VALUES (111, '收入来源', 'srb_returnSource', '3', '0', 'admin', '2022-03-02 11:08:54', '', NULL, '尚融宝的收入来源'); INSERT INTO `sys_dict_type` VALUES (112, '关系', 'srb_relation', '3', '0', 'admin', '2022-03-02 11:10:10', '', NULL, '尚融宝关系'); INSERT INTO `sys_dict_type` VALUES (113, '还款方式', 'srb_returnMethod', '3', '0', 'admin', '2022-03-02 11:11:23', '', NULL, '尚融宝还款方式'); INSERT INTO `sys_dict_type` VALUES (114, '资金用途', 'srb_moneyUse', '3', '0', 'admin', '2022-03-02 11:12:34', '', NULL, '资金用途'); INSERT INTO `sys_dict_type` VALUES (115, '借款状态', 'srb_borrowStatus', '3', '0', 'admin', '2022-03-02 11:14:30', '', NULL, '尚融宝的借款状态'); INSERT INTO `sys_dict_type` VALUES (116, '学校性质', 'srb_SchoolStatus', '3', '0', 'admin', '2022-03-02 11:16:05', '', NULL, '尚融宝的学校性质'); -- ---------------------------- -- Table structure for sys_job -- ---------------------------- DROP TABLE IF EXISTS `sys_job`; CREATE TABLE `sys_job` ( `job_id` bigint NOT NULL AUTO_INCREMENT COMMENT '任务ID', `job_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '任务名称', `job_group` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'DEFAULT' COMMENT '任务组名', `invoke_target` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调用目标字符串', `cron_expression` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT 'cron执行表达式', `misfire_policy` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '3' COMMENT '计划执行错误策略(1立即执行 2执行一次 3放弃执行)', `concurrent` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '1' COMMENT '是否并发执行(0允许 1禁止)', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '状态(0正常 1暂停)', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '备注信息', PRIMARY KEY (`job_id`, `job_name`, `job_group`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 109 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '定时任务调度表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_job -- ---------------------------- INSERT INTO `sys_job` VALUES (100, '文案调用任务', 'API', 'CopyWritingTask.execute', '0 0/10 * * * ?', '1', '1', '0', 'admin', '2021-12-27 23:58:45', 'admin', '2022-02-22 09:58:25', ''); INSERT INTO `sys_job` VALUES (101, '天气预报定时任务', 'API', 'WeatherTask.execute', '0 0/20 * 1/1 * ?', '1', '1', '0', 'admin', '2022-01-16 21:57:55', 'admin', '2022-02-22 09:58:33', ''); INSERT INTO `sys_job` VALUES (102, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', '10 0 0 * * ? ', '1', '1', '0', 'admin', '2022-01-25 16:58:17', 'admin', '2022-01-25 16:59:02', ''); INSERT INTO `sys_job` VALUES (103, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '0 0/10 * * * ?', '1', '1', '0', 'admin', '2022-01-26 08:57:51', 'admin', '2022-02-22 09:58:39', ''); INSERT INTO `sys_job` VALUES (104, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '0 0 0/3 * * ?', '1', '1', '0', 'admin', '2022-02-15 20:12:03', 'admin', '2022-02-22 09:58:43', ''); INSERT INTO `sys_job` VALUES (105, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '0 10 3/6 * * ?', '1', '1', '0', 'admin', '2022-02-17 09:14:04', 'admin', '2022-02-22 09:58:48', ''); INSERT INTO `sys_job` VALUES (106, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '0 20 20 * * ?', '1', '1', '0', 'admin', '2022-02-20 18:27:18', 'admin', '2022-02-22 09:58:52', ''); INSERT INTO `sys_job` VALUES (107, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '0 0 22 * * ?', '1', '1', '0', 'admin', '2022-02-21 11:01:13', '', '2022-02-21 11:02:09', ''); INSERT INTO `sys_job` VALUES (108, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '30 15 0/1 * * ?', '1', '1', '0', 'admin', '2022-02-22 09:55:34', 'admin', '2022-02-22 15:19:45', ''); -- ---------------------------- -- Table structure for sys_job_log -- ---------------------------- DROP TABLE IF EXISTS `sys_job_log`; CREATE TABLE `sys_job_log` ( `job_log_id` bigint NOT NULL AUTO_INCREMENT COMMENT '任务日志ID', `job_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '任务名称', `job_group` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '任务组名', `invoke_target` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '调用目标字符串', `job_message` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '日志信息', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '执行状态(0正常 1失败)', `exception_info` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '异常信息', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`job_log_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 23444 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '定时任务调度日志表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_job_log -- ---------------------------- INSERT INTO `sys_job_log` VALUES (1, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask', '文案RPC调用任务 总共耗时:3毫秒', '1', 'org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named \'CopyWritingTask\' available\r\n at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:863)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1344)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:309)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:283)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)\r\n at com.ruoyi.common.core.utils.SpringUtils.getBean(SpringUtils.java:38)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:32)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\n', '2021-12-27 23:59:57'); INSERT INTO `sys_job_log` VALUES (2, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask', '文案RPC调用任务 总共耗时:4毫秒', '1', 'org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named \'CopyWritingTask\' available\r\n at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:863)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1344)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:309)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:283)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)\r\n at com.ruoyi.common.core.utils.SpringUtils.getBean(SpringUtils.java:38)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:32)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\n', '2021-12-28 00:03:05'); INSERT INTO `sys_job_log` VALUES (3, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask', '文案RPC调用任务 总共耗时:1毫秒', '1', 'org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named \'CopyWritingTask\' available\r\n at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:863)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.getMergedLocalBeanDefinition(AbstractBeanFactory.java:1344)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:309)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:283)\r\n at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208)\r\n at com.ruoyi.common.core.utils.SpringUtils.getBean(SpringUtils.java:38)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:32)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\n', '2021-12-28 00:03:05'); INSERT INTO `sys_job_log` VALUES (4, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask', '文案RPC调用任务 总共耗时:5毫秒', '1', 'java.lang.NoSuchMethodException: com.xjs.job.task.CopyWritingTask.()\r\n at java.lang.Class.getDeclaredMethod(Class.java:2130)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:60)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\n', '2021-12-28 00:04:33'); INSERT INTO `sys_job_log` VALUES (5, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask', '文案RPC调用任务 总共耗时:0毫秒', '1', 'java.lang.NoSuchMethodException: com.xjs.job.task.CopyWritingTask.()\r\n at java.lang.Class.getDeclaredMethod(Class.java:2130)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:60)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\n', '2021-12-28 00:04:33'); INSERT INTO `sys_job_log` VALUES (6, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:0毫秒', '0', '', '2021-12-28 00:05:38'); INSERT INTO `sys_job_log` VALUES (7, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:0毫秒', '0', '', '2021-12-28 00:05:38'); INSERT INTO `sys_job_log` VALUES (8, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2021-12-28 00:14:26'); INSERT INTO `sys_job_log` VALUES (9, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2021-12-28 00:15:00'); INSERT INTO `sys_job_log` VALUES (10, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 00:15:01'); INSERT INTO `sys_job_log` VALUES (11, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:42毫秒', '0', '', '2021-12-28 00:15:02'); INSERT INTO `sys_job_log` VALUES (12, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-28 00:15:03'); INSERT INTO `sys_job_log` VALUES (13, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:42毫秒', '0', '', '2021-12-28 00:15:04'); INSERT INTO `sys_job_log` VALUES (14, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 00:15:05'); INSERT INTO `sys_job_log` VALUES (15, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 00:15:06'); INSERT INTO `sys_job_log` VALUES (16, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-28 00:15:07'); INSERT INTO `sys_job_log` VALUES (17, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 00:15:08'); INSERT INTO `sys_job_log` VALUES (18, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-28 00:15:09'); INSERT INTO `sys_job_log` VALUES (19, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 00:15:10'); INSERT INTO `sys_job_log` VALUES (20, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 00:15:11'); INSERT INTO `sys_job_log` VALUES (21, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:42毫秒', '0', '', '2021-12-28 00:15:12'); INSERT INTO `sys_job_log` VALUES (22, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 00:15:13'); INSERT INTO `sys_job_log` VALUES (23, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2021-12-28 00:30:00'); INSERT INTO `sys_job_log` VALUES (24, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:293毫秒', '0', '', '2021-12-28 08:40:00'); INSERT INTO `sys_job_log` VALUES (25, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2021-12-28 08:50:00'); INSERT INTO `sys_job_log` VALUES (26, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2021-12-28 09:00:00'); INSERT INTO `sys_job_log` VALUES (27, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1124毫秒', '0', '', '2021-12-28 09:10:01'); INSERT INTO `sys_job_log` VALUES (28, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2021-12-28 09:20:01'); INSERT INTO `sys_job_log` VALUES (29, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2021-12-28 09:30:00'); INSERT INTO `sys_job_log` VALUES (30, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:544毫秒', '0', '', '2021-12-28 09:40:00'); INSERT INTO `sys_job_log` VALUES (31, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1429毫秒', '0', '', '2021-12-28 10:30:01'); INSERT INTO `sys_job_log` VALUES (32, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2021-12-28 10:40:01'); INSERT INTO `sys_job_log` VALUES (33, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2021-12-28 10:50:00'); INSERT INTO `sys_job_log` VALUES (34, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1082毫秒', '0', '', '2021-12-28 11:00:01'); INSERT INTO `sys_job_log` VALUES (35, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2021-12-28 11:10:00'); INSERT INTO `sys_job_log` VALUES (36, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1757毫秒', '0', '', '2021-12-28 11:20:01'); INSERT INTO `sys_job_log` VALUES (37, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1138毫秒', '0', '', '2021-12-28 11:30:01'); INSERT INTO `sys_job_log` VALUES (38, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1137毫秒', '0', '', '2021-12-28 11:40:01'); INSERT INTO `sys_job_log` VALUES (39, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2021-12-28 11:46:00'); INSERT INTO `sys_job_log` VALUES (40, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2021-12-28 11:46:00'); INSERT INTO `sys_job_log` VALUES (41, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2021-12-28 11:46:00'); INSERT INTO `sys_job_log` VALUES (42, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:00'); INSERT INTO `sys_job_log` VALUES (43, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:00'); INSERT INTO `sys_job_log` VALUES (44, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-28 11:46:00'); INSERT INTO `sys_job_log` VALUES (45, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-28 11:46:00'); INSERT INTO `sys_job_log` VALUES (46, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:00'); INSERT INTO `sys_job_log` VALUES (47, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2021-12-28 11:46:00'); INSERT INTO `sys_job_log` VALUES (48, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 11:46:00'); INSERT INTO `sys_job_log` VALUES (49, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (50, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (51, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (52, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (53, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (54, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (55, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (56, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (57, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (58, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (59, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (60, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (61, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (62, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (63, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (64, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-28 11:46:01'); INSERT INTO `sys_job_log` VALUES (65, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-28 11:46:02'); INSERT INTO `sys_job_log` VALUES (66, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:41毫秒', '0', '', '2021-12-28 11:46:02'); INSERT INTO `sys_job_log` VALUES (67, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-28 11:46:02'); INSERT INTO `sys_job_log` VALUES (68, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:41毫秒', '0', '', '2021-12-28 11:46:02'); INSERT INTO `sys_job_log` VALUES (69, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:02'); INSERT INTO `sys_job_log` VALUES (70, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 11:46:02'); INSERT INTO `sys_job_log` VALUES (71, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 11:46:02'); INSERT INTO `sys_job_log` VALUES (72, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:03'); INSERT INTO `sys_job_log` VALUES (73, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:04'); INSERT INTO `sys_job_log` VALUES (74, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-28 11:46:05'); INSERT INTO `sys_job_log` VALUES (75, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:06'); INSERT INTO `sys_job_log` VALUES (76, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-28 11:46:07'); INSERT INTO `sys_job_log` VALUES (77, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-28 11:46:08'); INSERT INTO `sys_job_log` VALUES (78, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 11:46:09'); INSERT INTO `sys_job_log` VALUES (79, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 11:46:10'); INSERT INTO `sys_job_log` VALUES (80, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2021-12-28 11:46:11'); INSERT INTO `sys_job_log` VALUES (81, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 11:46:12'); INSERT INTO `sys_job_log` VALUES (82, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-28 11:46:13'); INSERT INTO `sys_job_log` VALUES (83, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:14'); INSERT INTO `sys_job_log` VALUES (84, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:15'); INSERT INTO `sys_job_log` VALUES (85, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:16'); INSERT INTO `sys_job_log` VALUES (86, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-28 11:46:17'); INSERT INTO `sys_job_log` VALUES (87, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:18'); INSERT INTO `sys_job_log` VALUES (88, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:19'); INSERT INTO `sys_job_log` VALUES (89, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 11:46:20'); INSERT INTO `sys_job_log` VALUES (90, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:21'); INSERT INTO `sys_job_log` VALUES (91, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:22'); INSERT INTO `sys_job_log` VALUES (92, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:23'); INSERT INTO `sys_job_log` VALUES (93, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 11:46:24'); INSERT INTO `sys_job_log` VALUES (94, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:25'); INSERT INTO `sys_job_log` VALUES (95, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:42毫秒', '0', '', '2021-12-28 11:46:26'); INSERT INTO `sys_job_log` VALUES (96, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-28 11:46:27'); INSERT INTO `sys_job_log` VALUES (97, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-28 11:46:28'); INSERT INTO `sys_job_log` VALUES (98, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:29'); INSERT INTO `sys_job_log` VALUES (99, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:30'); INSERT INTO `sys_job_log` VALUES (100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-28 11:46:31'); INSERT INTO `sys_job_log` VALUES (101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:42毫秒', '0', '', '2021-12-28 11:46:32'); INSERT INTO `sys_job_log` VALUES (102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 11:46:33'); INSERT INTO `sys_job_log` VALUES (103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-28 11:46:34'); INSERT INTO `sys_job_log` VALUES (104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 11:46:35'); INSERT INTO `sys_job_log` VALUES (105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:44毫秒', '0', '', '2021-12-28 11:46:36'); INSERT INTO `sys_job_log` VALUES (106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-28 11:46:37'); INSERT INTO `sys_job_log` VALUES (107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 11:46:38'); INSERT INTO `sys_job_log` VALUES (108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-28 11:46:39'); INSERT INTO `sys_job_log` VALUES (109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-28 11:46:40'); INSERT INTO `sys_job_log` VALUES (110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-28 11:46:41'); INSERT INTO `sys_job_log` VALUES (111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-28 11:46:42'); INSERT INTO `sys_job_log` VALUES (112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-28 11:46:43'); INSERT INTO `sys_job_log` VALUES (113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-28 11:46:44'); INSERT INTO `sys_job_log` VALUES (114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2021-12-28 11:46:45'); INSERT INTO `sys_job_log` VALUES (115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2021-12-28 11:46:46'); INSERT INTO `sys_job_log` VALUES (116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2021-12-28 11:46:47'); INSERT INTO `sys_job_log` VALUES (117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-28 11:46:48'); INSERT INTO `sys_job_log` VALUES (118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:30毫秒', '0', '', '2021-12-28 11:46:49'); INSERT INTO `sys_job_log` VALUES (119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:31毫秒', '0', '', '2021-12-28 11:46:50'); INSERT INTO `sys_job_log` VALUES (120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:35毫秒', '0', '', '2021-12-28 11:46:51'); INSERT INTO `sys_job_log` VALUES (121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-28 11:46:52'); INSERT INTO `sys_job_log` VALUES (122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:34毫秒', '0', '', '2021-12-28 11:46:53'); INSERT INTO `sys_job_log` VALUES (123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:31毫秒', '0', '', '2021-12-28 11:46:54'); INSERT INTO `sys_job_log` VALUES (124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:32毫秒', '0', '', '2021-12-28 11:46:55'); INSERT INTO `sys_job_log` VALUES (125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1144毫秒', '0', '', '2021-12-28 14:46:04'); INSERT INTO `sys_job_log` VALUES (126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2021-12-28 14:46:04'); INSERT INTO `sys_job_log` VALUES (127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2021-12-28 14:46:04'); INSERT INTO `sys_job_log` VALUES (128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2021-12-28 14:46:04'); INSERT INTO `sys_job_log` VALUES (129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2021-12-28 14:46:04'); INSERT INTO `sys_job_log` VALUES (130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2021-12-28 14:46:04'); INSERT INTO `sys_job_log` VALUES (131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-28 14:46:05'); INSERT INTO `sys_job_log` VALUES (143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2021-12-28 14:50:00'); INSERT INTO `sys_job_log` VALUES (144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2021-12-28 15:00:00'); INSERT INTO `sys_job_log` VALUES (145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2021-12-28 15:10:00'); INSERT INTO `sys_job_log` VALUES (146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2021-12-28 15:20:01'); INSERT INTO `sys_job_log` VALUES (147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1075毫秒', '0', '', '2021-12-28 15:30:01'); INSERT INTO `sys_job_log` VALUES (148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1079毫秒', '0', '', '2021-12-28 15:40:01'); INSERT INTO `sys_job_log` VALUES (149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-28 15:50:01'); INSERT INTO `sys_job_log` VALUES (150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2021-12-28 16:00:01'); INSERT INTO `sys_job_log` VALUES (151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2021-12-28 16:24:28'); INSERT INTO `sys_job_log` VALUES (152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-28 16:24:28'); INSERT INTO `sys_job_log` VALUES (153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1074毫秒', '0', '', '2021-12-28 16:30:01'); INSERT INTO `sys_job_log` VALUES (154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2021-12-28 16:40:00'); INSERT INTO `sys_job_log` VALUES (155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2021-12-28 16:50:00'); INSERT INTO `sys_job_log` VALUES (156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2021-12-28 17:00:01'); INSERT INTO `sys_job_log` VALUES (157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2021-12-28 17:10:00'); INSERT INTO `sys_job_log` VALUES (158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2092毫秒', '0', '', '2021-12-28 17:20:02'); INSERT INTO `sys_job_log` VALUES (159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2021-12-28 17:30:01'); INSERT INTO `sys_job_log` VALUES (160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2021-12-28 19:30:01'); INSERT INTO `sys_job_log` VALUES (161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2021-12-28 19:40:00'); INSERT INTO `sys_job_log` VALUES (162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2021-12-28 20:12:49'); INSERT INTO `sys_job_log` VALUES (163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2021-12-28 20:12:49'); INSERT INTO `sys_job_log` VALUES (164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-28 20:12:49'); INSERT INTO `sys_job_log` VALUES (165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2021-12-28 20:20:00'); INSERT INTO `sys_job_log` VALUES (166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2021-12-28 20:30:00'); INSERT INTO `sys_job_log` VALUES (167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:17毫秒', '0', '', '2021-12-28 20:40:00'); INSERT INTO `sys_job_log` VALUES (168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2021-12-28 20:50:00'); INSERT INTO `sys_job_log` VALUES (169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2021-12-28 21:00:00'); INSERT INTO `sys_job_log` VALUES (170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2021-12-28 21:10:00'); INSERT INTO `sys_job_log` VALUES (171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2021-12-28 21:20:00'); INSERT INTO `sys_job_log` VALUES (172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:364毫秒', '0', '', '2021-12-28 21:30:00'); INSERT INTO `sys_job_log` VALUES (173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2021-12-28 21:40:00'); INSERT INTO `sys_job_log` VALUES (174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:597毫秒', '0', '', '2021-12-28 21:50:00'); INSERT INTO `sys_job_log` VALUES (175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2021-12-28 22:00:00'); INSERT INTO `sys_job_log` VALUES (176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:331毫秒', '0', '', '2021-12-28 22:10:00'); INSERT INTO `sys_job_log` VALUES (177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2021-12-28 22:20:00'); INSERT INTO `sys_job_log` VALUES (178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2021-12-28 22:30:00'); INSERT INTO `sys_job_log` VALUES (179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2021-12-28 22:40:00'); INSERT INTO `sys_job_log` VALUES (180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:344毫秒', '0', '', '2021-12-28 22:50:00'); INSERT INTO `sys_job_log` VALUES (181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2021-12-28 23:00:00'); INSERT INTO `sys_job_log` VALUES (182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2021-12-28 23:10:00'); INSERT INTO `sys_job_log` VALUES (183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2021-12-28 23:20:00'); INSERT INTO `sys_job_log` VALUES (184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2021-12-28 23:30:00'); INSERT INTO `sys_job_log` VALUES (185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2021-12-28 23:40:00'); INSERT INTO `sys_job_log` VALUES (186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2021-12-28 23:50:00'); INSERT INTO `sys_job_log` VALUES (187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2021-12-29 00:00:00'); INSERT INTO `sys_job_log` VALUES (188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2021-12-29 00:10:00'); INSERT INTO `sys_job_log` VALUES (189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1448毫秒', '0', '', '2021-12-29 08:40:01'); INSERT INTO `sys_job_log` VALUES (190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2021-12-29 08:50:00'); INSERT INTO `sys_job_log` VALUES (191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2021-12-29 09:00:01'); INSERT INTO `sys_job_log` VALUES (192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1078毫秒', '0', '', '2021-12-29 09:10:01'); INSERT INTO `sys_job_log` VALUES (193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-29 09:20:01'); INSERT INTO `sys_job_log` VALUES (194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:18毫秒', '0', '', '2021-12-29 09:30:00'); INSERT INTO `sys_job_log` VALUES (195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1222毫秒', '0', '', '2021-12-29 09:40:01'); INSERT INTO `sys_job_log` VALUES (196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1077毫秒', '0', '', '2021-12-29 09:50:01'); INSERT INTO `sys_job_log` VALUES (197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1139毫秒', '0', '', '2021-12-29 10:00:01'); INSERT INTO `sys_job_log` VALUES (198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2021-12-29 10:10:00'); INSERT INTO `sys_job_log` VALUES (199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2021-12-29 10:20:00'); INSERT INTO `sys_job_log` VALUES (200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1444毫秒', '0', '', '2021-12-29 10:30:01'); INSERT INTO `sys_job_log` VALUES (201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2021-12-29 10:40:01'); INSERT INTO `sys_job_log` VALUES (202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2021-12-29 10:50:00'); INSERT INTO `sys_job_log` VALUES (203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2021-12-29 11:00:01'); INSERT INTO `sys_job_log` VALUES (204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2021-12-29 11:10:01'); INSERT INTO `sys_job_log` VALUES (205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:23毫秒', '0', '', '2021-12-29 11:20:00'); INSERT INTO `sys_job_log` VALUES (206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1666毫秒', '0', '', '2021-12-29 11:30:01'); INSERT INTO `sys_job_log` VALUES (207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2021-12-29 11:33:00'); INSERT INTO `sys_job_log` VALUES (208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1128毫秒', '0', '', '2021-12-29 11:36:01'); INSERT INTO `sys_job_log` VALUES (209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2021-12-29 11:39:00'); INSERT INTO `sys_job_log` VALUES (210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2021-12-29 11:42:00'); INSERT INTO `sys_job_log` VALUES (211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1074毫秒', '0', '', '2021-12-29 11:45:01'); INSERT INTO `sys_job_log` VALUES (212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2021-12-29 11:48:01'); INSERT INTO `sys_job_log` VALUES (213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2021-12-29 11:51:01'); INSERT INTO `sys_job_log` VALUES (214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2021-12-29 11:54:00'); INSERT INTO `sys_job_log` VALUES (215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2021-12-29 11:57:00'); INSERT INTO `sys_job_log` VALUES (216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2021-12-29 12:00:00'); INSERT INTO `sys_job_log` VALUES (217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2021-12-29 12:03:00'); INSERT INTO `sys_job_log` VALUES (218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2021-12-29 12:06:00'); INSERT INTO `sys_job_log` VALUES (219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2021-12-29 12:09:00'); INSERT INTO `sys_job_log` VALUES (220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2021-12-29 12:12:01'); INSERT INTO `sys_job_log` VALUES (221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2021-12-29 12:15:01'); INSERT INTO `sys_job_log` VALUES (222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2021-12-29 12:18:00'); INSERT INTO `sys_job_log` VALUES (223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2021-12-29 12:21:00'); INSERT INTO `sys_job_log` VALUES (224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2021-12-29 12:24:01'); INSERT INTO `sys_job_log` VALUES (225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2021-12-29 12:27:00'); INSERT INTO `sys_job_log` VALUES (226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2021-12-29 12:30:00'); INSERT INTO `sys_job_log` VALUES (227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2021-12-29 12:33:00'); INSERT INTO `sys_job_log` VALUES (228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2021-12-29 12:36:01'); INSERT INTO `sys_job_log` VALUES (229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2021-12-29 12:39:00'); INSERT INTO `sys_job_log` VALUES (230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2021-12-29 12:42:01'); INSERT INTO `sys_job_log` VALUES (231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2021-12-29 12:45:00'); INSERT INTO `sys_job_log` VALUES (232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2021-12-29 12:48:01'); INSERT INTO `sys_job_log` VALUES (233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2018毫秒', '0', '', '2021-12-29 12:51:02'); INSERT INTO `sys_job_log` VALUES (234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2021-12-29 13:03:36'); INSERT INTO `sys_job_log` VALUES (235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2021-12-29 13:03:36'); INSERT INTO `sys_job_log` VALUES (236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-29 13:03:36'); INSERT INTO `sys_job_log` VALUES (237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2021-12-29 13:03:36'); INSERT INTO `sys_job_log` VALUES (238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2021-12-29 13:06:00'); INSERT INTO `sys_job_log` VALUES (239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1071毫秒', '0', '', '2021-12-29 13:09:01'); INSERT INTO `sys_job_log` VALUES (240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2021-12-29 13:12:01'); INSERT INTO `sys_job_log` VALUES (241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2021-12-29 13:15:00'); INSERT INTO `sys_job_log` VALUES (242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1079毫秒', '0', '', '2021-12-29 13:18:01'); INSERT INTO `sys_job_log` VALUES (243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2021-12-29 13:21:00'); INSERT INTO `sys_job_log` VALUES (244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2021-12-29 13:24:01'); INSERT INTO `sys_job_log` VALUES (245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-29 13:27:01'); INSERT INTO `sys_job_log` VALUES (246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2021-12-29 13:30:00'); INSERT INTO `sys_job_log` VALUES (247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2021-12-29 13:33:01'); INSERT INTO `sys_job_log` VALUES (248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2021-12-29 13:36:01'); INSERT INTO `sys_job_log` VALUES (249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2021-12-29 13:39:01'); INSERT INTO `sys_job_log` VALUES (250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2021-12-29 13:42:00'); INSERT INTO `sys_job_log` VALUES (251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2021-12-29 13:45:00'); INSERT INTO `sys_job_log` VALUES (252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2021-12-29 13:48:00'); INSERT INTO `sys_job_log` VALUES (253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:711毫秒', '0', '', '2021-12-29 13:51:00'); INSERT INTO `sys_job_log` VALUES (254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2021-12-29 13:54:01'); INSERT INTO `sys_job_log` VALUES (255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1130毫秒', '0', '', '2021-12-29 13:57:01'); INSERT INTO `sys_job_log` VALUES (256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2021-12-29 14:00:02'); INSERT INTO `sys_job_log` VALUES (257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2021-12-29 14:03:01'); INSERT INTO `sys_job_log` VALUES (258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1759毫秒', '0', '', '2021-12-29 14:06:01'); INSERT INTO `sys_job_log` VALUES (259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:789毫秒', '0', '', '2021-12-29 14:09:00'); INSERT INTO `sys_job_log` VALUES (260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2021-12-29 14:12:00'); INSERT INTO `sys_job_log` VALUES (261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2012毫秒', '0', '', '2021-12-29 14:15:02'); INSERT INTO `sys_job_log` VALUES (262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:727毫秒', '0', '', '2021-12-29 14:18:00'); INSERT INTO `sys_job_log` VALUES (263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2021-12-29 14:21:00'); INSERT INTO `sys_job_log` VALUES (264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:602毫秒', '0', '', '2021-12-29 14:24:00'); INSERT INTO `sys_job_log` VALUES (265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1569毫秒', '0', '', '2021-12-29 14:27:01'); INSERT INTO `sys_job_log` VALUES (266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1625毫秒', '0', '', '2021-12-29 14:30:01'); INSERT INTO `sys_job_log` VALUES (267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2021-12-29 14:33:01'); INSERT INTO `sys_job_log` VALUES (268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2021-12-29 14:36:00'); INSERT INTO `sys_job_log` VALUES (269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1079毫秒', '0', '', '2021-12-29 14:39:01'); INSERT INTO `sys_job_log` VALUES (270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2021-12-29 14:42:00'); INSERT INTO `sys_job_log` VALUES (271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-29 14:45:00'); INSERT INTO `sys_job_log` VALUES (272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2021-12-29 14:48:00'); INSERT INTO `sys_job_log` VALUES (273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2021-12-29 14:51:01'); INSERT INTO `sys_job_log` VALUES (274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2021-12-29 14:54:00'); INSERT INTO `sys_job_log` VALUES (275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2021-12-29 14:57:00'); INSERT INTO `sys_job_log` VALUES (276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2021-12-29 15:00:00'); INSERT INTO `sys_job_log` VALUES (277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2014毫秒', '0', '', '2021-12-29 15:03:02'); INSERT INTO `sys_job_log` VALUES (278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2021-12-29 15:06:00'); INSERT INTO `sys_job_log` VALUES (279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2021-12-29 15:09:01'); INSERT INTO `sys_job_log` VALUES (280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2021-12-29 15:12:00'); INSERT INTO `sys_job_log` VALUES (281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2021-12-29 15:15:00'); INSERT INTO `sys_job_log` VALUES (282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2021-12-29 15:18:00'); INSERT INTO `sys_job_log` VALUES (283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2021-12-29 15:21:01'); INSERT INTO `sys_job_log` VALUES (284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2021-12-29 15:24:00'); INSERT INTO `sys_job_log` VALUES (285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1077毫秒', '0', '', '2021-12-29 15:27:01'); INSERT INTO `sys_job_log` VALUES (286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2021-12-29 15:30:00'); INSERT INTO `sys_job_log` VALUES (287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2021-12-29 15:33:00'); INSERT INTO `sys_job_log` VALUES (288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2021-12-29 15:36:00'); INSERT INTO `sys_job_log` VALUES (289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:307毫秒', '0', '', '2021-12-29 15:39:00'); INSERT INTO `sys_job_log` VALUES (290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:850毫秒', '0', '', '2021-12-29 15:45:00'); INSERT INTO `sys_job_log` VALUES (291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2021-12-29 15:48:01'); INSERT INTO `sys_job_log` VALUES (292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2021-12-29 15:51:01'); INSERT INTO `sys_job_log` VALUES (293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2021-12-29 15:54:01'); INSERT INTO `sys_job_log` VALUES (294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2021-12-29 15:57:01'); INSERT INTO `sys_job_log` VALUES (295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1075毫秒', '0', '', '2021-12-29 16:00:01'); INSERT INTO `sys_job_log` VALUES (296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2021-12-29 16:03:00'); INSERT INTO `sys_job_log` VALUES (297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2021-12-29 16:06:01'); INSERT INTO `sys_job_log` VALUES (298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2007毫秒', '0', '', '2021-12-29 16:09:02'); INSERT INTO `sys_job_log` VALUES (299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2021-12-29 16:12:00'); INSERT INTO `sys_job_log` VALUES (300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2021-12-29 16:15:00'); INSERT INTO `sys_job_log` VALUES (301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:285毫秒', '0', '', '2021-12-29 16:18:00'); INSERT INTO `sys_job_log` VALUES (302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:908毫秒', '0', '', '2021-12-29 18:42:00'); INSERT INTO `sys_job_log` VALUES (303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:10毫秒', '0', '', '2021-12-29 18:45:00'); INSERT INTO `sys_job_log` VALUES (304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:653毫秒', '0', '', '2021-12-29 18:48:00'); INSERT INTO `sys_job_log` VALUES (305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2021-12-29 18:51:00'); INSERT INTO `sys_job_log` VALUES (306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2021-12-29 18:54:00'); INSERT INTO `sys_job_log` VALUES (307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2021-12-29 18:57:00'); INSERT INTO `sys_job_log` VALUES (308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2021-12-29 19:00:00'); INSERT INTO `sys_job_log` VALUES (309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:632毫秒', '0', '', '2021-12-29 19:03:00'); INSERT INTO `sys_job_log` VALUES (310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2021-12-29 19:06:00'); INSERT INTO `sys_job_log` VALUES (311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2021-12-29 19:09:00'); INSERT INTO `sys_job_log` VALUES (312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2021-12-29 19:12:00'); INSERT INTO `sys_job_log` VALUES (313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2021-12-29 19:15:00'); INSERT INTO `sys_job_log` VALUES (314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2021-12-29 19:18:00'); INSERT INTO `sys_job_log` VALUES (315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:684毫秒', '0', '', '2021-12-29 19:21:00'); INSERT INTO `sys_job_log` VALUES (316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2021-12-29 19:24:00'); INSERT INTO `sys_job_log` VALUES (317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2021-12-29 19:27:00'); INSERT INTO `sys_job_log` VALUES (318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:551毫秒', '0', '', '2021-12-29 19:30:00'); INSERT INTO `sys_job_log` VALUES (319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:488毫秒', '0', '', '2021-12-29 19:33:00'); INSERT INTO `sys_job_log` VALUES (320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:993毫秒', '0', '', '2021-12-29 19:36:01'); INSERT INTO `sys_job_log` VALUES (321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:379毫秒', '0', '', '2021-12-29 19:39:00'); INSERT INTO `sys_job_log` VALUES (322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:963毫秒', '0', '', '2021-12-29 19:45:01'); INSERT INTO `sys_job_log` VALUES (323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2021-12-29 19:48:00'); INSERT INTO `sys_job_log` VALUES (324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2021-12-29 19:51:00'); INSERT INTO `sys_job_log` VALUES (325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2021-12-29 19:54:00'); INSERT INTO `sys_job_log` VALUES (326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2021-12-29 19:57:00'); INSERT INTO `sys_job_log` VALUES (327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2021-12-29 20:00:00'); INSERT INTO `sys_job_log` VALUES (328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2021-12-29 20:03:00'); INSERT INTO `sys_job_log` VALUES (329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1150毫秒', '0', '', '2021-12-29 20:18:01'); INSERT INTO `sys_job_log` VALUES (330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2021-12-29 20:21:00'); INSERT INTO `sys_job_log` VALUES (331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2021-12-29 20:24:00'); INSERT INTO `sys_job_log` VALUES (332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2021-12-29 20:27:00'); INSERT INTO `sys_job_log` VALUES (333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2021-12-29 20:30:00'); INSERT INTO `sys_job_log` VALUES (334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2021-12-29 20:33:00'); INSERT INTO `sys_job_log` VALUES (335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2021-12-29 20:36:00'); INSERT INTO `sys_job_log` VALUES (336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2021-12-29 20:39:00'); INSERT INTO `sys_job_log` VALUES (337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2021-12-29 20:42:00'); INSERT INTO `sys_job_log` VALUES (338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2021-12-29 20:45:00'); INSERT INTO `sys_job_log` VALUES (339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2021-12-29 20:48:00'); INSERT INTO `sys_job_log` VALUES (340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:335毫秒', '0', '', '2021-12-29 20:51:00'); INSERT INTO `sys_job_log` VALUES (341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2021-12-29 20:54:00'); INSERT INTO `sys_job_log` VALUES (342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2021-12-29 20:57:00'); INSERT INTO `sys_job_log` VALUES (343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2021-12-29 21:00:00'); INSERT INTO `sys_job_log` VALUES (344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:589毫秒', '0', '', '2021-12-29 21:03:00'); INSERT INTO `sys_job_log` VALUES (345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2021-12-29 21:06:00'); INSERT INTO `sys_job_log` VALUES (346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2021-12-29 21:09:00'); INSERT INTO `sys_job_log` VALUES (347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2021-12-29 21:12:00'); INSERT INTO `sys_job_log` VALUES (348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2021-12-29 21:15:00'); INSERT INTO `sys_job_log` VALUES (349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2021-12-29 21:18:00'); INSERT INTO `sys_job_log` VALUES (350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2021-12-29 21:21:00'); INSERT INTO `sys_job_log` VALUES (351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2021-12-29 21:24:00'); INSERT INTO `sys_job_log` VALUES (352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2021-12-29 21:27:00'); INSERT INTO `sys_job_log` VALUES (353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2021-12-29 21:30:00'); INSERT INTO `sys_job_log` VALUES (354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2021-12-29 21:33:00'); INSERT INTO `sys_job_log` VALUES (355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2021-12-29 21:36:00'); INSERT INTO `sys_job_log` VALUES (356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2021-12-29 21:39:00'); INSERT INTO `sys_job_log` VALUES (357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2021-12-29 21:42:00'); INSERT INTO `sys_job_log` VALUES (358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:808毫秒', '0', '', '2021-12-29 21:48:00'); INSERT INTO `sys_job_log` VALUES (359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2021-12-29 21:51:00'); INSERT INTO `sys_job_log` VALUES (360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:655毫秒', '0', '', '2021-12-29 21:54:00'); INSERT INTO `sys_job_log` VALUES (361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:939毫秒', '0', '', '2021-12-29 22:00:01'); INSERT INTO `sys_job_log` VALUES (362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2021-12-29 22:03:00'); INSERT INTO `sys_job_log` VALUES (363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2021-12-29 22:06:00'); INSERT INTO `sys_job_log` VALUES (364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2021-12-29 22:09:00'); INSERT INTO `sys_job_log` VALUES (365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1025毫秒', '0', '', '2021-12-29 22:54:01'); INSERT INTO `sys_job_log` VALUES (366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2021-12-29 22:57:00'); INSERT INTO `sys_job_log` VALUES (367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2021-12-29 23:00:00'); INSERT INTO `sys_job_log` VALUES (368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2021-12-29 23:03:00'); INSERT INTO `sys_job_log` VALUES (369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2021-12-29 23:06:00'); INSERT INTO `sys_job_log` VALUES (370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2021-12-29 23:09:00'); INSERT INTO `sys_job_log` VALUES (371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2021-12-29 23:12:00'); INSERT INTO `sys_job_log` VALUES (372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2021-12-29 23:15:00'); INSERT INTO `sys_job_log` VALUES (373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2021-12-29 23:18:00'); INSERT INTO `sys_job_log` VALUES (374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2021-12-29 23:21:00'); INSERT INTO `sys_job_log` VALUES (375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2021-12-29 23:24:00'); INSERT INTO `sys_job_log` VALUES (376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2021-12-29 23:27:00'); INSERT INTO `sys_job_log` VALUES (377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2021-12-29 23:30:00'); INSERT INTO `sys_job_log` VALUES (378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2021-12-29 23:33:00'); INSERT INTO `sys_job_log` VALUES (379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2021-12-29 23:36:00'); INSERT INTO `sys_job_log` VALUES (380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2021-12-29 23:39:00'); INSERT INTO `sys_job_log` VALUES (381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2021-12-29 23:42:00'); INSERT INTO `sys_job_log` VALUES (382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2021-12-29 23:45:00'); INSERT INTO `sys_job_log` VALUES (383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:848毫秒', '0', '', '2021-12-29 23:48:00'); INSERT INTO `sys_job_log` VALUES (384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2021-12-29 23:51:00'); INSERT INTO `sys_job_log` VALUES (385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2021-12-29 23:54:00'); INSERT INTO `sys_job_log` VALUES (386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2021-12-29 23:57:00'); INSERT INTO `sys_job_log` VALUES (387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2021-12-30 00:00:00'); INSERT INTO `sys_job_log` VALUES (388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2021-12-30 00:03:00'); INSERT INTO `sys_job_log` VALUES (389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2021-12-30 00:06:00'); INSERT INTO `sys_job_log` VALUES (390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:22毫秒', '0', '', '2021-12-30 00:09:00'); INSERT INTO `sys_job_log` VALUES (391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:699毫秒', '0', '', '2021-12-30 00:12:00'); INSERT INTO `sys_job_log` VALUES (392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2021-12-30 00:15:00'); INSERT INTO `sys_job_log` VALUES (393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-30 00:15:35'); INSERT INTO `sys_job_log` VALUES (408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-30 00:15:36'); INSERT INTO `sys_job_log` VALUES (424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-30 00:15:37'); INSERT INTO `sys_job_log` VALUES (425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:49毫秒', '0', '', '2021-12-30 00:15:38'); INSERT INTO `sys_job_log` VALUES (426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2021-12-30 00:15:39'); INSERT INTO `sys_job_log` VALUES (427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2021-12-30 00:15:40'); INSERT INTO `sys_job_log` VALUES (428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-30 00:15:41'); INSERT INTO `sys_job_log` VALUES (429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2021-12-30 00:15:42'); INSERT INTO `sys_job_log` VALUES (430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:43'); INSERT INTO `sys_job_log` VALUES (431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-30 00:15:44'); INSERT INTO `sys_job_log` VALUES (432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-30 00:15:44'); INSERT INTO `sys_job_log` VALUES (433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-30 00:15:45'); INSERT INTO `sys_job_log` VALUES (434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:46'); INSERT INTO `sys_job_log` VALUES (435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-30 00:15:47'); INSERT INTO `sys_job_log` VALUES (436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-30 00:15:48'); INSERT INTO `sys_job_log` VALUES (437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2021-12-30 00:15:49'); INSERT INTO `sys_job_log` VALUES (438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-30 00:15:50'); INSERT INTO `sys_job_log` VALUES (439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 00:15:51'); INSERT INTO `sys_job_log` VALUES (440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-30 00:15:52'); INSERT INTO `sys_job_log` VALUES (441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-30 00:15:53'); INSERT INTO `sys_job_log` VALUES (442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-30 00:15:54'); INSERT INTO `sys_job_log` VALUES (443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2021-12-30 00:15:55'); INSERT INTO `sys_job_log` VALUES (444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-30 00:15:56'); INSERT INTO `sys_job_log` VALUES (445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-30 00:15:57'); INSERT INTO `sys_job_log` VALUES (446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2021-12-30 00:18:00'); INSERT INTO `sys_job_log` VALUES (447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2021-12-30 00:21:00'); INSERT INTO `sys_job_log` VALUES (448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1276毫秒', '0', '', '2021-12-30 00:24:01'); INSERT INTO `sys_job_log` VALUES (449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:16毫秒', '0', '', '2021-12-30 00:27:00'); INSERT INTO `sys_job_log` VALUES (450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2021-12-30 00:30:00'); INSERT INTO `sys_job_log` VALUES (451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2021-12-30 00:33:00'); INSERT INTO `sys_job_log` VALUES (452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2021-12-30 00:36:00'); INSERT INTO `sys_job_log` VALUES (453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2021-12-30 00:39:00'); INSERT INTO `sys_job_log` VALUES (454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1325毫秒', '0', '', '2021-12-30 09:18:01'); INSERT INTO `sys_job_log` VALUES (455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2021-12-30 09:21:00'); INSERT INTO `sys_job_log` VALUES (456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2021-12-30 09:24:01'); INSERT INTO `sys_job_log` VALUES (457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2021-12-30 09:27:00'); INSERT INTO `sys_job_log` VALUES (458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1372毫秒', '0', '', '2021-12-30 09:30:01'); INSERT INTO `sys_job_log` VALUES (459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2021-12-30 09:33:00'); INSERT INTO `sys_job_log` VALUES (460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2021-12-30 09:36:01'); INSERT INTO `sys_job_log` VALUES (461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-30 09:39:01'); INSERT INTO `sys_job_log` VALUES (462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-30 09:42:01'); INSERT INTO `sys_job_log` VALUES (463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2021-12-30 09:45:01'); INSERT INTO `sys_job_log` VALUES (464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2021-12-30 09:48:01'); INSERT INTO `sys_job_log` VALUES (465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2021-12-30 09:51:01'); INSERT INTO `sys_job_log` VALUES (466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2021-12-30 09:54:00'); INSERT INTO `sys_job_log` VALUES (467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2021-12-30 09:57:00'); INSERT INTO `sys_job_log` VALUES (468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2021-12-30 10:00:00'); INSERT INTO `sys_job_log` VALUES (469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2021-12-30 10:03:00'); INSERT INTO `sys_job_log` VALUES (470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2021-12-30 10:06:01'); INSERT INTO `sys_job_log` VALUES (471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1144毫秒', '0', '', '2021-12-30 10:09:01'); INSERT INTO `sys_job_log` VALUES (472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2021-12-30 10:12:01'); INSERT INTO `sys_job_log` VALUES (473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2021-12-30 10:15:01'); INSERT INTO `sys_job_log` VALUES (474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2021-12-30 10:18:01'); INSERT INTO `sys_job_log` VALUES (475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2021-12-30 10:21:01'); INSERT INTO `sys_job_log` VALUES (476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2021-12-30 10:24:01'); INSERT INTO `sys_job_log` VALUES (477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2021-12-30 10:27:00'); INSERT INTO `sys_job_log` VALUES (478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2021-12-30 10:30:01'); INSERT INTO `sys_job_log` VALUES (479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2021-12-30 10:33:01'); INSERT INTO `sys_job_log` VALUES (480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2021-12-30 10:36:00'); INSERT INTO `sys_job_log` VALUES (481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2021-12-30 10:39:00'); INSERT INTO `sys_job_log` VALUES (482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2021-12-30 10:42:01'); INSERT INTO `sys_job_log` VALUES (483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2021-12-30 10:45:01'); INSERT INTO `sys_job_log` VALUES (484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2021-12-30 11:37:32'); INSERT INTO `sys_job_log` VALUES (485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2021-12-30 11:37:32'); INSERT INTO `sys_job_log` VALUES (486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-30 11:37:32'); INSERT INTO `sys_job_log` VALUES (487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-30 11:37:32'); INSERT INTO `sys_job_log` VALUES (488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:48毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:47毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:45毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:43毫秒', '0', '', '2021-12-30 11:37:33'); INSERT INTO `sys_job_log` VALUES (501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2021-12-30 11:39:01'); INSERT INTO `sys_job_log` VALUES (502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2021-12-30 11:42:01'); INSERT INTO `sys_job_log` VALUES (503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2021-12-30 11:45:00'); INSERT INTO `sys_job_log` VALUES (504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2021-12-30 11:48:01'); INSERT INTO `sys_job_log` VALUES (505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-30 11:51:01'); INSERT INTO `sys_job_log` VALUES (506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2021-12-30 11:54:00'); INSERT INTO `sys_job_log` VALUES (507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2021-12-30 11:57:00'); INSERT INTO `sys_job_log` VALUES (508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2021-12-30 12:00:00'); INSERT INTO `sys_job_log` VALUES (509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2021-12-30 12:03:01'); INSERT INTO `sys_job_log` VALUES (510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2021-12-30 12:06:00'); INSERT INTO `sys_job_log` VALUES (511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2021-12-30 12:09:01'); INSERT INTO `sys_job_log` VALUES (512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2021-12-30 12:12:00'); INSERT INTO `sys_job_log` VALUES (513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2021-12-30 12:15:00'); INSERT INTO `sys_job_log` VALUES (514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2021-12-30 12:18:00'); INSERT INTO `sys_job_log` VALUES (515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2021-12-30 12:21:00'); INSERT INTO `sys_job_log` VALUES (516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2021-12-30 12:24:00'); INSERT INTO `sys_job_log` VALUES (517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2021-12-30 12:27:01'); INSERT INTO `sys_job_log` VALUES (518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2021-12-30 12:30:00'); INSERT INTO `sys_job_log` VALUES (519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2021-12-30 12:33:01'); INSERT INTO `sys_job_log` VALUES (520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2021-12-30 12:36:01'); INSERT INTO `sys_job_log` VALUES (521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2021-12-30 12:39:01'); INSERT INTO `sys_job_log` VALUES (522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2021-12-30 12:42:00'); INSERT INTO `sys_job_log` VALUES (523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2021-12-30 12:45:01'); INSERT INTO `sys_job_log` VALUES (524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2021-12-30 12:48:01'); INSERT INTO `sys_job_log` VALUES (525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2021-12-30 12:51:00'); INSERT INTO `sys_job_log` VALUES (526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2021-12-30 12:54:01'); INSERT INTO `sys_job_log` VALUES (527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2021-12-30 12:57:01'); INSERT INTO `sys_job_log` VALUES (528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2021-12-30 13:00:01'); INSERT INTO `sys_job_log` VALUES (529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2021-12-30 13:03:01'); INSERT INTO `sys_job_log` VALUES (530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2021-12-30 13:06:01'); INSERT INTO `sys_job_log` VALUES (531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2021-12-30 13:09:01'); INSERT INTO `sys_job_log` VALUES (532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2021-12-30 13:12:01'); INSERT INTO `sys_job_log` VALUES (533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2021-12-30 13:15:01'); INSERT INTO `sys_job_log` VALUES (534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2021-12-30 13:18:01'); INSERT INTO `sys_job_log` VALUES (535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2021-12-30 13:21:00'); INSERT INTO `sys_job_log` VALUES (536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2021-12-30 13:24:01'); INSERT INTO `sys_job_log` VALUES (537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2021-12-30 13:27:01'); INSERT INTO `sys_job_log` VALUES (538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2021-12-30 13:30:01'); INSERT INTO `sys_job_log` VALUES (539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2021-12-30 13:33:01'); INSERT INTO `sys_job_log` VALUES (540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2021-12-30 13:36:01'); INSERT INTO `sys_job_log` VALUES (541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2021-12-30 13:39:01'); INSERT INTO `sys_job_log` VALUES (542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2021-12-30 13:42:01'); INSERT INTO `sys_job_log` VALUES (543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2021-12-30 13:45:01'); INSERT INTO `sys_job_log` VALUES (544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2021-12-30 13:48:01'); INSERT INTO `sys_job_log` VALUES (545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-30 13:51:01'); INSERT INTO `sys_job_log` VALUES (546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-30 13:54:01'); INSERT INTO `sys_job_log` VALUES (547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2021-12-30 13:57:01'); INSERT INTO `sys_job_log` VALUES (548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-30 14:00:01'); INSERT INTO `sys_job_log` VALUES (549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2021-12-30 14:03:01'); INSERT INTO `sys_job_log` VALUES (550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1379毫秒', '0', '', '2021-12-30 14:06:01'); INSERT INTO `sys_job_log` VALUES (551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2021-12-30 14:09:01'); INSERT INTO `sys_job_log` VALUES (552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-30 14:12:01'); INSERT INTO `sys_job_log` VALUES (553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2021-12-30 14:15:01'); INSERT INTO `sys_job_log` VALUES (554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1135毫秒', '0', '', '2021-12-30 14:18:01'); INSERT INTO `sys_job_log` VALUES (555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-30 14:21:01'); INSERT INTO `sys_job_log` VALUES (556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2021-12-30 14:24:00'); INSERT INTO `sys_job_log` VALUES (557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2021-12-30 14:27:00'); INSERT INTO `sys_job_log` VALUES (558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2021-12-30 14:30:00'); INSERT INTO `sys_job_log` VALUES (559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2027毫秒', '0', '', '2021-12-30 14:33:02'); INSERT INTO `sys_job_log` VALUES (560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2021-12-30 14:36:00'); INSERT INTO `sys_job_log` VALUES (561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2007毫秒', '0', '', '2021-12-30 14:39:02'); INSERT INTO `sys_job_log` VALUES (562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2018毫秒', '0', '', '2021-12-30 14:42:02'); INSERT INTO `sys_job_log` VALUES (563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2021-12-30 14:45:00'); INSERT INTO `sys_job_log` VALUES (564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2021-12-30 14:48:01'); INSERT INTO `sys_job_log` VALUES (565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2021-12-30 14:51:01'); INSERT INTO `sys_job_log` VALUES (566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2021-12-30 14:54:01'); INSERT INTO `sys_job_log` VALUES (567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2021-12-30 14:57:01'); INSERT INTO `sys_job_log` VALUES (568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2021-12-30 15:00:01'); INSERT INTO `sys_job_log` VALUES (569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2021-12-30 15:03:01'); INSERT INTO `sys_job_log` VALUES (570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1573毫秒', '0', '', '2021-12-30 15:06:01'); INSERT INTO `sys_job_log` VALUES (571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2021-12-30 15:06:01'); INSERT INTO `sys_job_log` VALUES (572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1595毫秒', '0', '', '2021-12-30 15:09:01'); INSERT INTO `sys_job_log` VALUES (573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2021-12-30 15:12:01'); INSERT INTO `sys_job_log` VALUES (574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2068毫秒', '0', '', '2021-12-30 15:15:02'); INSERT INTO `sys_job_log` VALUES (575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1128毫秒', '0', '', '2021-12-30 15:18:01'); INSERT INTO `sys_job_log` VALUES (576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:927毫秒', '0', '', '2021-12-30 15:42:01'); INSERT INTO `sys_job_log` VALUES (577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2021-12-30 15:45:00'); INSERT INTO `sys_job_log` VALUES (578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2021-12-30 15:48:01'); INSERT INTO `sys_job_log` VALUES (579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2021-12-30 15:51:01'); INSERT INTO `sys_job_log` VALUES (580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1077毫秒', '0', '', '2021-12-30 15:54:01'); INSERT INTO `sys_job_log` VALUES (581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2021-12-30 15:57:01'); INSERT INTO `sys_job_log` VALUES (582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1077毫秒', '0', '', '2021-12-30 16:00:01'); INSERT INTO `sys_job_log` VALUES (583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2021-12-30 16:03:01'); INSERT INTO `sys_job_log` VALUES (584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2021-12-30 16:06:01'); INSERT INTO `sys_job_log` VALUES (585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1076毫秒', '0', '', '2021-12-30 16:09:01'); INSERT INTO `sys_job_log` VALUES (586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1158毫秒', '0', '', '2021-12-30 16:12:01'); INSERT INTO `sys_job_log` VALUES (587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1079毫秒', '0', '', '2021-12-30 16:15:01'); INSERT INTO `sys_job_log` VALUES (588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2021-12-30 16:18:01'); INSERT INTO `sys_job_log` VALUES (589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1070毫秒', '0', '', '2021-12-30 16:21:01'); INSERT INTO `sys_job_log` VALUES (590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-30 16:24:01'); INSERT INTO `sys_job_log` VALUES (591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2021-12-30 16:27:00'); INSERT INTO `sys_job_log` VALUES (592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2021-12-30 16:30:01'); INSERT INTO `sys_job_log` VALUES (593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2021-12-30 16:33:01'); INSERT INTO `sys_job_log` VALUES (594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1076毫秒', '0', '', '2021-12-30 16:36:01'); INSERT INTO `sys_job_log` VALUES (595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1073毫秒', '0', '', '2021-12-30 16:39:01'); INSERT INTO `sys_job_log` VALUES (596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1077毫秒', '0', '', '2021-12-30 16:42:01'); INSERT INTO `sys_job_log` VALUES (597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2021-12-30 16:45:01'); INSERT INTO `sys_job_log` VALUES (598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2021-12-30 16:48:01'); INSERT INTO `sys_job_log` VALUES (599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2021-12-30 16:51:00'); INSERT INTO `sys_job_log` VALUES (600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2021-12-30 16:54:01'); INSERT INTO `sys_job_log` VALUES (601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2021-12-30 16:57:01'); INSERT INTO `sys_job_log` VALUES (602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2021-12-30 17:00:01'); INSERT INTO `sys_job_log` VALUES (603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1127毫秒', '0', '', '2021-12-30 17:03:01'); INSERT INTO `sys_job_log` VALUES (604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2021-12-30 17:06:01'); INSERT INTO `sys_job_log` VALUES (605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1067毫秒', '0', '', '2021-12-30 17:09:01'); INSERT INTO `sys_job_log` VALUES (606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2021-12-30 17:12:01'); INSERT INTO `sys_job_log` VALUES (607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2021-12-30 17:15:01'); INSERT INTO `sys_job_log` VALUES (608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1123毫秒', '0', '', '2021-12-30 17:18:01'); INSERT INTO `sys_job_log` VALUES (609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2021-12-30 17:21:01'); INSERT INTO `sys_job_log` VALUES (610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2021-12-30 17:24:01'); INSERT INTO `sys_job_log` VALUES (611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2024毫秒', '0', '', '2021-12-30 17:27:02'); INSERT INTO `sys_job_log` VALUES (612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2021-12-30 17:30:02'); INSERT INTO `sys_job_log` VALUES (613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:397毫秒', '0', '', '2021-12-30 18:24:00'); INSERT INTO `sys_job_log` VALUES (614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2021-12-30 18:27:00'); INSERT INTO `sys_job_log` VALUES (615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2021-12-30 18:30:00'); INSERT INTO `sys_job_log` VALUES (616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2021-12-30 18:33:00'); INSERT INTO `sys_job_log` VALUES (617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2021-12-30 18:36:00'); INSERT INTO `sys_job_log` VALUES (618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2021-12-30 18:39:00'); INSERT INTO `sys_job_log` VALUES (619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2021-12-30 18:42:00'); INSERT INTO `sys_job_log` VALUES (620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2021-12-30 18:45:00'); INSERT INTO `sys_job_log` VALUES (621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2021-12-30 18:48:00'); INSERT INTO `sys_job_log` VALUES (622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2021-12-30 18:51:00'); INSERT INTO `sys_job_log` VALUES (623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:289毫秒', '0', '', '2021-12-30 18:54:00'); INSERT INTO `sys_job_log` VALUES (624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2021-12-30 18:57:00'); INSERT INTO `sys_job_log` VALUES (625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2021-12-30 19:00:00'); INSERT INTO `sys_job_log` VALUES (626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:801毫秒', '0', '', '2021-12-30 19:03:00'); INSERT INTO `sys_job_log` VALUES (627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2021-12-30 19:06:00'); INSERT INTO `sys_job_log` VALUES (628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2021-12-30 19:09:00'); INSERT INTO `sys_job_log` VALUES (629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2021-12-30 19:12:00'); INSERT INTO `sys_job_log` VALUES (630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2021-12-30 19:15:00'); INSERT INTO `sys_job_log` VALUES (631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2021-12-30 19:18:00'); INSERT INTO `sys_job_log` VALUES (632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2021-12-30 19:21:00'); INSERT INTO `sys_job_log` VALUES (633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2021-12-30 19:24:00'); INSERT INTO `sys_job_log` VALUES (634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2021-12-30 19:27:00'); INSERT INTO `sys_job_log` VALUES (635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2021-12-30 19:30:00'); INSERT INTO `sys_job_log` VALUES (636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2021-12-30 19:33:00'); INSERT INTO `sys_job_log` VALUES (637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2021-12-30 19:36:00'); INSERT INTO `sys_job_log` VALUES (638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:354毫秒', '0', '', '2021-12-30 19:39:00'); INSERT INTO `sys_job_log` VALUES (639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:997毫秒', '0', '', '2021-12-30 19:42:01'); INSERT INTO `sys_job_log` VALUES (640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2021-12-30 19:45:00'); INSERT INTO `sys_job_log` VALUES (641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2021-12-30 19:48:00'); INSERT INTO `sys_job_log` VALUES (642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:336毫秒', '0', '', '2021-12-30 19:51:00'); INSERT INTO `sys_job_log` VALUES (643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:344毫秒', '0', '', '2021-12-30 19:54:00'); INSERT INTO `sys_job_log` VALUES (644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:451毫秒', '0', '', '2021-12-30 19:57:00'); INSERT INTO `sys_job_log` VALUES (645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2021-12-30 20:00:00'); INSERT INTO `sys_job_log` VALUES (646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2021-12-30 20:03:00'); INSERT INTO `sys_job_log` VALUES (647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2021-12-30 20:06:00'); INSERT INTO `sys_job_log` VALUES (648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2021-12-30 20:09:00'); INSERT INTO `sys_job_log` VALUES (649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2021-12-30 20:12:00'); INSERT INTO `sys_job_log` VALUES (650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2021-12-30 20:15:00'); INSERT INTO `sys_job_log` VALUES (651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:601毫秒', '0', '', '2021-12-30 20:18:00'); INSERT INTO `sys_job_log` VALUES (652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2021-12-30 20:21:00'); INSERT INTO `sys_job_log` VALUES (653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2021-12-30 20:24:00'); INSERT INTO `sys_job_log` VALUES (654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2021-12-30 20:27:00'); INSERT INTO `sys_job_log` VALUES (655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2021-12-30 20:30:00'); INSERT INTO `sys_job_log` VALUES (656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-30 20:33:01'); INSERT INTO `sys_job_log` VALUES (657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2021-12-30 20:36:00'); INSERT INTO `sys_job_log` VALUES (658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2021-12-30 20:39:00'); INSERT INTO `sys_job_log` VALUES (659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2021-12-30 20:42:00'); INSERT INTO `sys_job_log` VALUES (660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:919毫秒', '0', '', '2021-12-30 20:45:00'); INSERT INTO `sys_job_log` VALUES (661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2021-12-30 20:48:00'); INSERT INTO `sys_job_log` VALUES (662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2021-12-30 20:51:00'); INSERT INTO `sys_job_log` VALUES (663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2021-12-30 20:54:00'); INSERT INTO `sys_job_log` VALUES (664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2021-12-30 20:57:00'); INSERT INTO `sys_job_log` VALUES (665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2021-12-30 21:00:00'); INSERT INTO `sys_job_log` VALUES (666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2021-12-30 21:03:00'); INSERT INTO `sys_job_log` VALUES (667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2021-12-30 21:06:00'); INSERT INTO `sys_job_log` VALUES (668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2021-12-30 21:09:00'); INSERT INTO `sys_job_log` VALUES (669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2021-12-30 21:12:00'); INSERT INTO `sys_job_log` VALUES (670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2021-12-30 21:15:00'); INSERT INTO `sys_job_log` VALUES (671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2021-12-30 21:18:00'); INSERT INTO `sys_job_log` VALUES (672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2021-12-30 21:21:00'); INSERT INTO `sys_job_log` VALUES (673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2021-12-30 21:24:00'); INSERT INTO `sys_job_log` VALUES (674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2021-12-30 21:27:00'); INSERT INTO `sys_job_log` VALUES (675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2021-12-30 21:30:00'); INSERT INTO `sys_job_log` VALUES (676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2021-12-30 21:33:00'); INSERT INTO `sys_job_log` VALUES (677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2021-12-30 21:36:00'); INSERT INTO `sys_job_log` VALUES (678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:879毫秒', '0', '', '2021-12-30 21:39:00'); INSERT INTO `sys_job_log` VALUES (679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2021-12-30 21:42:00'); INSERT INTO `sys_job_log` VALUES (680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2021-12-30 21:45:00'); INSERT INTO `sys_job_log` VALUES (681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2021-12-30 21:48:00'); INSERT INTO `sys_job_log` VALUES (682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2021-12-30 21:51:00'); INSERT INTO `sys_job_log` VALUES (683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2021-12-30 21:54:00'); INSERT INTO `sys_job_log` VALUES (684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2021-12-30 21:57:00'); INSERT INTO `sys_job_log` VALUES (685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2021-12-30 22:00:00'); INSERT INTO `sys_job_log` VALUES (686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2021-12-30 22:03:00'); INSERT INTO `sys_job_log` VALUES (687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2021-12-30 22:06:00'); INSERT INTO `sys_job_log` VALUES (688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2021-12-30 22:09:00'); INSERT INTO `sys_job_log` VALUES (689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2021-12-30 22:12:00'); INSERT INTO `sys_job_log` VALUES (690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2021-12-30 22:15:00'); INSERT INTO `sys_job_log` VALUES (691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2021-12-30 22:18:00'); INSERT INTO `sys_job_log` VALUES (692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2021-12-30 22:21:00'); INSERT INTO `sys_job_log` VALUES (693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2021-12-30 22:24:00'); INSERT INTO `sys_job_log` VALUES (694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2021-12-30 22:27:00'); INSERT INTO `sys_job_log` VALUES (695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:293毫秒', '0', '', '2021-12-30 22:30:00'); INSERT INTO `sys_job_log` VALUES (696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2021-12-30 22:33:00'); INSERT INTO `sys_job_log` VALUES (697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2021-12-30 22:36:00'); INSERT INTO `sys_job_log` VALUES (698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2021-12-30 22:39:00'); INSERT INTO `sys_job_log` VALUES (699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2021-12-30 22:42:00'); INSERT INTO `sys_job_log` VALUES (700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2021-12-30 22:45:00'); INSERT INTO `sys_job_log` VALUES (701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2021-12-30 22:48:00'); INSERT INTO `sys_job_log` VALUES (702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2021-12-30 22:51:00'); INSERT INTO `sys_job_log` VALUES (703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2021-12-30 22:54:00'); INSERT INTO `sys_job_log` VALUES (704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2021-12-30 22:57:00'); INSERT INTO `sys_job_log` VALUES (705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2021-12-30 23:00:00'); INSERT INTO `sys_job_log` VALUES (706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:325毫秒', '0', '', '2021-12-30 23:03:00'); INSERT INTO `sys_job_log` VALUES (707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2021-12-30 23:06:00'); INSERT INTO `sys_job_log` VALUES (708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:358毫秒', '0', '', '2021-12-30 23:09:00'); INSERT INTO `sys_job_log` VALUES (709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2021-12-30 23:12:00'); INSERT INTO `sys_job_log` VALUES (710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2021-12-30 23:15:00'); INSERT INTO `sys_job_log` VALUES (711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2021-12-30 23:18:00'); INSERT INTO `sys_job_log` VALUES (712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2021-12-30 23:21:00'); INSERT INTO `sys_job_log` VALUES (713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2021-12-30 23:24:00'); INSERT INTO `sys_job_log` VALUES (714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2021-12-30 23:27:00'); INSERT INTO `sys_job_log` VALUES (715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2021-12-30 23:30:00'); INSERT INTO `sys_job_log` VALUES (716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2021-12-30 23:33:00'); INSERT INTO `sys_job_log` VALUES (717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2021-12-30 23:36:00'); INSERT INTO `sys_job_log` VALUES (718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2021-12-30 23:39:00'); INSERT INTO `sys_job_log` VALUES (719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2021-12-30 23:42:00'); INSERT INTO `sys_job_log` VALUES (720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2021-12-30 23:45:00'); INSERT INTO `sys_job_log` VALUES (721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2021-12-30 23:48:00'); INSERT INTO `sys_job_log` VALUES (722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2021-12-30 23:51:00'); INSERT INTO `sys_job_log` VALUES (723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2021-12-30 23:54:00'); INSERT INTO `sys_job_log` VALUES (724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2021-12-30 23:57:00'); INSERT INTO `sys_job_log` VALUES (725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:308毫秒', '0', '', '2021-12-31 00:00:00'); INSERT INTO `sys_job_log` VALUES (726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2021-12-31 00:03:00'); INSERT INTO `sys_job_log` VALUES (727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2021-12-31 00:06:00'); INSERT INTO `sys_job_log` VALUES (728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-31 00:09:00'); INSERT INTO `sys_job_log` VALUES (729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2021-12-31 00:12:00'); INSERT INTO `sys_job_log` VALUES (730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2021-12-31 00:15:00'); INSERT INTO `sys_job_log` VALUES (731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2021-12-31 00:18:00'); INSERT INTO `sys_job_log` VALUES (732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2021-12-31 00:21:00'); INSERT INTO `sys_job_log` VALUES (733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1827毫秒', '0', '', '2021-12-31 08:45:01'); INSERT INTO `sys_job_log` VALUES (734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2019毫秒', '0', '', '2021-12-31 08:48:02'); INSERT INTO `sys_job_log` VALUES (735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1126毫秒', '0', '', '2021-12-31 08:51:01'); INSERT INTO `sys_job_log` VALUES (736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2021-12-31 08:54:00'); INSERT INTO `sys_job_log` VALUES (737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2021-12-31 08:57:01'); INSERT INTO `sys_job_log` VALUES (738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2021-12-31 09:00:01'); INSERT INTO `sys_job_log` VALUES (739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2021-12-31 09:03:01'); INSERT INTO `sys_job_log` VALUES (740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2021-12-31 09:06:01'); INSERT INTO `sys_job_log` VALUES (741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2021-12-31 09:09:00'); INSERT INTO `sys_job_log` VALUES (742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2021-12-31 09:12:01'); INSERT INTO `sys_job_log` VALUES (743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:582毫秒', '0', '', '2021-12-31 09:15:00'); INSERT INTO `sys_job_log` VALUES (744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2021-12-31 09:18:01'); INSERT INTO `sys_job_log` VALUES (745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-31 09:21:01'); INSERT INTO `sys_job_log` VALUES (746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-31 09:24:01'); INSERT INTO `sys_job_log` VALUES (747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2021-12-31 09:27:00'); INSERT INTO `sys_job_log` VALUES (748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-31 09:30:01'); INSERT INTO `sys_job_log` VALUES (749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2021-12-31 09:33:01'); INSERT INTO `sys_job_log` VALUES (750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2021-12-31 09:36:00'); INSERT INTO `sys_job_log` VALUES (751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2021-12-31 09:39:00'); INSERT INTO `sys_job_log` VALUES (752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2021-12-31 09:42:00'); INSERT INTO `sys_job_log` VALUES (753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2021-12-31 09:45:00'); INSERT INTO `sys_job_log` VALUES (754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2021-12-31 09:48:00'); INSERT INTO `sys_job_log` VALUES (755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-31 09:51:01'); INSERT INTO `sys_job_log` VALUES (756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2021-12-31 09:54:00'); INSERT INTO `sys_job_log` VALUES (757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2021-12-31 09:57:00'); INSERT INTO `sys_job_log` VALUES (758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2021-12-31 10:00:00'); INSERT INTO `sys_job_log` VALUES (759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2021-12-31 10:03:01'); INSERT INTO `sys_job_log` VALUES (760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1070毫秒', '0', '', '2021-12-31 10:06:01'); INSERT INTO `sys_job_log` VALUES (761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2021-12-31 10:09:00'); INSERT INTO `sys_job_log` VALUES (762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2021-12-31 10:12:00'); INSERT INTO `sys_job_log` VALUES (763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2021-12-31 10:15:02'); INSERT INTO `sys_job_log` VALUES (764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-31 10:18:00'); INSERT INTO `sys_job_log` VALUES (765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2021-12-31 10:21:00'); INSERT INTO `sys_job_log` VALUES (766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2021-12-31 10:24:00'); INSERT INTO `sys_job_log` VALUES (767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2021-12-31 10:27:01'); INSERT INTO `sys_job_log` VALUES (768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1071毫秒', '0', '', '2021-12-31 10:30:01'); INSERT INTO `sys_job_log` VALUES (769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2021-12-31 10:33:01'); INSERT INTO `sys_job_log` VALUES (770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2021-12-31 10:36:00'); INSERT INTO `sys_job_log` VALUES (771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2021-12-31 10:39:00'); INSERT INTO `sys_job_log` VALUES (772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-31 10:42:01'); INSERT INTO `sys_job_log` VALUES (773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2021-12-31 10:45:00'); INSERT INTO `sys_job_log` VALUES (774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2021-12-31 10:48:00'); INSERT INTO `sys_job_log` VALUES (775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2021-12-31 10:51:01'); INSERT INTO `sys_job_log` VALUES (776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2021-12-31 10:54:00'); INSERT INTO `sys_job_log` VALUES (777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2021-12-31 10:57:00'); INSERT INTO `sys_job_log` VALUES (778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2021-12-31 11:00:02'); INSERT INTO `sys_job_log` VALUES (779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1076毫秒', '0', '', '2021-12-31 11:03:01'); INSERT INTO `sys_job_log` VALUES (780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2021-12-31 11:06:01'); INSERT INTO `sys_job_log` VALUES (781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2021-12-31 11:09:01'); INSERT INTO `sys_job_log` VALUES (782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2021-12-31 11:12:01'); INSERT INTO `sys_job_log` VALUES (783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2021-12-31 11:15:01'); INSERT INTO `sys_job_log` VALUES (784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2021-12-31 11:18:01'); INSERT INTO `sys_job_log` VALUES (785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1072毫秒', '0', '', '2021-12-31 11:21:01'); INSERT INTO `sys_job_log` VALUES (786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2021-12-31 11:24:01'); INSERT INTO `sys_job_log` VALUES (787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-31 11:27:01'); INSERT INTO `sys_job_log` VALUES (788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2021-12-31 11:30:01'); INSERT INTO `sys_job_log` VALUES (789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2021-12-31 11:33:01'); INSERT INTO `sys_job_log` VALUES (790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1076毫秒', '0', '', '2021-12-31 11:36:01'); INSERT INTO `sys_job_log` VALUES (791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2021-12-31 11:39:00'); INSERT INTO `sys_job_log` VALUES (792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1082毫秒', '0', '', '2021-12-31 11:42:01'); INSERT INTO `sys_job_log` VALUES (793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2021-12-31 11:45:01'); INSERT INTO `sys_job_log` VALUES (794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2021-12-31 11:48:00'); INSERT INTO `sys_job_log` VALUES (795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1082毫秒', '0', '', '2021-12-31 11:51:01'); INSERT INTO `sys_job_log` VALUES (796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2021-12-31 11:54:00'); INSERT INTO `sys_job_log` VALUES (797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2021-12-31 11:57:00'); INSERT INTO `sys_job_log` VALUES (798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2021-12-31 12:00:01'); INSERT INTO `sys_job_log` VALUES (799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1078毫秒', '0', '', '2021-12-31 12:03:01'); INSERT INTO `sys_job_log` VALUES (800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2021-12-31 12:06:00'); INSERT INTO `sys_job_log` VALUES (801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2021-12-31 12:09:00'); INSERT INTO `sys_job_log` VALUES (802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2021-12-31 12:12:01'); INSERT INTO `sys_job_log` VALUES (803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2021-12-31 12:29:20'); INSERT INTO `sys_job_log` VALUES (804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2021-12-31 12:29:20'); INSERT INTO `sys_job_log` VALUES (805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:50毫秒', '0', '', '2021-12-31 12:29:20'); INSERT INTO `sys_job_log` VALUES (806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:46毫秒', '0', '', '2021-12-31 12:29:20'); INSERT INTO `sys_job_log` VALUES (807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2021-12-31 12:29:20'); INSERT INTO `sys_job_log` VALUES (808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2021-12-31 12:30:00'); INSERT INTO `sys_job_log` VALUES (809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2021-12-31 12:33:01'); INSERT INTO `sys_job_log` VALUES (810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2021-12-31 12:36:00'); INSERT INTO `sys_job_log` VALUES (811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2021-12-31 12:39:00'); INSERT INTO `sys_job_log` VALUES (812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1076毫秒', '0', '', '2021-12-31 12:42:01'); INSERT INTO `sys_job_log` VALUES (813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2021-12-31 12:45:00'); INSERT INTO `sys_job_log` VALUES (814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2021-12-31 12:48:00'); INSERT INTO `sys_job_log` VALUES (815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2021-12-31 12:51:00'); INSERT INTO `sys_job_log` VALUES (816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2021-12-31 12:54:00'); INSERT INTO `sys_job_log` VALUES (817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2021-12-31 12:57:00'); INSERT INTO `sys_job_log` VALUES (818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1082毫秒', '0', '', '2021-12-31 13:00:01'); INSERT INTO `sys_job_log` VALUES (819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-31 13:03:01'); INSERT INTO `sys_job_log` VALUES (820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2021-12-31 13:06:01'); INSERT INTO `sys_job_log` VALUES (821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2021-12-31 13:09:00'); INSERT INTO `sys_job_log` VALUES (822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2021-12-31 13:12:00'); INSERT INTO `sys_job_log` VALUES (823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2021-12-31 13:15:00'); INSERT INTO `sys_job_log` VALUES (824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2021-12-31 13:18:01'); INSERT INTO `sys_job_log` VALUES (825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1132毫秒', '0', '', '2021-12-31 13:21:01'); INSERT INTO `sys_job_log` VALUES (826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-31 13:24:01'); INSERT INTO `sys_job_log` VALUES (827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2021毫秒', '0', '', '2021-12-31 13:27:02'); INSERT INTO `sys_job_log` VALUES (828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2021-12-31 13:30:02'); INSERT INTO `sys_job_log` VALUES (829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2021-12-31 13:33:01'); INSERT INTO `sys_job_log` VALUES (830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-31 13:36:01'); INSERT INTO `sys_job_log` VALUES (831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2021-12-31 13:39:01'); INSERT INTO `sys_job_log` VALUES (832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1079毫秒', '0', '', '2021-12-31 13:42:01'); INSERT INTO `sys_job_log` VALUES (833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2021-12-31 13:45:01'); INSERT INTO `sys_job_log` VALUES (834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2021-12-31 13:48:01'); INSERT INTO `sys_job_log` VALUES (835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2021-12-31 13:51:01'); INSERT INTO `sys_job_log` VALUES (836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2021-12-31 13:54:01'); INSERT INTO `sys_job_log` VALUES (837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1074毫秒', '0', '', '2021-12-31 13:57:01'); INSERT INTO `sys_job_log` VALUES (838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1082毫秒', '0', '', '2021-12-31 14:00:01'); INSERT INTO `sys_job_log` VALUES (839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1071毫秒', '0', '', '2021-12-31 14:03:01'); INSERT INTO `sys_job_log` VALUES (840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2021-12-31 14:06:00'); INSERT INTO `sys_job_log` VALUES (841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2021-12-31 14:09:01'); INSERT INTO `sys_job_log` VALUES (842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2021-12-31 14:12:00'); INSERT INTO `sys_job_log` VALUES (843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2021-12-31 14:15:01'); INSERT INTO `sys_job_log` VALUES (844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2021-12-31 14:18:01'); INSERT INTO `sys_job_log` VALUES (845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2021-12-31 14:21:00'); INSERT INTO `sys_job_log` VALUES (846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2021-12-31 14:24:01'); INSERT INTO `sys_job_log` VALUES (847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2021-12-31 14:27:00'); INSERT INTO `sys_job_log` VALUES (848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2021-12-31 14:30:00'); INSERT INTO `sys_job_log` VALUES (849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2021-12-31 14:33:00'); INSERT INTO `sys_job_log` VALUES (850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2021-12-31 14:36:01'); INSERT INTO `sys_job_log` VALUES (851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2021-12-31 14:39:00'); INSERT INTO `sys_job_log` VALUES (852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2021-12-31 14:42:00'); INSERT INTO `sys_job_log` VALUES (853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2021-12-31 14:45:01'); INSERT INTO `sys_job_log` VALUES (854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1075毫秒', '0', '', '2021-12-31 14:48:01'); INSERT INTO `sys_job_log` VALUES (855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2021-12-31 14:51:00'); INSERT INTO `sys_job_log` VALUES (856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2021-12-31 14:54:00'); INSERT INTO `sys_job_log` VALUES (857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2021-12-31 14:57:01'); INSERT INTO `sys_job_log` VALUES (858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1117毫秒', '0', '', '2021-12-31 15:00:01'); INSERT INTO `sys_job_log` VALUES (859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1078毫秒', '0', '', '2021-12-31 15:03:01'); INSERT INTO `sys_job_log` VALUES (860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2021-12-31 15:06:01'); INSERT INTO `sys_job_log` VALUES (861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2021-12-31 15:09:00'); INSERT INTO `sys_job_log` VALUES (862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2021-12-31 15:12:01'); INSERT INTO `sys_job_log` VALUES (863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2021-12-31 15:15:01'); INSERT INTO `sys_job_log` VALUES (864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2021-12-31 15:18:00'); INSERT INTO `sys_job_log` VALUES (865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1078毫秒', '0', '', '2021-12-31 15:21:01'); INSERT INTO `sys_job_log` VALUES (866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2021-12-31 15:24:01'); INSERT INTO `sys_job_log` VALUES (867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1071毫秒', '0', '', '2021-12-31 15:27:01'); INSERT INTO `sys_job_log` VALUES (868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2021-12-31 15:30:01'); INSERT INTO `sys_job_log` VALUES (869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2021-12-31 15:33:01'); INSERT INTO `sys_job_log` VALUES (870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2021-12-31 15:36:01'); INSERT INTO `sys_job_log` VALUES (871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2021-12-31 15:39:00'); INSERT INTO `sys_job_log` VALUES (872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2021-12-31 15:42:01'); INSERT INTO `sys_job_log` VALUES (873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1079毫秒', '0', '', '2021-12-31 15:45:01'); INSERT INTO `sys_job_log` VALUES (874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2021-12-31 15:48:00'); INSERT INTO `sys_job_log` VALUES (875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2021-12-31 15:51:01'); INSERT INTO `sys_job_log` VALUES (876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2021-12-31 15:54:01'); INSERT INTO `sys_job_log` VALUES (877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1079毫秒', '0', '', '2021-12-31 15:57:01'); INSERT INTO `sys_job_log` VALUES (878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1079毫秒', '0', '', '2021-12-31 16:00:01'); INSERT INTO `sys_job_log` VALUES (879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2021-12-31 16:03:00'); INSERT INTO `sys_job_log` VALUES (880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2021-12-31 16:06:00'); INSERT INTO `sys_job_log` VALUES (881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2021-12-31 16:09:00'); INSERT INTO `sys_job_log` VALUES (882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1074毫秒', '0', '', '2021-12-31 16:12:01'); INSERT INTO `sys_job_log` VALUES (883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2021-12-31 16:15:00'); INSERT INTO `sys_job_log` VALUES (884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2021-12-31 16:18:00'); INSERT INTO `sys_job_log` VALUES (885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2021-12-31 16:21:00'); INSERT INTO `sys_job_log` VALUES (886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:948毫秒', '0', '', '2021-12-31 16:57:01'); INSERT INTO `sys_job_log` VALUES (887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2021-12-31 17:00:00'); INSERT INTO `sys_job_log` VALUES (888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2021-12-31 17:03:00'); INSERT INTO `sys_job_log` VALUES (889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2021-12-31 17:06:00'); INSERT INTO `sys_job_log` VALUES (890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2021-12-31 17:09:00'); INSERT INTO `sys_job_log` VALUES (891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2021-12-31 17:12:00'); INSERT INTO `sys_job_log` VALUES (892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2021-12-31 17:15:00'); INSERT INTO `sys_job_log` VALUES (893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2021-12-31 17:18:00'); INSERT INTO `sys_job_log` VALUES (894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2021-12-31 17:21:00'); INSERT INTO `sys_job_log` VALUES (895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2021-12-31 17:24:00'); INSERT INTO `sys_job_log` VALUES (896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2021-12-31 17:27:00'); INSERT INTO `sys_job_log` VALUES (897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2021-12-31 17:30:00'); INSERT INTO `sys_job_log` VALUES (898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2021-12-31 17:33:00'); INSERT INTO `sys_job_log` VALUES (899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2021-12-31 17:36:00'); INSERT INTO `sys_job_log` VALUES (900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2021-12-31 17:39:00'); INSERT INTO `sys_job_log` VALUES (901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2021-12-31 17:42:00'); INSERT INTO `sys_job_log` VALUES (902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2021-12-31 17:45:00'); INSERT INTO `sys_job_log` VALUES (903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2021-12-31 17:48:00'); INSERT INTO `sys_job_log` VALUES (904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2021-12-31 17:51:00'); INSERT INTO `sys_job_log` VALUES (905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2021-12-31 17:54:00'); INSERT INTO `sys_job_log` VALUES (906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2021-12-31 17:57:00'); INSERT INTO `sys_job_log` VALUES (907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:368毫秒', '0', '', '2021-12-31 18:00:00'); INSERT INTO `sys_job_log` VALUES (908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2021-12-31 18:03:00'); INSERT INTO `sys_job_log` VALUES (909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2021-12-31 18:06:00'); INSERT INTO `sys_job_log` VALUES (910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2021-12-31 18:09:00'); INSERT INTO `sys_job_log` VALUES (911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2021-12-31 18:12:00'); INSERT INTO `sys_job_log` VALUES (912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2021-12-31 18:15:00'); INSERT INTO `sys_job_log` VALUES (913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2021-12-31 18:18:00'); INSERT INTO `sys_job_log` VALUES (914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2021-12-31 18:21:00'); INSERT INTO `sys_job_log` VALUES (915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2021-12-31 18:24:00'); INSERT INTO `sys_job_log` VALUES (916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2021-12-31 18:27:00'); INSERT INTO `sys_job_log` VALUES (917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2021-12-31 18:30:00'); INSERT INTO `sys_job_log` VALUES (918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2021-12-31 18:33:00'); INSERT INTO `sys_job_log` VALUES (919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2021-12-31 18:36:00'); INSERT INTO `sys_job_log` VALUES (920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:11毫秒', '0', '', '2021-12-31 18:39:00'); INSERT INTO `sys_job_log` VALUES (921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2021-12-31 18:42:00'); INSERT INTO `sys_job_log` VALUES (922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2021-12-31 18:45:00'); INSERT INTO `sys_job_log` VALUES (923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:743毫秒', '0', '', '2021-12-31 18:48:00'); INSERT INTO `sys_job_log` VALUES (924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2021-12-31 18:51:00'); INSERT INTO `sys_job_log` VALUES (925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2021-12-31 18:54:00'); INSERT INTO `sys_job_log` VALUES (926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:334毫秒', '0', '', '2021-12-31 18:57:00'); INSERT INTO `sys_job_log` VALUES (927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:774毫秒', '0', '', '2021-12-31 19:00:00'); INSERT INTO `sys_job_log` VALUES (928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2021-12-31 19:03:00'); INSERT INTO `sys_job_log` VALUES (929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2021-12-31 19:06:00'); INSERT INTO `sys_job_log` VALUES (930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:355毫秒', '0', '', '2021-12-31 19:09:00'); INSERT INTO `sys_job_log` VALUES (931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:734毫秒', '0', '', '2021-12-31 19:12:00'); INSERT INTO `sys_job_log` VALUES (932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2021-12-31 19:15:00'); INSERT INTO `sys_job_log` VALUES (933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2021-12-31 19:18:00'); INSERT INTO `sys_job_log` VALUES (934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2021-12-31 19:21:00'); INSERT INTO `sys_job_log` VALUES (935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2021-12-31 19:24:00'); INSERT INTO `sys_job_log` VALUES (936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2021-12-31 19:27:00'); INSERT INTO `sys_job_log` VALUES (937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2021-12-31 19:30:00'); INSERT INTO `sys_job_log` VALUES (938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2021-12-31 19:33:00'); INSERT INTO `sys_job_log` VALUES (939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2021-12-31 19:36:00'); INSERT INTO `sys_job_log` VALUES (940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2021-12-31 19:39:00'); INSERT INTO `sys_job_log` VALUES (941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2021-12-31 19:42:00'); INSERT INTO `sys_job_log` VALUES (942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2021-12-31 19:45:00'); INSERT INTO `sys_job_log` VALUES (943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2021-12-31 19:48:00'); INSERT INTO `sys_job_log` VALUES (944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:987毫秒', '0', '', '2021-12-31 19:51:00'); INSERT INTO `sys_job_log` VALUES (945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2021-12-31 19:54:00'); INSERT INTO `sys_job_log` VALUES (946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2021-12-31 19:57:00'); INSERT INTO `sys_job_log` VALUES (947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:740毫秒', '0', '', '2021-12-31 20:00:00'); INSERT INTO `sys_job_log` VALUES (948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2021-12-31 20:03:00'); INSERT INTO `sys_job_log` VALUES (949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2021-12-31 20:06:00'); INSERT INTO `sys_job_log` VALUES (950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2021-12-31 20:09:00'); INSERT INTO `sys_job_log` VALUES (951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2021-12-31 20:12:00'); INSERT INTO `sys_job_log` VALUES (952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2021-12-31 20:15:00'); INSERT INTO `sys_job_log` VALUES (953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2021-12-31 20:18:00'); INSERT INTO `sys_job_log` VALUES (954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2021-12-31 20:21:00'); INSERT INTO `sys_job_log` VALUES (955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2021-12-31 20:24:00'); INSERT INTO `sys_job_log` VALUES (956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2021-12-31 20:27:00'); INSERT INTO `sys_job_log` VALUES (957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2021-12-31 20:30:00'); INSERT INTO `sys_job_log` VALUES (958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2021-12-31 20:33:00'); INSERT INTO `sys_job_log` VALUES (959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2021-12-31 20:36:00'); INSERT INTO `sys_job_log` VALUES (960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2021-12-31 20:39:00'); INSERT INTO `sys_job_log` VALUES (961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2021-12-31 20:42:00'); INSERT INTO `sys_job_log` VALUES (962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2021-12-31 20:45:00'); INSERT INTO `sys_job_log` VALUES (963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2021-12-31 20:48:00'); INSERT INTO `sys_job_log` VALUES (964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2021-12-31 20:51:00'); INSERT INTO `sys_job_log` VALUES (965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2021-12-31 20:54:00'); INSERT INTO `sys_job_log` VALUES (966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2021-12-31 20:57:00'); INSERT INTO `sys_job_log` VALUES (967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2021-12-31 21:00:00'); INSERT INTO `sys_job_log` VALUES (968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2021-12-31 21:03:00'); INSERT INTO `sys_job_log` VALUES (969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2021-12-31 21:06:00'); INSERT INTO `sys_job_log` VALUES (970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2021-12-31 21:09:00'); INSERT INTO `sys_job_log` VALUES (971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2021-12-31 21:12:00'); INSERT INTO `sys_job_log` VALUES (972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2021-12-31 21:15:00'); INSERT INTO `sys_job_log` VALUES (973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2021-12-31 21:18:00'); INSERT INTO `sys_job_log` VALUES (974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2021-12-31 21:21:00'); INSERT INTO `sys_job_log` VALUES (975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:315毫秒', '0', '', '2021-12-31 21:24:00'); INSERT INTO `sys_job_log` VALUES (976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2021-12-31 21:27:00'); INSERT INTO `sys_job_log` VALUES (977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2021-12-31 21:30:00'); INSERT INTO `sys_job_log` VALUES (978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2021-12-31 21:33:00'); INSERT INTO `sys_job_log` VALUES (979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2021-12-31 21:36:00'); INSERT INTO `sys_job_log` VALUES (980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2021-12-31 21:39:00'); INSERT INTO `sys_job_log` VALUES (981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2021-12-31 21:42:00'); INSERT INTO `sys_job_log` VALUES (982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:645毫秒', '0', '', '2021-12-31 21:45:00'); INSERT INTO `sys_job_log` VALUES (983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:912毫秒', '0', '', '2021-12-31 21:48:00'); INSERT INTO `sys_job_log` VALUES (984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2021-12-31 21:51:00'); INSERT INTO `sys_job_log` VALUES (985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2021-12-31 21:54:00'); INSERT INTO `sys_job_log` VALUES (986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2021-12-31 21:57:00'); INSERT INTO `sys_job_log` VALUES (987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2021-12-31 22:00:00'); INSERT INTO `sys_job_log` VALUES (988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2021-12-31 22:03:00'); INSERT INTO `sys_job_log` VALUES (989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:539毫秒', '0', '', '2021-12-31 22:06:00'); INSERT INTO `sys_job_log` VALUES (990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2021-12-31 22:09:00'); INSERT INTO `sys_job_log` VALUES (991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2021-12-31 22:12:00'); INSERT INTO `sys_job_log` VALUES (992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:768毫秒', '0', '', '2021-12-31 22:15:00'); INSERT INTO `sys_job_log` VALUES (993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2021-12-31 22:18:00'); INSERT INTO `sys_job_log` VALUES (994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2021-12-31 22:21:00'); INSERT INTO `sys_job_log` VALUES (995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2021-12-31 22:24:00'); INSERT INTO `sys_job_log` VALUES (996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2021-12-31 22:27:00'); INSERT INTO `sys_job_log` VALUES (997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2021-12-31 22:30:00'); INSERT INTO `sys_job_log` VALUES (998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2021-12-31 22:33:00'); INSERT INTO `sys_job_log` VALUES (999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2021-12-31 22:36:00'); INSERT INTO `sys_job_log` VALUES (1000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2021-12-31 22:39:00'); INSERT INTO `sys_job_log` VALUES (1001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2021-12-31 22:42:00'); INSERT INTO `sys_job_log` VALUES (1002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2021-12-31 22:45:00'); INSERT INTO `sys_job_log` VALUES (1003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2021-12-31 22:48:00'); INSERT INTO `sys_job_log` VALUES (1004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2021-12-31 22:51:00'); INSERT INTO `sys_job_log` VALUES (1005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2021-12-31 22:54:00'); INSERT INTO `sys_job_log` VALUES (1006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2021-12-31 22:57:00'); INSERT INTO `sys_job_log` VALUES (1007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2021-12-31 23:00:00'); INSERT INTO `sys_job_log` VALUES (1008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2021-12-31 23:03:00'); INSERT INTO `sys_job_log` VALUES (1009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2021-12-31 23:06:00'); INSERT INTO `sys_job_log` VALUES (1010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2021-12-31 23:09:00'); INSERT INTO `sys_job_log` VALUES (1011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2021-12-31 23:12:00'); INSERT INTO `sys_job_log` VALUES (1012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2021-12-31 23:15:00'); INSERT INTO `sys_job_log` VALUES (1013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2021-12-31 23:18:00'); INSERT INTO `sys_job_log` VALUES (1014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2021-12-31 23:21:00'); INSERT INTO `sys_job_log` VALUES (1015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2021-12-31 23:24:00'); INSERT INTO `sys_job_log` VALUES (1016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2021-12-31 23:27:00'); INSERT INTO `sys_job_log` VALUES (1017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2021-12-31 23:30:00'); INSERT INTO `sys_job_log` VALUES (1018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1197毫秒', '0', '', '2022-01-01 00:57:01'); INSERT INTO `sys_job_log` VALUES (1019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-01 01:00:00'); INSERT INTO `sys_job_log` VALUES (1020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-01 01:03:00'); INSERT INTO `sys_job_log` VALUES (1021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-01 01:06:00'); INSERT INTO `sys_job_log` VALUES (1022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-01 01:09:00'); INSERT INTO `sys_job_log` VALUES (1023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-01 01:12:00'); INSERT INTO `sys_job_log` VALUES (1024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-01 01:15:00'); INSERT INTO `sys_job_log` VALUES (1025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:333毫秒', '0', '', '2022-01-01 01:18:00'); INSERT INTO `sys_job_log` VALUES (1026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-01 01:21:00'); INSERT INTO `sys_job_log` VALUES (1027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-01 01:24:00'); INSERT INTO `sys_job_log` VALUES (1028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2255毫秒', '0', '', '2022-01-01 14:06:02'); INSERT INTO `sys_job_log` VALUES (1029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-01 14:09:00'); INSERT INTO `sys_job_log` VALUES (1030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1123毫秒', '0', '', '2022-01-01 14:18:01'); INSERT INTO `sys_job_log` VALUES (1031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-01 14:21:00'); INSERT INTO `sys_job_log` VALUES (1032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-01 14:24:00'); INSERT INTO `sys_job_log` VALUES (1033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-01 14:27:00'); INSERT INTO `sys_job_log` VALUES (1034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-01 14:30:00'); INSERT INTO `sys_job_log` VALUES (1035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1479毫秒', '0', '', '2022-01-01 14:33:01'); INSERT INTO `sys_job_log` VALUES (1036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-01 15:03:00'); INSERT INTO `sys_job_log` VALUES (1037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-01 15:09:01'); INSERT INTO `sys_job_log` VALUES (1038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-01 15:12:00'); INSERT INTO `sys_job_log` VALUES (1039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-01 15:15:00'); INSERT INTO `sys_job_log` VALUES (1040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-01 15:18:00'); INSERT INTO `sys_job_log` VALUES (1041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-01 15:21:00'); INSERT INTO `sys_job_log` VALUES (1042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-01 15:24:00'); INSERT INTO `sys_job_log` VALUES (1043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-01 15:27:00'); INSERT INTO `sys_job_log` VALUES (1044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-01 15:30:00'); INSERT INTO `sys_job_log` VALUES (1045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:320毫秒', '0', '', '2022-01-01 15:33:00'); INSERT INTO `sys_job_log` VALUES (1046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-01 15:36:00'); INSERT INTO `sys_job_log` VALUES (1047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-01 15:39:00'); INSERT INTO `sys_job_log` VALUES (1048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-01 15:42:00'); INSERT INTO `sys_job_log` VALUES (1049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-01 15:45:00'); INSERT INTO `sys_job_log` VALUES (1050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-01 15:48:00'); INSERT INTO `sys_job_log` VALUES (1051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-01 15:51:00'); INSERT INTO `sys_job_log` VALUES (1052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-01 15:54:00'); INSERT INTO `sys_job_log` VALUES (1053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-01 15:57:00'); INSERT INTO `sys_job_log` VALUES (1054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-01 16:00:00'); INSERT INTO `sys_job_log` VALUES (1055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-01 16:03:00'); INSERT INTO `sys_job_log` VALUES (1056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-01 16:06:00'); INSERT INTO `sys_job_log` VALUES (1057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-01 16:09:00'); INSERT INTO `sys_job_log` VALUES (1058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-01 16:12:00'); INSERT INTO `sys_job_log` VALUES (1059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-01 16:15:00'); INSERT INTO `sys_job_log` VALUES (1060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-01 16:18:00'); INSERT INTO `sys_job_log` VALUES (1061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-01 16:21:00'); INSERT INTO `sys_job_log` VALUES (1062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-01 16:24:00'); INSERT INTO `sys_job_log` VALUES (1063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-01 16:27:00'); INSERT INTO `sys_job_log` VALUES (1064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-01 16:30:00'); INSERT INTO `sys_job_log` VALUES (1065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-01 16:33:00'); INSERT INTO `sys_job_log` VALUES (1066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-01 16:36:00'); INSERT INTO `sys_job_log` VALUES (1067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:297毫秒', '0', '', '2022-01-01 16:39:00'); INSERT INTO `sys_job_log` VALUES (1068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-01 16:42:00'); INSERT INTO `sys_job_log` VALUES (1069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-01 16:45:00'); INSERT INTO `sys_job_log` VALUES (1070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-01 16:48:00'); INSERT INTO `sys_job_log` VALUES (1071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-01 16:51:00'); INSERT INTO `sys_job_log` VALUES (1072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-01 16:54:00'); INSERT INTO `sys_job_log` VALUES (1073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-01 16:57:00'); INSERT INTO `sys_job_log` VALUES (1074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:555毫秒', '0', '', '2022-01-01 17:00:00'); INSERT INTO `sys_job_log` VALUES (1075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-01 17:03:00'); INSERT INTO `sys_job_log` VALUES (1076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-01 17:06:00'); INSERT INTO `sys_job_log` VALUES (1077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-01 17:09:00'); INSERT INTO `sys_job_log` VALUES (1078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-01 17:12:00'); INSERT INTO `sys_job_log` VALUES (1079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-01 17:15:00'); INSERT INTO `sys_job_log` VALUES (1080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-01 17:18:00'); INSERT INTO `sys_job_log` VALUES (1081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-01 17:21:00'); INSERT INTO `sys_job_log` VALUES (1082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-01 17:24:00'); INSERT INTO `sys_job_log` VALUES (1083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-01 17:27:00'); INSERT INTO `sys_job_log` VALUES (1084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-01 17:30:00'); INSERT INTO `sys_job_log` VALUES (1085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-01 17:33:00'); INSERT INTO `sys_job_log` VALUES (1086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:12毫秒', '0', '', '2022-01-01 17:36:00'); INSERT INTO `sys_job_log` VALUES (1087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-01 17:39:00'); INSERT INTO `sys_job_log` VALUES (1088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1539毫秒', '0', '', '2022-01-01 17:42:01'); INSERT INTO `sys_job_log` VALUES (1089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-01 17:45:00'); INSERT INTO `sys_job_log` VALUES (1090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:342毫秒', '0', '', '2022-01-01 17:48:00'); INSERT INTO `sys_job_log` VALUES (1091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:289毫秒', '0', '', '2022-01-01 17:51:00'); INSERT INTO `sys_job_log` VALUES (1092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-01 17:54:00'); INSERT INTO `sys_job_log` VALUES (1093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:428毫秒', '0', '', '2022-01-01 17:57:00'); INSERT INTO `sys_job_log` VALUES (1094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-01 18:00:00'); INSERT INTO `sys_job_log` VALUES (1095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-01 18:03:00'); INSERT INTO `sys_job_log` VALUES (1096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:541毫秒', '0', '', '2022-01-01 18:06:00'); INSERT INTO `sys_job_log` VALUES (1097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-01 18:09:00'); INSERT INTO `sys_job_log` VALUES (1098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-01 18:12:00'); INSERT INTO `sys_job_log` VALUES (1099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-01 18:15:00'); INSERT INTO `sys_job_log` VALUES (1100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-01 18:18:00'); INSERT INTO `sys_job_log` VALUES (1101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2008毫秒', '0', '', '2022-01-01 18:21:02'); INSERT INTO `sys_job_log` VALUES (1102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-01 18:24:00'); INSERT INTO `sys_job_log` VALUES (1103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-01 18:27:00'); INSERT INTO `sys_job_log` VALUES (1104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-01 18:30:00'); INSERT INTO `sys_job_log` VALUES (1105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-01 18:33:00'); INSERT INTO `sys_job_log` VALUES (1106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-01 18:36:00'); INSERT INTO `sys_job_log` VALUES (1107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:352毫秒', '0', '', '2022-01-01 18:39:00'); INSERT INTO `sys_job_log` VALUES (1108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-01 18:42:00'); INSERT INTO `sys_job_log` VALUES (1109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1230毫秒', '0', '', '2022-01-01 18:45:01'); INSERT INTO `sys_job_log` VALUES (1110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-01 18:48:00'); INSERT INTO `sys_job_log` VALUES (1111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-01 18:51:00'); INSERT INTO `sys_job_log` VALUES (1112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-01 18:54:00'); INSERT INTO `sys_job_log` VALUES (1113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-01 18:57:00'); INSERT INTO `sys_job_log` VALUES (1114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-01 19:00:00'); INSERT INTO `sys_job_log` VALUES (1115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-01 19:03:00'); INSERT INTO `sys_job_log` VALUES (1116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-01 19:06:00'); INSERT INTO `sys_job_log` VALUES (1117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-01 19:09:00'); INSERT INTO `sys_job_log` VALUES (1118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-01 19:12:00'); INSERT INTO `sys_job_log` VALUES (1119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-01 19:15:00'); INSERT INTO `sys_job_log` VALUES (1120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-01 19:18:00'); INSERT INTO `sys_job_log` VALUES (1121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-01 19:21:00'); INSERT INTO `sys_job_log` VALUES (1122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-01 19:24:00'); INSERT INTO `sys_job_log` VALUES (1123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-01 19:27:00'); INSERT INTO `sys_job_log` VALUES (1124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-01 19:30:00'); INSERT INTO `sys_job_log` VALUES (1125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-01 19:33:00'); INSERT INTO `sys_job_log` VALUES (1126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-01 19:36:00'); INSERT INTO `sys_job_log` VALUES (1127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-01 19:39:00'); INSERT INTO `sys_job_log` VALUES (1128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:328毫秒', '0', '', '2022-01-01 19:42:00'); INSERT INTO `sys_job_log` VALUES (1129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-01 19:45:00'); INSERT INTO `sys_job_log` VALUES (1130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-01 19:48:00'); INSERT INTO `sys_job_log` VALUES (1131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-01 19:51:00'); INSERT INTO `sys_job_log` VALUES (1132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-01 19:54:00'); INSERT INTO `sys_job_log` VALUES (1133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-01 19:57:00'); INSERT INTO `sys_job_log` VALUES (1134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-01 20:00:00'); INSERT INTO `sys_job_log` VALUES (1135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-01 20:03:00'); INSERT INTO `sys_job_log` VALUES (1136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-01 20:06:00'); INSERT INTO `sys_job_log` VALUES (1137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-01 20:09:00'); INSERT INTO `sys_job_log` VALUES (1138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-01 21:13:38'); INSERT INTO `sys_job_log` VALUES (1139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-01 21:13:38'); INSERT INTO `sys_job_log` VALUES (1140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-01 21:13:38'); INSERT INTO `sys_job_log` VALUES (1141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-01 21:13:38'); INSERT INTO `sys_job_log` VALUES (1142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-01 21:13:38'); INSERT INTO `sys_job_log` VALUES (1143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2022-01-01 21:13:38'); INSERT INTO `sys_job_log` VALUES (1144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-01 21:13:38'); INSERT INTO `sys_job_log` VALUES (1145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-01 21:13:38'); INSERT INTO `sys_job_log` VALUES (1146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-01 21:13:39'); INSERT INTO `sys_job_log` VALUES (1159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-01 21:15:00'); INSERT INTO `sys_job_log` VALUES (1160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-01 21:18:00'); INSERT INTO `sys_job_log` VALUES (1161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-01 21:21:00'); INSERT INTO `sys_job_log` VALUES (1162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-01 21:24:00'); INSERT INTO `sys_job_log` VALUES (1163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-01 21:27:00'); INSERT INTO `sys_job_log` VALUES (1164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-01 21:30:00'); INSERT INTO `sys_job_log` VALUES (1165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-01 21:33:00'); INSERT INTO `sys_job_log` VALUES (1166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-01 21:36:00'); INSERT INTO `sys_job_log` VALUES (1167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-01 21:39:00'); INSERT INTO `sys_job_log` VALUES (1168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-01 21:42:00'); INSERT INTO `sys_job_log` VALUES (1169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-01 21:45:00'); INSERT INTO `sys_job_log` VALUES (1170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-01 21:48:00'); INSERT INTO `sys_job_log` VALUES (1171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-01 21:51:00'); INSERT INTO `sys_job_log` VALUES (1172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-01 21:54:00'); INSERT INTO `sys_job_log` VALUES (1173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-01 21:57:00'); INSERT INTO `sys_job_log` VALUES (1174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-01 22:00:00'); INSERT INTO `sys_job_log` VALUES (1175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:435毫秒', '0', '', '2022-01-01 22:03:00'); INSERT INTO `sys_job_log` VALUES (1176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-01 22:06:00'); INSERT INTO `sys_job_log` VALUES (1177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-01 22:09:00'); INSERT INTO `sys_job_log` VALUES (1178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-01 22:12:00'); INSERT INTO `sys_job_log` VALUES (1179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-01 22:15:00'); INSERT INTO `sys_job_log` VALUES (1180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-01 22:18:00'); INSERT INTO `sys_job_log` VALUES (1181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-01 22:21:00'); INSERT INTO `sys_job_log` VALUES (1182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-01 22:24:00'); INSERT INTO `sys_job_log` VALUES (1183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-01 22:27:00'); INSERT INTO `sys_job_log` VALUES (1184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-01 22:30:00'); INSERT INTO `sys_job_log` VALUES (1185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-01 22:33:00'); INSERT INTO `sys_job_log` VALUES (1186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-01 22:36:00'); INSERT INTO `sys_job_log` VALUES (1187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-01 22:39:00'); INSERT INTO `sys_job_log` VALUES (1188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-01 22:42:00'); INSERT INTO `sys_job_log` VALUES (1189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-01 22:45:00'); INSERT INTO `sys_job_log` VALUES (1190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-01 22:48:00'); INSERT INTO `sys_job_log` VALUES (1191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-01 22:51:00'); INSERT INTO `sys_job_log` VALUES (1192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-01 22:54:00'); INSERT INTO `sys_job_log` VALUES (1193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-01 22:57:00'); INSERT INTO `sys_job_log` VALUES (1194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-01 23:00:00'); INSERT INTO `sys_job_log` VALUES (1195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-01 23:03:00'); INSERT INTO `sys_job_log` VALUES (1196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-01 23:06:00'); INSERT INTO `sys_job_log` VALUES (1197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-01 23:09:00'); INSERT INTO `sys_job_log` VALUES (1198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-01 23:12:00'); INSERT INTO `sys_job_log` VALUES (1199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1656毫秒', '0', '', '2022-01-01 23:24:01'); INSERT INTO `sys_job_log` VALUES (1200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-01 23:27:00'); INSERT INTO `sys_job_log` VALUES (1201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-01 23:30:00'); INSERT INTO `sys_job_log` VALUES (1202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-01 23:33:00'); INSERT INTO `sys_job_log` VALUES (1203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-01 23:36:02'); INSERT INTO `sys_job_log` VALUES (1204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-01 23:39:00'); INSERT INTO `sys_job_log` VALUES (1205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-01 23:42:00'); INSERT INTO `sys_job_log` VALUES (1206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-01 23:45:00'); INSERT INTO `sys_job_log` VALUES (1207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-01 23:48:00'); INSERT INTO `sys_job_log` VALUES (1208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1988毫秒', '0', '', '2022-01-02 12:30:02'); INSERT INTO `sys_job_log` VALUES (1209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:409毫秒', '0', '', '2022-01-02 12:33:00'); INSERT INTO `sys_job_log` VALUES (1210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2013毫秒', '0', '', '2022-01-02 12:36:02'); INSERT INTO `sys_job_log` VALUES (1211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-02 12:39:00'); INSERT INTO `sys_job_log` VALUES (1212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-02 12:42:00'); INSERT INTO `sys_job_log` VALUES (1213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-02 12:45:00'); INSERT INTO `sys_job_log` VALUES (1214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-02 12:48:00'); INSERT INTO `sys_job_log` VALUES (1215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-02 12:51:00'); INSERT INTO `sys_job_log` VALUES (1216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:377毫秒', '0', '', '2022-01-02 12:54:00'); INSERT INTO `sys_job_log` VALUES (1217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-02 12:57:00'); INSERT INTO `sys_job_log` VALUES (1218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-02 13:00:00'); INSERT INTO `sys_job_log` VALUES (1219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-02 13:03:00'); INSERT INTO `sys_job_log` VALUES (1220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-02 13:06:00'); INSERT INTO `sys_job_log` VALUES (1221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-02 13:09:00'); INSERT INTO `sys_job_log` VALUES (1222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:328毫秒', '0', '', '2022-01-02 13:12:00'); INSERT INTO `sys_job_log` VALUES (1223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-02 13:15:00'); INSERT INTO `sys_job_log` VALUES (1224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-02 13:18:00'); INSERT INTO `sys_job_log` VALUES (1225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-02 13:21:00'); INSERT INTO `sys_job_log` VALUES (1226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-02 13:24:00'); INSERT INTO `sys_job_log` VALUES (1227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-02 13:27:02'); INSERT INTO `sys_job_log` VALUES (1228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-02 13:30:00'); INSERT INTO `sys_job_log` VALUES (1229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-02 13:33:00'); INSERT INTO `sys_job_log` VALUES (1230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-02 13:36:00'); INSERT INTO `sys_job_log` VALUES (1231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-02 13:39:00'); INSERT INTO `sys_job_log` VALUES (1232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-02 13:42:00'); INSERT INTO `sys_job_log` VALUES (1233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-02 13:45:00'); INSERT INTO `sys_job_log` VALUES (1234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-02 13:48:00'); INSERT INTO `sys_job_log` VALUES (1235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-02 13:51:00'); INSERT INTO `sys_job_log` VALUES (1236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-02 13:54:00'); INSERT INTO `sys_job_log` VALUES (1237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-02 13:57:00'); INSERT INTO `sys_job_log` VALUES (1238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-02 14:00:00'); INSERT INTO `sys_job_log` VALUES (1239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-02 14:03:00'); INSERT INTO `sys_job_log` VALUES (1240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-02 14:06:00'); INSERT INTO `sys_job_log` VALUES (1241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-02 14:09:00'); INSERT INTO `sys_job_log` VALUES (1242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-02 14:12:00'); INSERT INTO `sys_job_log` VALUES (1243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-02 14:15:00'); INSERT INTO `sys_job_log` VALUES (1244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-02 14:18:00'); INSERT INTO `sys_job_log` VALUES (1245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-02 14:21:00'); INSERT INTO `sys_job_log` VALUES (1246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-02 14:24:00'); INSERT INTO `sys_job_log` VALUES (1247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-02 14:27:00'); INSERT INTO `sys_job_log` VALUES (1248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-02 14:30:00'); INSERT INTO `sys_job_log` VALUES (1249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-02 14:33:00'); INSERT INTO `sys_job_log` VALUES (1250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-02 14:36:00'); INSERT INTO `sys_job_log` VALUES (1251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-02 14:39:00'); INSERT INTO `sys_job_log` VALUES (1252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-02 14:42:00'); INSERT INTO `sys_job_log` VALUES (1253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-02 14:45:00'); INSERT INTO `sys_job_log` VALUES (1254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-02 14:48:00'); INSERT INTO `sys_job_log` VALUES (1255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:380毫秒', '0', '', '2022-01-02 14:51:00'); INSERT INTO `sys_job_log` VALUES (1256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-02 14:54:00'); INSERT INTO `sys_job_log` VALUES (1257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-02 14:57:00'); INSERT INTO `sys_job_log` VALUES (1258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-02 15:00:00'); INSERT INTO `sys_job_log` VALUES (1259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-02 15:03:00'); INSERT INTO `sys_job_log` VALUES (1260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:309毫秒', '0', '', '2022-01-02 15:06:00'); INSERT INTO `sys_job_log` VALUES (1261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-02 15:09:00'); INSERT INTO `sys_job_log` VALUES (1262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-02 15:12:00'); INSERT INTO `sys_job_log` VALUES (1263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-02 15:15:00'); INSERT INTO `sys_job_log` VALUES (1264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-02 15:18:00'); INSERT INTO `sys_job_log` VALUES (1265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-02 15:21:00'); INSERT INTO `sys_job_log` VALUES (1266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-02 15:24:00'); INSERT INTO `sys_job_log` VALUES (1267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-02 15:27:00'); INSERT INTO `sys_job_log` VALUES (1268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:758毫秒', '0', '', '2022-01-02 15:30:00'); INSERT INTO `sys_job_log` VALUES (1269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-02 15:33:00'); INSERT INTO `sys_job_log` VALUES (1270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-02 15:36:00'); INSERT INTO `sys_job_log` VALUES (1271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-02 15:39:00'); INSERT INTO `sys_job_log` VALUES (1272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-02 15:42:00'); INSERT INTO `sys_job_log` VALUES (1273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-02 15:45:00'); INSERT INTO `sys_job_log` VALUES (1274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-02 15:48:00'); INSERT INTO `sys_job_log` VALUES (1275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-02 15:51:00'); INSERT INTO `sys_job_log` VALUES (1276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-02 15:54:00'); INSERT INTO `sys_job_log` VALUES (1277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-02 15:57:00'); INSERT INTO `sys_job_log` VALUES (1278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-02 16:00:00'); INSERT INTO `sys_job_log` VALUES (1279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-02 16:03:00'); INSERT INTO `sys_job_log` VALUES (1280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:377毫秒', '0', '', '2022-01-02 16:06:00'); INSERT INTO `sys_job_log` VALUES (1281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-02 16:09:00'); INSERT INTO `sys_job_log` VALUES (1282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-02 16:12:00'); INSERT INTO `sys_job_log` VALUES (1283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-02 16:15:00'); INSERT INTO `sys_job_log` VALUES (1284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-02 16:18:00'); INSERT INTO `sys_job_log` VALUES (1285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-02 16:21:00'); INSERT INTO `sys_job_log` VALUES (1286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-02 16:24:00'); INSERT INTO `sys_job_log` VALUES (1287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-02 16:27:00'); INSERT INTO `sys_job_log` VALUES (1288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-02 16:30:00'); INSERT INTO `sys_job_log` VALUES (1289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-02 16:33:00'); INSERT INTO `sys_job_log` VALUES (1290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-02 16:36:00'); INSERT INTO `sys_job_log` VALUES (1291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-02 16:39:00'); INSERT INTO `sys_job_log` VALUES (1292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-02 16:42:00'); INSERT INTO `sys_job_log` VALUES (1293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-02 16:45:00'); INSERT INTO `sys_job_log` VALUES (1294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-02 16:48:00'); INSERT INTO `sys_job_log` VALUES (1295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-02 16:51:00'); INSERT INTO `sys_job_log` VALUES (1296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-02 16:54:00'); INSERT INTO `sys_job_log` VALUES (1297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-02 16:57:00'); INSERT INTO `sys_job_log` VALUES (1298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-02 17:00:00'); INSERT INTO `sys_job_log` VALUES (1299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-02 17:03:00'); INSERT INTO `sys_job_log` VALUES (1300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-02 17:06:00'); INSERT INTO `sys_job_log` VALUES (1301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-02 17:09:00'); INSERT INTO `sys_job_log` VALUES (1302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-02 17:12:00'); INSERT INTO `sys_job_log` VALUES (1303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-02 17:15:00'); INSERT INTO `sys_job_log` VALUES (1304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-02 17:18:00'); INSERT INTO `sys_job_log` VALUES (1305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-02 17:21:00'); INSERT INTO `sys_job_log` VALUES (1306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:323毫秒', '0', '', '2022-01-02 17:24:00'); INSERT INTO `sys_job_log` VALUES (1307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-02 17:27:00'); INSERT INTO `sys_job_log` VALUES (1308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-02 17:30:00'); INSERT INTO `sys_job_log` VALUES (1309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-02 17:33:00'); INSERT INTO `sys_job_log` VALUES (1310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-02 17:36:00'); INSERT INTO `sys_job_log` VALUES (1311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-02 17:39:00'); INSERT INTO `sys_job_log` VALUES (1312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-02 17:42:00'); INSERT INTO `sys_job_log` VALUES (1313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-02 17:45:00'); INSERT INTO `sys_job_log` VALUES (1314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-02 17:48:00'); INSERT INTO `sys_job_log` VALUES (1315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-02 17:51:00'); INSERT INTO `sys_job_log` VALUES (1316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-02 17:54:00'); INSERT INTO `sys_job_log` VALUES (1317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-02 17:57:00'); INSERT INTO `sys_job_log` VALUES (1318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-02 18:00:00'); INSERT INTO `sys_job_log` VALUES (1319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-02 18:03:00'); INSERT INTO `sys_job_log` VALUES (1320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-02 18:06:00'); INSERT INTO `sys_job_log` VALUES (1321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-02 18:09:00'); INSERT INTO `sys_job_log` VALUES (1322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-02 18:12:00'); INSERT INTO `sys_job_log` VALUES (1323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-02 18:15:00'); INSERT INTO `sys_job_log` VALUES (1324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-02 18:18:00'); INSERT INTO `sys_job_log` VALUES (1325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-02 18:21:00'); INSERT INTO `sys_job_log` VALUES (1326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-02 18:24:00'); INSERT INTO `sys_job_log` VALUES (1327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-02 18:27:00'); INSERT INTO `sys_job_log` VALUES (1328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-02 18:30:00'); INSERT INTO `sys_job_log` VALUES (1329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-02 18:33:00'); INSERT INTO `sys_job_log` VALUES (1330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-02 18:36:00'); INSERT INTO `sys_job_log` VALUES (1331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-02 18:39:00'); INSERT INTO `sys_job_log` VALUES (1332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:376毫秒', '0', '', '2022-01-02 18:42:00'); INSERT INTO `sys_job_log` VALUES (1333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-02 18:45:00'); INSERT INTO `sys_job_log` VALUES (1334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-02 18:48:00'); INSERT INTO `sys_job_log` VALUES (1335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:859毫秒', '0', '', '2022-01-02 18:51:00'); INSERT INTO `sys_job_log` VALUES (1336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-02 18:54:00'); INSERT INTO `sys_job_log` VALUES (1337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-02 18:57:00'); INSERT INTO `sys_job_log` VALUES (1338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-02 19:00:00'); INSERT INTO `sys_job_log` VALUES (1339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-02 19:03:00'); INSERT INTO `sys_job_log` VALUES (1340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-02 19:06:00'); INSERT INTO `sys_job_log` VALUES (1341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-02 19:09:00'); INSERT INTO `sys_job_log` VALUES (1342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-02 19:12:00'); INSERT INTO `sys_job_log` VALUES (1343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-02 19:15:00'); INSERT INTO `sys_job_log` VALUES (1344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-02 19:18:00'); INSERT INTO `sys_job_log` VALUES (1345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-02 19:21:00'); INSERT INTO `sys_job_log` VALUES (1346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-02 19:24:00'); INSERT INTO `sys_job_log` VALUES (1347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-02 19:27:00'); INSERT INTO `sys_job_log` VALUES (1348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-02 19:30:00'); INSERT INTO `sys_job_log` VALUES (1349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-02 19:33:00'); INSERT INTO `sys_job_log` VALUES (1350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-02 19:36:00'); INSERT INTO `sys_job_log` VALUES (1351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-02 19:39:00'); INSERT INTO `sys_job_log` VALUES (1352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-02 19:42:00'); INSERT INTO `sys_job_log` VALUES (1353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-02 19:45:00'); INSERT INTO `sys_job_log` VALUES (1354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-02 19:48:00'); INSERT INTO `sys_job_log` VALUES (1355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-02 19:51:00'); INSERT INTO `sys_job_log` VALUES (1356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-02 19:54:00'); INSERT INTO `sys_job_log` VALUES (1357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-02 19:57:00'); INSERT INTO `sys_job_log` VALUES (1358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-02 20:00:00'); INSERT INTO `sys_job_log` VALUES (1359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-02 20:03:00'); INSERT INTO `sys_job_log` VALUES (1360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-02 20:06:00'); INSERT INTO `sys_job_log` VALUES (1361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-02 20:09:00'); INSERT INTO `sys_job_log` VALUES (1362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-02 20:12:00'); INSERT INTO `sys_job_log` VALUES (1363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-02 20:15:00'); INSERT INTO `sys_job_log` VALUES (1364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-02 20:18:00'); INSERT INTO `sys_job_log` VALUES (1365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-02 20:21:00'); INSERT INTO `sys_job_log` VALUES (1366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-02 20:24:00'); INSERT INTO `sys_job_log` VALUES (1367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-02 20:27:00'); INSERT INTO `sys_job_log` VALUES (1368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-02 20:30:00'); INSERT INTO `sys_job_log` VALUES (1369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-02 20:33:00'); INSERT INTO `sys_job_log` VALUES (1370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-02 20:36:00'); INSERT INTO `sys_job_log` VALUES (1371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-02 20:39:00'); INSERT INTO `sys_job_log` VALUES (1372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-02 20:42:00'); INSERT INTO `sys_job_log` VALUES (1373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-02 20:45:00'); INSERT INTO `sys_job_log` VALUES (1374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-02 20:48:00'); INSERT INTO `sys_job_log` VALUES (1375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:741毫秒', '0', '', '2022-01-02 20:51:00'); INSERT INTO `sys_job_log` VALUES (1376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-02 20:54:00'); INSERT INTO `sys_job_log` VALUES (1377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-02 20:57:00'); INSERT INTO `sys_job_log` VALUES (1378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-02 21:00:00'); INSERT INTO `sys_job_log` VALUES (1379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-02 21:03:00'); INSERT INTO `sys_job_log` VALUES (1380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-02 21:06:00'); INSERT INTO `sys_job_log` VALUES (1381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-02 21:09:00'); INSERT INTO `sys_job_log` VALUES (1382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-02 21:12:00'); INSERT INTO `sys_job_log` VALUES (1383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-02 21:15:00'); INSERT INTO `sys_job_log` VALUES (1384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-02 21:18:00'); INSERT INTO `sys_job_log` VALUES (1385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-02 21:21:00'); INSERT INTO `sys_job_log` VALUES (1386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-02 21:24:00'); INSERT INTO `sys_job_log` VALUES (1387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-02 21:27:00'); INSERT INTO `sys_job_log` VALUES (1388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-02 21:30:00'); INSERT INTO `sys_job_log` VALUES (1389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-02 21:33:00'); INSERT INTO `sys_job_log` VALUES (1390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-02 21:36:00'); INSERT INTO `sys_job_log` VALUES (1391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-02 21:39:00'); INSERT INTO `sys_job_log` VALUES (1392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:335毫秒', '0', '', '2022-01-02 21:42:00'); INSERT INTO `sys_job_log` VALUES (1393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-02 21:45:00'); INSERT INTO `sys_job_log` VALUES (1394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-02 21:48:00'); INSERT INTO `sys_job_log` VALUES (1395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-02 21:51:00'); INSERT INTO `sys_job_log` VALUES (1396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-02 21:54:00'); INSERT INTO `sys_job_log` VALUES (1397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-02 21:57:00'); INSERT INTO `sys_job_log` VALUES (1398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-02 22:00:00'); INSERT INTO `sys_job_log` VALUES (1399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-02 22:03:00'); INSERT INTO `sys_job_log` VALUES (1400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-02 22:06:00'); INSERT INTO `sys_job_log` VALUES (1401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-02 22:09:00'); INSERT INTO `sys_job_log` VALUES (1402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-02 22:12:00'); INSERT INTO `sys_job_log` VALUES (1403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-03 19:03:00'); INSERT INTO `sys_job_log` VALUES (1404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-03 19:06:00'); INSERT INTO `sys_job_log` VALUES (1405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-03 19:09:00'); INSERT INTO `sys_job_log` VALUES (1406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-03 19:12:00'); INSERT INTO `sys_job_log` VALUES (1407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:385毫秒', '0', '', '2022-01-03 19:15:00'); INSERT INTO `sys_job_log` VALUES (1408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-03 19:18:00'); INSERT INTO `sys_job_log` VALUES (1409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-03 19:21:00'); INSERT INTO `sys_job_log` VALUES (1410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-03 19:24:00'); INSERT INTO `sys_job_log` VALUES (1411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-03 19:27:00'); INSERT INTO `sys_job_log` VALUES (1412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-03 19:30:00'); INSERT INTO `sys_job_log` VALUES (1413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-03 19:33:00'); INSERT INTO `sys_job_log` VALUES (1414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-03 19:36:00'); INSERT INTO `sys_job_log` VALUES (1415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-03 19:39:00'); INSERT INTO `sys_job_log` VALUES (1416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-03 19:42:00'); INSERT INTO `sys_job_log` VALUES (1417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-03 19:45:00'); INSERT INTO `sys_job_log` VALUES (1418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-03 19:48:00'); INSERT INTO `sys_job_log` VALUES (1419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:404毫秒', '0', '', '2022-01-03 19:51:00'); INSERT INTO `sys_job_log` VALUES (1420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-03 19:54:00'); INSERT INTO `sys_job_log` VALUES (1421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-03 19:57:00'); INSERT INTO `sys_job_log` VALUES (1422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-03 20:00:00'); INSERT INTO `sys_job_log` VALUES (1423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-03 20:03:00'); INSERT INTO `sys_job_log` VALUES (1424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-03 20:06:00'); INSERT INTO `sys_job_log` VALUES (1425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-03 20:09:00'); INSERT INTO `sys_job_log` VALUES (1426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-03 20:12:00'); INSERT INTO `sys_job_log` VALUES (1427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-03 20:15:00'); INSERT INTO `sys_job_log` VALUES (1428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-03 20:18:00'); INSERT INTO `sys_job_log` VALUES (1429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-03 20:21:00'); INSERT INTO `sys_job_log` VALUES (1430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-03 20:24:00'); INSERT INTO `sys_job_log` VALUES (1431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-03 20:27:00'); INSERT INTO `sys_job_log` VALUES (1432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-03 20:30:00'); INSERT INTO `sys_job_log` VALUES (1433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-03 20:33:00'); INSERT INTO `sys_job_log` VALUES (1434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-03 20:36:00'); INSERT INTO `sys_job_log` VALUES (1435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-03 20:39:00'); INSERT INTO `sys_job_log` VALUES (1436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-03 20:42:00'); INSERT INTO `sys_job_log` VALUES (1437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-03 20:45:00'); INSERT INTO `sys_job_log` VALUES (1438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-03 20:48:00'); INSERT INTO `sys_job_log` VALUES (1439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-03 20:51:00'); INSERT INTO `sys_job_log` VALUES (1440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-03 20:54:00'); INSERT INTO `sys_job_log` VALUES (1441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-03 20:57:00'); INSERT INTO `sys_job_log` VALUES (1442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-03 21:00:00'); INSERT INTO `sys_job_log` VALUES (1443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-03 21:03:00'); INSERT INTO `sys_job_log` VALUES (1444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-03 21:06:00'); INSERT INTO `sys_job_log` VALUES (1445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:378毫秒', '0', '', '2022-01-03 21:09:00'); INSERT INTO `sys_job_log` VALUES (1446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-03 21:12:00'); INSERT INTO `sys_job_log` VALUES (1447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-03 21:15:00'); INSERT INTO `sys_job_log` VALUES (1448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-03 21:18:00'); INSERT INTO `sys_job_log` VALUES (1449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-03 21:21:00'); INSERT INTO `sys_job_log` VALUES (1450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-03 21:24:00'); INSERT INTO `sys_job_log` VALUES (1451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-03 21:27:00'); INSERT INTO `sys_job_log` VALUES (1452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-03 21:30:00'); INSERT INTO `sys_job_log` VALUES (1453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:558毫秒', '0', '', '2022-01-03 21:33:00'); INSERT INTO `sys_job_log` VALUES (1454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-03 21:36:00'); INSERT INTO `sys_job_log` VALUES (1455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-03 21:39:00'); INSERT INTO `sys_job_log` VALUES (1456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-03 21:42:00'); INSERT INTO `sys_job_log` VALUES (1457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-03 21:45:00'); INSERT INTO `sys_job_log` VALUES (1458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-03 21:48:00'); INSERT INTO `sys_job_log` VALUES (1459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-03 21:51:00'); INSERT INTO `sys_job_log` VALUES (1460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-03 21:54:00'); INSERT INTO `sys_job_log` VALUES (1461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-03 21:57:00'); INSERT INTO `sys_job_log` VALUES (1462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-03 22:00:00'); INSERT INTO `sys_job_log` VALUES (1463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-03 22:03:00'); INSERT INTO `sys_job_log` VALUES (1464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-03 22:06:00'); INSERT INTO `sys_job_log` VALUES (1465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-03 22:09:00'); INSERT INTO `sys_job_log` VALUES (1466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-03 22:12:00'); INSERT INTO `sys_job_log` VALUES (1467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1467毫秒', '0', '', '2022-01-05 14:24:01'); INSERT INTO `sys_job_log` VALUES (1468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-05 14:27:00'); INSERT INTO `sys_job_log` VALUES (1469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1130毫秒', '0', '', '2022-01-05 14:30:01'); INSERT INTO `sys_job_log` VALUES (1470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-05 14:33:00'); INSERT INTO `sys_job_log` VALUES (1471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-05 14:36:00'); INSERT INTO `sys_job_log` VALUES (1472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-05 14:39:00'); INSERT INTO `sys_job_log` VALUES (1473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-05 14:42:00'); INSERT INTO `sys_job_log` VALUES (1474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-05 14:45:00'); INSERT INTO `sys_job_log` VALUES (1475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-05 14:48:01'); INSERT INTO `sys_job_log` VALUES (1476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-05 14:51:01'); INSERT INTO `sys_job_log` VALUES (1477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-05 14:54:00'); INSERT INTO `sys_job_log` VALUES (1478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-05 14:57:01'); INSERT INTO `sys_job_log` VALUES (1479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-05 15:00:01'); INSERT INTO `sys_job_log` VALUES (1480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-05 15:03:01'); INSERT INTO `sys_job_log` VALUES (1481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-05 15:06:01'); INSERT INTO `sys_job_log` VALUES (1482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1117毫秒', '0', '', '2022-01-05 15:09:01'); INSERT INTO `sys_job_log` VALUES (1483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-05 15:12:00'); INSERT INTO `sys_job_log` VALUES (1484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-05 15:15:00'); INSERT INTO `sys_job_log` VALUES (1485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-05 15:18:01'); INSERT INTO `sys_job_log` VALUES (1486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-05 15:21:01'); INSERT INTO `sys_job_log` VALUES (1487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2022-01-05 15:24:01'); INSERT INTO `sys_job_log` VALUES (1488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-05 15:27:01'); INSERT INTO `sys_job_log` VALUES (1489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-05 15:30:01'); INSERT INTO `sys_job_log` VALUES (1490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1117毫秒', '0', '', '2022-01-05 15:33:01'); INSERT INTO `sys_job_log` VALUES (1491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-05 15:36:01'); INSERT INTO `sys_job_log` VALUES (1492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-05 15:39:01'); INSERT INTO `sys_job_log` VALUES (1493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-05 15:42:00'); INSERT INTO `sys_job_log` VALUES (1494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-05 15:45:00'); INSERT INTO `sys_job_log` VALUES (1495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-05 15:48:00'); INSERT INTO `sys_job_log` VALUES (1496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-05 15:51:00'); INSERT INTO `sys_job_log` VALUES (1497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-05 15:54:01'); INSERT INTO `sys_job_log` VALUES (1498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-05 15:57:00'); INSERT INTO `sys_job_log` VALUES (1499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-05 16:00:00'); INSERT INTO `sys_job_log` VALUES (1500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-05 16:03:01'); INSERT INTO `sys_job_log` VALUES (1501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2022-01-05 16:06:01'); INSERT INTO `sys_job_log` VALUES (1502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-05 16:09:00'); INSERT INTO `sys_job_log` VALUES (1503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-05 16:12:00'); INSERT INTO `sys_job_log` VALUES (1504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-05 16:15:00'); INSERT INTO `sys_job_log` VALUES (1505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-05 16:18:01'); INSERT INTO `sys_job_log` VALUES (1506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2022-01-05 16:21:01'); INSERT INTO `sys_job_log` VALUES (1507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-05 16:24:00'); INSERT INTO `sys_job_log` VALUES (1508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-05 16:27:00'); INSERT INTO `sys_job_log` VALUES (1509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-05 16:30:00'); INSERT INTO `sys_job_log` VALUES (1510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2022-01-05 16:33:01'); INSERT INTO `sys_job_log` VALUES (1511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1146毫秒', '0', '', '2022-01-05 16:36:01'); INSERT INTO `sys_job_log` VALUES (1512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-05 16:39:01'); INSERT INTO `sys_job_log` VALUES (1513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-05 16:42:00'); INSERT INTO `sys_job_log` VALUES (1514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-05 16:45:00'); INSERT INTO `sys_job_log` VALUES (1515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-05 16:48:00'); INSERT INTO `sys_job_log` VALUES (1516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-05 16:51:01'); INSERT INTO `sys_job_log` VALUES (1517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-05 16:54:01'); INSERT INTO `sys_job_log` VALUES (1518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-05 16:57:00'); INSERT INTO `sys_job_log` VALUES (1519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-05 17:00:01'); INSERT INTO `sys_job_log` VALUES (1520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-05 17:03:00'); INSERT INTO `sys_job_log` VALUES (1521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1119毫秒', '0', '', '2022-01-05 17:06:01'); INSERT INTO `sys_job_log` VALUES (1522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-05 17:09:01'); INSERT INTO `sys_job_log` VALUES (1523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-05 17:12:01'); INSERT INTO `sys_job_log` VALUES (1524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-05 17:15:00'); INSERT INTO `sys_job_log` VALUES (1525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-05 17:18:00'); INSERT INTO `sys_job_log` VALUES (1526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-05 17:21:01'); INSERT INTO `sys_job_log` VALUES (1527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-05 17:24:00'); INSERT INTO `sys_job_log` VALUES (1528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-05 17:27:01'); INSERT INTO `sys_job_log` VALUES (1529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-05 17:30:00'); INSERT INTO `sys_job_log` VALUES (1530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:473毫秒', '0', '', '2022-01-05 20:48:00'); INSERT INTO `sys_job_log` VALUES (1531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-05 20:51:00'); INSERT INTO `sys_job_log` VALUES (1532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-05 20:54:00'); INSERT INTO `sys_job_log` VALUES (1533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-05 20:57:00'); INSERT INTO `sys_job_log` VALUES (1534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-05 21:00:00'); INSERT INTO `sys_job_log` VALUES (1535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-05 21:03:00'); INSERT INTO `sys_job_log` VALUES (1536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-05 21:06:00'); INSERT INTO `sys_job_log` VALUES (1537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-05 21:09:00'); INSERT INTO `sys_job_log` VALUES (1538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-05 21:12:00'); INSERT INTO `sys_job_log` VALUES (1539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-05 21:15:00'); INSERT INTO `sys_job_log` VALUES (1540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-05 21:18:00'); INSERT INTO `sys_job_log` VALUES (1541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-05 21:21:00'); INSERT INTO `sys_job_log` VALUES (1542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-05 21:24:00'); INSERT INTO `sys_job_log` VALUES (1543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-05 21:27:00'); INSERT INTO `sys_job_log` VALUES (1544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-05 21:30:00'); INSERT INTO `sys_job_log` VALUES (1545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:336毫秒', '0', '', '2022-01-05 21:33:00'); INSERT INTO `sys_job_log` VALUES (1546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-05 21:36:00'); INSERT INTO `sys_job_log` VALUES (1547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-05 21:39:00'); INSERT INTO `sys_job_log` VALUES (1548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:407毫秒', '0', '', '2022-01-05 21:42:00'); INSERT INTO `sys_job_log` VALUES (1549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-05 21:45:00'); INSERT INTO `sys_job_log` VALUES (1550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-05 21:48:00'); INSERT INTO `sys_job_log` VALUES (1551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-05 21:51:00'); INSERT INTO `sys_job_log` VALUES (1552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-05 21:54:00'); INSERT INTO `sys_job_log` VALUES (1553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-05 21:57:00'); INSERT INTO `sys_job_log` VALUES (1554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-05 22:00:00'); INSERT INTO `sys_job_log` VALUES (1555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-05 22:03:00'); INSERT INTO `sys_job_log` VALUES (1556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-05 22:06:00'); INSERT INTO `sys_job_log` VALUES (1557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-05 22:09:00'); INSERT INTO `sys_job_log` VALUES (1558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-05 22:12:00'); INSERT INTO `sys_job_log` VALUES (1559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-05 22:15:00'); INSERT INTO `sys_job_log` VALUES (1560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-05 22:18:00'); INSERT INTO `sys_job_log` VALUES (1561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-05 22:21:00'); INSERT INTO `sys_job_log` VALUES (1562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-05 22:24:00'); INSERT INTO `sys_job_log` VALUES (1563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-05 22:27:00'); INSERT INTO `sys_job_log` VALUES (1564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-05 22:30:00'); INSERT INTO `sys_job_log` VALUES (1565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-05 22:33:00'); INSERT INTO `sys_job_log` VALUES (1566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-05 22:36:00'); INSERT INTO `sys_job_log` VALUES (1567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-05 22:39:00'); INSERT INTO `sys_job_log` VALUES (1568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-05 22:40:16'); INSERT INTO `sys_job_log` VALUES (1569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-05 22:41:37'); INSERT INTO `sys_job_log` VALUES (1570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:41:37'); INSERT INTO `sys_job_log` VALUES (1571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:41:37'); INSERT INTO `sys_job_log` VALUES (1572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:41:37'); INSERT INTO `sys_job_log` VALUES (1573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:41:37'); INSERT INTO `sys_job_log` VALUES (1574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:41:37'); INSERT INTO `sys_job_log` VALUES (1575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:41:37'); INSERT INTO `sys_job_log` VALUES (1576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:41:37'); INSERT INTO `sys_job_log` VALUES (1577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:41:37'); INSERT INTO `sys_job_log` VALUES (1578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:41:38'); INSERT INTO `sys_job_log` VALUES (1579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:41:38'); INSERT INTO `sys_job_log` VALUES (1580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:41:38'); INSERT INTO `sys_job_log` VALUES (1581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:41:38'); INSERT INTO `sys_job_log` VALUES (1582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:41:38'); INSERT INTO `sys_job_log` VALUES (1583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:41:40'); INSERT INTO `sys_job_log` VALUES (1584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:41:42'); INSERT INTO `sys_job_log` VALUES (1585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:41:44'); INSERT INTO `sys_job_log` VALUES (1586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:41:46'); INSERT INTO `sys_job_log` VALUES (1587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-05 22:41:48'); INSERT INTO `sys_job_log` VALUES (1588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:41:50'); INSERT INTO `sys_job_log` VALUES (1589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:41:52'); INSERT INTO `sys_job_log` VALUES (1590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:41:54'); INSERT INTO `sys_job_log` VALUES (1591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:41:56'); INSERT INTO `sys_job_log` VALUES (1592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:41:58'); INSERT INTO `sys_job_log` VALUES (1593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:42:00'); INSERT INTO `sys_job_log` VALUES (1594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-05 22:42:02'); INSERT INTO `sys_job_log` VALUES (1595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:42:04'); INSERT INTO `sys_job_log` VALUES (1596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:42:06'); INSERT INTO `sys_job_log` VALUES (1597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-05 22:42:08'); INSERT INTO `sys_job_log` VALUES (1598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:42:10'); INSERT INTO `sys_job_log` VALUES (1599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:42:12'); INSERT INTO `sys_job_log` VALUES (1600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:42:14'); INSERT INTO `sys_job_log` VALUES (1601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:42:16'); INSERT INTO `sys_job_log` VALUES (1602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:42:18'); INSERT INTO `sys_job_log` VALUES (1603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:42:20'); INSERT INTO `sys_job_log` VALUES (1604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:42:22'); INSERT INTO `sys_job_log` VALUES (1605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:42:24'); INSERT INTO `sys_job_log` VALUES (1606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:42:26'); INSERT INTO `sys_job_log` VALUES (1607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:42:28'); INSERT INTO `sys_job_log` VALUES (1608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-05 22:42:30'); INSERT INTO `sys_job_log` VALUES (1609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:42:32'); INSERT INTO `sys_job_log` VALUES (1610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-05 22:42:34'); INSERT INTO `sys_job_log` VALUES (1611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:42:36'); INSERT INTO `sys_job_log` VALUES (1612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:42:38'); INSERT INTO `sys_job_log` VALUES (1613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:42:40'); INSERT INTO `sys_job_log` VALUES (1614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:42:42'); INSERT INTO `sys_job_log` VALUES (1615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:42:44'); INSERT INTO `sys_job_log` VALUES (1616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:42:46'); INSERT INTO `sys_job_log` VALUES (1617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:42:48'); INSERT INTO `sys_job_log` VALUES (1618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:42:50'); INSERT INTO `sys_job_log` VALUES (1619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:42:52'); INSERT INTO `sys_job_log` VALUES (1620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-05 22:42:54'); INSERT INTO `sys_job_log` VALUES (1621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:42:56'); INSERT INTO `sys_job_log` VALUES (1622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:42:58'); INSERT INTO `sys_job_log` VALUES (1623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:43:00'); INSERT INTO `sys_job_log` VALUES (1624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:43:02'); INSERT INTO `sys_job_log` VALUES (1625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:43:04'); INSERT INTO `sys_job_log` VALUES (1626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:43:06'); INSERT INTO `sys_job_log` VALUES (1627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-05 22:43:08'); INSERT INTO `sys_job_log` VALUES (1628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:43:10'); INSERT INTO `sys_job_log` VALUES (1629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:43:12'); INSERT INTO `sys_job_log` VALUES (1630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:43:14'); INSERT INTO `sys_job_log` VALUES (1631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-05 22:43:16'); INSERT INTO `sys_job_log` VALUES (1632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:43:18'); INSERT INTO `sys_job_log` VALUES (1633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:43:20'); INSERT INTO `sys_job_log` VALUES (1634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:43:22'); INSERT INTO `sys_job_log` VALUES (1635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:43:24'); INSERT INTO `sys_job_log` VALUES (1636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:43:26'); INSERT INTO `sys_job_log` VALUES (1637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-05 22:43:28'); INSERT INTO `sys_job_log` VALUES (1638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:43:30'); INSERT INTO `sys_job_log` VALUES (1639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:43:32'); INSERT INTO `sys_job_log` VALUES (1640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:43:34'); INSERT INTO `sys_job_log` VALUES (1641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:43:36'); INSERT INTO `sys_job_log` VALUES (1642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:43:38'); INSERT INTO `sys_job_log` VALUES (1643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:43:40'); INSERT INTO `sys_job_log` VALUES (1644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:43:42'); INSERT INTO `sys_job_log` VALUES (1645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:43:44'); INSERT INTO `sys_job_log` VALUES (1646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:43:46'); INSERT INTO `sys_job_log` VALUES (1647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-05 22:43:48'); INSERT INTO `sys_job_log` VALUES (1648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-05 22:43:50'); INSERT INTO `sys_job_log` VALUES (1649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-05 22:43:52'); INSERT INTO `sys_job_log` VALUES (1650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:43:54'); INSERT INTO `sys_job_log` VALUES (1651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:43:56'); INSERT INTO `sys_job_log` VALUES (1652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:43:58'); INSERT INTO `sys_job_log` VALUES (1653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:44:00'); INSERT INTO `sys_job_log` VALUES (1654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:44:02'); INSERT INTO `sys_job_log` VALUES (1655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:44:04'); INSERT INTO `sys_job_log` VALUES (1656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:44:06'); INSERT INTO `sys_job_log` VALUES (1657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:44:08'); INSERT INTO `sys_job_log` VALUES (1658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:44:10'); INSERT INTO `sys_job_log` VALUES (1659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:44:12'); INSERT INTO `sys_job_log` VALUES (1660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:44:14'); INSERT INTO `sys_job_log` VALUES (1661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-05 22:44:16'); INSERT INTO `sys_job_log` VALUES (1662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:44:18'); INSERT INTO `sys_job_log` VALUES (1663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:44:20'); INSERT INTO `sys_job_log` VALUES (1664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:44:22'); INSERT INTO `sys_job_log` VALUES (1665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-05 22:44:24'); INSERT INTO `sys_job_log` VALUES (1666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:44:26'); INSERT INTO `sys_job_log` VALUES (1667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-05 22:44:28'); INSERT INTO `sys_job_log` VALUES (1668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:44:30'); INSERT INTO `sys_job_log` VALUES (1669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:44:32'); INSERT INTO `sys_job_log` VALUES (1670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:44:34'); INSERT INTO `sys_job_log` VALUES (1671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:44:36'); INSERT INTO `sys_job_log` VALUES (1672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:44:38'); INSERT INTO `sys_job_log` VALUES (1673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:44:40'); INSERT INTO `sys_job_log` VALUES (1674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-05 22:44:42'); INSERT INTO `sys_job_log` VALUES (1675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:44:44'); INSERT INTO `sys_job_log` VALUES (1676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:44:46'); INSERT INTO `sys_job_log` VALUES (1677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:44:48'); INSERT INTO `sys_job_log` VALUES (1678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:44:50'); INSERT INTO `sys_job_log` VALUES (1679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:44:52'); INSERT INTO `sys_job_log` VALUES (1680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:44:54'); INSERT INTO `sys_job_log` VALUES (1681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:44:56'); INSERT INTO `sys_job_log` VALUES (1682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:44:58'); INSERT INTO `sys_job_log` VALUES (1683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-05 22:45:00'); INSERT INTO `sys_job_log` VALUES (1684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:45:02'); INSERT INTO `sys_job_log` VALUES (1685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:45:04'); INSERT INTO `sys_job_log` VALUES (1686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:45:06'); INSERT INTO `sys_job_log` VALUES (1687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:45:08'); INSERT INTO `sys_job_log` VALUES (1688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:45:10'); INSERT INTO `sys_job_log` VALUES (1689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-05 22:45:12'); INSERT INTO `sys_job_log` VALUES (1690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:45:14'); INSERT INTO `sys_job_log` VALUES (1691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:45:16'); INSERT INTO `sys_job_log` VALUES (1692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:45:18'); INSERT INTO `sys_job_log` VALUES (1693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:45:20'); INSERT INTO `sys_job_log` VALUES (1694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:45:22'); INSERT INTO `sys_job_log` VALUES (1695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:45:24'); INSERT INTO `sys_job_log` VALUES (1696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:45:26'); INSERT INTO `sys_job_log` VALUES (1697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:45:28'); INSERT INTO `sys_job_log` VALUES (1698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:45:30'); INSERT INTO `sys_job_log` VALUES (1699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:45:32'); INSERT INTO `sys_job_log` VALUES (1700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-05 22:45:34'); INSERT INTO `sys_job_log` VALUES (1701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:45:36'); INSERT INTO `sys_job_log` VALUES (1702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-05 22:45:38'); INSERT INTO `sys_job_log` VALUES (1703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:45:40'); INSERT INTO `sys_job_log` VALUES (1704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:45:42'); INSERT INTO `sys_job_log` VALUES (1705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:45:44'); INSERT INTO `sys_job_log` VALUES (1706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:45:46'); INSERT INTO `sys_job_log` VALUES (1707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-05 22:45:48'); INSERT INTO `sys_job_log` VALUES (1708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:45:50'); INSERT INTO `sys_job_log` VALUES (1709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-05 22:46:00'); INSERT INTO `sys_job_log` VALUES (1710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:46:01'); INSERT INTO `sys_job_log` VALUES (1711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:46:02'); INSERT INTO `sys_job_log` VALUES (1712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-05 22:46:03'); INSERT INTO `sys_job_log` VALUES (1713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-05 22:46:04'); INSERT INTO `sys_job_log` VALUES (1714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:46:05'); INSERT INTO `sys_job_log` VALUES (1715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-05 22:46:06'); INSERT INTO `sys_job_log` VALUES (1716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-05 22:46:07'); INSERT INTO `sys_job_log` VALUES (1717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:46:08'); INSERT INTO `sys_job_log` VALUES (1718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:46:09'); INSERT INTO `sys_job_log` VALUES (1719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:46:10'); INSERT INTO `sys_job_log` VALUES (1720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-05 22:46:11'); INSERT INTO `sys_job_log` VALUES (1721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:46:12'); INSERT INTO `sys_job_log` VALUES (1722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-05 22:46:13'); INSERT INTO `sys_job_log` VALUES (1723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:46:14'); INSERT INTO `sys_job_log` VALUES (1724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:46:15'); INSERT INTO `sys_job_log` VALUES (1725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:46:16'); INSERT INTO `sys_job_log` VALUES (1726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-05 22:46:17'); INSERT INTO `sys_job_log` VALUES (1727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-05 22:46:18'); INSERT INTO `sys_job_log` VALUES (1728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:46:19'); INSERT INTO `sys_job_log` VALUES (1729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-05 22:46:20'); INSERT INTO `sys_job_log` VALUES (1730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-05 22:46:21'); INSERT INTO `sys_job_log` VALUES (1731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:46:22'); INSERT INTO `sys_job_log` VALUES (1732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:46:23'); INSERT INTO `sys_job_log` VALUES (1733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-05 22:46:24'); INSERT INTO `sys_job_log` VALUES (1734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-05 22:46:25'); INSERT INTO `sys_job_log` VALUES (1735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:46:26'); INSERT INTO `sys_job_log` VALUES (1736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:46:27'); INSERT INTO `sys_job_log` VALUES (1737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:46:28'); INSERT INTO `sys_job_log` VALUES (1738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:46:29'); INSERT INTO `sys_job_log` VALUES (1739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:46:30'); INSERT INTO `sys_job_log` VALUES (1740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-05 22:46:31'); INSERT INTO `sys_job_log` VALUES (1741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-05 22:46:32'); INSERT INTO `sys_job_log` VALUES (1742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-05 22:46:33'); INSERT INTO `sys_job_log` VALUES (1743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-05 22:46:34'); INSERT INTO `sys_job_log` VALUES (1744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:46:35'); INSERT INTO `sys_job_log` VALUES (1745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-05 22:46:36'); INSERT INTO `sys_job_log` VALUES (1746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-05 22:46:37'); INSERT INTO `sys_job_log` VALUES (1747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:46:38'); INSERT INTO `sys_job_log` VALUES (1748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-05 22:46:39'); INSERT INTO `sys_job_log` VALUES (1749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-05 22:46:40'); INSERT INTO `sys_job_log` VALUES (1750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:376毫秒', '0', '', '2022-01-06 09:54:01'); INSERT INTO `sys_job_log` VALUES (1751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-06 09:54:02'); INSERT INTO `sys_job_log` VALUES (1752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-06 09:56:01'); INSERT INTO `sys_job_log` VALUES (1753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-06 09:56:02'); INSERT INTO `sys_job_log` VALUES (1754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-06 09:58:01'); INSERT INTO `sys_job_log` VALUES (1755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-06 09:58:02'); INSERT INTO `sys_job_log` VALUES (1756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-06 10:00:02'); INSERT INTO `sys_job_log` VALUES (1757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 10:00:02'); INSERT INTO `sys_job_log` VALUES (1758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-06 10:02:02'); INSERT INTO `sys_job_log` VALUES (1759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-06 10:02:02'); INSERT INTO `sys_job_log` VALUES (1760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-06 10:04:01'); INSERT INTO `sys_job_log` VALUES (1761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 10:04:02'); INSERT INTO `sys_job_log` VALUES (1762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-06 10:06:02'); INSERT INTO `sys_job_log` VALUES (1763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 10:06:02'); INSERT INTO `sys_job_log` VALUES (1764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-06 10:08:02'); INSERT INTO `sys_job_log` VALUES (1765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 10:08:02'); INSERT INTO `sys_job_log` VALUES (1766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-06 10:10:01'); INSERT INTO `sys_job_log` VALUES (1767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 10:10:02'); INSERT INTO `sys_job_log` VALUES (1768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-06 10:12:01'); INSERT INTO `sys_job_log` VALUES (1769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 10:12:02'); INSERT INTO `sys_job_log` VALUES (1770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-06 10:14:01'); INSERT INTO `sys_job_log` VALUES (1771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 10:14:02'); INSERT INTO `sys_job_log` VALUES (1772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-06 10:16:02'); INSERT INTO `sys_job_log` VALUES (1773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 10:16:02'); INSERT INTO `sys_job_log` VALUES (1774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-06 10:18:03'); INSERT INTO `sys_job_log` VALUES (1775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-06 10:18:03'); INSERT INTO `sys_job_log` VALUES (1776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-06 10:20:01'); INSERT INTO `sys_job_log` VALUES (1777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 10:20:02'); INSERT INTO `sys_job_log` VALUES (1778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 10:22:01'); INSERT INTO `sys_job_log` VALUES (1779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 10:22:02'); INSERT INTO `sys_job_log` VALUES (1780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 10:24:01'); INSERT INTO `sys_job_log` VALUES (1781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 10:24:02'); INSERT INTO `sys_job_log` VALUES (1782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-06 10:26:01'); INSERT INTO `sys_job_log` VALUES (1783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 10:26:02'); INSERT INTO `sys_job_log` VALUES (1784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 10:28:01'); INSERT INTO `sys_job_log` VALUES (1785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 10:28:02'); INSERT INTO `sys_job_log` VALUES (1786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-06 10:30:02'); INSERT INTO `sys_job_log` VALUES (1787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 10:30:02'); INSERT INTO `sys_job_log` VALUES (1788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-06 10:32:01'); INSERT INTO `sys_job_log` VALUES (1789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 10:32:02'); INSERT INTO `sys_job_log` VALUES (1790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-06 10:34:02'); INSERT INTO `sys_job_log` VALUES (1791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 10:34:02'); INSERT INTO `sys_job_log` VALUES (1792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-06 10:36:02'); INSERT INTO `sys_job_log` VALUES (1793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 10:36:02'); INSERT INTO `sys_job_log` VALUES (1794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-06 10:38:01'); INSERT INTO `sys_job_log` VALUES (1795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 10:38:02'); INSERT INTO `sys_job_log` VALUES (1796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-06 10:40:01'); INSERT INTO `sys_job_log` VALUES (1797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 10:40:02'); INSERT INTO `sys_job_log` VALUES (1798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-06 10:42:01'); INSERT INTO `sys_job_log` VALUES (1799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 10:42:02'); INSERT INTO `sys_job_log` VALUES (1800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-06 10:44:01'); INSERT INTO `sys_job_log` VALUES (1801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 10:44:02'); INSERT INTO `sys_job_log` VALUES (1802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-06 10:46:02'); INSERT INTO `sys_job_log` VALUES (1803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 10:46:02'); INSERT INTO `sys_job_log` VALUES (1804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-06 10:48:01'); INSERT INTO `sys_job_log` VALUES (1805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 10:48:02'); INSERT INTO `sys_job_log` VALUES (1806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-06 10:50:02'); INSERT INTO `sys_job_log` VALUES (1807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 10:50:02'); INSERT INTO `sys_job_log` VALUES (1808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-06 10:52:02'); INSERT INTO `sys_job_log` VALUES (1809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 10:52:02'); INSERT INTO `sys_job_log` VALUES (1810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-06 10:54:01'); INSERT INTO `sys_job_log` VALUES (1811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 10:54:02'); INSERT INTO `sys_job_log` VALUES (1812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-06 10:56:03'); INSERT INTO `sys_job_log` VALUES (1813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-06 10:56:03'); INSERT INTO `sys_job_log` VALUES (1814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-06 10:58:01'); INSERT INTO `sys_job_log` VALUES (1815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 10:58:02'); INSERT INTO `sys_job_log` VALUES (1816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-06 11:00:02'); INSERT INTO `sys_job_log` VALUES (1817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 11:00:02'); INSERT INTO `sys_job_log` VALUES (1818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-06 11:02:02'); INSERT INTO `sys_job_log` VALUES (1819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 11:02:02'); INSERT INTO `sys_job_log` VALUES (1820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-06 11:04:01'); INSERT INTO `sys_job_log` VALUES (1821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 11:04:02'); INSERT INTO `sys_job_log` VALUES (1822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-06 11:06:02'); INSERT INTO `sys_job_log` VALUES (1823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 11:06:02'); INSERT INTO `sys_job_log` VALUES (1824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-06 11:08:02'); INSERT INTO `sys_job_log` VALUES (1825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 11:08:02'); INSERT INTO `sys_job_log` VALUES (1826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 11:10:01'); INSERT INTO `sys_job_log` VALUES (1827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 11:10:02'); INSERT INTO `sys_job_log` VALUES (1828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-06 11:12:02'); INSERT INTO `sys_job_log` VALUES (1829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 11:12:02'); INSERT INTO `sys_job_log` VALUES (1830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 11:14:01'); INSERT INTO `sys_job_log` VALUES (1831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 11:14:02'); INSERT INTO `sys_job_log` VALUES (1832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-06 11:16:02'); INSERT INTO `sys_job_log` VALUES (1833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 11:16:02'); INSERT INTO `sys_job_log` VALUES (1834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 11:18:01'); INSERT INTO `sys_job_log` VALUES (1835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 11:18:02'); INSERT INTO `sys_job_log` VALUES (1836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-06 11:20:02'); INSERT INTO `sys_job_log` VALUES (1837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 11:20:02'); INSERT INTO `sys_job_log` VALUES (1838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-06 11:22:01'); INSERT INTO `sys_job_log` VALUES (1839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 11:22:02'); INSERT INTO `sys_job_log` VALUES (1840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2022-01-06 11:24:02'); INSERT INTO `sys_job_log` VALUES (1841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 11:24:02'); INSERT INTO `sys_job_log` VALUES (1842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1137毫秒', '0', '', '2022-01-06 11:26:02'); INSERT INTO `sys_job_log` VALUES (1843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 11:26:02'); INSERT INTO `sys_job_log` VALUES (1844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-06 11:28:01'); INSERT INTO `sys_job_log` VALUES (1845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 11:28:02'); INSERT INTO `sys_job_log` VALUES (1846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-06 11:30:03'); INSERT INTO `sys_job_log` VALUES (1847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-06 11:30:03'); INSERT INTO `sys_job_log` VALUES (1848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-06 11:32:01'); INSERT INTO `sys_job_log` VALUES (1849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 11:32:02'); INSERT INTO `sys_job_log` VALUES (1850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-06 11:34:02'); INSERT INTO `sys_job_log` VALUES (1851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 11:34:02'); INSERT INTO `sys_job_log` VALUES (1852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-06 11:36:01'); INSERT INTO `sys_job_log` VALUES (1853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 11:36:02'); INSERT INTO `sys_job_log` VALUES (1854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-06 11:38:02'); INSERT INTO `sys_job_log` VALUES (1855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 11:38:02'); INSERT INTO `sys_job_log` VALUES (1856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-06 11:40:02'); INSERT INTO `sys_job_log` VALUES (1857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-06 11:40:02'); INSERT INTO `sys_job_log` VALUES (1858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 11:42:01'); INSERT INTO `sys_job_log` VALUES (1859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-06 11:42:02'); INSERT INTO `sys_job_log` VALUES (1860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 11:44:01'); INSERT INTO `sys_job_log` VALUES (1861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 11:44:02'); INSERT INTO `sys_job_log` VALUES (1862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 11:46:01'); INSERT INTO `sys_job_log` VALUES (1863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 11:46:02'); INSERT INTO `sys_job_log` VALUES (1864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-06 11:48:02'); INSERT INTO `sys_job_log` VALUES (1865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 11:48:02'); INSERT INTO `sys_job_log` VALUES (1866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-06 11:50:02'); INSERT INTO `sys_job_log` VALUES (1867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 11:50:02'); INSERT INTO `sys_job_log` VALUES (1868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-06 11:52:01'); INSERT INTO `sys_job_log` VALUES (1869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 11:52:02'); INSERT INTO `sys_job_log` VALUES (1870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-06 11:54:02'); INSERT INTO `sys_job_log` VALUES (1871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 11:54:02'); INSERT INTO `sys_job_log` VALUES (1872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2006毫秒', '0', '', '2022-01-06 11:56:03'); INSERT INTO `sys_job_log` VALUES (1873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 11:56:03'); INSERT INTO `sys_job_log` VALUES (1874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 11:58:01'); INSERT INTO `sys_job_log` VALUES (1875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-06 11:58:02'); INSERT INTO `sys_job_log` VALUES (1876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-06 12:00:02'); INSERT INTO `sys_job_log` VALUES (1877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 12:00:02'); INSERT INTO `sys_job_log` VALUES (1878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-06 12:02:01'); INSERT INTO `sys_job_log` VALUES (1879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 12:02:02'); INSERT INTO `sys_job_log` VALUES (1880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:375毫秒', '0', '', '2022-01-06 12:04:01'); INSERT INTO `sys_job_log` VALUES (1881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-06 12:04:02'); INSERT INTO `sys_job_log` VALUES (1882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:741毫秒', '0', '', '2022-01-06 12:06:01'); INSERT INTO `sys_job_log` VALUES (1883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:397毫秒', '0', '', '2022-01-06 12:06:02'); INSERT INTO `sys_job_log` VALUES (1884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-06 12:08:03'); INSERT INTO `sys_job_log` VALUES (1885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:624毫秒', '0', '', '2022-01-06 12:08:03'); INSERT INTO `sys_job_log` VALUES (1886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-06 12:10:01'); INSERT INTO `sys_job_log` VALUES (1887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 12:10:02'); INSERT INTO `sys_job_log` VALUES (1888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-06 12:12:01'); INSERT INTO `sys_job_log` VALUES (1889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-06 12:12:02'); INSERT INTO `sys_job_log` VALUES (1890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:434毫秒', '0', '', '2022-01-06 12:14:01'); INSERT INTO `sys_job_log` VALUES (1891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-06 12:14:02'); INSERT INTO `sys_job_log` VALUES (1892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1148毫秒', '0', '', '2022-01-06 12:16:02'); INSERT INTO `sys_job_log` VALUES (1893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 12:16:02'); INSERT INTO `sys_job_log` VALUES (1894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-06 12:18:02'); INSERT INTO `sys_job_log` VALUES (1895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 12:18:02'); INSERT INTO `sys_job_log` VALUES (1896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-06 12:20:02'); INSERT INTO `sys_job_log` VALUES (1897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 12:20:02'); INSERT INTO `sys_job_log` VALUES (1898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-06 12:22:01'); INSERT INTO `sys_job_log` VALUES (1899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 12:22:02'); INSERT INTO `sys_job_log` VALUES (1900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-06 12:24:02'); INSERT INTO `sys_job_log` VALUES (1901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 12:24:02'); INSERT INTO `sys_job_log` VALUES (1902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-06 12:26:02'); INSERT INTO `sys_job_log` VALUES (1903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 12:26:02'); INSERT INTO `sys_job_log` VALUES (1904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1131毫秒', '0', '', '2022-01-06 12:28:02'); INSERT INTO `sys_job_log` VALUES (1905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 12:28:02'); INSERT INTO `sys_job_log` VALUES (1906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-06 12:30:02'); INSERT INTO `sys_job_log` VALUES (1907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 12:30:02'); INSERT INTO `sys_job_log` VALUES (1908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-06 12:32:02'); INSERT INTO `sys_job_log` VALUES (1909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 12:32:02'); INSERT INTO `sys_job_log` VALUES (1910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-06 12:34:02'); INSERT INTO `sys_job_log` VALUES (1911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 12:34:02'); INSERT INTO `sys_job_log` VALUES (1912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2022-01-06 12:36:02'); INSERT INTO `sys_job_log` VALUES (1913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 12:36:02'); INSERT INTO `sys_job_log` VALUES (1914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2022-01-06 12:38:02'); INSERT INTO `sys_job_log` VALUES (1915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-06 12:38:02'); INSERT INTO `sys_job_log` VALUES (1916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-06 12:40:02'); INSERT INTO `sys_job_log` VALUES (1917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 12:40:02'); INSERT INTO `sys_job_log` VALUES (1918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2018毫秒', '0', '', '2022-01-06 12:42:03'); INSERT INTO `sys_job_log` VALUES (1919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-06 12:42:03'); INSERT INTO `sys_job_log` VALUES (1920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-06 12:44:02'); INSERT INTO `sys_job_log` VALUES (1921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 12:44:02'); INSERT INTO `sys_job_log` VALUES (1922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-06 12:46:02'); INSERT INTO `sys_job_log` VALUES (1923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 12:46:02'); INSERT INTO `sys_job_log` VALUES (1924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-06 12:48:01'); INSERT INTO `sys_job_log` VALUES (1925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 12:48:02'); INSERT INTO `sys_job_log` VALUES (1926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-06 12:50:01'); INSERT INTO `sys_job_log` VALUES (1927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 12:50:02'); INSERT INTO `sys_job_log` VALUES (1928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-06 12:52:02'); INSERT INTO `sys_job_log` VALUES (1929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 12:52:02'); INSERT INTO `sys_job_log` VALUES (1930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-06 12:54:02'); INSERT INTO `sys_job_log` VALUES (1931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 12:54:02'); INSERT INTO `sys_job_log` VALUES (1932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-06 12:56:02'); INSERT INTO `sys_job_log` VALUES (1933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 12:56:02'); INSERT INTO `sys_job_log` VALUES (1934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-06 12:58:02'); INSERT INTO `sys_job_log` VALUES (1935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 12:58:02'); INSERT INTO `sys_job_log` VALUES (1936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-06 13:00:01'); INSERT INTO `sys_job_log` VALUES (1937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 13:00:02'); INSERT INTO `sys_job_log` VALUES (1938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-06 13:02:02'); INSERT INTO `sys_job_log` VALUES (1939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 13:02:02'); INSERT INTO `sys_job_log` VALUES (1940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-06 13:04:02'); INSERT INTO `sys_job_log` VALUES (1941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 13:04:02'); INSERT INTO `sys_job_log` VALUES (1942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-06 13:06:02'); INSERT INTO `sys_job_log` VALUES (1943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 13:06:02'); INSERT INTO `sys_job_log` VALUES (1944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 13:08:01'); INSERT INTO `sys_job_log` VALUES (1945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-06 13:08:02'); INSERT INTO `sys_job_log` VALUES (1946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-06 13:10:03'); INSERT INTO `sys_job_log` VALUES (1947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 13:10:03'); INSERT INTO `sys_job_log` VALUES (1948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1075毫秒', '0', '', '2022-01-06 13:12:02'); INSERT INTO `sys_job_log` VALUES (1949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-06 13:12:02'); INSERT INTO `sys_job_log` VALUES (1950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2022-01-06 13:14:02'); INSERT INTO `sys_job_log` VALUES (1951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 13:14:02'); INSERT INTO `sys_job_log` VALUES (1952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2009毫秒', '0', '', '2022-01-06 13:16:03'); INSERT INTO `sys_job_log` VALUES (1953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-06 13:16:03'); INSERT INTO `sys_job_log` VALUES (1954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-06 13:18:02'); INSERT INTO `sys_job_log` VALUES (1955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 13:18:02'); INSERT INTO `sys_job_log` VALUES (1956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-06 13:20:02'); INSERT INTO `sys_job_log` VALUES (1957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 13:20:02'); INSERT INTO `sys_job_log` VALUES (1958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2012毫秒', '0', '', '2022-01-06 13:22:03'); INSERT INTO `sys_job_log` VALUES (1959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-06 13:22:03'); INSERT INTO `sys_job_log` VALUES (1960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-06 13:24:01'); INSERT INTO `sys_job_log` VALUES (1961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 13:24:02'); INSERT INTO `sys_job_log` VALUES (1962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-06 13:26:02'); INSERT INTO `sys_job_log` VALUES (1963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 13:26:02'); INSERT INTO `sys_job_log` VALUES (1964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-06 13:28:02'); INSERT INTO `sys_job_log` VALUES (1965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 13:28:02'); INSERT INTO `sys_job_log` VALUES (1966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-06 13:30:02'); INSERT INTO `sys_job_log` VALUES (1967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 13:30:02'); INSERT INTO `sys_job_log` VALUES (1968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-06 13:32:02'); INSERT INTO `sys_job_log` VALUES (1969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 13:32:02'); INSERT INTO `sys_job_log` VALUES (1970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-06 13:34:01'); INSERT INTO `sys_job_log` VALUES (1971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 13:34:02'); INSERT INTO `sys_job_log` VALUES (1972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-06 13:36:01'); INSERT INTO `sys_job_log` VALUES (1973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 13:36:02'); INSERT INTO `sys_job_log` VALUES (1974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-06 13:38:02'); INSERT INTO `sys_job_log` VALUES (1975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 13:38:02'); INSERT INTO `sys_job_log` VALUES (1976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-06 13:40:02'); INSERT INTO `sys_job_log` VALUES (1977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 13:40:02'); INSERT INTO `sys_job_log` VALUES (1978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-06 13:42:02'); INSERT INTO `sys_job_log` VALUES (1979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-06 13:42:02'); INSERT INTO `sys_job_log` VALUES (1980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-06 13:44:02'); INSERT INTO `sys_job_log` VALUES (1981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 13:44:02'); INSERT INTO `sys_job_log` VALUES (1982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-06 13:46:01'); INSERT INTO `sys_job_log` VALUES (1983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 13:46:02'); INSERT INTO `sys_job_log` VALUES (1984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-06 13:48:02'); INSERT INTO `sys_job_log` VALUES (1985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2022-01-06 13:48:02'); INSERT INTO `sys_job_log` VALUES (1986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-06 13:50:03'); INSERT INTO `sys_job_log` VALUES (1987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-06 13:50:03'); INSERT INTO `sys_job_log` VALUES (1988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-06 13:52:01'); INSERT INTO `sys_job_log` VALUES (1989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-06 13:52:02'); INSERT INTO `sys_job_log` VALUES (1990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2022-01-06 13:54:02'); INSERT INTO `sys_job_log` VALUES (1991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 13:54:02'); INSERT INTO `sys_job_log` VALUES (1992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-06 13:56:01'); INSERT INTO `sys_job_log` VALUES (1993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 13:56:02'); INSERT INTO `sys_job_log` VALUES (1994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-06 13:58:02'); INSERT INTO `sys_job_log` VALUES (1995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-06 13:58:02'); INSERT INTO `sys_job_log` VALUES (1996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-06 14:00:02'); INSERT INTO `sys_job_log` VALUES (1997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 14:00:02'); INSERT INTO `sys_job_log` VALUES (1998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2022-01-06 14:02:02'); INSERT INTO `sys_job_log` VALUES (1999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-06 14:02:02'); INSERT INTO `sys_job_log` VALUES (2000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2022-01-06 14:04:02'); INSERT INTO `sys_job_log` VALUES (2001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 14:04:02'); INSERT INTO `sys_job_log` VALUES (2002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-06 14:06:02'); INSERT INTO `sys_job_log` VALUES (2003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 14:06:02'); INSERT INTO `sys_job_log` VALUES (2004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-06 14:08:02'); INSERT INTO `sys_job_log` VALUES (2005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-06 14:08:02'); INSERT INTO `sys_job_log` VALUES (2006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2012毫秒', '0', '', '2022-01-06 14:10:03'); INSERT INTO `sys_job_log` VALUES (2007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:972毫秒', '0', '', '2022-01-06 14:10:04'); INSERT INTO `sys_job_log` VALUES (2008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-06 14:12:01'); INSERT INTO `sys_job_log` VALUES (2009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 14:12:02'); INSERT INTO `sys_job_log` VALUES (2010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-06 14:14:02'); INSERT INTO `sys_job_log` VALUES (2011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-06 14:14:02'); INSERT INTO `sys_job_log` VALUES (2012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-06 14:16:02'); INSERT INTO `sys_job_log` VALUES (2013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-06 14:16:02'); INSERT INTO `sys_job_log` VALUES (2014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-06 14:18:01'); INSERT INTO `sys_job_log` VALUES (2015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 14:18:02'); INSERT INTO `sys_job_log` VALUES (2016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2022-01-06 14:20:02'); INSERT INTO `sys_job_log` VALUES (2017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2022-01-06 14:20:02'); INSERT INTO `sys_job_log` VALUES (2018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1082毫秒', '0', '', '2022-01-06 14:22:02'); INSERT INTO `sys_job_log` VALUES (2019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2022-01-06 14:22:02'); INSERT INTO `sys_job_log` VALUES (2020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2022-01-06 14:24:02'); INSERT INTO `sys_job_log` VALUES (2021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-06 14:24:02'); INSERT INTO `sys_job_log` VALUES (2022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-06 14:26:02'); INSERT INTO `sys_job_log` VALUES (2023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-06 14:26:02'); INSERT INTO `sys_job_log` VALUES (2024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-06 14:28:01'); INSERT INTO `sys_job_log` VALUES (2025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-06 14:28:02'); INSERT INTO `sys_job_log` VALUES (2026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-06 14:30:01'); INSERT INTO `sys_job_log` VALUES (2027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 14:30:02'); INSERT INTO `sys_job_log` VALUES (2028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-06 14:32:02'); INSERT INTO `sys_job_log` VALUES (2029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-06 14:32:02'); INSERT INTO `sys_job_log` VALUES (2030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 14:34:01'); INSERT INTO `sys_job_log` VALUES (2031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 14:34:02'); INSERT INTO `sys_job_log` VALUES (2032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2022-01-06 14:36:02'); INSERT INTO `sys_job_log` VALUES (2033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 14:36:02'); INSERT INTO `sys_job_log` VALUES (2034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-06 14:38:03'); INSERT INTO `sys_job_log` VALUES (2035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-06 14:38:05'); INSERT INTO `sys_job_log` VALUES (2036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 14:40:01'); INSERT INTO `sys_job_log` VALUES (2037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-06 14:40:02'); INSERT INTO `sys_job_log` VALUES (2038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1076毫秒', '0', '', '2022-01-06 14:42:02'); INSERT INTO `sys_job_log` VALUES (2039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 14:42:02'); INSERT INTO `sys_job_log` VALUES (2040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1079毫秒', '0', '', '2022-01-06 14:44:02'); INSERT INTO `sys_job_log` VALUES (2041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 14:44:02'); INSERT INTO `sys_job_log` VALUES (2042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-06 14:46:02'); INSERT INTO `sys_job_log` VALUES (2043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 14:46:02'); INSERT INTO `sys_job_log` VALUES (2044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-06 14:48:01'); INSERT INTO `sys_job_log` VALUES (2045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 14:48:02'); INSERT INTO `sys_job_log` VALUES (2046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1144毫秒', '0', '', '2022-01-06 14:50:02'); INSERT INTO `sys_job_log` VALUES (2047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 14:50:02'); INSERT INTO `sys_job_log` VALUES (2048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 14:52:01'); INSERT INTO `sys_job_log` VALUES (2049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 14:52:02'); INSERT INTO `sys_job_log` VALUES (2050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-06 14:54:02'); INSERT INTO `sys_job_log` VALUES (2051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 14:54:02'); INSERT INTO `sys_job_log` VALUES (2052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-06 14:56:02'); INSERT INTO `sys_job_log` VALUES (2053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-06 14:56:02'); INSERT INTO `sys_job_log` VALUES (2054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 14:58:01'); INSERT INTO `sys_job_log` VALUES (2055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-06 14:58:02'); INSERT INTO `sys_job_log` VALUES (2056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-06 15:00:02'); INSERT INTO `sys_job_log` VALUES (2057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-06 15:00:02'); INSERT INTO `sys_job_log` VALUES (2058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-06 15:02:02'); INSERT INTO `sys_job_log` VALUES (2059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 15:02:02'); INSERT INTO `sys_job_log` VALUES (2060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-06 15:04:02'); INSERT INTO `sys_job_log` VALUES (2061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 15:04:02'); INSERT INTO `sys_job_log` VALUES (2062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 15:06:01'); INSERT INTO `sys_job_log` VALUES (2063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-06 15:06:02'); INSERT INTO `sys_job_log` VALUES (2064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-06 15:08:01'); INSERT INTO `sys_job_log` VALUES (2065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 15:08:02'); INSERT INTO `sys_job_log` VALUES (2066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 15:10:01'); INSERT INTO `sys_job_log` VALUES (2067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 15:10:02'); INSERT INTO `sys_job_log` VALUES (2068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-06 15:12:02'); INSERT INTO `sys_job_log` VALUES (2069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 15:12:02'); INSERT INTO `sys_job_log` VALUES (2070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-06 15:14:01'); INSERT INTO `sys_job_log` VALUES (2071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 15:14:02'); INSERT INTO `sys_job_log` VALUES (2072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-06 15:16:01'); INSERT INTO `sys_job_log` VALUES (2073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 15:16:02'); INSERT INTO `sys_job_log` VALUES (2074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-06 15:18:02'); INSERT INTO `sys_job_log` VALUES (2075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:51毫秒', '0', '', '2022-01-06 15:18:02'); INSERT INTO `sys_job_log` VALUES (2076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2007毫秒', '0', '', '2022-01-06 15:20:03'); INSERT INTO `sys_job_log` VALUES (2077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 15:20:03'); INSERT INTO `sys_job_log` VALUES (2078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-06 15:22:01'); INSERT INTO `sys_job_log` VALUES (2079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 15:22:02'); INSERT INTO `sys_job_log` VALUES (2080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1078毫秒', '0', '', '2022-01-06 15:24:02'); INSERT INTO `sys_job_log` VALUES (2081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 15:24:02'); INSERT INTO `sys_job_log` VALUES (2082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 15:26:01'); INSERT INTO `sys_job_log` VALUES (2083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 15:26:02'); INSERT INTO `sys_job_log` VALUES (2084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-06 15:28:01'); INSERT INTO `sys_job_log` VALUES (2085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 15:28:02'); INSERT INTO `sys_job_log` VALUES (2086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2022-01-06 15:30:02'); INSERT INTO `sys_job_log` VALUES (2087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 15:30:02'); INSERT INTO `sys_job_log` VALUES (2088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 15:32:01'); INSERT INTO `sys_job_log` VALUES (2089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 15:32:02'); INSERT INTO `sys_job_log` VALUES (2090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 15:34:01'); INSERT INTO `sys_job_log` VALUES (2091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 15:34:02'); INSERT INTO `sys_job_log` VALUES (2092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-06 15:36:03'); INSERT INTO `sys_job_log` VALUES (2093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 15:36:03'); INSERT INTO `sys_job_log` VALUES (2094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-06 15:38:01'); INSERT INTO `sys_job_log` VALUES (2095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 15:38:02'); INSERT INTO `sys_job_log` VALUES (2096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-06 15:40:02'); INSERT INTO `sys_job_log` VALUES (2097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 15:40:02'); INSERT INTO `sys_job_log` VALUES (2098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1077毫秒', '0', '', '2022-01-06 15:42:02'); INSERT INTO `sys_job_log` VALUES (2099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-06 15:42:02'); INSERT INTO `sys_job_log` VALUES (2100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1138毫秒', '0', '', '2022-01-06 15:44:02'); INSERT INTO `sys_job_log` VALUES (2101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-06 15:44:02'); INSERT INTO `sys_job_log` VALUES (2102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-06 15:46:03'); INSERT INTO `sys_job_log` VALUES (2103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-06 15:46:03'); INSERT INTO `sys_job_log` VALUES (2104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-06 15:48:01'); INSERT INTO `sys_job_log` VALUES (2105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 15:48:02'); INSERT INTO `sys_job_log` VALUES (2106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-06 15:50:01'); INSERT INTO `sys_job_log` VALUES (2107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 15:50:02'); INSERT INTO `sys_job_log` VALUES (2108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 15:52:01'); INSERT INTO `sys_job_log` VALUES (2109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 15:52:02'); INSERT INTO `sys_job_log` VALUES (2110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-06 15:54:02'); INSERT INTO `sys_job_log` VALUES (2111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 15:54:02'); INSERT INTO `sys_job_log` VALUES (2112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-06 15:56:01'); INSERT INTO `sys_job_log` VALUES (2113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-06 15:56:02'); INSERT INTO `sys_job_log` VALUES (2114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-06 15:58:01'); INSERT INTO `sys_job_log` VALUES (2115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 15:58:02'); INSERT INTO `sys_job_log` VALUES (2116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-06 16:00:01'); INSERT INTO `sys_job_log` VALUES (2117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 16:00:02'); INSERT INTO `sys_job_log` VALUES (2118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-06 16:02:01'); INSERT INTO `sys_job_log` VALUES (2119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 16:02:02'); INSERT INTO `sys_job_log` VALUES (2120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1082毫秒', '0', '', '2022-01-06 16:04:02'); INSERT INTO `sys_job_log` VALUES (2121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 16:04:02'); INSERT INTO `sys_job_log` VALUES (2122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-06 16:06:03'); INSERT INTO `sys_job_log` VALUES (2123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-06 16:06:03'); INSERT INTO `sys_job_log` VALUES (2124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-06 16:08:01'); INSERT INTO `sys_job_log` VALUES (2125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 16:08:02'); INSERT INTO `sys_job_log` VALUES (2126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-06 16:10:01'); INSERT INTO `sys_job_log` VALUES (2127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 16:10:02'); INSERT INTO `sys_job_log` VALUES (2128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 16:12:01'); INSERT INTO `sys_job_log` VALUES (2129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 16:12:02'); INSERT INTO `sys_job_log` VALUES (2130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-06 16:14:02'); INSERT INTO `sys_job_log` VALUES (2131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 16:14:02'); INSERT INTO `sys_job_log` VALUES (2132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-06 16:16:02'); INSERT INTO `sys_job_log` VALUES (2133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 16:16:02'); INSERT INTO `sys_job_log` VALUES (2134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 16:18:01'); INSERT INTO `sys_job_log` VALUES (2135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 16:18:02'); INSERT INTO `sys_job_log` VALUES (2136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-06 16:20:01'); INSERT INTO `sys_job_log` VALUES (2137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 16:20:02'); INSERT INTO `sys_job_log` VALUES (2138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-06 16:22:01'); INSERT INTO `sys_job_log` VALUES (2139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 16:22:02'); INSERT INTO `sys_job_log` VALUES (2140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-06 16:24:01'); INSERT INTO `sys_job_log` VALUES (2141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 16:24:02'); INSERT INTO `sys_job_log` VALUES (2142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-06 16:26:02'); INSERT INTO `sys_job_log` VALUES (2143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 16:26:02'); INSERT INTO `sys_job_log` VALUES (2144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-06 16:28:02'); INSERT INTO `sys_job_log` VALUES (2145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2022-01-06 16:28:02'); INSERT INTO `sys_job_log` VALUES (2146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-06 16:30:01'); INSERT INTO `sys_job_log` VALUES (2147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 16:30:02'); INSERT INTO `sys_job_log` VALUES (2148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-06 16:32:01'); INSERT INTO `sys_job_log` VALUES (2149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 16:32:02'); INSERT INTO `sys_job_log` VALUES (2150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2022-01-06 16:34:02'); INSERT INTO `sys_job_log` VALUES (2151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 16:34:02'); INSERT INTO `sys_job_log` VALUES (2152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1142毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 17:08:14'); INSERT INTO `sys_job_log` VALUES (2163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-06 17:08:15'); INSERT INTO `sys_job_log` VALUES (2176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 17:08:16'); INSERT INTO `sys_job_log` VALUES (2177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-06 17:08:16'); INSERT INTO `sys_job_log` VALUES (2178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 17:08:16'); INSERT INTO `sys_job_log` VALUES (2179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-06 17:08:16'); INSERT INTO `sys_job_log` VALUES (2180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 17:08:16'); INSERT INTO `sys_job_log` VALUES (2181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-06 17:08:16'); INSERT INTO `sys_job_log` VALUES (2182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 17:08:16'); INSERT INTO `sys_job_log` VALUES (2183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 17:08:16'); INSERT INTO `sys_job_log` VALUES (2184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-06 17:08:16'); INSERT INTO `sys_job_log` VALUES (2185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 17:08:16'); INSERT INTO `sys_job_log` VALUES (2186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-06 17:10:01'); INSERT INTO `sys_job_log` VALUES (2187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:522毫秒', '0', '', '2022-01-06 17:10:02'); INSERT INTO `sys_job_log` VALUES (2188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-06 17:12:02'); INSERT INTO `sys_job_log` VALUES (2189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 17:12:02'); INSERT INTO `sys_job_log` VALUES (2190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-06 17:14:01'); INSERT INTO `sys_job_log` VALUES (2191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 17:14:02'); INSERT INTO `sys_job_log` VALUES (2192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-06 17:16:01'); INSERT INTO `sys_job_log` VALUES (2193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-06 17:16:02'); INSERT INTO `sys_job_log` VALUES (2194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1361毫秒', '0', '', '2022-01-06 17:18:02'); INSERT INTO `sys_job_log` VALUES (2195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-06 17:18:02'); INSERT INTO `sys_job_log` VALUES (2196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-06 17:20:01'); INSERT INTO `sys_job_log` VALUES (2197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-06 17:20:02'); INSERT INTO `sys_job_log` VALUES (2198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-06 17:22:00'); INSERT INTO `sys_job_log` VALUES (2199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 17:22:01'); INSERT INTO `sys_job_log` VALUES (2200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-06 17:24:00'); INSERT INTO `sys_job_log` VALUES (2201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-06 17:24:01'); INSERT INTO `sys_job_log` VALUES (2202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1163毫秒', '0', '', '2022-01-06 17:26:01'); INSERT INTO `sys_job_log` VALUES (2203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 17:26:01'); INSERT INTO `sys_job_log` VALUES (2204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-06 17:28:00'); INSERT INTO `sys_job_log` VALUES (2205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 17:28:01'); INSERT INTO `sys_job_log` VALUES (2206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-06 17:30:00'); INSERT INTO `sys_job_log` VALUES (2207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 17:30:01'); INSERT INTO `sys_job_log` VALUES (2208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-06 17:32:00'); INSERT INTO `sys_job_log` VALUES (2209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-06 17:32:01'); INSERT INTO `sys_job_log` VALUES (2210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:335毫秒', '0', '', '2022-01-06 20:18:00'); INSERT INTO `sys_job_log` VALUES (2211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-06 20:18:01'); INSERT INTO `sys_job_log` VALUES (2212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-06 20:20:00'); INSERT INTO `sys_job_log` VALUES (2213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-06 20:20:01'); INSERT INTO `sys_job_log` VALUES (2214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-06 20:22:00'); INSERT INTO `sys_job_log` VALUES (2215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-06 20:22:01'); INSERT INTO `sys_job_log` VALUES (2216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-06 20:24:00'); INSERT INTO `sys_job_log` VALUES (2217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-06 20:24:01'); INSERT INTO `sys_job_log` VALUES (2218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-06 20:26:00'); INSERT INTO `sys_job_log` VALUES (2219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-06 20:26:01'); INSERT INTO `sys_job_log` VALUES (2220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-06 20:28:00'); INSERT INTO `sys_job_log` VALUES (2221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 20:28:01'); INSERT INTO `sys_job_log` VALUES (2222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-06 20:30:00'); INSERT INTO `sys_job_log` VALUES (2223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-06 20:30:01'); INSERT INTO `sys_job_log` VALUES (2224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-06 20:32:00'); INSERT INTO `sys_job_log` VALUES (2225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 20:32:01'); INSERT INTO `sys_job_log` VALUES (2226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-06 20:34:00'); INSERT INTO `sys_job_log` VALUES (2227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 20:34:01'); INSERT INTO `sys_job_log` VALUES (2228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-06 20:36:00'); INSERT INTO `sys_job_log` VALUES (2229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 20:36:01'); INSERT INTO `sys_job_log` VALUES (2230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-06 20:38:00'); INSERT INTO `sys_job_log` VALUES (2231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 20:38:01'); INSERT INTO `sys_job_log` VALUES (2232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-06 20:40:00'); INSERT INTO `sys_job_log` VALUES (2233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 20:40:01'); INSERT INTO `sys_job_log` VALUES (2234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-06 20:42:00'); INSERT INTO `sys_job_log` VALUES (2235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 20:42:01'); INSERT INTO `sys_job_log` VALUES (2236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:667毫秒', '0', '', '2022-01-06 20:44:00'); INSERT INTO `sys_job_log` VALUES (2237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 20:44:01'); INSERT INTO `sys_job_log` VALUES (2238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-06 20:46:00'); INSERT INTO `sys_job_log` VALUES (2239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-06 20:46:01'); INSERT INTO `sys_job_log` VALUES (2240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-06 20:48:00'); INSERT INTO `sys_job_log` VALUES (2241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 20:48:01'); INSERT INTO `sys_job_log` VALUES (2242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-06 20:50:00'); INSERT INTO `sys_job_log` VALUES (2243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 20:50:01'); INSERT INTO `sys_job_log` VALUES (2244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-06 20:52:00'); INSERT INTO `sys_job_log` VALUES (2245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 20:52:01'); INSERT INTO `sys_job_log` VALUES (2246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-06 20:54:00'); INSERT INTO `sys_job_log` VALUES (2247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 20:54:01'); INSERT INTO `sys_job_log` VALUES (2248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-06 20:56:00'); INSERT INTO `sys_job_log` VALUES (2249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-06 20:56:01'); INSERT INTO `sys_job_log` VALUES (2250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-06 20:58:00'); INSERT INTO `sys_job_log` VALUES (2251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-06 20:58:01'); INSERT INTO `sys_job_log` VALUES (2252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-06 21:00:00'); INSERT INTO `sys_job_log` VALUES (2253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 21:00:01'); INSERT INTO `sys_job_log` VALUES (2254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-06 21:02:00'); INSERT INTO `sys_job_log` VALUES (2255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 21:02:01'); INSERT INTO `sys_job_log` VALUES (2256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-06 21:04:00'); INSERT INTO `sys_job_log` VALUES (2257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 21:04:01'); INSERT INTO `sys_job_log` VALUES (2258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-06 21:06:00'); INSERT INTO `sys_job_log` VALUES (2259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 21:06:01'); INSERT INTO `sys_job_log` VALUES (2260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-06 21:08:00'); INSERT INTO `sys_job_log` VALUES (2261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 21:08:01'); INSERT INTO `sys_job_log` VALUES (2262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-06 21:10:00'); INSERT INTO `sys_job_log` VALUES (2263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 21:10:01'); INSERT INTO `sys_job_log` VALUES (2264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-06 21:12:00'); INSERT INTO `sys_job_log` VALUES (2265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 21:12:01'); INSERT INTO `sys_job_log` VALUES (2266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-06 21:14:00'); INSERT INTO `sys_job_log` VALUES (2267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 21:14:01'); INSERT INTO `sys_job_log` VALUES (2268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-06 21:16:00'); INSERT INTO `sys_job_log` VALUES (2269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 21:16:01'); INSERT INTO `sys_job_log` VALUES (2270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-06 21:18:00'); INSERT INTO `sys_job_log` VALUES (2271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 21:18:01'); INSERT INTO `sys_job_log` VALUES (2272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-06 21:20:00'); INSERT INTO `sys_job_log` VALUES (2273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-06 21:20:01'); INSERT INTO `sys_job_log` VALUES (2274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-06 21:22:00'); INSERT INTO `sys_job_log` VALUES (2275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 21:22:01'); INSERT INTO `sys_job_log` VALUES (2276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-06 21:24:00'); INSERT INTO `sys_job_log` VALUES (2277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-06 21:24:01'); INSERT INTO `sys_job_log` VALUES (2278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-06 21:26:00'); INSERT INTO `sys_job_log` VALUES (2279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 21:26:01'); INSERT INTO `sys_job_log` VALUES (2280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-06 21:28:00'); INSERT INTO `sys_job_log` VALUES (2281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 21:28:01'); INSERT INTO `sys_job_log` VALUES (2282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-06 21:30:00'); INSERT INTO `sys_job_log` VALUES (2283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 21:30:01'); INSERT INTO `sys_job_log` VALUES (2284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-06 21:32:00'); INSERT INTO `sys_job_log` VALUES (2285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 21:32:01'); INSERT INTO `sys_job_log` VALUES (2286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-06 21:34:00'); INSERT INTO `sys_job_log` VALUES (2287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 21:34:01'); INSERT INTO `sys_job_log` VALUES (2288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-06 21:36:00'); INSERT INTO `sys_job_log` VALUES (2289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 21:36:01'); INSERT INTO `sys_job_log` VALUES (2290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-06 21:38:00'); INSERT INTO `sys_job_log` VALUES (2291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 21:38:01'); INSERT INTO `sys_job_log` VALUES (2292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-06 21:40:00'); INSERT INTO `sys_job_log` VALUES (2293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 21:40:01'); INSERT INTO `sys_job_log` VALUES (2294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-06 21:42:00'); INSERT INTO `sys_job_log` VALUES (2295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-06 21:42:01'); INSERT INTO `sys_job_log` VALUES (2296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-06 21:44:00'); INSERT INTO `sys_job_log` VALUES (2297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 21:44:01'); INSERT INTO `sys_job_log` VALUES (2298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-06 21:46:00'); INSERT INTO `sys_job_log` VALUES (2299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 21:46:01'); INSERT INTO `sys_job_log` VALUES (2300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-06 21:48:00'); INSERT INTO `sys_job_log` VALUES (2301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 21:48:01'); INSERT INTO `sys_job_log` VALUES (2302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-06 21:50:00'); INSERT INTO `sys_job_log` VALUES (2303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 21:50:01'); INSERT INTO `sys_job_log` VALUES (2304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-06 21:52:00'); INSERT INTO `sys_job_log` VALUES (2305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 21:52:01'); INSERT INTO `sys_job_log` VALUES (2306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-06 21:54:00'); INSERT INTO `sys_job_log` VALUES (2307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-06 21:54:01'); INSERT INTO `sys_job_log` VALUES (2308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-06 21:56:00'); INSERT INTO `sys_job_log` VALUES (2309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 21:56:01'); INSERT INTO `sys_job_log` VALUES (2310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-06 21:58:00'); INSERT INTO `sys_job_log` VALUES (2311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 21:58:01'); INSERT INTO `sys_job_log` VALUES (2312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-06 22:00:00'); INSERT INTO `sys_job_log` VALUES (2313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 22:00:01'); INSERT INTO `sys_job_log` VALUES (2314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-06 22:02:01'); INSERT INTO `sys_job_log` VALUES (2315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 22:02:01'); INSERT INTO `sys_job_log` VALUES (2316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-06 22:04:00'); INSERT INTO `sys_job_log` VALUES (2317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 22:04:01'); INSERT INTO `sys_job_log` VALUES (2318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-06 22:06:00'); INSERT INTO `sys_job_log` VALUES (2319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 22:06:01'); INSERT INTO `sys_job_log` VALUES (2320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-06 22:08:00'); INSERT INTO `sys_job_log` VALUES (2321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 22:08:01'); INSERT INTO `sys_job_log` VALUES (2322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-06 22:10:00'); INSERT INTO `sys_job_log` VALUES (2323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 22:10:01'); INSERT INTO `sys_job_log` VALUES (2324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-06 22:12:00'); INSERT INTO `sys_job_log` VALUES (2325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 22:12:01'); INSERT INTO `sys_job_log` VALUES (2326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-06 22:14:00'); INSERT INTO `sys_job_log` VALUES (2327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 22:14:01'); INSERT INTO `sys_job_log` VALUES (2328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-06 22:16:00'); INSERT INTO `sys_job_log` VALUES (2329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 22:16:01'); INSERT INTO `sys_job_log` VALUES (2330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-06 22:18:00'); INSERT INTO `sys_job_log` VALUES (2331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 22:18:01'); INSERT INTO `sys_job_log` VALUES (2332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-06 22:20:00'); INSERT INTO `sys_job_log` VALUES (2333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 22:20:01'); INSERT INTO `sys_job_log` VALUES (2334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-06 22:22:00'); INSERT INTO `sys_job_log` VALUES (2335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 22:22:01'); INSERT INTO `sys_job_log` VALUES (2336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-06 22:24:00'); INSERT INTO `sys_job_log` VALUES (2337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 22:24:01'); INSERT INTO `sys_job_log` VALUES (2338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-06 22:26:00'); INSERT INTO `sys_job_log` VALUES (2339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 22:26:01'); INSERT INTO `sys_job_log` VALUES (2340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-06 22:28:00'); INSERT INTO `sys_job_log` VALUES (2341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 22:28:01'); INSERT INTO `sys_job_log` VALUES (2342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-06 22:30:00'); INSERT INTO `sys_job_log` VALUES (2343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 22:30:01'); INSERT INTO `sys_job_log` VALUES (2344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-06 22:32:00'); INSERT INTO `sys_job_log` VALUES (2345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-06 22:32:01'); INSERT INTO `sys_job_log` VALUES (2346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-06 22:34:00'); INSERT INTO `sys_job_log` VALUES (2347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 22:34:01'); INSERT INTO `sys_job_log` VALUES (2348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-06 22:36:00'); INSERT INTO `sys_job_log` VALUES (2349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 22:36:01'); INSERT INTO `sys_job_log` VALUES (2350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-06 22:38:00'); INSERT INTO `sys_job_log` VALUES (2351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-06 22:38:01'); INSERT INTO `sys_job_log` VALUES (2352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-06 22:40:00'); INSERT INTO `sys_job_log` VALUES (2353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 22:40:01'); INSERT INTO `sys_job_log` VALUES (2354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-06 22:42:00'); INSERT INTO `sys_job_log` VALUES (2355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 22:42:01'); INSERT INTO `sys_job_log` VALUES (2356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-06 22:44:00'); INSERT INTO `sys_job_log` VALUES (2357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-06 22:44:01'); INSERT INTO `sys_job_log` VALUES (2358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-06 22:46:00'); INSERT INTO `sys_job_log` VALUES (2359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-06 22:46:01'); INSERT INTO `sys_job_log` VALUES (2360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-06 22:48:00'); INSERT INTO `sys_job_log` VALUES (2361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 22:48:01'); INSERT INTO `sys_job_log` VALUES (2362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-06 22:50:00'); INSERT INTO `sys_job_log` VALUES (2363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-06 22:50:01'); INSERT INTO `sys_job_log` VALUES (2364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-06 22:52:00'); INSERT INTO `sys_job_log` VALUES (2365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-06 22:52:01'); INSERT INTO `sys_job_log` VALUES (2366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-06 22:54:00'); INSERT INTO `sys_job_log` VALUES (2367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 22:54:01'); INSERT INTO `sys_job_log` VALUES (2368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-06 22:56:00'); INSERT INTO `sys_job_log` VALUES (2369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 22:56:01'); INSERT INTO `sys_job_log` VALUES (2370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-06 22:58:00'); INSERT INTO `sys_job_log` VALUES (2371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-06 22:58:01'); INSERT INTO `sys_job_log` VALUES (2372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-06 23:00:00'); INSERT INTO `sys_job_log` VALUES (2373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-06 23:00:01'); INSERT INTO `sys_job_log` VALUES (2374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-06 23:02:00'); INSERT INTO `sys_job_log` VALUES (2375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-06 23:02:01'); INSERT INTO `sys_job_log` VALUES (2376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-06 23:04:00'); INSERT INTO `sys_job_log` VALUES (2377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-06 23:04:01'); INSERT INTO `sys_job_log` VALUES (2378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:335毫秒', '0', '', '2022-01-06 23:06:00'); INSERT INTO `sys_job_log` VALUES (2379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-06 23:06:01'); INSERT INTO `sys_job_log` VALUES (2380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-06 23:08:00'); INSERT INTO `sys_job_log` VALUES (2381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-06 23:08:01'); INSERT INTO `sys_job_log` VALUES (2382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-06 23:10:00'); INSERT INTO `sys_job_log` VALUES (2383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-06 23:10:01'); INSERT INTO `sys_job_log` VALUES (2384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:472毫秒', '0', '', '2022-01-06 23:14:00'); INSERT INTO `sys_job_log` VALUES (2385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-06 23:14:01'); INSERT INTO `sys_job_log` VALUES (2386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1501毫秒', '0', '', '2022-01-07 08:58:01'); INSERT INTO `sys_job_log` VALUES (2387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 08:58:01'); INSERT INTO `sys_job_log` VALUES (2388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2022-01-07 09:00:01'); INSERT INTO `sys_job_log` VALUES (2389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-07 09:00:01'); INSERT INTO `sys_job_log` VALUES (2390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-07 09:02:00'); INSERT INTO `sys_job_log` VALUES (2391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 09:02:01'); INSERT INTO `sys_job_log` VALUES (2392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1127毫秒', '0', '', '2022-01-07 09:04:01'); INSERT INTO `sys_job_log` VALUES (2393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 09:04:01'); INSERT INTO `sys_job_log` VALUES (2394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-07 09:06:01'); INSERT INTO `sys_job_log` VALUES (2395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 09:06:01'); INSERT INTO `sys_job_log` VALUES (2396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-07 09:08:01'); INSERT INTO `sys_job_log` VALUES (2397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 09:08:01'); INSERT INTO `sys_job_log` VALUES (2398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-07 09:10:00'); INSERT INTO `sys_job_log` VALUES (2399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 09:10:01'); INSERT INTO `sys_job_log` VALUES (2400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-07 09:12:01'); INSERT INTO `sys_job_log` VALUES (2401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 09:12:01'); INSERT INTO `sys_job_log` VALUES (2402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 09:14:00'); INSERT INTO `sys_job_log` VALUES (2403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-07 09:14:01'); INSERT INTO `sys_job_log` VALUES (2404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-07 09:16:01'); INSERT INTO `sys_job_log` VALUES (2405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 09:16:01'); INSERT INTO `sys_job_log` VALUES (2406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-07 09:18:01'); INSERT INTO `sys_job_log` VALUES (2407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-07 09:18:01'); INSERT INTO `sys_job_log` VALUES (2408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2007毫秒', '0', '', '2022-01-07 09:20:02'); INSERT INTO `sys_job_log` VALUES (2409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-07 09:20:02'); INSERT INTO `sys_job_log` VALUES (2410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 09:22:00'); INSERT INTO `sys_job_log` VALUES (2411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-07 09:22:01'); INSERT INTO `sys_job_log` VALUES (2412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-07 09:24:01'); INSERT INTO `sys_job_log` VALUES (2413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-07 09:24:01'); INSERT INTO `sys_job_log` VALUES (2414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 09:26:00'); INSERT INTO `sys_job_log` VALUES (2415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-07 09:26:01'); INSERT INTO `sys_job_log` VALUES (2416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 09:28:00'); INSERT INTO `sys_job_log` VALUES (2417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-07 09:28:01'); INSERT INTO `sys_job_log` VALUES (2418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-07 09:30:01'); INSERT INTO `sys_job_log` VALUES (2419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-07 09:30:01'); INSERT INTO `sys_job_log` VALUES (2420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-07 09:32:01'); INSERT INTO `sys_job_log` VALUES (2421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-07 09:32:01'); INSERT INTO `sys_job_log` VALUES (2422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 09:34:00'); INSERT INTO `sys_job_log` VALUES (2423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-07 09:34:01'); INSERT INTO `sys_job_log` VALUES (2424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-07 09:36:01'); INSERT INTO `sys_job_log` VALUES (2425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-07 09:36:01'); INSERT INTO `sys_job_log` VALUES (2426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-07 09:38:00'); INSERT INTO `sys_job_log` VALUES (2427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-07 09:38:01'); INSERT INTO `sys_job_log` VALUES (2428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-07 09:40:01'); INSERT INTO `sys_job_log` VALUES (2429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-07 09:40:01'); INSERT INTO `sys_job_log` VALUES (2430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-07 09:42:01'); INSERT INTO `sys_job_log` VALUES (2431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-07 09:42:01'); INSERT INTO `sys_job_log` VALUES (2432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2008毫秒', '0', '', '2022-01-07 09:44:02'); INSERT INTO `sys_job_log` VALUES (2433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 09:44:02'); INSERT INTO `sys_job_log` VALUES (2434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2022-01-07 09:46:01'); INSERT INTO `sys_job_log` VALUES (2435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-07 09:46:01'); INSERT INTO `sys_job_log` VALUES (2436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 09:48:00'); INSERT INTO `sys_job_log` VALUES (2437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 09:48:01'); INSERT INTO `sys_job_log` VALUES (2438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 09:50:00'); INSERT INTO `sys_job_log` VALUES (2439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-07 09:50:01'); INSERT INTO `sys_job_log` VALUES (2440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-07 09:52:01'); INSERT INTO `sys_job_log` VALUES (2441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-07 09:52:01'); INSERT INTO `sys_job_log` VALUES (2442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 09:54:00'); INSERT INTO `sys_job_log` VALUES (2443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-07 09:54:01'); INSERT INTO `sys_job_log` VALUES (2444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-07 09:56:02'); INSERT INTO `sys_job_log` VALUES (2445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 09:56:02'); INSERT INTO `sys_job_log` VALUES (2446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 09:58:00'); INSERT INTO `sys_job_log` VALUES (2447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-07 09:58:01'); INSERT INTO `sys_job_log` VALUES (2448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-07 10:00:01'); INSERT INTO `sys_job_log` VALUES (2449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 10:00:01'); INSERT INTO `sys_job_log` VALUES (2450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 10:02:00'); INSERT INTO `sys_job_log` VALUES (2451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-07 10:02:01'); INSERT INTO `sys_job_log` VALUES (2452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1135毫秒', '0', '', '2022-01-07 10:04:01'); INSERT INTO `sys_job_log` VALUES (2453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-07 10:04:01'); INSERT INTO `sys_job_log` VALUES (2454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-07 10:06:01'); INSERT INTO `sys_job_log` VALUES (2455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-07 10:06:01'); INSERT INTO `sys_job_log` VALUES (2456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 10:08:00'); INSERT INTO `sys_job_log` VALUES (2457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-07 10:08:01'); INSERT INTO `sys_job_log` VALUES (2458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 10:10:00'); INSERT INTO `sys_job_log` VALUES (2459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 10:10:01'); INSERT INTO `sys_job_log` VALUES (2460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 10:12:00'); INSERT INTO `sys_job_log` VALUES (2461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-07 10:12:01'); INSERT INTO `sys_job_log` VALUES (2462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 10:14:00'); INSERT INTO `sys_job_log` VALUES (2463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-07 10:14:01'); INSERT INTO `sys_job_log` VALUES (2464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-07 10:16:01'); INSERT INTO `sys_job_log` VALUES (2465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-07 10:16:01'); INSERT INTO `sys_job_log` VALUES (2466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2022-01-07 10:18:01'); INSERT INTO `sys_job_log` VALUES (2467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-07 10:18:01'); INSERT INTO `sys_job_log` VALUES (2468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-07 10:20:00'); INSERT INTO `sys_job_log` VALUES (2469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 10:20:01'); INSERT INTO `sys_job_log` VALUES (2470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-07 10:22:00'); INSERT INTO `sys_job_log` VALUES (2471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 10:22:01'); INSERT INTO `sys_job_log` VALUES (2472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1117毫秒', '0', '', '2022-01-07 10:24:01'); INSERT INTO `sys_job_log` VALUES (2473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 10:24:01'); INSERT INTO `sys_job_log` VALUES (2474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 10:26:00'); INSERT INTO `sys_job_log` VALUES (2475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 10:26:01'); INSERT INTO `sys_job_log` VALUES (2476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1132毫秒', '0', '', '2022-01-07 10:28:01'); INSERT INTO `sys_job_log` VALUES (2477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 10:28:01'); INSERT INTO `sys_job_log` VALUES (2478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-07 10:30:01'); INSERT INTO `sys_job_log` VALUES (2479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 10:30:01'); INSERT INTO `sys_job_log` VALUES (2480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-07 10:32:00'); INSERT INTO `sys_job_log` VALUES (2481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-07 10:32:01'); INSERT INTO `sys_job_log` VALUES (2482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1163毫秒', '0', '', '2022-01-07 10:34:01'); INSERT INTO `sys_job_log` VALUES (2483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 10:34:01'); INSERT INTO `sys_job_log` VALUES (2484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1511毫秒', '0', '', '2022-01-07 10:36:01'); INSERT INTO `sys_job_log` VALUES (2485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 10:36:01'); INSERT INTO `sys_job_log` VALUES (2486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2298毫秒', '0', '', '2022-01-07 10:42:02'); INSERT INTO `sys_job_log` VALUES (2487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-07 10:42:02'); INSERT INTO `sys_job_log` VALUES (2488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-07 10:44:00'); INSERT INTO `sys_job_log` VALUES (2489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 10:44:01'); INSERT INTO `sys_job_log` VALUES (2490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-07 10:46:02'); INSERT INTO `sys_job_log` VALUES (2491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-07 10:46:04'); INSERT INTO `sys_job_log` VALUES (2492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-07 10:48:02'); INSERT INTO `sys_job_log` VALUES (2493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-07 10:48:04'); INSERT INTO `sys_job_log` VALUES (2494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-07 10:50:00'); INSERT INTO `sys_job_log` VALUES (2495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 10:50:01'); INSERT INTO `sys_job_log` VALUES (2496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-07 10:52:01'); INSERT INTO `sys_job_log` VALUES (2497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 10:52:01'); INSERT INTO `sys_job_log` VALUES (2498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-07 10:54:00'); INSERT INTO `sys_job_log` VALUES (2499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 10:54:01'); INSERT INTO `sys_job_log` VALUES (2500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-07 10:56:01'); INSERT INTO `sys_job_log` VALUES (2501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 10:56:01'); INSERT INTO `sys_job_log` VALUES (2502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2022-01-07 10:58:01'); INSERT INTO `sys_job_log` VALUES (2503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 10:58:01'); INSERT INTO `sys_job_log` VALUES (2504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-07 11:00:00'); INSERT INTO `sys_job_log` VALUES (2505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 11:00:01'); INSERT INTO `sys_job_log` VALUES (2506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-07 11:02:00'); INSERT INTO `sys_job_log` VALUES (2507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 11:02:01'); INSERT INTO `sys_job_log` VALUES (2508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1116毫秒', '0', '', '2022-01-07 11:04:01'); INSERT INTO `sys_job_log` VALUES (2509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 11:04:01'); INSERT INTO `sys_job_log` VALUES (2510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-07 11:06:00'); INSERT INTO `sys_job_log` VALUES (2511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 11:06:01'); INSERT INTO `sys_job_log` VALUES (2512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-07 11:08:00'); INSERT INTO `sys_job_log` VALUES (2513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 11:08:01'); INSERT INTO `sys_job_log` VALUES (2514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-07 11:10:00'); INSERT INTO `sys_job_log` VALUES (2515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 11:10:01'); INSERT INTO `sys_job_log` VALUES (2516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-07 11:12:00'); INSERT INTO `sys_job_log` VALUES (2517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 11:12:01'); INSERT INTO `sys_job_log` VALUES (2518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-07 11:14:02'); INSERT INTO `sys_job_log` VALUES (2519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-07 11:14:02'); INSERT INTO `sys_job_log` VALUES (2520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-07 11:16:01'); INSERT INTO `sys_job_log` VALUES (2521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 11:16:01'); INSERT INTO `sys_job_log` VALUES (2522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-07 11:18:00'); INSERT INTO `sys_job_log` VALUES (2523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 11:18:01'); INSERT INTO `sys_job_log` VALUES (2524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-07 11:20:00'); INSERT INTO `sys_job_log` VALUES (2525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-07 11:20:01'); INSERT INTO `sys_job_log` VALUES (2526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-07 11:22:01'); INSERT INTO `sys_job_log` VALUES (2527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 11:22:01'); INSERT INTO `sys_job_log` VALUES (2528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 11:24:00'); INSERT INTO `sys_job_log` VALUES (2529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-07 11:24:01'); INSERT INTO `sys_job_log` VALUES (2530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2022-01-07 11:26:01'); INSERT INTO `sys_job_log` VALUES (2531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 11:26:01'); INSERT INTO `sys_job_log` VALUES (2532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-07 11:28:00'); INSERT INTO `sys_job_log` VALUES (2533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 11:28:01'); INSERT INTO `sys_job_log` VALUES (2534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-07 11:30:00'); INSERT INTO `sys_job_log` VALUES (2535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 11:30:01'); INSERT INTO `sys_job_log` VALUES (2536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-07 11:32:01'); INSERT INTO `sys_job_log` VALUES (2537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-07 11:32:01'); INSERT INTO `sys_job_log` VALUES (2538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-07 11:34:01'); INSERT INTO `sys_job_log` VALUES (2539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 11:34:01'); INSERT INTO `sys_job_log` VALUES (2540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-07 11:36:00'); INSERT INTO `sys_job_log` VALUES (2541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 11:36:01'); INSERT INTO `sys_job_log` VALUES (2542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:468毫秒', '0', '', '2022-01-07 11:38:00'); INSERT INTO `sys_job_log` VALUES (2543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:391毫秒', '0', '', '2022-01-07 11:38:01'); INSERT INTO `sys_job_log` VALUES (2544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-07 11:40:01'); INSERT INTO `sys_job_log` VALUES (2545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 11:40:01'); INSERT INTO `sys_job_log` VALUES (2546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-07 11:42:01'); INSERT INTO `sys_job_log` VALUES (2547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 11:42:01'); INSERT INTO `sys_job_log` VALUES (2548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 11:44:00'); INSERT INTO `sys_job_log` VALUES (2549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-07 11:44:01'); INSERT INTO `sys_job_log` VALUES (2550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-07 11:46:01'); INSERT INTO `sys_job_log` VALUES (2551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 11:46:01'); INSERT INTO `sys_job_log` VALUES (2552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 11:48:00'); INSERT INTO `sys_job_log` VALUES (2553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 11:48:01'); INSERT INTO `sys_job_log` VALUES (2554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 11:50:00'); INSERT INTO `sys_job_log` VALUES (2555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 11:50:01'); INSERT INTO `sys_job_log` VALUES (2556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-07 11:52:00'); INSERT INTO `sys_job_log` VALUES (2557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 11:52:01'); INSERT INTO `sys_job_log` VALUES (2558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 11:54:00'); INSERT INTO `sys_job_log` VALUES (2559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-07 11:54:01'); INSERT INTO `sys_job_log` VALUES (2560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:8毫秒', '0', '', '2022-01-07 11:56:00'); INSERT INTO `sys_job_log` VALUES (2561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-07 11:56:01'); INSERT INTO `sys_job_log` VALUES (2562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1960毫秒', '0', '', '2022-01-07 11:58:01'); INSERT INTO `sys_job_log` VALUES (2563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-07 11:58:02'); INSERT INTO `sys_job_log` VALUES (2564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-07 12:00:00'); INSERT INTO `sys_job_log` VALUES (2565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 12:00:01'); INSERT INTO `sys_job_log` VALUES (2566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:700毫秒', '0', '', '2022-01-07 12:02:00'); INSERT INTO `sys_job_log` VALUES (2567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:577毫秒', '0', '', '2022-01-07 12:02:01'); INSERT INTO `sys_job_log` VALUES (2568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1158毫秒', '0', '', '2022-01-07 12:04:01'); INSERT INTO `sys_job_log` VALUES (2569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 12:04:01'); INSERT INTO `sys_job_log` VALUES (2570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-07 12:06:00'); INSERT INTO `sys_job_log` VALUES (2571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 12:06:01'); INSERT INTO `sys_job_log` VALUES (2572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 12:08:00'); INSERT INTO `sys_job_log` VALUES (2573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-07 12:08:01'); INSERT INTO `sys_job_log` VALUES (2574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-07 12:10:00'); INSERT INTO `sys_job_log` VALUES (2575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:314毫秒', '0', '', '2022-01-07 12:10:01'); INSERT INTO `sys_job_log` VALUES (2576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:632毫秒', '0', '', '2022-01-07 12:12:00'); INSERT INTO `sys_job_log` VALUES (2577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:281毫秒', '0', '', '2022-01-07 12:12:01'); INSERT INTO `sys_job_log` VALUES (2578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-07 12:14:00'); INSERT INTO `sys_job_log` VALUES (2579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-07 12:14:01'); INSERT INTO `sys_job_log` VALUES (2580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:328毫秒', '0', '', '2022-01-07 12:16:00'); INSERT INTO `sys_job_log` VALUES (2581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:299毫秒', '0', '', '2022-01-07 12:16:01'); INSERT INTO `sys_job_log` VALUES (2582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:456毫秒', '0', '', '2022-01-07 12:18:00'); INSERT INTO `sys_job_log` VALUES (2583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-07 12:18:01'); INSERT INTO `sys_job_log` VALUES (2584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1140毫秒', '0', '', '2022-01-07 12:20:01'); INSERT INTO `sys_job_log` VALUES (2585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 12:20:01'); INSERT INTO `sys_job_log` VALUES (2586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-07 12:22:00'); INSERT INTO `sys_job_log` VALUES (2587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 12:22:01'); INSERT INTO `sys_job_log` VALUES (2588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-07 12:24:00'); INSERT INTO `sys_job_log` VALUES (2589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 12:24:01'); INSERT INTO `sys_job_log` VALUES (2590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-07 12:26:01'); INSERT INTO `sys_job_log` VALUES (2591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 12:26:01'); INSERT INTO `sys_job_log` VALUES (2592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-07 12:28:00'); INSERT INTO `sys_job_log` VALUES (2593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 12:28:01'); INSERT INTO `sys_job_log` VALUES (2594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1130毫秒', '0', '', '2022-01-07 12:30:01'); INSERT INTO `sys_job_log` VALUES (2595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-07 12:30:01'); INSERT INTO `sys_job_log` VALUES (2596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-07 12:32:00'); INSERT INTO `sys_job_log` VALUES (2597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 12:32:01'); INSERT INTO `sys_job_log` VALUES (2598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 12:34:00'); INSERT INTO `sys_job_log` VALUES (2599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 12:34:01'); INSERT INTO `sys_job_log` VALUES (2600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-07 12:36:00'); INSERT INTO `sys_job_log` VALUES (2601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 12:36:01'); INSERT INTO `sys_job_log` VALUES (2602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1118毫秒', '0', '', '2022-01-07 12:38:01'); INSERT INTO `sys_job_log` VALUES (2603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 12:38:01'); INSERT INTO `sys_job_log` VALUES (2604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-07 12:40:00'); INSERT INTO `sys_job_log` VALUES (2605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 12:40:01'); INSERT INTO `sys_job_log` VALUES (2606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-07 12:42:00'); INSERT INTO `sys_job_log` VALUES (2607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 12:42:01'); INSERT INTO `sys_job_log` VALUES (2608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-07 12:44:00'); INSERT INTO `sys_job_log` VALUES (2609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 12:44:01'); INSERT INTO `sys_job_log` VALUES (2610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1134毫秒', '0', '', '2022-01-07 12:46:01'); INSERT INTO `sys_job_log` VALUES (2611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 12:46:01'); INSERT INTO `sys_job_log` VALUES (2612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-07 12:48:01'); INSERT INTO `sys_job_log` VALUES (2613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-07 12:48:01'); INSERT INTO `sys_job_log` VALUES (2614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-07 12:50:01'); INSERT INTO `sys_job_log` VALUES (2615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 12:50:01'); INSERT INTO `sys_job_log` VALUES (2616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-07 12:52:01'); INSERT INTO `sys_job_log` VALUES (2617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 12:52:01'); INSERT INTO `sys_job_log` VALUES (2618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-07 12:54:01'); INSERT INTO `sys_job_log` VALUES (2619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 12:54:01'); INSERT INTO `sys_job_log` VALUES (2620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1119毫秒', '0', '', '2022-01-07 12:56:01'); INSERT INTO `sys_job_log` VALUES (2621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 12:56:01'); INSERT INTO `sys_job_log` VALUES (2622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-07 12:58:01'); INSERT INTO `sys_job_log` VALUES (2623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 12:58:01'); INSERT INTO `sys_job_log` VALUES (2624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-07 13:00:00'); INSERT INTO `sys_job_log` VALUES (2625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-07 13:00:01'); INSERT INTO `sys_job_log` VALUES (2626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-07 13:02:00'); INSERT INTO `sys_job_log` VALUES (2627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 13:02:01'); INSERT INTO `sys_job_log` VALUES (2628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-07 13:04:00'); INSERT INTO `sys_job_log` VALUES (2629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 13:04:01'); INSERT INTO `sys_job_log` VALUES (2630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-07 13:06:00'); INSERT INTO `sys_job_log` VALUES (2631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-07 13:06:01'); INSERT INTO `sys_job_log` VALUES (2632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-07 13:08:00'); INSERT INTO `sys_job_log` VALUES (2633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 13:08:01'); INSERT INTO `sys_job_log` VALUES (2634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1114毫秒', '0', '', '2022-01-07 13:10:01'); INSERT INTO `sys_job_log` VALUES (2635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-07 13:10:01'); INSERT INTO `sys_job_log` VALUES (2636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-07 13:12:00'); INSERT INTO `sys_job_log` VALUES (2637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 13:12:01'); INSERT INTO `sys_job_log` VALUES (2638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-07 13:14:00'); INSERT INTO `sys_job_log` VALUES (2639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 13:14:01'); INSERT INTO `sys_job_log` VALUES (2640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-07 13:16:01'); INSERT INTO `sys_job_log` VALUES (2641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 13:16:01'); INSERT INTO `sys_job_log` VALUES (2642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-07 13:18:02'); INSERT INTO `sys_job_log` VALUES (2643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-07 13:18:02'); INSERT INTO `sys_job_log` VALUES (2644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-07 13:20:01'); INSERT INTO `sys_job_log` VALUES (2645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 13:20:01'); INSERT INTO `sys_job_log` VALUES (2646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 13:22:00'); INSERT INTO `sys_job_log` VALUES (2647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 13:22:01'); INSERT INTO `sys_job_log` VALUES (2648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-07 13:24:01'); INSERT INTO `sys_job_log` VALUES (2649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 13:24:01'); INSERT INTO `sys_job_log` VALUES (2650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-07 13:26:01'); INSERT INTO `sys_job_log` VALUES (2651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-07 13:26:01'); INSERT INTO `sys_job_log` VALUES (2652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-07 13:28:01'); INSERT INTO `sys_job_log` VALUES (2653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 13:28:01'); INSERT INTO `sys_job_log` VALUES (2654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-07 13:30:01'); INSERT INTO `sys_job_log` VALUES (2655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 13:30:01'); INSERT INTO `sys_job_log` VALUES (2656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-07 13:32:00'); INSERT INTO `sys_job_log` VALUES (2657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 13:32:01'); INSERT INTO `sys_job_log` VALUES (2658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-07 13:34:01'); INSERT INTO `sys_job_log` VALUES (2659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 13:34:01'); INSERT INTO `sys_job_log` VALUES (2660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-07 13:36:01'); INSERT INTO `sys_job_log` VALUES (2661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-07 13:36:01'); INSERT INTO `sys_job_log` VALUES (2662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 13:38:00'); INSERT INTO `sys_job_log` VALUES (2663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 13:38:01'); INSERT INTO `sys_job_log` VALUES (2664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-07 13:40:01'); INSERT INTO `sys_job_log` VALUES (2665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-07 13:40:01'); INSERT INTO `sys_job_log` VALUES (2666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1116毫秒', '0', '', '2022-01-07 13:42:01'); INSERT INTO `sys_job_log` VALUES (2667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 13:42:01'); INSERT INTO `sys_job_log` VALUES (2668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-07 13:44:01'); INSERT INTO `sys_job_log` VALUES (2669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 13:44:01'); INSERT INTO `sys_job_log` VALUES (2670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-07 13:46:01'); INSERT INTO `sys_job_log` VALUES (2671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-07 13:46:01'); INSERT INTO `sys_job_log` VALUES (2672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-07 13:48:01'); INSERT INTO `sys_job_log` VALUES (2673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-07 13:48:01'); INSERT INTO `sys_job_log` VALUES (2674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-07 13:50:00'); INSERT INTO `sys_job_log` VALUES (2675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 13:50:01'); INSERT INTO `sys_job_log` VALUES (2676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-07 13:52:01'); INSERT INTO `sys_job_log` VALUES (2677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 13:52:01'); INSERT INTO `sys_job_log` VALUES (2678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-07 13:54:02'); INSERT INTO `sys_job_log` VALUES (2679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 13:54:02'); INSERT INTO `sys_job_log` VALUES (2680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 13:56:00'); INSERT INTO `sys_job_log` VALUES (2681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-07 13:56:01'); INSERT INTO `sys_job_log` VALUES (2682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 13:58:00'); INSERT INTO `sys_job_log` VALUES (2683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-07 13:58:01'); INSERT INTO `sys_job_log` VALUES (2684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 14:00:00'); INSERT INTO `sys_job_log` VALUES (2685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-07 14:00:01'); INSERT INTO `sys_job_log` VALUES (2686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-07 14:02:01'); INSERT INTO `sys_job_log` VALUES (2687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-07 14:02:01'); INSERT INTO `sys_job_log` VALUES (2688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-07 14:04:01'); INSERT INTO `sys_job_log` VALUES (2689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-07 14:04:01'); INSERT INTO `sys_job_log` VALUES (2690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 14:06:00'); INSERT INTO `sys_job_log` VALUES (2691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-07 14:06:01'); INSERT INTO `sys_job_log` VALUES (2692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-07 14:08:01'); INSERT INTO `sys_job_log` VALUES (2693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 14:08:01'); INSERT INTO `sys_job_log` VALUES (2694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-07 14:10:01'); INSERT INTO `sys_job_log` VALUES (2695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-07 14:10:01'); INSERT INTO `sys_job_log` VALUES (2696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-07 14:12:01'); INSERT INTO `sys_job_log` VALUES (2697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-07 14:12:01'); INSERT INTO `sys_job_log` VALUES (2698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-07 14:14:01'); INSERT INTO `sys_job_log` VALUES (2699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-07 14:14:01'); INSERT INTO `sys_job_log` VALUES (2700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1134毫秒', '0', '', '2022-01-07 14:16:01'); INSERT INTO `sys_job_log` VALUES (2701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 14:16:01'); INSERT INTO `sys_job_log` VALUES (2702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1130毫秒', '0', '', '2022-01-07 14:18:01'); INSERT INTO `sys_job_log` VALUES (2703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-07 14:18:01'); INSERT INTO `sys_job_log` VALUES (2704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-07 14:20:01'); INSERT INTO `sys_job_log` VALUES (2705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-07 14:20:01'); INSERT INTO `sys_job_log` VALUES (2706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-07 14:22:00'); INSERT INTO `sys_job_log` VALUES (2707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 14:22:01'); INSERT INTO `sys_job_log` VALUES (2708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-07 14:24:01'); INSERT INTO `sys_job_log` VALUES (2709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-07 14:24:01'); INSERT INTO `sys_job_log` VALUES (2710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-07 14:26:00'); INSERT INTO `sys_job_log` VALUES (2711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 14:26:01'); INSERT INTO `sys_job_log` VALUES (2712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-07 14:28:01'); INSERT INTO `sys_job_log` VALUES (2713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-07 14:28:01'); INSERT INTO `sys_job_log` VALUES (2714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-07 14:30:01'); INSERT INTO `sys_job_log` VALUES (2715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-07 14:30:01'); INSERT INTO `sys_job_log` VALUES (2716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-07 14:32:01'); INSERT INTO `sys_job_log` VALUES (2717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-07 14:32:01'); INSERT INTO `sys_job_log` VALUES (2718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 14:34:00'); INSERT INTO `sys_job_log` VALUES (2719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-07 14:34:01'); INSERT INTO `sys_job_log` VALUES (2720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 14:36:00'); INSERT INTO `sys_job_log` VALUES (2721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 14:36:01'); INSERT INTO `sys_job_log` VALUES (2722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-07 14:38:00'); INSERT INTO `sys_job_log` VALUES (2723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-07 14:38:01'); INSERT INTO `sys_job_log` VALUES (2724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-07 14:40:01'); INSERT INTO `sys_job_log` VALUES (2725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 14:40:01'); INSERT INTO `sys_job_log` VALUES (2726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-07 14:42:01'); INSERT INTO `sys_job_log` VALUES (2727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 14:42:01'); INSERT INTO `sys_job_log` VALUES (2728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-07 14:44:01'); INSERT INTO `sys_job_log` VALUES (2729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-07 14:44:01'); INSERT INTO `sys_job_log` VALUES (2730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-07 14:46:00'); INSERT INTO `sys_job_log` VALUES (2731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 14:46:01'); INSERT INTO `sys_job_log` VALUES (2732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-07 14:48:01'); INSERT INTO `sys_job_log` VALUES (2733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-07 14:48:01'); INSERT INTO `sys_job_log` VALUES (2734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 14:50:00'); INSERT INTO `sys_job_log` VALUES (2735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-07 14:50:01'); INSERT INTO `sys_job_log` VALUES (2736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-07 14:52:01'); INSERT INTO `sys_job_log` VALUES (2737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-07 14:52:01'); INSERT INTO `sys_job_log` VALUES (2738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-07 14:54:01'); INSERT INTO `sys_job_log` VALUES (2739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-07 14:54:01'); INSERT INTO `sys_job_log` VALUES (2740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-07 14:56:01'); INSERT INTO `sys_job_log` VALUES (2741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-07 14:56:01'); INSERT INTO `sys_job_log` VALUES (2742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-07 14:58:01'); INSERT INTO `sys_job_log` VALUES (2743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 14:58:01'); INSERT INTO `sys_job_log` VALUES (2744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 15:00:00'); INSERT INTO `sys_job_log` VALUES (2745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 15:00:01'); INSERT INTO `sys_job_log` VALUES (2746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 15:02:00'); INSERT INTO `sys_job_log` VALUES (2747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-07 15:02:01'); INSERT INTO `sys_job_log` VALUES (2748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1079毫秒', '0', '', '2022-01-07 15:04:01'); INSERT INTO `sys_job_log` VALUES (2749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-07 15:04:01'); INSERT INTO `sys_job_log` VALUES (2750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1124毫秒', '0', '', '2022-01-07 15:06:01'); INSERT INTO `sys_job_log` VALUES (2751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 15:06:01'); INSERT INTO `sys_job_log` VALUES (2752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-07 15:08:01'); INSERT INTO `sys_job_log` VALUES (2753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 15:08:01'); INSERT INTO `sys_job_log` VALUES (2754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-07 15:10:00'); INSERT INTO `sys_job_log` VALUES (2755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-07 15:10:01'); INSERT INTO `sys_job_log` VALUES (2756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-07 15:12:00'); INSERT INTO `sys_job_log` VALUES (2757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 15:12:01'); INSERT INTO `sys_job_log` VALUES (2758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2022-01-07 15:14:01'); INSERT INTO `sys_job_log` VALUES (2759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 15:14:01'); INSERT INTO `sys_job_log` VALUES (2760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2022-01-07 15:16:01'); INSERT INTO `sys_job_log` VALUES (2761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 15:16:01'); INSERT INTO `sys_job_log` VALUES (2762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1119毫秒', '0', '', '2022-01-07 15:18:01'); INSERT INTO `sys_job_log` VALUES (2763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-07 15:18:01'); INSERT INTO `sys_job_log` VALUES (2764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2022-01-07 15:20:01'); INSERT INTO `sys_job_log` VALUES (2765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 15:20:01'); INSERT INTO `sys_job_log` VALUES (2766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-07 15:22:00'); INSERT INTO `sys_job_log` VALUES (2767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-07 15:22:01'); INSERT INTO `sys_job_log` VALUES (2768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1131毫秒', '0', '', '2022-01-07 15:24:01'); INSERT INTO `sys_job_log` VALUES (2769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-07 15:24:01'); INSERT INTO `sys_job_log` VALUES (2770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-07 15:26:01'); INSERT INTO `sys_job_log` VALUES (2771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 15:26:01'); INSERT INTO `sys_job_log` VALUES (2772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-07 15:28:01'); INSERT INTO `sys_job_log` VALUES (2773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-07 15:28:01'); INSERT INTO `sys_job_log` VALUES (2774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1116毫秒', '0', '', '2022-01-07 15:30:01'); INSERT INTO `sys_job_log` VALUES (2775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-07 15:30:01'); INSERT INTO `sys_job_log` VALUES (2776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1114毫秒', '0', '', '2022-01-07 15:32:01'); INSERT INTO `sys_job_log` VALUES (2777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 15:32:01'); INSERT INTO `sys_job_log` VALUES (2778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1118毫秒', '0', '', '2022-01-07 15:34:01'); INSERT INTO `sys_job_log` VALUES (2779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 15:34:01'); INSERT INTO `sys_job_log` VALUES (2780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 15:36:00'); INSERT INTO `sys_job_log` VALUES (2781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 15:36:01'); INSERT INTO `sys_job_log` VALUES (2782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 15:38:00'); INSERT INTO `sys_job_log` VALUES (2783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 15:38:01'); INSERT INTO `sys_job_log` VALUES (2784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-07 15:40:01'); INSERT INTO `sys_job_log` VALUES (2785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-07 15:40:01'); INSERT INTO `sys_job_log` VALUES (2786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 15:42:00'); INSERT INTO `sys_job_log` VALUES (2787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-07 15:42:01'); INSERT INTO `sys_job_log` VALUES (2788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-07 15:44:00'); INSERT INTO `sys_job_log` VALUES (2789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-07 15:44:01'); INSERT INTO `sys_job_log` VALUES (2790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2022-01-07 15:46:01'); INSERT INTO `sys_job_log` VALUES (2791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 15:46:01'); INSERT INTO `sys_job_log` VALUES (2792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1117毫秒', '0', '', '2022-01-07 15:48:01'); INSERT INTO `sys_job_log` VALUES (2793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 15:48:01'); INSERT INTO `sys_job_log` VALUES (2794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-07 15:50:00'); INSERT INTO `sys_job_log` VALUES (2795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 15:50:01'); INSERT INTO `sys_job_log` VALUES (2796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-07 15:52:01'); INSERT INTO `sys_job_log` VALUES (2797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 15:52:01'); INSERT INTO `sys_job_log` VALUES (2798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 15:54:00'); INSERT INTO `sys_job_log` VALUES (2799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-07 15:54:01'); INSERT INTO `sys_job_log` VALUES (2800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-07 15:56:01'); INSERT INTO `sys_job_log` VALUES (2801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 15:56:01'); INSERT INTO `sys_job_log` VALUES (2802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 15:58:00'); INSERT INTO `sys_job_log` VALUES (2803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-07 15:58:01'); INSERT INTO `sys_job_log` VALUES (2804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:284毫秒', '0', '', '2022-01-07 16:00:00'); INSERT INTO `sys_job_log` VALUES (2805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-07 16:00:01'); INSERT INTO `sys_job_log` VALUES (2806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-07 16:02:00'); INSERT INTO `sys_job_log` VALUES (2807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-07 16:02:01'); INSERT INTO `sys_job_log` VALUES (2808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-07 16:04:01'); INSERT INTO `sys_job_log` VALUES (2809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 16:04:01'); INSERT INTO `sys_job_log` VALUES (2810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-07 16:06:02'); INSERT INTO `sys_job_log` VALUES (2811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 16:06:02'); INSERT INTO `sys_job_log` VALUES (2812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-07 16:08:01'); INSERT INTO `sys_job_log` VALUES (2813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 16:08:01'); INSERT INTO `sys_job_log` VALUES (2814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-07 16:10:01'); INSERT INTO `sys_job_log` VALUES (2815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 16:10:01'); INSERT INTO `sys_job_log` VALUES (2816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-07 16:12:01'); INSERT INTO `sys_job_log` VALUES (2817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 16:12:01'); INSERT INTO `sys_job_log` VALUES (2818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-07 16:14:01'); INSERT INTO `sys_job_log` VALUES (2819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 16:14:01'); INSERT INTO `sys_job_log` VALUES (2820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-07 16:16:00'); INSERT INTO `sys_job_log` VALUES (2821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-07 16:16:01'); INSERT INTO `sys_job_log` VALUES (2822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1167毫秒', '0', '', '2022-01-07 16:18:01'); INSERT INTO `sys_job_log` VALUES (2823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 16:18:01'); INSERT INTO `sys_job_log` VALUES (2824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-07 16:20:00'); INSERT INTO `sys_job_log` VALUES (2825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 16:20:01'); INSERT INTO `sys_job_log` VALUES (2826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-07 16:22:01'); INSERT INTO `sys_job_log` VALUES (2827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 16:22:01'); INSERT INTO `sys_job_log` VALUES (2828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-07 16:24:01'); INSERT INTO `sys_job_log` VALUES (2829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 16:24:01'); INSERT INTO `sys_job_log` VALUES (2830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-07 16:26:00'); INSERT INTO `sys_job_log` VALUES (2831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-07 16:26:01'); INSERT INTO `sys_job_log` VALUES (2832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1132毫秒', '0', '', '2022-01-07 16:28:01'); INSERT INTO `sys_job_log` VALUES (2833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 16:28:01'); INSERT INTO `sys_job_log` VALUES (2834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2022-01-07 16:30:01'); INSERT INTO `sys_job_log` VALUES (2835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 16:30:01'); INSERT INTO `sys_job_log` VALUES (2836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-07 16:32:01'); INSERT INTO `sys_job_log` VALUES (2837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 16:32:01'); INSERT INTO `sys_job_log` VALUES (2838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-07 16:34:00'); INSERT INTO `sys_job_log` VALUES (2839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 16:34:01'); INSERT INTO `sys_job_log` VALUES (2840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-07 16:36:01'); INSERT INTO `sys_job_log` VALUES (2841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 16:36:01'); INSERT INTO `sys_job_log` VALUES (2842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-07 16:38:00'); INSERT INTO `sys_job_log` VALUES (2843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 16:38:01'); INSERT INTO `sys_job_log` VALUES (2844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-07 16:40:01'); INSERT INTO `sys_job_log` VALUES (2845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-07 16:40:01'); INSERT INTO `sys_job_log` VALUES (2846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2018毫秒', '0', '', '2022-01-07 16:42:02'); INSERT INTO `sys_job_log` VALUES (2847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-07 16:42:02'); INSERT INTO `sys_job_log` VALUES (2848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-07 16:44:01'); INSERT INTO `sys_job_log` VALUES (2849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-07 16:44:01'); INSERT INTO `sys_job_log` VALUES (2850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-07 16:46:01'); INSERT INTO `sys_job_log` VALUES (2851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 16:46:01'); INSERT INTO `sys_job_log` VALUES (2852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-07 16:48:00'); INSERT INTO `sys_job_log` VALUES (2853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 16:48:01'); INSERT INTO `sys_job_log` VALUES (2854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1130毫秒', '0', '', '2022-01-07 16:50:01'); INSERT INTO `sys_job_log` VALUES (2855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 16:50:01'); INSERT INTO `sys_job_log` VALUES (2856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-07 16:52:00'); INSERT INTO `sys_job_log` VALUES (2857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 16:52:01'); INSERT INTO `sys_job_log` VALUES (2858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-07 16:54:02'); INSERT INTO `sys_job_log` VALUES (2859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-07 16:54:04'); INSERT INTO `sys_job_log` VALUES (2860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-07 16:56:02'); INSERT INTO `sys_job_log` VALUES (2861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-07 16:56:04'); INSERT INTO `sys_job_log` VALUES (2862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-07 16:58:00'); INSERT INTO `sys_job_log` VALUES (2863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 16:58:01'); INSERT INTO `sys_job_log` VALUES (2864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-07 17:00:00'); INSERT INTO `sys_job_log` VALUES (2865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-07 17:00:01'); INSERT INTO `sys_job_log` VALUES (2866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:720毫秒', '0', '', '2022-01-07 17:02:00'); INSERT INTO `sys_job_log` VALUES (2867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-07 17:02:01'); INSERT INTO `sys_job_log` VALUES (2868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-07 17:04:01'); INSERT INTO `sys_job_log` VALUES (2869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-07 17:04:01'); INSERT INTO `sys_job_log` VALUES (2870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1124毫秒', '0', '', '2022-01-07 17:06:01'); INSERT INTO `sys_job_log` VALUES (2871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 17:06:01'); INSERT INTO `sys_job_log` VALUES (2872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1119毫秒', '0', '', '2022-01-07 17:08:01'); INSERT INTO `sys_job_log` VALUES (2873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 17:08:01'); INSERT INTO `sys_job_log` VALUES (2874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-07 17:10:01'); INSERT INTO `sys_job_log` VALUES (2875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 17:10:01'); INSERT INTO `sys_job_log` VALUES (2876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-07 17:12:00'); INSERT INTO `sys_job_log` VALUES (2877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 17:12:01'); INSERT INTO `sys_job_log` VALUES (2878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-07 17:14:01'); INSERT INTO `sys_job_log` VALUES (2879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 17:14:01'); INSERT INTO `sys_job_log` VALUES (2880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1143毫秒', '0', '', '2022-01-07 17:16:01'); INSERT INTO `sys_job_log` VALUES (2881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 17:16:01'); INSERT INTO `sys_job_log` VALUES (2882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-07 17:18:01'); INSERT INTO `sys_job_log` VALUES (2883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 17:18:01'); INSERT INTO `sys_job_log` VALUES (2884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-07 17:20:01'); INSERT INTO `sys_job_log` VALUES (2885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-07 17:20:01'); INSERT INTO `sys_job_log` VALUES (2886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-07 17:22:00'); INSERT INTO `sys_job_log` VALUES (2887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 17:22:01'); INSERT INTO `sys_job_log` VALUES (2888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-07 17:24:00'); INSERT INTO `sys_job_log` VALUES (2889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 17:24:01'); INSERT INTO `sys_job_log` VALUES (2890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1119毫秒', '0', '', '2022-01-07 17:26:01'); INSERT INTO `sys_job_log` VALUES (2891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 17:26:01'); INSERT INTO `sys_job_log` VALUES (2892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-07 17:28:00'); INSERT INTO `sys_job_log` VALUES (2893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 17:28:01'); INSERT INTO `sys_job_log` VALUES (2894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-07 17:30:00'); INSERT INTO `sys_job_log` VALUES (2895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 17:30:01'); INSERT INTO `sys_job_log` VALUES (2896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1669毫秒', '0', '', '2022-01-07 19:56:01'); INSERT INTO `sys_job_log` VALUES (2897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-07 19:56:01'); INSERT INTO `sys_job_log` VALUES (2898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-07 19:58:00'); INSERT INTO `sys_job_log` VALUES (2899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-07 19:58:01'); INSERT INTO `sys_job_log` VALUES (2900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-07 20:00:00'); INSERT INTO `sys_job_log` VALUES (2901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-07 20:00:01'); INSERT INTO `sys_job_log` VALUES (2902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-07 20:02:00'); INSERT INTO `sys_job_log` VALUES (2903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 20:02:01'); INSERT INTO `sys_job_log` VALUES (2904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-07 20:04:00'); INSERT INTO `sys_job_log` VALUES (2905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 20:04:01'); INSERT INTO `sys_job_log` VALUES (2906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:460毫秒', '0', '', '2022-01-07 20:06:00'); INSERT INTO `sys_job_log` VALUES (2907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-07 20:06:01'); INSERT INTO `sys_job_log` VALUES (2908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-07 20:08:00'); INSERT INTO `sys_job_log` VALUES (2909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 20:08:01'); INSERT INTO `sys_job_log` VALUES (2910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-07 20:10:00'); INSERT INTO `sys_job_log` VALUES (2911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 20:10:01'); INSERT INTO `sys_job_log` VALUES (2912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-07 20:12:00'); INSERT INTO `sys_job_log` VALUES (2913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 20:12:01'); INSERT INTO `sys_job_log` VALUES (2914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-07 20:14:00'); INSERT INTO `sys_job_log` VALUES (2915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 20:14:01'); INSERT INTO `sys_job_log` VALUES (2916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-07 20:16:00'); INSERT INTO `sys_job_log` VALUES (2917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 20:16:01'); INSERT INTO `sys_job_log` VALUES (2918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-07 20:18:00'); INSERT INTO `sys_job_log` VALUES (2919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-07 20:18:01'); INSERT INTO `sys_job_log` VALUES (2920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-07 20:20:00'); INSERT INTO `sys_job_log` VALUES (2921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-07 20:20:01'); INSERT INTO `sys_job_log` VALUES (2922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-07 20:22:00'); INSERT INTO `sys_job_log` VALUES (2923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-07 20:22:01'); INSERT INTO `sys_job_log` VALUES (2924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-07 20:24:00'); INSERT INTO `sys_job_log` VALUES (2925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-07 20:24:01'); INSERT INTO `sys_job_log` VALUES (2926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-07 20:26:00'); INSERT INTO `sys_job_log` VALUES (2927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 20:26:01'); INSERT INTO `sys_job_log` VALUES (2928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-07 20:28:00'); INSERT INTO `sys_job_log` VALUES (2929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 20:28:01'); INSERT INTO `sys_job_log` VALUES (2930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-07 20:30:00'); INSERT INTO `sys_job_log` VALUES (2931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 20:30:01'); INSERT INTO `sys_job_log` VALUES (2932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-07 20:32:00'); INSERT INTO `sys_job_log` VALUES (2933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-07 20:32:01'); INSERT INTO `sys_job_log` VALUES (2934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-07 20:34:00'); INSERT INTO `sys_job_log` VALUES (2935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 20:34:01'); INSERT INTO `sys_job_log` VALUES (2936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-07 20:36:00'); INSERT INTO `sys_job_log` VALUES (2937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 20:36:01'); INSERT INTO `sys_job_log` VALUES (2938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-07 20:38:00'); INSERT INTO `sys_job_log` VALUES (2939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 20:38:01'); INSERT INTO `sys_job_log` VALUES (2940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-07 20:40:00'); INSERT INTO `sys_job_log` VALUES (2941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 20:40:01'); INSERT INTO `sys_job_log` VALUES (2942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-07 20:42:00'); INSERT INTO `sys_job_log` VALUES (2943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 20:42:01'); INSERT INTO `sys_job_log` VALUES (2944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-07 20:44:00'); INSERT INTO `sys_job_log` VALUES (2945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 20:44:01'); INSERT INTO `sys_job_log` VALUES (2946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-07 20:46:00'); INSERT INTO `sys_job_log` VALUES (2947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 20:46:01'); INSERT INTO `sys_job_log` VALUES (2948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-07 20:48:00'); INSERT INTO `sys_job_log` VALUES (2949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 20:48:01'); INSERT INTO `sys_job_log` VALUES (2950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-07 20:50:00'); INSERT INTO `sys_job_log` VALUES (2951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 20:50:01'); INSERT INTO `sys_job_log` VALUES (2952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-07 20:52:00'); INSERT INTO `sys_job_log` VALUES (2953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-07 20:52:01'); INSERT INTO `sys_job_log` VALUES (2954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-07 20:54:00'); INSERT INTO `sys_job_log` VALUES (2955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 20:54:01'); INSERT INTO `sys_job_log` VALUES (2956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-07 20:56:00'); INSERT INTO `sys_job_log` VALUES (2957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 20:56:01'); INSERT INTO `sys_job_log` VALUES (2958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-07 20:58:00'); INSERT INTO `sys_job_log` VALUES (2959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-07 20:58:01'); INSERT INTO `sys_job_log` VALUES (2960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-07 21:00:00'); INSERT INTO `sys_job_log` VALUES (2961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 21:00:01'); INSERT INTO `sys_job_log` VALUES (2962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-07 21:02:00'); INSERT INTO `sys_job_log` VALUES (2963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 21:02:01'); INSERT INTO `sys_job_log` VALUES (2964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-07 21:04:00'); INSERT INTO `sys_job_log` VALUES (2965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 21:04:01'); INSERT INTO `sys_job_log` VALUES (2966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-07 21:06:00'); INSERT INTO `sys_job_log` VALUES (2967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 21:06:01'); INSERT INTO `sys_job_log` VALUES (2968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-07 21:08:00'); INSERT INTO `sys_job_log` VALUES (2969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 21:08:01'); INSERT INTO `sys_job_log` VALUES (2970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-07 21:10:00'); INSERT INTO `sys_job_log` VALUES (2971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 21:10:01'); INSERT INTO `sys_job_log` VALUES (2972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-07 21:12:00'); INSERT INTO `sys_job_log` VALUES (2973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 21:12:01'); INSERT INTO `sys_job_log` VALUES (2974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-07 21:14:00'); INSERT INTO `sys_job_log` VALUES (2975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 21:14:01'); INSERT INTO `sys_job_log` VALUES (2976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-07 21:16:00'); INSERT INTO `sys_job_log` VALUES (2977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 21:16:01'); INSERT INTO `sys_job_log` VALUES (2978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-07 21:18:00'); INSERT INTO `sys_job_log` VALUES (2979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 21:18:01'); INSERT INTO `sys_job_log` VALUES (2980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-07 21:20:00'); INSERT INTO `sys_job_log` VALUES (2981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-07 21:20:01'); INSERT INTO `sys_job_log` VALUES (2982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-07 21:22:00'); INSERT INTO `sys_job_log` VALUES (2983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 21:22:01'); INSERT INTO `sys_job_log` VALUES (2984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-07 21:24:00'); INSERT INTO `sys_job_log` VALUES (2985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 21:24:01'); INSERT INTO `sys_job_log` VALUES (2986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-07 21:26:00'); INSERT INTO `sys_job_log` VALUES (2987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 21:26:01'); INSERT INTO `sys_job_log` VALUES (2988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-07 21:28:00'); INSERT INTO `sys_job_log` VALUES (2989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 21:28:01'); INSERT INTO `sys_job_log` VALUES (2990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-07 21:30:00'); INSERT INTO `sys_job_log` VALUES (2991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 21:30:01'); INSERT INTO `sys_job_log` VALUES (2992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-07 21:32:00'); INSERT INTO `sys_job_log` VALUES (2993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 21:32:01'); INSERT INTO `sys_job_log` VALUES (2994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-07 21:34:00'); INSERT INTO `sys_job_log` VALUES (2995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 21:34:01'); INSERT INTO `sys_job_log` VALUES (2996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-07 21:36:00'); INSERT INTO `sys_job_log` VALUES (2997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 21:36:01'); INSERT INTO `sys_job_log` VALUES (2998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-07 21:38:00'); INSERT INTO `sys_job_log` VALUES (2999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 21:38:01'); INSERT INTO `sys_job_log` VALUES (3000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-07 21:40:00'); INSERT INTO `sys_job_log` VALUES (3001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 21:40:01'); INSERT INTO `sys_job_log` VALUES (3002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-07 21:42:00'); INSERT INTO `sys_job_log` VALUES (3003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-07 21:42:01'); INSERT INTO `sys_job_log` VALUES (3004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-07 21:44:00'); INSERT INTO `sys_job_log` VALUES (3005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 21:44:01'); INSERT INTO `sys_job_log` VALUES (3006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-07 21:46:00'); INSERT INTO `sys_job_log` VALUES (3007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 21:46:01'); INSERT INTO `sys_job_log` VALUES (3008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-07 21:48:00'); INSERT INTO `sys_job_log` VALUES (3009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 21:48:01'); INSERT INTO `sys_job_log` VALUES (3010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-07 21:50:00'); INSERT INTO `sys_job_log` VALUES (3011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 21:50:01'); INSERT INTO `sys_job_log` VALUES (3012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-07 21:52:00'); INSERT INTO `sys_job_log` VALUES (3013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 21:52:01'); INSERT INTO `sys_job_log` VALUES (3014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-07 21:54:00'); INSERT INTO `sys_job_log` VALUES (3015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 21:54:01'); INSERT INTO `sys_job_log` VALUES (3016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-07 21:56:00'); INSERT INTO `sys_job_log` VALUES (3017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 21:56:01'); INSERT INTO `sys_job_log` VALUES (3018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-07 21:58:00'); INSERT INTO `sys_job_log` VALUES (3019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 21:58:01'); INSERT INTO `sys_job_log` VALUES (3020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-07 22:00:00'); INSERT INTO `sys_job_log` VALUES (3021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 22:00:01'); INSERT INTO `sys_job_log` VALUES (3022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-07 22:02:00'); INSERT INTO `sys_job_log` VALUES (3023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 22:02:01'); INSERT INTO `sys_job_log` VALUES (3024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-07 22:04:00'); INSERT INTO `sys_job_log` VALUES (3025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 22:04:01'); INSERT INTO `sys_job_log` VALUES (3026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-07 22:06:00'); INSERT INTO `sys_job_log` VALUES (3027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 22:06:01'); INSERT INTO `sys_job_log` VALUES (3028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-07 22:08:00'); INSERT INTO `sys_job_log` VALUES (3029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-07 22:08:01'); INSERT INTO `sys_job_log` VALUES (3030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-07 22:10:00'); INSERT INTO `sys_job_log` VALUES (3031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 22:10:01'); INSERT INTO `sys_job_log` VALUES (3032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-07 22:12:00'); INSERT INTO `sys_job_log` VALUES (3033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 22:12:01'); INSERT INTO `sys_job_log` VALUES (3034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-07 22:14:00'); INSERT INTO `sys_job_log` VALUES (3035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 22:14:01'); INSERT INTO `sys_job_log` VALUES (3036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-07 22:16:00'); INSERT INTO `sys_job_log` VALUES (3037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 22:16:01'); INSERT INTO `sys_job_log` VALUES (3038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-07 22:18:00'); INSERT INTO `sys_job_log` VALUES (3039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 22:18:01'); INSERT INTO `sys_job_log` VALUES (3040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-07 22:20:00'); INSERT INTO `sys_job_log` VALUES (3041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 22:20:01'); INSERT INTO `sys_job_log` VALUES (3042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-07 22:22:00'); INSERT INTO `sys_job_log` VALUES (3043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 22:22:01'); INSERT INTO `sys_job_log` VALUES (3044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-07 22:24:00'); INSERT INTO `sys_job_log` VALUES (3045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-07 22:24:01'); INSERT INTO `sys_job_log` VALUES (3046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-07 22:26:00'); INSERT INTO `sys_job_log` VALUES (3047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 22:26:01'); INSERT INTO `sys_job_log` VALUES (3048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-07 22:28:00'); INSERT INTO `sys_job_log` VALUES (3049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 22:28:01'); INSERT INTO `sys_job_log` VALUES (3050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-07 22:30:00'); INSERT INTO `sys_job_log` VALUES (3051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 22:30:01'); INSERT INTO `sys_job_log` VALUES (3052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-07 22:32:00'); INSERT INTO `sys_job_log` VALUES (3053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 22:32:01'); INSERT INTO `sys_job_log` VALUES (3054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-07 22:34:00'); INSERT INTO `sys_job_log` VALUES (3055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 22:34:01'); INSERT INTO `sys_job_log` VALUES (3056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-07 22:36:00'); INSERT INTO `sys_job_log` VALUES (3057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 22:36:01'); INSERT INTO `sys_job_log` VALUES (3058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-07 22:38:00'); INSERT INTO `sys_job_log` VALUES (3059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 22:38:01'); INSERT INTO `sys_job_log` VALUES (3060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-07 22:40:00'); INSERT INTO `sys_job_log` VALUES (3061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-07 22:40:01'); INSERT INTO `sys_job_log` VALUES (3062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-07 22:42:00'); INSERT INTO `sys_job_log` VALUES (3063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 22:42:01'); INSERT INTO `sys_job_log` VALUES (3064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-07 22:44:00'); INSERT INTO `sys_job_log` VALUES (3065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 22:44:01'); INSERT INTO `sys_job_log` VALUES (3066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-07 22:46:00'); INSERT INTO `sys_job_log` VALUES (3067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 22:46:01'); INSERT INTO `sys_job_log` VALUES (3068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-07 22:48:00'); INSERT INTO `sys_job_log` VALUES (3069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 22:48:01'); INSERT INTO `sys_job_log` VALUES (3070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-07 22:50:00'); INSERT INTO `sys_job_log` VALUES (3071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-07 22:50:01'); INSERT INTO `sys_job_log` VALUES (3072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-07 22:52:00'); INSERT INTO `sys_job_log` VALUES (3073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 22:52:01'); INSERT INTO `sys_job_log` VALUES (3074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-07 22:54:00'); INSERT INTO `sys_job_log` VALUES (3075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 22:54:01'); INSERT INTO `sys_job_log` VALUES (3076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-07 22:56:00'); INSERT INTO `sys_job_log` VALUES (3077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-07 22:56:01'); INSERT INTO `sys_job_log` VALUES (3078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-07 22:58:00'); INSERT INTO `sys_job_log` VALUES (3079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 22:58:01'); INSERT INTO `sys_job_log` VALUES (3080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-07 23:00:00'); INSERT INTO `sys_job_log` VALUES (3081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 23:00:01'); INSERT INTO `sys_job_log` VALUES (3082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-07 23:02:00'); INSERT INTO `sys_job_log` VALUES (3083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 23:02:01'); INSERT INTO `sys_job_log` VALUES (3084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-07 23:04:00'); INSERT INTO `sys_job_log` VALUES (3085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 23:04:01'); INSERT INTO `sys_job_log` VALUES (3086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-07 23:06:00'); INSERT INTO `sys_job_log` VALUES (3087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 23:06:01'); INSERT INTO `sys_job_log` VALUES (3088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-07 23:08:00'); INSERT INTO `sys_job_log` VALUES (3089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-07 23:08:01'); INSERT INTO `sys_job_log` VALUES (3090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-07 23:10:00'); INSERT INTO `sys_job_log` VALUES (3091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 23:10:01'); INSERT INTO `sys_job_log` VALUES (3092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-07 23:12:00'); INSERT INTO `sys_job_log` VALUES (3093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 23:12:01'); INSERT INTO `sys_job_log` VALUES (3094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-07 23:14:00'); INSERT INTO `sys_job_log` VALUES (3095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 23:14:01'); INSERT INTO `sys_job_log` VALUES (3096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-07 23:16:00'); INSERT INTO `sys_job_log` VALUES (3097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-07 23:16:01'); INSERT INTO `sys_job_log` VALUES (3098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-07 23:18:00'); INSERT INTO `sys_job_log` VALUES (3099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 23:18:01'); INSERT INTO `sys_job_log` VALUES (3100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:317毫秒', '0', '', '2022-01-07 23:20:00'); INSERT INTO `sys_job_log` VALUES (3101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 23:20:01'); INSERT INTO `sys_job_log` VALUES (3102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-07 23:22:00'); INSERT INTO `sys_job_log` VALUES (3103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-07 23:22:01'); INSERT INTO `sys_job_log` VALUES (3104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:490毫秒', '0', '', '2022-01-07 23:24:00'); INSERT INTO `sys_job_log` VALUES (3105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 23:24:01'); INSERT INTO `sys_job_log` VALUES (3106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-07 23:26:00'); INSERT INTO `sys_job_log` VALUES (3107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-07 23:26:01'); INSERT INTO `sys_job_log` VALUES (3108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-07 23:28:00'); INSERT INTO `sys_job_log` VALUES (3109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 23:28:01'); INSERT INTO `sys_job_log` VALUES (3110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-07 23:30:00'); INSERT INTO `sys_job_log` VALUES (3111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-07 23:30:01'); INSERT INTO `sys_job_log` VALUES (3112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-07 23:32:00'); INSERT INTO `sys_job_log` VALUES (3113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-07 23:32:01'); INSERT INTO `sys_job_log` VALUES (3114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-07 23:34:00'); INSERT INTO `sys_job_log` VALUES (3115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-07 23:34:01'); INSERT INTO `sys_job_log` VALUES (3116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-07 23:36:00'); INSERT INTO `sys_job_log` VALUES (3117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-07 23:36:01'); INSERT INTO `sys_job_log` VALUES (3118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-07 23:38:00'); INSERT INTO `sys_job_log` VALUES (3119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 23:38:01'); INSERT INTO `sys_job_log` VALUES (3120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:497毫秒', '0', '', '2022-01-07 23:40:00'); INSERT INTO `sys_job_log` VALUES (3121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-07 23:40:01'); INSERT INTO `sys_job_log` VALUES (3122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-07 23:42:00'); INSERT INTO `sys_job_log` VALUES (3123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-07 23:42:01'); INSERT INTO `sys_job_log` VALUES (3124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-07 23:44:00'); INSERT INTO `sys_job_log` VALUES (3125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-07 23:44:01'); INSERT INTO `sys_job_log` VALUES (3126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-07 23:46:00'); INSERT INTO `sys_job_log` VALUES (3127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-07 23:46:01'); INSERT INTO `sys_job_log` VALUES (3128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-07 23:48:00'); INSERT INTO `sys_job_log` VALUES (3129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 23:48:01'); INSERT INTO `sys_job_log` VALUES (3130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-07 23:50:00'); INSERT INTO `sys_job_log` VALUES (3131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 23:50:01'); INSERT INTO `sys_job_log` VALUES (3132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-07 23:52:00'); INSERT INTO `sys_job_log` VALUES (3133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-07 23:52:01'); INSERT INTO `sys_job_log` VALUES (3134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:316毫秒', '0', '', '2022-01-07 23:54:00'); INSERT INTO `sys_job_log` VALUES (3135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-07 23:54:01'); INSERT INTO `sys_job_log` VALUES (3136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-07 23:56:00'); INSERT INTO `sys_job_log` VALUES (3137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-07 23:56:01'); INSERT INTO `sys_job_log` VALUES (3138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-07 23:58:00'); INSERT INTO `sys_job_log` VALUES (3139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-07 23:58:01'); INSERT INTO `sys_job_log` VALUES (3140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1047毫秒', '0', '', '2022-01-08 00:00:01'); INSERT INTO `sys_job_log` VALUES (3141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 00:00:01'); INSERT INTO `sys_job_log` VALUES (3142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-08 00:02:00'); INSERT INTO `sys_job_log` VALUES (3143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 00:02:01'); INSERT INTO `sys_job_log` VALUES (3144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-08 00:04:00'); INSERT INTO `sys_job_log` VALUES (3145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 00:04:01'); INSERT INTO `sys_job_log` VALUES (3146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-08 00:06:00'); INSERT INTO `sys_job_log` VALUES (3147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 00:06:01'); INSERT INTO `sys_job_log` VALUES (3148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-08 00:08:00'); INSERT INTO `sys_job_log` VALUES (3149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2010毫秒', '0', '', '2022-01-08 00:08:03'); INSERT INTO `sys_job_log` VALUES (3150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-08 00:10:00'); INSERT INTO `sys_job_log` VALUES (3151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-08 00:10:01'); INSERT INTO `sys_job_log` VALUES (3152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-08 00:12:00'); INSERT INTO `sys_job_log` VALUES (3153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 00:12:01'); INSERT INTO `sys_job_log` VALUES (3154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-08 00:14:00'); INSERT INTO `sys_job_log` VALUES (3155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-08 00:14:01'); INSERT INTO `sys_job_log` VALUES (3156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 00:16:00'); INSERT INTO `sys_job_log` VALUES (3157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 00:16:01'); INSERT INTO `sys_job_log` VALUES (3158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-08 00:18:00'); INSERT INTO `sys_job_log` VALUES (3159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 00:18:01'); INSERT INTO `sys_job_log` VALUES (3160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-08 00:20:00'); INSERT INTO `sys_job_log` VALUES (3161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 00:20:01'); INSERT INTO `sys_job_log` VALUES (3162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-08 00:22:00'); INSERT INTO `sys_job_log` VALUES (3163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 00:22:01'); INSERT INTO `sys_job_log` VALUES (3164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-08 00:24:00'); INSERT INTO `sys_job_log` VALUES (3165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 00:24:01'); INSERT INTO `sys_job_log` VALUES (3166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 00:26:00'); INSERT INTO `sys_job_log` VALUES (3167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 00:26:01'); INSERT INTO `sys_job_log` VALUES (3168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-08 00:28:00'); INSERT INTO `sys_job_log` VALUES (3169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 00:28:01'); INSERT INTO `sys_job_log` VALUES (3170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-08 00:30:00'); INSERT INTO `sys_job_log` VALUES (3171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 00:30:01'); INSERT INTO `sys_job_log` VALUES (3172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-08 00:32:00'); INSERT INTO `sys_job_log` VALUES (3173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 00:32:01'); INSERT INTO `sys_job_log` VALUES (3174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-08 00:34:00'); INSERT INTO `sys_job_log` VALUES (3175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 00:34:01'); INSERT INTO `sys_job_log` VALUES (3176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-08 00:36:00'); INSERT INTO `sys_job_log` VALUES (3177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 00:36:01'); INSERT INTO `sys_job_log` VALUES (3178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-08 00:38:00'); INSERT INTO `sys_job_log` VALUES (3179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 00:38:01'); INSERT INTO `sys_job_log` VALUES (3180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-08 00:40:00'); INSERT INTO `sys_job_log` VALUES (3181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 00:40:01'); INSERT INTO `sys_job_log` VALUES (3182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-08 00:42:00'); INSERT INTO `sys_job_log` VALUES (3183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 00:42:01'); INSERT INTO `sys_job_log` VALUES (3184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-08 00:44:00'); INSERT INTO `sys_job_log` VALUES (3185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 00:44:01'); INSERT INTO `sys_job_log` VALUES (3186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-08 00:46:00'); INSERT INTO `sys_job_log` VALUES (3187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 00:46:01'); INSERT INTO `sys_job_log` VALUES (3188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:383毫秒', '0', '', '2022-01-08 00:48:00'); INSERT INTO `sys_job_log` VALUES (3189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 00:48:01'); INSERT INTO `sys_job_log` VALUES (3190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-08 00:50:00'); INSERT INTO `sys_job_log` VALUES (3191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-08 00:50:01'); INSERT INTO `sys_job_log` VALUES (3192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-08 00:52:00'); INSERT INTO `sys_job_log` VALUES (3193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 00:52:01'); INSERT INTO `sys_job_log` VALUES (3194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-08 00:54:00'); INSERT INTO `sys_job_log` VALUES (3195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 00:54:01'); INSERT INTO `sys_job_log` VALUES (3196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-08 00:56:00'); INSERT INTO `sys_job_log` VALUES (3197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 00:56:01'); INSERT INTO `sys_job_log` VALUES (3198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-08 00:58:00'); INSERT INTO `sys_job_log` VALUES (3199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 00:58:01'); INSERT INTO `sys_job_log` VALUES (3200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-08 01:00:00'); INSERT INTO `sys_job_log` VALUES (3201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 01:00:01'); INSERT INTO `sys_job_log` VALUES (3202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-08 01:02:00'); INSERT INTO `sys_job_log` VALUES (3203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 01:02:01'); INSERT INTO `sys_job_log` VALUES (3204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-08 01:04:00'); INSERT INTO `sys_job_log` VALUES (3205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 01:04:01'); INSERT INTO `sys_job_log` VALUES (3206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-08 01:06:00'); INSERT INTO `sys_job_log` VALUES (3207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 01:06:01'); INSERT INTO `sys_job_log` VALUES (3208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-08 01:08:00'); INSERT INTO `sys_job_log` VALUES (3209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 01:08:01'); INSERT INTO `sys_job_log` VALUES (3210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-08 01:10:00'); INSERT INTO `sys_job_log` VALUES (3211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 01:10:01'); INSERT INTO `sys_job_log` VALUES (3212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-08 01:12:00'); INSERT INTO `sys_job_log` VALUES (3213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-08 01:12:01'); INSERT INTO `sys_job_log` VALUES (3214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-08 01:14:00'); INSERT INTO `sys_job_log` VALUES (3215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 01:14:01'); INSERT INTO `sys_job_log` VALUES (3216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-08 01:16:00'); INSERT INTO `sys_job_log` VALUES (3217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 01:16:01'); INSERT INTO `sys_job_log` VALUES (3218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-08 01:18:00'); INSERT INTO `sys_job_log` VALUES (3219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 01:18:01'); INSERT INTO `sys_job_log` VALUES (3220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-08 01:20:00'); INSERT INTO `sys_job_log` VALUES (3221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 01:20:01'); INSERT INTO `sys_job_log` VALUES (3222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-08 01:22:00'); INSERT INTO `sys_job_log` VALUES (3223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 01:22:01'); INSERT INTO `sys_job_log` VALUES (3224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-08 01:24:00'); INSERT INTO `sys_job_log` VALUES (3225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 01:24:01'); INSERT INTO `sys_job_log` VALUES (3226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-08 01:26:00'); INSERT INTO `sys_job_log` VALUES (3227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 01:26:01'); INSERT INTO `sys_job_log` VALUES (3228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-08 01:28:00'); INSERT INTO `sys_job_log` VALUES (3229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 01:28:01'); INSERT INTO `sys_job_log` VALUES (3230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-08 01:30:00'); INSERT INTO `sys_job_log` VALUES (3231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 01:30:01'); INSERT INTO `sys_job_log` VALUES (3232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-08 01:32:00'); INSERT INTO `sys_job_log` VALUES (3233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 01:32:01'); INSERT INTO `sys_job_log` VALUES (3234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:306毫秒', '0', '', '2022-01-08 01:34:00'); INSERT INTO `sys_job_log` VALUES (3235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 01:34:01'); INSERT INTO `sys_job_log` VALUES (3236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-08 01:36:00'); INSERT INTO `sys_job_log` VALUES (3237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 01:36:01'); INSERT INTO `sys_job_log` VALUES (3238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:17毫秒', '0', '', '2022-01-08 01:38:00'); INSERT INTO `sys_job_log` VALUES (3239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-08 01:38:01'); INSERT INTO `sys_job_log` VALUES (3240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:621毫秒', '0', '', '2022-01-08 01:40:00'); INSERT INTO `sys_job_log` VALUES (3241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 01:40:01'); INSERT INTO `sys_job_log` VALUES (3242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:352毫秒', '0', '', '2022-01-08 01:42:00'); INSERT INTO `sys_job_log` VALUES (3243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 01:42:01'); INSERT INTO `sys_job_log` VALUES (3244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-08 01:44:00'); INSERT INTO `sys_job_log` VALUES (3245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 01:44:01'); INSERT INTO `sys_job_log` VALUES (3246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-08 01:46:00'); INSERT INTO `sys_job_log` VALUES (3247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 01:46:01'); INSERT INTO `sys_job_log` VALUES (3248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-08 01:48:00'); INSERT INTO `sys_job_log` VALUES (3249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 01:48:01'); INSERT INTO `sys_job_log` VALUES (3250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-08 01:50:00'); INSERT INTO `sys_job_log` VALUES (3251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 01:50:01'); INSERT INTO `sys_job_log` VALUES (3252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-08 01:52:00'); INSERT INTO `sys_job_log` VALUES (3253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-08 01:52:01'); INSERT INTO `sys_job_log` VALUES (3254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:841毫秒', '0', '', '2022-01-08 01:54:00'); INSERT INTO `sys_job_log` VALUES (3255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 01:54:01'); INSERT INTO `sys_job_log` VALUES (3256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-08 01:56:00'); INSERT INTO `sys_job_log` VALUES (3257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 01:56:01'); INSERT INTO `sys_job_log` VALUES (3258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-08 01:58:00'); INSERT INTO `sys_job_log` VALUES (3259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 01:58:01'); INSERT INTO `sys_job_log` VALUES (3260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-08 02:00:00'); INSERT INTO `sys_job_log` VALUES (3261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 02:00:01'); INSERT INTO `sys_job_log` VALUES (3262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-08 02:02:00'); INSERT INTO `sys_job_log` VALUES (3263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 02:02:01'); INSERT INTO `sys_job_log` VALUES (3264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-08 02:04:00'); INSERT INTO `sys_job_log` VALUES (3265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 02:04:01'); INSERT INTO `sys_job_log` VALUES (3266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-08 02:06:00'); INSERT INTO `sys_job_log` VALUES (3267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 02:06:01'); INSERT INTO `sys_job_log` VALUES (3268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-08 02:08:00'); INSERT INTO `sys_job_log` VALUES (3269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 02:08:01'); INSERT INTO `sys_job_log` VALUES (3270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-08 02:10:00'); INSERT INTO `sys_job_log` VALUES (3271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 02:10:01'); INSERT INTO `sys_job_log` VALUES (3272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-08 02:12:00'); INSERT INTO `sys_job_log` VALUES (3273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 02:12:01'); INSERT INTO `sys_job_log` VALUES (3274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-08 02:14:00'); INSERT INTO `sys_job_log` VALUES (3275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-08 02:14:01'); INSERT INTO `sys_job_log` VALUES (3276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-08 02:16:00'); INSERT INTO `sys_job_log` VALUES (3277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 02:16:01'); INSERT INTO `sys_job_log` VALUES (3278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-08 02:18:00'); INSERT INTO `sys_job_log` VALUES (3279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 02:18:01'); INSERT INTO `sys_job_log` VALUES (3280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-08 02:20:00'); INSERT INTO `sys_job_log` VALUES (3281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 02:20:01'); INSERT INTO `sys_job_log` VALUES (3282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-08 02:22:00'); INSERT INTO `sys_job_log` VALUES (3283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 02:22:01'); INSERT INTO `sys_job_log` VALUES (3284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-08 02:24:00'); INSERT INTO `sys_job_log` VALUES (3285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 02:24:01'); INSERT INTO `sys_job_log` VALUES (3286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-08 02:26:00'); INSERT INTO `sys_job_log` VALUES (3287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 02:26:01'); INSERT INTO `sys_job_log` VALUES (3288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 02:28:00'); INSERT INTO `sys_job_log` VALUES (3289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 02:28:01'); INSERT INTO `sys_job_log` VALUES (3290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-08 02:30:00'); INSERT INTO `sys_job_log` VALUES (3291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 02:30:01'); INSERT INTO `sys_job_log` VALUES (3292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-08 02:32:00'); INSERT INTO `sys_job_log` VALUES (3293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 02:32:01'); INSERT INTO `sys_job_log` VALUES (3294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-08 02:34:00'); INSERT INTO `sys_job_log` VALUES (3295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 02:34:01'); INSERT INTO `sys_job_log` VALUES (3296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-08 02:36:00'); INSERT INTO `sys_job_log` VALUES (3297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 02:36:01'); INSERT INTO `sys_job_log` VALUES (3298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-08 02:38:00'); INSERT INTO `sys_job_log` VALUES (3299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 02:38:01'); INSERT INTO `sys_job_log` VALUES (3300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-08 02:40:00'); INSERT INTO `sys_job_log` VALUES (3301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 02:40:01'); INSERT INTO `sys_job_log` VALUES (3302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-08 02:42:00'); INSERT INTO `sys_job_log` VALUES (3303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 02:42:01'); INSERT INTO `sys_job_log` VALUES (3304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-08 02:44:00'); INSERT INTO `sys_job_log` VALUES (3305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 02:44:01'); INSERT INTO `sys_job_log` VALUES (3306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-08 02:46:00'); INSERT INTO `sys_job_log` VALUES (3307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 02:46:01'); INSERT INTO `sys_job_log` VALUES (3308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1891毫秒', '0', '', '2022-01-08 13:12:01'); INSERT INTO `sys_job_log` VALUES (3309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-08 13:12:02'); INSERT INTO `sys_job_log` VALUES (3310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-08 13:14:00'); INSERT INTO `sys_job_log` VALUES (3311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 13:14:01'); INSERT INTO `sys_job_log` VALUES (3312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-08 13:16:00'); INSERT INTO `sys_job_log` VALUES (3313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-08 13:16:01'); INSERT INTO `sys_job_log` VALUES (3314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-08 13:18:00'); INSERT INTO `sys_job_log` VALUES (3315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-08 13:18:01'); INSERT INTO `sys_job_log` VALUES (3316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-08 13:20:00'); INSERT INTO `sys_job_log` VALUES (3317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-08 13:20:01'); INSERT INTO `sys_job_log` VALUES (3318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-08 13:22:00'); INSERT INTO `sys_job_log` VALUES (3319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 13:22:01'); INSERT INTO `sys_job_log` VALUES (3320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-08 13:24:00'); INSERT INTO `sys_job_log` VALUES (3321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 13:24:01'); INSERT INTO `sys_job_log` VALUES (3322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-08 13:26:00'); INSERT INTO `sys_job_log` VALUES (3323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 13:26:01'); INSERT INTO `sys_job_log` VALUES (3324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-08 13:28:00'); INSERT INTO `sys_job_log` VALUES (3325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 13:28:01'); INSERT INTO `sys_job_log` VALUES (3326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-08 13:30:00'); INSERT INTO `sys_job_log` VALUES (3327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 13:30:01'); INSERT INTO `sys_job_log` VALUES (3328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-08 13:32:00'); INSERT INTO `sys_job_log` VALUES (3329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 13:32:01'); INSERT INTO `sys_job_log` VALUES (3330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-08 13:34:00'); INSERT INTO `sys_job_log` VALUES (3331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 13:34:01'); INSERT INTO `sys_job_log` VALUES (3332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-08 13:36:00'); INSERT INTO `sys_job_log` VALUES (3333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 13:36:01'); INSERT INTO `sys_job_log` VALUES (3334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-08 13:38:00'); INSERT INTO `sys_job_log` VALUES (3335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 13:38:01'); INSERT INTO `sys_job_log` VALUES (3336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-08 13:40:00'); INSERT INTO `sys_job_log` VALUES (3337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 13:40:01'); INSERT INTO `sys_job_log` VALUES (3338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-08 13:42:00'); INSERT INTO `sys_job_log` VALUES (3339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 13:42:01'); INSERT INTO `sys_job_log` VALUES (3340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-08 13:44:00'); INSERT INTO `sys_job_log` VALUES (3341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 13:44:01'); INSERT INTO `sys_job_log` VALUES (3342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-08 13:46:00'); INSERT INTO `sys_job_log` VALUES (3343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 13:46:01'); INSERT INTO `sys_job_log` VALUES (3344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-08 13:48:00'); INSERT INTO `sys_job_log` VALUES (3345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 13:48:01'); INSERT INTO `sys_job_log` VALUES (3346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-08 13:50:00'); INSERT INTO `sys_job_log` VALUES (3347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 13:50:01'); INSERT INTO `sys_job_log` VALUES (3348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-08 13:52:00'); INSERT INTO `sys_job_log` VALUES (3349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 13:52:01'); INSERT INTO `sys_job_log` VALUES (3350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-08 13:54:00'); INSERT INTO `sys_job_log` VALUES (3351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 13:54:01'); INSERT INTO `sys_job_log` VALUES (3352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-08 13:56:00'); INSERT INTO `sys_job_log` VALUES (3353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 13:56:01'); INSERT INTO `sys_job_log` VALUES (3354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-08 13:58:00'); INSERT INTO `sys_job_log` VALUES (3355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 13:58:01'); INSERT INTO `sys_job_log` VALUES (3356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-08 14:00:00'); INSERT INTO `sys_job_log` VALUES (3357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 14:00:01'); INSERT INTO `sys_job_log` VALUES (3358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-08 14:02:00'); INSERT INTO `sys_job_log` VALUES (3359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 14:02:01'); INSERT INTO `sys_job_log` VALUES (3360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-08 14:04:00'); INSERT INTO `sys_job_log` VALUES (3361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 14:04:01'); INSERT INTO `sys_job_log` VALUES (3362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-08 14:06:00'); INSERT INTO `sys_job_log` VALUES (3363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 14:06:01'); INSERT INTO `sys_job_log` VALUES (3364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-08 14:08:00'); INSERT INTO `sys_job_log` VALUES (3365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 14:08:01'); INSERT INTO `sys_job_log` VALUES (3366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-08 14:10:00'); INSERT INTO `sys_job_log` VALUES (3367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-08 14:10:01'); INSERT INTO `sys_job_log` VALUES (3368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-08 14:12:00'); INSERT INTO `sys_job_log` VALUES (3369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 14:12:01'); INSERT INTO `sys_job_log` VALUES (3370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-08 14:14:00'); INSERT INTO `sys_job_log` VALUES (3371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 14:14:01'); INSERT INTO `sys_job_log` VALUES (3372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-08 14:16:00'); INSERT INTO `sys_job_log` VALUES (3373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 14:16:01'); INSERT INTO `sys_job_log` VALUES (3374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-08 14:18:00'); INSERT INTO `sys_job_log` VALUES (3375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 14:18:01'); INSERT INTO `sys_job_log` VALUES (3376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-08 14:20:00'); INSERT INTO `sys_job_log` VALUES (3377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 14:20:01'); INSERT INTO `sys_job_log` VALUES (3378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-08 14:22:00'); INSERT INTO `sys_job_log` VALUES (3379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 14:22:01'); INSERT INTO `sys_job_log` VALUES (3380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-08 14:24:00'); INSERT INTO `sys_job_log` VALUES (3381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 14:24:01'); INSERT INTO `sys_job_log` VALUES (3382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-08 14:26:00'); INSERT INTO `sys_job_log` VALUES (3383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 14:26:01'); INSERT INTO `sys_job_log` VALUES (3384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-08 14:28:00'); INSERT INTO `sys_job_log` VALUES (3385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 14:28:01'); INSERT INTO `sys_job_log` VALUES (3386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-08 14:30:00'); INSERT INTO `sys_job_log` VALUES (3387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 14:30:01'); INSERT INTO `sys_job_log` VALUES (3388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-08 14:32:00'); INSERT INTO `sys_job_log` VALUES (3389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 14:32:01'); INSERT INTO `sys_job_log` VALUES (3390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:352毫秒', '0', '', '2022-01-08 14:34:00'); INSERT INTO `sys_job_log` VALUES (3391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 14:34:01'); INSERT INTO `sys_job_log` VALUES (3392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-08 14:36:00'); INSERT INTO `sys_job_log` VALUES (3393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 14:36:01'); INSERT INTO `sys_job_log` VALUES (3394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 14:38:00'); INSERT INTO `sys_job_log` VALUES (3395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 14:38:01'); INSERT INTO `sys_job_log` VALUES (3396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-08 14:40:00'); INSERT INTO `sys_job_log` VALUES (3397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 14:40:01'); INSERT INTO `sys_job_log` VALUES (3398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-08 14:42:00'); INSERT INTO `sys_job_log` VALUES (3399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 14:42:01'); INSERT INTO `sys_job_log` VALUES (3400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-08 14:44:00'); INSERT INTO `sys_job_log` VALUES (3401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 14:44:01'); INSERT INTO `sys_job_log` VALUES (3402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-08 14:46:00'); INSERT INTO `sys_job_log` VALUES (3403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 14:46:01'); INSERT INTO `sys_job_log` VALUES (3404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-08 14:48:00'); INSERT INTO `sys_job_log` VALUES (3405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 14:48:01'); INSERT INTO `sys_job_log` VALUES (3406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-08 14:50:00'); INSERT INTO `sys_job_log` VALUES (3407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 14:50:01'); INSERT INTO `sys_job_log` VALUES (3408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-08 14:52:00'); INSERT INTO `sys_job_log` VALUES (3409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 14:52:01'); INSERT INTO `sys_job_log` VALUES (3410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-08 14:54:00'); INSERT INTO `sys_job_log` VALUES (3411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 14:54:01'); INSERT INTO `sys_job_log` VALUES (3412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-08 14:56:00'); INSERT INTO `sys_job_log` VALUES (3413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 14:56:01'); INSERT INTO `sys_job_log` VALUES (3414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-08 14:58:00'); INSERT INTO `sys_job_log` VALUES (3415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 14:58:01'); INSERT INTO `sys_job_log` VALUES (3416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-08 15:00:00'); INSERT INTO `sys_job_log` VALUES (3417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 15:00:01'); INSERT INTO `sys_job_log` VALUES (3418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 15:02:00'); INSERT INTO `sys_job_log` VALUES (3419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 15:02:01'); INSERT INTO `sys_job_log` VALUES (3420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:342毫秒', '0', '', '2022-01-08 15:04:00'); INSERT INTO `sys_job_log` VALUES (3421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 15:04:01'); INSERT INTO `sys_job_log` VALUES (3422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 15:06:00'); INSERT INTO `sys_job_log` VALUES (3423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 15:06:01'); INSERT INTO `sys_job_log` VALUES (3424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-08 15:08:00'); INSERT INTO `sys_job_log` VALUES (3425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 15:08:01'); INSERT INTO `sys_job_log` VALUES (3426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-08 15:10:00'); INSERT INTO `sys_job_log` VALUES (3427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 15:10:01'); INSERT INTO `sys_job_log` VALUES (3428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-08 15:12:00'); INSERT INTO `sys_job_log` VALUES (3429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 15:12:01'); INSERT INTO `sys_job_log` VALUES (3430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-08 15:14:00'); INSERT INTO `sys_job_log` VALUES (3431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 15:14:01'); INSERT INTO `sys_job_log` VALUES (3432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-08 15:16:00'); INSERT INTO `sys_job_log` VALUES (3433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 15:16:01'); INSERT INTO `sys_job_log` VALUES (3434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-08 15:18:00'); INSERT INTO `sys_job_log` VALUES (3435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 15:18:01'); INSERT INTO `sys_job_log` VALUES (3436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-08 15:20:00'); INSERT INTO `sys_job_log` VALUES (3437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 15:20:01'); INSERT INTO `sys_job_log` VALUES (3438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-08 15:22:00'); INSERT INTO `sys_job_log` VALUES (3439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 15:22:01'); INSERT INTO `sys_job_log` VALUES (3440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-08 15:24:00'); INSERT INTO `sys_job_log` VALUES (3441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 15:24:01'); INSERT INTO `sys_job_log` VALUES (3442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-08 15:26:00'); INSERT INTO `sys_job_log` VALUES (3443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 15:26:01'); INSERT INTO `sys_job_log` VALUES (3444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-08 15:28:00'); INSERT INTO `sys_job_log` VALUES (3445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 15:28:01'); INSERT INTO `sys_job_log` VALUES (3446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-08 15:30:00'); INSERT INTO `sys_job_log` VALUES (3447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 15:30:01'); INSERT INTO `sys_job_log` VALUES (3448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:417毫秒', '0', '', '2022-01-08 15:32:00'); INSERT INTO `sys_job_log` VALUES (3449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 15:32:01'); INSERT INTO `sys_job_log` VALUES (3450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-08 15:34:00'); INSERT INTO `sys_job_log` VALUES (3451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 15:34:01'); INSERT INTO `sys_job_log` VALUES (3452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-08 15:36:00'); INSERT INTO `sys_job_log` VALUES (3453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 15:36:01'); INSERT INTO `sys_job_log` VALUES (3454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-08 15:38:00'); INSERT INTO `sys_job_log` VALUES (3455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 15:38:01'); INSERT INTO `sys_job_log` VALUES (3456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 15:40:00'); INSERT INTO `sys_job_log` VALUES (3457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 15:40:01'); INSERT INTO `sys_job_log` VALUES (3458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-08 15:42:00'); INSERT INTO `sys_job_log` VALUES (3459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 15:42:01'); INSERT INTO `sys_job_log` VALUES (3460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-08 15:44:00'); INSERT INTO `sys_job_log` VALUES (3461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 15:44:01'); INSERT INTO `sys_job_log` VALUES (3462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-08 15:46:00'); INSERT INTO `sys_job_log` VALUES (3463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 15:46:01'); INSERT INTO `sys_job_log` VALUES (3464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-08 15:48:00'); INSERT INTO `sys_job_log` VALUES (3465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 15:48:01'); INSERT INTO `sys_job_log` VALUES (3466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-08 15:50:00'); INSERT INTO `sys_job_log` VALUES (3467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 15:50:01'); INSERT INTO `sys_job_log` VALUES (3468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-08 15:52:00'); INSERT INTO `sys_job_log` VALUES (3469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 15:52:01'); INSERT INTO `sys_job_log` VALUES (3470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 15:54:00'); INSERT INTO `sys_job_log` VALUES (3471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 15:54:01'); INSERT INTO `sys_job_log` VALUES (3472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-08 15:56:00'); INSERT INTO `sys_job_log` VALUES (3473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-08 15:56:01'); INSERT INTO `sys_job_log` VALUES (3474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-08 15:58:00'); INSERT INTO `sys_job_log` VALUES (3475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 15:58:01'); INSERT INTO `sys_job_log` VALUES (3476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:701毫秒', '0', '', '2022-01-08 16:00:00'); INSERT INTO `sys_job_log` VALUES (3477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 16:00:01'); INSERT INTO `sys_job_log` VALUES (3478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-08 16:02:00'); INSERT INTO `sys_job_log` VALUES (3479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-08 16:02:01'); INSERT INTO `sys_job_log` VALUES (3480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-08 16:04:00'); INSERT INTO `sys_job_log` VALUES (3481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:492毫秒', '0', '', '2022-01-08 16:04:01'); INSERT INTO `sys_job_log` VALUES (3482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-08 16:06:00'); INSERT INTO `sys_job_log` VALUES (3483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 16:06:01'); INSERT INTO `sys_job_log` VALUES (3484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-08 16:08:00'); INSERT INTO `sys_job_log` VALUES (3485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 16:08:01'); INSERT INTO `sys_job_log` VALUES (3486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-08 16:10:00'); INSERT INTO `sys_job_log` VALUES (3487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-08 16:10:01'); INSERT INTO `sys_job_log` VALUES (3488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-08 16:12:00'); INSERT INTO `sys_job_log` VALUES (3489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-08 16:12:01'); INSERT INTO `sys_job_log` VALUES (3490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-08 16:14:00'); INSERT INTO `sys_job_log` VALUES (3491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 16:14:01'); INSERT INTO `sys_job_log` VALUES (3492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-08 16:16:00'); INSERT INTO `sys_job_log` VALUES (3493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:321毫秒', '0', '', '2022-01-08 16:16:01'); INSERT INTO `sys_job_log` VALUES (3494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-08 16:18:00'); INSERT INTO `sys_job_log` VALUES (3495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-08 16:18:01'); INSERT INTO `sys_job_log` VALUES (3496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-08 16:20:00'); INSERT INTO `sys_job_log` VALUES (3497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-08 16:20:01'); INSERT INTO `sys_job_log` VALUES (3498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-08 16:22:00'); INSERT INTO `sys_job_log` VALUES (3499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-08 16:22:01'); INSERT INTO `sys_job_log` VALUES (3500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-08 16:24:00'); INSERT INTO `sys_job_log` VALUES (3501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 16:24:01'); INSERT INTO `sys_job_log` VALUES (3502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-08 16:26:00'); INSERT INTO `sys_job_log` VALUES (3503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 16:26:01'); INSERT INTO `sys_job_log` VALUES (3504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-08 16:28:00'); INSERT INTO `sys_job_log` VALUES (3505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 16:28:01'); INSERT INTO `sys_job_log` VALUES (3506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-08 16:30:00'); INSERT INTO `sys_job_log` VALUES (3507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-08 16:30:01'); INSERT INTO `sys_job_log` VALUES (3508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-08 16:32:00'); INSERT INTO `sys_job_log` VALUES (3509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 16:32:01'); INSERT INTO `sys_job_log` VALUES (3510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-08 16:34:00'); INSERT INTO `sys_job_log` VALUES (3511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 16:34:01'); INSERT INTO `sys_job_log` VALUES (3512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-08 16:36:00'); INSERT INTO `sys_job_log` VALUES (3513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 16:36:01'); INSERT INTO `sys_job_log` VALUES (3514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:310毫秒', '0', '', '2022-01-08 16:38:00'); INSERT INTO `sys_job_log` VALUES (3515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 16:38:01'); INSERT INTO `sys_job_log` VALUES (3516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-08 16:40:00'); INSERT INTO `sys_job_log` VALUES (3517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-08 16:40:01'); INSERT INTO `sys_job_log` VALUES (3518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 16:42:00'); INSERT INTO `sys_job_log` VALUES (3519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 16:42:01'); INSERT INTO `sys_job_log` VALUES (3520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-08 16:44:00'); INSERT INTO `sys_job_log` VALUES (3521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-08 16:44:01'); INSERT INTO `sys_job_log` VALUES (3522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-08 16:46:00'); INSERT INTO `sys_job_log` VALUES (3523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:347毫秒', '0', '', '2022-01-08 16:46:01'); INSERT INTO `sys_job_log` VALUES (3524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-08 16:48:00'); INSERT INTO `sys_job_log` VALUES (3525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-08 16:48:01'); INSERT INTO `sys_job_log` VALUES (3526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-08 16:50:00'); INSERT INTO `sys_job_log` VALUES (3527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 16:50:01'); INSERT INTO `sys_job_log` VALUES (3528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-08 16:52:00'); INSERT INTO `sys_job_log` VALUES (3529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 16:52:01'); INSERT INTO `sys_job_log` VALUES (3530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-08 16:54:00'); INSERT INTO `sys_job_log` VALUES (3531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-08 16:54:01'); INSERT INTO `sys_job_log` VALUES (3532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 16:56:00'); INSERT INTO `sys_job_log` VALUES (3533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:295毫秒', '0', '', '2022-01-08 16:56:01'); INSERT INTO `sys_job_log` VALUES (3534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-08 16:58:00'); INSERT INTO `sys_job_log` VALUES (3535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-08 16:58:01'); INSERT INTO `sys_job_log` VALUES (3536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:801毫秒', '0', '', '2022-01-08 17:00:00'); INSERT INTO `sys_job_log` VALUES (3537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:363毫秒', '0', '', '2022-01-08 17:00:01'); INSERT INTO `sys_job_log` VALUES (3538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:623毫秒', '0', '', '2022-01-08 17:02:00'); INSERT INTO `sys_job_log` VALUES (3539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 17:02:01'); INSERT INTO `sys_job_log` VALUES (3540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-08 17:04:00'); INSERT INTO `sys_job_log` VALUES (3541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-08 17:04:01'); INSERT INTO `sys_job_log` VALUES (3542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-08 17:06:00'); INSERT INTO `sys_job_log` VALUES (3543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-08 17:06:01'); INSERT INTO `sys_job_log` VALUES (3544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-08 17:08:00'); INSERT INTO `sys_job_log` VALUES (3545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-08 17:08:01'); INSERT INTO `sys_job_log` VALUES (3546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-08 17:10:00'); INSERT INTO `sys_job_log` VALUES (3547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-08 17:10:01'); INSERT INTO `sys_job_log` VALUES (3548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-08 17:12:00'); INSERT INTO `sys_job_log` VALUES (3549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 17:12:01'); INSERT INTO `sys_job_log` VALUES (3550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-08 17:14:00'); INSERT INTO `sys_job_log` VALUES (3551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 17:14:01'); INSERT INTO `sys_job_log` VALUES (3552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-08 17:16:00'); INSERT INTO `sys_job_log` VALUES (3553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 17:16:01'); INSERT INTO `sys_job_log` VALUES (3554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-08 17:18:00'); INSERT INTO `sys_job_log` VALUES (3555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 17:18:01'); INSERT INTO `sys_job_log` VALUES (3556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-08 17:20:00'); INSERT INTO `sys_job_log` VALUES (3557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 17:20:01'); INSERT INTO `sys_job_log` VALUES (3558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-08 17:22:00'); INSERT INTO `sys_job_log` VALUES (3559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 17:22:01'); INSERT INTO `sys_job_log` VALUES (3560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-08 17:24:00'); INSERT INTO `sys_job_log` VALUES (3561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-08 17:24:01'); INSERT INTO `sys_job_log` VALUES (3562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-08 17:26:00'); INSERT INTO `sys_job_log` VALUES (3563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-08 17:26:01'); INSERT INTO `sys_job_log` VALUES (3564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:294毫秒', '0', '', '2022-01-08 17:28:00'); INSERT INTO `sys_job_log` VALUES (3565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-08 17:28:01'); INSERT INTO `sys_job_log` VALUES (3566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-08 17:30:00'); INSERT INTO `sys_job_log` VALUES (3567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-08 17:30:01'); INSERT INTO `sys_job_log` VALUES (3568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-08 17:32:00'); INSERT INTO `sys_job_log` VALUES (3569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 17:32:01'); INSERT INTO `sys_job_log` VALUES (3570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-08 17:34:00'); INSERT INTO `sys_job_log` VALUES (3571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 17:34:01'); INSERT INTO `sys_job_log` VALUES (3572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-08 17:36:00'); INSERT INTO `sys_job_log` VALUES (3573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 17:36:01'); INSERT INTO `sys_job_log` VALUES (3574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-08 17:38:00'); INSERT INTO `sys_job_log` VALUES (3575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-08 17:38:01'); INSERT INTO `sys_job_log` VALUES (3576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-08 17:40:00'); INSERT INTO `sys_job_log` VALUES (3577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 17:40:01'); INSERT INTO `sys_job_log` VALUES (3578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-08 17:42:00'); INSERT INTO `sys_job_log` VALUES (3579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:315毫秒', '0', '', '2022-01-08 17:42:01'); INSERT INTO `sys_job_log` VALUES (3580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-08 17:44:00'); INSERT INTO `sys_job_log` VALUES (3581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-08 17:44:01'); INSERT INTO `sys_job_log` VALUES (3582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-08 17:46:00'); INSERT INTO `sys_job_log` VALUES (3583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 17:46:01'); INSERT INTO `sys_job_log` VALUES (3584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-08 17:48:00'); INSERT INTO `sys_job_log` VALUES (3585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-08 17:48:01'); INSERT INTO `sys_job_log` VALUES (3586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-08 17:50:00'); INSERT INTO `sys_job_log` VALUES (3587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-08 17:50:01'); INSERT INTO `sys_job_log` VALUES (3588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-08 17:52:00'); INSERT INTO `sys_job_log` VALUES (3589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-08 17:52:01'); INSERT INTO `sys_job_log` VALUES (3590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-08 17:54:00'); INSERT INTO `sys_job_log` VALUES (3591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 17:54:01'); INSERT INTO `sys_job_log` VALUES (3592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-08 17:56:00'); INSERT INTO `sys_job_log` VALUES (3593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-08 17:56:01'); INSERT INTO `sys_job_log` VALUES (3594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:531毫秒', '0', '', '2022-01-08 17:58:00'); INSERT INTO `sys_job_log` VALUES (3595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-08 17:58:01'); INSERT INTO `sys_job_log` VALUES (3596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-08 18:00:00'); INSERT INTO `sys_job_log` VALUES (3597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 18:00:01'); INSERT INTO `sys_job_log` VALUES (3598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-08 18:02:00'); INSERT INTO `sys_job_log` VALUES (3599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 18:02:01'); INSERT INTO `sys_job_log` VALUES (3600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-08 18:04:00'); INSERT INTO `sys_job_log` VALUES (3601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-08 18:04:01'); INSERT INTO `sys_job_log` VALUES (3602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-08 18:06:00'); INSERT INTO `sys_job_log` VALUES (3603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 18:06:01'); INSERT INTO `sys_job_log` VALUES (3604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:283毫秒', '0', '', '2022-01-08 18:08:00'); INSERT INTO `sys_job_log` VALUES (3605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-08 18:08:01'); INSERT INTO `sys_job_log` VALUES (3606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-08 18:10:00'); INSERT INTO `sys_job_log` VALUES (3607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 18:10:01'); INSERT INTO `sys_job_log` VALUES (3608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-08 18:12:00'); INSERT INTO `sys_job_log` VALUES (3609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-08 18:12:01'); INSERT INTO `sys_job_log` VALUES (3610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-08 18:14:00'); INSERT INTO `sys_job_log` VALUES (3611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 18:14:01'); INSERT INTO `sys_job_log` VALUES (3612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-08 18:16:00'); INSERT INTO `sys_job_log` VALUES (3613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 18:16:01'); INSERT INTO `sys_job_log` VALUES (3614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-08 18:18:00'); INSERT INTO `sys_job_log` VALUES (3615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 18:18:01'); INSERT INTO `sys_job_log` VALUES (3616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-08 18:20:00'); INSERT INTO `sys_job_log` VALUES (3617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-08 18:20:01'); INSERT INTO `sys_job_log` VALUES (3618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-08 18:22:00'); INSERT INTO `sys_job_log` VALUES (3619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-08 18:22:01'); INSERT INTO `sys_job_log` VALUES (3620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-08 18:24:00'); INSERT INTO `sys_job_log` VALUES (3621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-08 18:24:01'); INSERT INTO `sys_job_log` VALUES (3622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-08 18:26:00'); INSERT INTO `sys_job_log` VALUES (3623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-08 18:26:01'); INSERT INTO `sys_job_log` VALUES (3624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-08 18:28:00'); INSERT INTO `sys_job_log` VALUES (3625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 18:28:01'); INSERT INTO `sys_job_log` VALUES (3626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-08 18:30:00'); INSERT INTO `sys_job_log` VALUES (3627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 18:30:01'); INSERT INTO `sys_job_log` VALUES (3628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-08 18:32:00'); INSERT INTO `sys_job_log` VALUES (3629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 18:32:01'); INSERT INTO `sys_job_log` VALUES (3630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-08 18:34:00'); INSERT INTO `sys_job_log` VALUES (3631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 18:34:01'); INSERT INTO `sys_job_log` VALUES (3632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-08 18:36:00'); INSERT INTO `sys_job_log` VALUES (3633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 18:36:01'); INSERT INTO `sys_job_log` VALUES (3634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-08 18:38:00'); INSERT INTO `sys_job_log` VALUES (3635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 18:38:01'); INSERT INTO `sys_job_log` VALUES (3636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-08 18:40:00'); INSERT INTO `sys_job_log` VALUES (3637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 18:40:01'); INSERT INTO `sys_job_log` VALUES (3638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-08 18:42:00'); INSERT INTO `sys_job_log` VALUES (3639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 18:42:01'); INSERT INTO `sys_job_log` VALUES (3640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:286毫秒', '0', '', '2022-01-08 18:44:00'); INSERT INTO `sys_job_log` VALUES (3641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 18:44:01'); INSERT INTO `sys_job_log` VALUES (3642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-08 18:46:00'); INSERT INTO `sys_job_log` VALUES (3643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 18:46:01'); INSERT INTO `sys_job_log` VALUES (3644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-08 18:51:21'); INSERT INTO `sys_job_log` VALUES (3645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-08 18:51:21'); INSERT INTO `sys_job_log` VALUES (3646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-08 18:51:21'); INSERT INTO `sys_job_log` VALUES (3647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 18:51:21'); INSERT INTO `sys_job_log` VALUES (3648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-08 18:52:00'); INSERT INTO `sys_job_log` VALUES (3649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-08 18:52:01'); INSERT INTO `sys_job_log` VALUES (3650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-08 18:54:00'); INSERT INTO `sys_job_log` VALUES (3651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 18:54:01'); INSERT INTO `sys_job_log` VALUES (3652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-08 18:56:00'); INSERT INTO `sys_job_log` VALUES (3653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 18:56:01'); INSERT INTO `sys_job_log` VALUES (3654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-08 18:58:00'); INSERT INTO `sys_job_log` VALUES (3655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:318毫秒', '0', '', '2022-01-08 18:58:01'); INSERT INTO `sys_job_log` VALUES (3656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-08 19:00:00'); INSERT INTO `sys_job_log` VALUES (3657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:320毫秒', '0', '', '2022-01-08 19:00:01'); INSERT INTO `sys_job_log` VALUES (3658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-08 19:02:00'); INSERT INTO `sys_job_log` VALUES (3659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 19:02:01'); INSERT INTO `sys_job_log` VALUES (3660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-08 19:04:00'); INSERT INTO `sys_job_log` VALUES (3661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-08 19:04:01'); INSERT INTO `sys_job_log` VALUES (3662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-08 19:06:00'); INSERT INTO `sys_job_log` VALUES (3663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-08 19:06:01'); INSERT INTO `sys_job_log` VALUES (3664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-08 19:08:00'); INSERT INTO `sys_job_log` VALUES (3665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-08 19:08:01'); INSERT INTO `sys_job_log` VALUES (3666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-08 19:10:00'); INSERT INTO `sys_job_log` VALUES (3667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 19:10:01'); INSERT INTO `sys_job_log` VALUES (3668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-08 19:12:00'); INSERT INTO `sys_job_log` VALUES (3669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-08 19:12:01'); INSERT INTO `sys_job_log` VALUES (3670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-08 19:14:00'); INSERT INTO `sys_job_log` VALUES (3671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-08 19:14:01'); INSERT INTO `sys_job_log` VALUES (3672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-08 19:16:00'); INSERT INTO `sys_job_log` VALUES (3673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:333毫秒', '0', '', '2022-01-08 19:16:01'); INSERT INTO `sys_job_log` VALUES (3674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-08 19:18:00'); INSERT INTO `sys_job_log` VALUES (3675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:288毫秒', '0', '', '2022-01-08 19:18:01'); INSERT INTO `sys_job_log` VALUES (3676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-08 19:20:00'); INSERT INTO `sys_job_log` VALUES (3677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-08 19:20:01'); INSERT INTO `sys_job_log` VALUES (3678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-08 19:22:00'); INSERT INTO `sys_job_log` VALUES (3679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-08 19:22:01'); INSERT INTO `sys_job_log` VALUES (3680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-08 19:24:00'); INSERT INTO `sys_job_log` VALUES (3681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-08 19:24:01'); INSERT INTO `sys_job_log` VALUES (3682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-08 19:26:00'); INSERT INTO `sys_job_log` VALUES (3683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:333毫秒', '0', '', '2022-01-08 19:26:01'); INSERT INTO `sys_job_log` VALUES (3684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-08 19:28:00'); INSERT INTO `sys_job_log` VALUES (3685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:305毫秒', '0', '', '2022-01-08 19:28:01'); INSERT INTO `sys_job_log` VALUES (3686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-08 19:30:00'); INSERT INTO `sys_job_log` VALUES (3687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 19:30:01'); INSERT INTO `sys_job_log` VALUES (3688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-08 19:32:00'); INSERT INTO `sys_job_log` VALUES (3689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-08 19:32:01'); INSERT INTO `sys_job_log` VALUES (3690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-08 19:34:00'); INSERT INTO `sys_job_log` VALUES (3691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-08 19:34:01'); INSERT INTO `sys_job_log` VALUES (3692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-08 19:36:00'); INSERT INTO `sys_job_log` VALUES (3693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 19:36:01'); INSERT INTO `sys_job_log` VALUES (3694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-08 19:38:00'); INSERT INTO `sys_job_log` VALUES (3695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:317毫秒', '0', '', '2022-01-08 19:38:01'); INSERT INTO `sys_job_log` VALUES (3696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-08 19:40:00'); INSERT INTO `sys_job_log` VALUES (3697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-08 19:40:01'); INSERT INTO `sys_job_log` VALUES (3698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-08 19:42:00'); INSERT INTO `sys_job_log` VALUES (3699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-08 19:42:01'); INSERT INTO `sys_job_log` VALUES (3700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-08 19:44:00'); INSERT INTO `sys_job_log` VALUES (3701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 19:44:01'); INSERT INTO `sys_job_log` VALUES (3702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:284毫秒', '0', '', '2022-01-08 19:46:00'); INSERT INTO `sys_job_log` VALUES (3703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-08 19:46:01'); INSERT INTO `sys_job_log` VALUES (3704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-08 19:48:00'); INSERT INTO `sys_job_log` VALUES (3705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-08 19:48:01'); INSERT INTO `sys_job_log` VALUES (3706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-08 19:50:00'); INSERT INTO `sys_job_log` VALUES (3707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-08 19:50:01'); INSERT INTO `sys_job_log` VALUES (3708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-08 19:52:00'); INSERT INTO `sys_job_log` VALUES (3709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-08 19:52:01'); INSERT INTO `sys_job_log` VALUES (3710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-08 19:54:00'); INSERT INTO `sys_job_log` VALUES (3711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 19:54:01'); INSERT INTO `sys_job_log` VALUES (3712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:301毫秒', '0', '', '2022-01-08 19:56:00'); INSERT INTO `sys_job_log` VALUES (3713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-08 19:56:01'); INSERT INTO `sys_job_log` VALUES (3714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-08 19:58:00'); INSERT INTO `sys_job_log` VALUES (3715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:272毫秒', '0', '', '2022-01-08 19:58:01'); INSERT INTO `sys_job_log` VALUES (3716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-08 20:00:00'); INSERT INTO `sys_job_log` VALUES (3717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-08 20:00:01'); INSERT INTO `sys_job_log` VALUES (3718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-08 20:02:00'); INSERT INTO `sys_job_log` VALUES (3719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-08 20:02:01'); INSERT INTO `sys_job_log` VALUES (3720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-08 20:04:00'); INSERT INTO `sys_job_log` VALUES (3721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-08 20:04:01'); INSERT INTO `sys_job_log` VALUES (3722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-08 20:06:00'); INSERT INTO `sys_job_log` VALUES (3723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 20:06:01'); INSERT INTO `sys_job_log` VALUES (3724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-08 20:08:00'); INSERT INTO `sys_job_log` VALUES (3725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 20:08:01'); INSERT INTO `sys_job_log` VALUES (3726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-08 20:10:00'); INSERT INTO `sys_job_log` VALUES (3727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 20:10:01'); INSERT INTO `sys_job_log` VALUES (3728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-08 20:12:00'); INSERT INTO `sys_job_log` VALUES (3729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 20:12:01'); INSERT INTO `sys_job_log` VALUES (3730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-08 20:14:00'); INSERT INTO `sys_job_log` VALUES (3731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 20:14:01'); INSERT INTO `sys_job_log` VALUES (3732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-08 20:16:00'); INSERT INTO `sys_job_log` VALUES (3733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-08 20:16:01'); INSERT INTO `sys_job_log` VALUES (3734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:298毫秒', '0', '', '2022-01-08 20:18:00'); INSERT INTO `sys_job_log` VALUES (3735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 20:18:01'); INSERT INTO `sys_job_log` VALUES (3736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-08 20:20:00'); INSERT INTO `sys_job_log` VALUES (3737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-08 20:20:01'); INSERT INTO `sys_job_log` VALUES (3738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-08 20:22:00'); INSERT INTO `sys_job_log` VALUES (3739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 20:22:01'); INSERT INTO `sys_job_log` VALUES (3740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-08 20:24:00'); INSERT INTO `sys_job_log` VALUES (3741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:336毫秒', '0', '', '2022-01-08 20:24:01'); INSERT INTO `sys_job_log` VALUES (3742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-08 20:26:00'); INSERT INTO `sys_job_log` VALUES (3743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 20:26:01'); INSERT INTO `sys_job_log` VALUES (3744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-08 20:28:00'); INSERT INTO `sys_job_log` VALUES (3745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:323毫秒', '0', '', '2022-01-08 20:28:01'); INSERT INTO `sys_job_log` VALUES (3746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-08 20:30:00'); INSERT INTO `sys_job_log` VALUES (3747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 20:30:01'); INSERT INTO `sys_job_log` VALUES (3748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-08 20:32:00'); INSERT INTO `sys_job_log` VALUES (3749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 20:32:01'); INSERT INTO `sys_job_log` VALUES (3750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:265毫秒', '0', '', '2022-01-08 20:34:00'); INSERT INTO `sys_job_log` VALUES (3751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 20:34:01'); INSERT INTO `sys_job_log` VALUES (3752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:441毫秒', '0', '', '2022-01-08 20:36:00'); INSERT INTO `sys_job_log` VALUES (3753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-08 20:36:01'); INSERT INTO `sys_job_log` VALUES (3754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-08 20:38:00'); INSERT INTO `sys_job_log` VALUES (3755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-08 20:38:01'); INSERT INTO `sys_job_log` VALUES (3756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-08 20:40:00'); INSERT INTO `sys_job_log` VALUES (3757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-08 20:40:01'); INSERT INTO `sys_job_log` VALUES (3758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-08 20:42:00'); INSERT INTO `sys_job_log` VALUES (3759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:319毫秒', '0', '', '2022-01-08 20:42:01'); INSERT INTO `sys_job_log` VALUES (3760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-08 20:44:00'); INSERT INTO `sys_job_log` VALUES (3761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 20:44:01'); INSERT INTO `sys_job_log` VALUES (3762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-08 20:46:00'); INSERT INTO `sys_job_log` VALUES (3763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-08 20:46:01'); INSERT INTO `sys_job_log` VALUES (3764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-08 20:48:00'); INSERT INTO `sys_job_log` VALUES (3765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 20:48:01'); INSERT INTO `sys_job_log` VALUES (3766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-08 20:50:00'); INSERT INTO `sys_job_log` VALUES (3767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 20:50:01'); INSERT INTO `sys_job_log` VALUES (3768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-08 20:52:00'); INSERT INTO `sys_job_log` VALUES (3769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-08 20:52:01'); INSERT INTO `sys_job_log` VALUES (3770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-08 20:54:00'); INSERT INTO `sys_job_log` VALUES (3771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 20:54:01'); INSERT INTO `sys_job_log` VALUES (3772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-08 20:56:00'); INSERT INTO `sys_job_log` VALUES (3773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-08 20:56:01'); INSERT INTO `sys_job_log` VALUES (3774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-08 20:58:00'); INSERT INTO `sys_job_log` VALUES (3775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:356毫秒', '0', '', '2022-01-08 20:58:01'); INSERT INTO `sys_job_log` VALUES (3776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-08 21:00:00'); INSERT INTO `sys_job_log` VALUES (3777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-08 21:00:01'); INSERT INTO `sys_job_log` VALUES (3778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:275毫秒', '0', '', '2022-01-08 21:02:00'); INSERT INTO `sys_job_log` VALUES (3779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 21:02:01'); INSERT INTO `sys_job_log` VALUES (3780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-08 21:04:00'); INSERT INTO `sys_job_log` VALUES (3781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:04:01'); INSERT INTO `sys_job_log` VALUES (3782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-08 21:06:00'); INSERT INTO `sys_job_log` VALUES (3783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-08 21:06:01'); INSERT INTO `sys_job_log` VALUES (3784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-08 21:08:00'); INSERT INTO `sys_job_log` VALUES (3785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:08:01'); INSERT INTO `sys_job_log` VALUES (3786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-08 21:10:00'); INSERT INTO `sys_job_log` VALUES (3787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:403毫秒', '0', '', '2022-01-08 21:10:01'); INSERT INTO `sys_job_log` VALUES (3788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-08 21:10:38'); INSERT INTO `sys_job_log` VALUES (3789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-08 21:10:38'); INSERT INTO `sys_job_log` VALUES (3790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:10:38'); INSERT INTO `sys_job_log` VALUES (3791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:10:38'); INSERT INTO `sys_job_log` VALUES (3792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:10:38'); INSERT INTO `sys_job_log` VALUES (3793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:10:39'); INSERT INTO `sys_job_log` VALUES (3805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:10:40'); INSERT INTO `sys_job_log` VALUES (3816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-08 21:10:41'); INSERT INTO `sys_job_log` VALUES (3817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:10:41'); INSERT INTO `sys_job_log` VALUES (3818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:10:41'); INSERT INTO `sys_job_log` VALUES (3819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:10:41'); INSERT INTO `sys_job_log` VALUES (3820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:10:41'); INSERT INTO `sys_job_log` VALUES (3821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:10:41'); INSERT INTO `sys_job_log` VALUES (3822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:10:42'); INSERT INTO `sys_job_log` VALUES (3823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:10:43'); INSERT INTO `sys_job_log` VALUES (3824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:10:44'); INSERT INTO `sys_job_log` VALUES (3825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:10:45'); INSERT INTO `sys_job_log` VALUES (3826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:10:46'); INSERT INTO `sys_job_log` VALUES (3827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:10:47'); INSERT INTO `sys_job_log` VALUES (3828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:10:48'); INSERT INTO `sys_job_log` VALUES (3829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:10:49'); INSERT INTO `sys_job_log` VALUES (3830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:10:50'); INSERT INTO `sys_job_log` VALUES (3831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:10:51'); INSERT INTO `sys_job_log` VALUES (3832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:10:52'); INSERT INTO `sys_job_log` VALUES (3833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:10:53'); INSERT INTO `sys_job_log` VALUES (3834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:10:54'); INSERT INTO `sys_job_log` VALUES (3835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:10:55'); INSERT INTO `sys_job_log` VALUES (3836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:10:56'); INSERT INTO `sys_job_log` VALUES (3837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:10:57'); INSERT INTO `sys_job_log` VALUES (3838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:10:58'); INSERT INTO `sys_job_log` VALUES (3839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:10:59'); INSERT INTO `sys_job_log` VALUES (3840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 21:11:00'); INSERT INTO `sys_job_log` VALUES (3841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:11:01'); INSERT INTO `sys_job_log` VALUES (3842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:11:02'); INSERT INTO `sys_job_log` VALUES (3843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:11:03'); INSERT INTO `sys_job_log` VALUES (3844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:11:04'); INSERT INTO `sys_job_log` VALUES (3845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:11:05'); INSERT INTO `sys_job_log` VALUES (3846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:11:06'); INSERT INTO `sys_job_log` VALUES (3847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:11:07'); INSERT INTO `sys_job_log` VALUES (3848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:11:08'); INSERT INTO `sys_job_log` VALUES (3849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-08 21:11:09'); INSERT INTO `sys_job_log` VALUES (3850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 21:11:10'); INSERT INTO `sys_job_log` VALUES (3851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 21:11:11'); INSERT INTO `sys_job_log` VALUES (3852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:11:12'); INSERT INTO `sys_job_log` VALUES (3853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:11:13'); INSERT INTO `sys_job_log` VALUES (3854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-08 21:11:14'); INSERT INTO `sys_job_log` VALUES (3855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-08 21:11:15'); INSERT INTO `sys_job_log` VALUES (3856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:11:16'); INSERT INTO `sys_job_log` VALUES (3857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:11:17'); INSERT INTO `sys_job_log` VALUES (3858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:11:18'); INSERT INTO `sys_job_log` VALUES (3859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:11:19'); INSERT INTO `sys_job_log` VALUES (3860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 21:11:20'); INSERT INTO `sys_job_log` VALUES (3861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:11:21'); INSERT INTO `sys_job_log` VALUES (3862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:11:22'); INSERT INTO `sys_job_log` VALUES (3863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:11:23'); INSERT INTO `sys_job_log` VALUES (3864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 21:11:24'); INSERT INTO `sys_job_log` VALUES (3865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:11:25'); INSERT INTO `sys_job_log` VALUES (3866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:11:26'); INSERT INTO `sys_job_log` VALUES (3867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 21:11:27'); INSERT INTO `sys_job_log` VALUES (3868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:11:28'); INSERT INTO `sys_job_log` VALUES (3869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 21:11:29'); INSERT INTO `sys_job_log` VALUES (3870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:11:30'); INSERT INTO `sys_job_log` VALUES (3871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:11:31'); INSERT INTO `sys_job_log` VALUES (3872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:11:32'); INSERT INTO `sys_job_log` VALUES (3873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:11:33'); INSERT INTO `sys_job_log` VALUES (3874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-08 21:12:32'); INSERT INTO `sys_job_log` VALUES (3875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-08 21:13:20'); INSERT INTO `sys_job_log` VALUES (3876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-08 21:13:44'); INSERT INTO `sys_job_log` VALUES (3877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:14:20'); INSERT INTO `sys_job_log` VALUES (3878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-08 21:17:58'); INSERT INTO `sys_job_log` VALUES (3879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:17:58'); INSERT INTO `sys_job_log` VALUES (3880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:17:58'); INSERT INTO `sys_job_log` VALUES (3881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-08 21:17:59'); INSERT INTO `sys_job_log` VALUES (3882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:17:59'); INSERT INTO `sys_job_log` VALUES (3883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-08 21:17:59'); INSERT INTO `sys_job_log` VALUES (3884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:17:59'); INSERT INTO `sys_job_log` VALUES (3885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 21:17:59'); INSERT INTO `sys_job_log` VALUES (3886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:17:59'); INSERT INTO `sys_job_log` VALUES (3887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 21:17:59'); INSERT INTO `sys_job_log` VALUES (3888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 21:17:59'); INSERT INTO `sys_job_log` VALUES (3889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:17:59'); INSERT INTO `sys_job_log` VALUES (3890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:18:00'); INSERT INTO `sys_job_log` VALUES (3901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:01'); INSERT INTO `sys_job_log` VALUES (3912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 21:18:02'); INSERT INTO `sys_job_log` VALUES (3924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:18:03'); INSERT INTO `sys_job_log` VALUES (3935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:04'); INSERT INTO `sys_job_log` VALUES (3947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:18:05'); INSERT INTO `sys_job_log` VALUES (3958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 21:18:06'); INSERT INTO `sys_job_log` VALUES (3969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:07'); INSERT INTO `sys_job_log` VALUES (3981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:08'); INSERT INTO `sys_job_log` VALUES (3992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (3993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (3994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (3995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (3996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (3997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (3998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (3999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (4000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (4001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (4002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 21:18:09'); INSERT INTO `sys_job_log` VALUES (4003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:10'); INSERT INTO `sys_job_log` VALUES (4015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:18:11'); INSERT INTO `sys_job_log` VALUES (4027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:18:12'); INSERT INTO `sys_job_log` VALUES (4038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:18:13'); INSERT INTO `sys_job_log` VALUES (4050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:18:14'); INSERT INTO `sys_job_log` VALUES (4062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:15'); INSERT INTO `sys_job_log` VALUES (4073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:16'); INSERT INTO `sys_job_log` VALUES (4085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:17'); INSERT INTO `sys_job_log` VALUES (4097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:18'); INSERT INTO `sys_job_log` VALUES (4108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:19'); INSERT INTO `sys_job_log` VALUES (4122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:18:20'); INSERT INTO `sys_job_log` VALUES (4135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:21'); INSERT INTO `sys_job_log` VALUES (4147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:22'); INSERT INTO `sys_job_log` VALUES (4159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:23'); INSERT INTO `sys_job_log` VALUES (4172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:24'); INSERT INTO `sys_job_log` VALUES (4184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2022-01-08 21:18:25'); INSERT INTO `sys_job_log` VALUES (4198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:26'); INSERT INTO `sys_job_log` VALUES (4211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:27'); INSERT INTO `sys_job_log` VALUES (4224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:28'); INSERT INTO `sys_job_log` VALUES (4237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2022-01-08 21:18:29'); INSERT INTO `sys_job_log` VALUES (4250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:18:30'); INSERT INTO `sys_job_log` VALUES (4263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 21:18:31'); INSERT INTO `sys_job_log` VALUES (4275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:32'); INSERT INTO `sys_job_log` VALUES (4288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:33'); INSERT INTO `sys_job_log` VALUES (4289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:33'); INSERT INTO `sys_job_log` VALUES (4290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2022-01-08 21:18:33'); INSERT INTO `sys_job_log` VALUES (4291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:33'); INSERT INTO `sys_job_log` VALUES (4292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:33'); INSERT INTO `sys_job_log` VALUES (4293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:33'); INSERT INTO `sys_job_log` VALUES (4294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:18:33'); INSERT INTO `sys_job_log` VALUES (4295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:33'); INSERT INTO `sys_job_log` VALUES (4296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:33'); INSERT INTO `sys_job_log` VALUES (4297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:33'); INSERT INTO `sys_job_log` VALUES (4298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:18:34'); INSERT INTO `sys_job_log` VALUES (4299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:35'); INSERT INTO `sys_job_log` VALUES (4300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:36'); INSERT INTO `sys_job_log` VALUES (4301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-08 21:18:37'); INSERT INTO `sys_job_log` VALUES (4302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:18:38'); INSERT INTO `sys_job_log` VALUES (4303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:39'); INSERT INTO `sys_job_log` VALUES (4304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:18:40'); INSERT INTO `sys_job_log` VALUES (4305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:18:41'); INSERT INTO `sys_job_log` VALUES (4306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:42'); INSERT INTO `sys_job_log` VALUES (4307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:43'); INSERT INTO `sys_job_log` VALUES (4308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:18:44'); INSERT INTO `sys_job_log` VALUES (4309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:45'); INSERT INTO `sys_job_log` VALUES (4310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-08 21:18:46'); INSERT INTO `sys_job_log` VALUES (4311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:47'); INSERT INTO `sys_job_log` VALUES (4312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:48'); INSERT INTO `sys_job_log` VALUES (4313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:49'); INSERT INTO `sys_job_log` VALUES (4314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:50'); INSERT INTO `sys_job_log` VALUES (4315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:18:51'); INSERT INTO `sys_job_log` VALUES (4316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-08 21:18:52'); INSERT INTO `sys_job_log` VALUES (4317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:18:53'); INSERT INTO `sys_job_log` VALUES (4318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:18:54'); INSERT INTO `sys_job_log` VALUES (4319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:18:55'); INSERT INTO `sys_job_log` VALUES (4320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:56'); INSERT INTO `sys_job_log` VALUES (4321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:18:57'); INSERT INTO `sys_job_log` VALUES (4322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:18:58'); INSERT INTO `sys_job_log` VALUES (4323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:18:59'); INSERT INTO `sys_job_log` VALUES (4324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:19:00'); INSERT INTO `sys_job_log` VALUES (4325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:19:01'); INSERT INTO `sys_job_log` VALUES (4326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:19:02'); INSERT INTO `sys_job_log` VALUES (4327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:19:03'); INSERT INTO `sys_job_log` VALUES (4328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:19:04'); INSERT INTO `sys_job_log` VALUES (4329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:19:05'); INSERT INTO `sys_job_log` VALUES (4330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:19:06'); INSERT INTO `sys_job_log` VALUES (4331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:19:07'); INSERT INTO `sys_job_log` VALUES (4332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:19:08'); INSERT INTO `sys_job_log` VALUES (4333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:19:09'); INSERT INTO `sys_job_log` VALUES (4334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:19:10'); INSERT INTO `sys_job_log` VALUES (4335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:19:11'); INSERT INTO `sys_job_log` VALUES (4336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:19:12'); INSERT INTO `sys_job_log` VALUES (4337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:19:13'); INSERT INTO `sys_job_log` VALUES (4338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:19:14'); INSERT INTO `sys_job_log` VALUES (4339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-08 21:19:17'); INSERT INTO `sys_job_log` VALUES (4340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:19:17'); INSERT INTO `sys_job_log` VALUES (4341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:19:17'); INSERT INTO `sys_job_log` VALUES (4342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:19:18'); INSERT INTO `sys_job_log` VALUES (4343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1569毫秒', '0', '', '2022-01-08 21:19:20'); INSERT INTO `sys_job_log` VALUES (4344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:19:20'); INSERT INTO `sys_job_log` VALUES (4345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:55毫秒', '0', '', '2022-01-08 21:19:21'); INSERT INTO `sys_job_log` VALUES (4346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:19:22'); INSERT INTO `sys_job_log` VALUES (4347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:19:23'); INSERT INTO `sys_job_log` VALUES (4348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:19:24'); INSERT INTO `sys_job_log` VALUES (4349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:19:25'); INSERT INTO `sys_job_log` VALUES (4350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:19:26'); INSERT INTO `sys_job_log` VALUES (4351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:19:27'); INSERT INTO `sys_job_log` VALUES (4352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:19:28'); INSERT INTO `sys_job_log` VALUES (4353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-08 21:19:29'); INSERT INTO `sys_job_log` VALUES (4354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:19:30'); INSERT INTO `sys_job_log` VALUES (4355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-08 21:19:31'); INSERT INTO `sys_job_log` VALUES (4356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:19:32'); INSERT INTO `sys_job_log` VALUES (4357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:19:33'); INSERT INTO `sys_job_log` VALUES (4358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:19:34'); INSERT INTO `sys_job_log` VALUES (4359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:19:35'); INSERT INTO `sys_job_log` VALUES (4360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:19:36'); INSERT INTO `sys_job_log` VALUES (4361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:19:37'); INSERT INTO `sys_job_log` VALUES (4362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:19:38'); INSERT INTO `sys_job_log` VALUES (4363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:19:39'); INSERT INTO `sys_job_log` VALUES (4364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:19:40'); INSERT INTO `sys_job_log` VALUES (4365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:19:41'); INSERT INTO `sys_job_log` VALUES (4366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:19:42'); INSERT INTO `sys_job_log` VALUES (4367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:19:43'); INSERT INTO `sys_job_log` VALUES (4368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:19:44'); INSERT INTO `sys_job_log` VALUES (4369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:19:45'); INSERT INTO `sys_job_log` VALUES (4370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:19:46'); INSERT INTO `sys_job_log` VALUES (4371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:19:47'); INSERT INTO `sys_job_log` VALUES (4372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:19:48'); INSERT INTO `sys_job_log` VALUES (4373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:19:49'); INSERT INTO `sys_job_log` VALUES (4374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:19:50'); INSERT INTO `sys_job_log` VALUES (4375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:19:51'); INSERT INTO `sys_job_log` VALUES (4376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:19:52'); INSERT INTO `sys_job_log` VALUES (4377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:19:53'); INSERT INTO `sys_job_log` VALUES (4378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:19:54'); INSERT INTO `sys_job_log` VALUES (4379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:19:55'); INSERT INTO `sys_job_log` VALUES (4380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:19:56'); INSERT INTO `sys_job_log` VALUES (4381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:19:57'); INSERT INTO `sys_job_log` VALUES (4382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:19:58'); INSERT INTO `sys_job_log` VALUES (4383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:19:59'); INSERT INTO `sys_job_log` VALUES (4384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:20:00'); INSERT INTO `sys_job_log` VALUES (4385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:20:01'); INSERT INTO `sys_job_log` VALUES (4386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:20:02'); INSERT INTO `sys_job_log` VALUES (4387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:20:03'); INSERT INTO `sys_job_log` VALUES (4388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-08 21:20:04'); INSERT INTO `sys_job_log` VALUES (4389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:20:05'); INSERT INTO `sys_job_log` VALUES (4390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:20:06'); INSERT INTO `sys_job_log` VALUES (4391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:20:07'); INSERT INTO `sys_job_log` VALUES (4392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:20:08'); INSERT INTO `sys_job_log` VALUES (4393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:20:09'); INSERT INTO `sys_job_log` VALUES (4394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:20:10'); INSERT INTO `sys_job_log` VALUES (4395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:20:11'); INSERT INTO `sys_job_log` VALUES (4396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:20:12'); INSERT INTO `sys_job_log` VALUES (4397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:20:13'); INSERT INTO `sys_job_log` VALUES (4398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:20:14'); INSERT INTO `sys_job_log` VALUES (4399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:20:15'); INSERT INTO `sys_job_log` VALUES (4400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:20:16'); INSERT INTO `sys_job_log` VALUES (4401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:20:17'); INSERT INTO `sys_job_log` VALUES (4402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:20:18'); INSERT INTO `sys_job_log` VALUES (4403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:20:19'); INSERT INTO `sys_job_log` VALUES (4404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:20:20'); INSERT INTO `sys_job_log` VALUES (4405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-08 21:20:21'); INSERT INTO `sys_job_log` VALUES (4406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:20:22'); INSERT INTO `sys_job_log` VALUES (4407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:20:23'); INSERT INTO `sys_job_log` VALUES (4408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:20:24'); INSERT INTO `sys_job_log` VALUES (4409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:20:25'); INSERT INTO `sys_job_log` VALUES (4410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:20:26'); INSERT INTO `sys_job_log` VALUES (4411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:20:27'); INSERT INTO `sys_job_log` VALUES (4412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:20:28'); INSERT INTO `sys_job_log` VALUES (4413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:20:29'); INSERT INTO `sys_job_log` VALUES (4414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:20:30'); INSERT INTO `sys_job_log` VALUES (4415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:20:31'); INSERT INTO `sys_job_log` VALUES (4416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:20:32'); INSERT INTO `sys_job_log` VALUES (4417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:20:33'); INSERT INTO `sys_job_log` VALUES (4418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:20:34'); INSERT INTO `sys_job_log` VALUES (4419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:20:35'); INSERT INTO `sys_job_log` VALUES (4420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:20:36'); INSERT INTO `sys_job_log` VALUES (4421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-08 21:20:37'); INSERT INTO `sys_job_log` VALUES (4422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-08 21:20:38'); INSERT INTO `sys_job_log` VALUES (4423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:20:39'); INSERT INTO `sys_job_log` VALUES (4424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:20:40'); INSERT INTO `sys_job_log` VALUES (4425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:20:41'); INSERT INTO `sys_job_log` VALUES (4426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:20:42'); INSERT INTO `sys_job_log` VALUES (4427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:20:43'); INSERT INTO `sys_job_log` VALUES (4428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-08 21:20:44'); INSERT INTO `sys_job_log` VALUES (4429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:20:45'); INSERT INTO `sys_job_log` VALUES (4430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:20:46'); INSERT INTO `sys_job_log` VALUES (4431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:20:47'); INSERT INTO `sys_job_log` VALUES (4432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:20:48'); INSERT INTO `sys_job_log` VALUES (4433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:20:49'); INSERT INTO `sys_job_log` VALUES (4434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:20:50'); INSERT INTO `sys_job_log` VALUES (4435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:20:51'); INSERT INTO `sys_job_log` VALUES (4436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-08 21:20:52'); INSERT INTO `sys_job_log` VALUES (4437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:20:53'); INSERT INTO `sys_job_log` VALUES (4438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:20:54'); INSERT INTO `sys_job_log` VALUES (4439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:20:55'); INSERT INTO `sys_job_log` VALUES (4440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-08 21:20:56'); INSERT INTO `sys_job_log` VALUES (4441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:20:57'); INSERT INTO `sys_job_log` VALUES (4442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:20:58'); INSERT INTO `sys_job_log` VALUES (4443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:20:59'); INSERT INTO `sys_job_log` VALUES (4444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:21:00'); INSERT INTO `sys_job_log` VALUES (4445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:21:01'); INSERT INTO `sys_job_log` VALUES (4446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:21:02'); INSERT INTO `sys_job_log` VALUES (4447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-08 21:21:03'); INSERT INTO `sys_job_log` VALUES (4448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:21:04'); INSERT INTO `sys_job_log` VALUES (4449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 21:21:05'); INSERT INTO `sys_job_log` VALUES (4450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:21:06'); INSERT INTO `sys_job_log` VALUES (4451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:21:07'); INSERT INTO `sys_job_log` VALUES (4452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:21:08'); INSERT INTO `sys_job_log` VALUES (4453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:21:09'); INSERT INTO `sys_job_log` VALUES (4454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:21:10'); INSERT INTO `sys_job_log` VALUES (4455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:21:11'); INSERT INTO `sys_job_log` VALUES (4456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-08 21:21:12'); INSERT INTO `sys_job_log` VALUES (4457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-08 21:21:13'); INSERT INTO `sys_job_log` VALUES (4458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:21:14'); INSERT INTO `sys_job_log` VALUES (4459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:21:15'); INSERT INTO `sys_job_log` VALUES (4460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:21:16'); INSERT INTO `sys_job_log` VALUES (4461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-08 21:21:17'); INSERT INTO `sys_job_log` VALUES (4462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:21:18'); INSERT INTO `sys_job_log` VALUES (4463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:21:19'); INSERT INTO `sys_job_log` VALUES (4464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:21:20'); INSERT INTO `sys_job_log` VALUES (4465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:21:21'); INSERT INTO `sys_job_log` VALUES (4466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:21:22'); INSERT INTO `sys_job_log` VALUES (4467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:21:23'); INSERT INTO `sys_job_log` VALUES (4468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:21:24'); INSERT INTO `sys_job_log` VALUES (4469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:21:25'); INSERT INTO `sys_job_log` VALUES (4470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:21:26'); INSERT INTO `sys_job_log` VALUES (4471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:21:27'); INSERT INTO `sys_job_log` VALUES (4472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-08 21:21:28'); INSERT INTO `sys_job_log` VALUES (4473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:21:29'); INSERT INTO `sys_job_log` VALUES (4474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:21:30'); INSERT INTO `sys_job_log` VALUES (4475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:21:31'); INSERT INTO `sys_job_log` VALUES (4476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:21:32'); INSERT INTO `sys_job_log` VALUES (4477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:21:33'); INSERT INTO `sys_job_log` VALUES (4478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:21:34'); INSERT INTO `sys_job_log` VALUES (4479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:21:35'); INSERT INTO `sys_job_log` VALUES (4480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:21:36'); INSERT INTO `sys_job_log` VALUES (4481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:21:37'); INSERT INTO `sys_job_log` VALUES (4482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:21:38'); INSERT INTO `sys_job_log` VALUES (4483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:21:39'); INSERT INTO `sys_job_log` VALUES (4484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:21:40'); INSERT INTO `sys_job_log` VALUES (4485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:21:41'); INSERT INTO `sys_job_log` VALUES (4486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:21:42'); INSERT INTO `sys_job_log` VALUES (4487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:21:43'); INSERT INTO `sys_job_log` VALUES (4488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:21:44'); INSERT INTO `sys_job_log` VALUES (4489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:21:45'); INSERT INTO `sys_job_log` VALUES (4490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:21:46'); INSERT INTO `sys_job_log` VALUES (4491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:21:47'); INSERT INTO `sys_job_log` VALUES (4492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:21:48'); INSERT INTO `sys_job_log` VALUES (4493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:21:49'); INSERT INTO `sys_job_log` VALUES (4494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:21:50'); INSERT INTO `sys_job_log` VALUES (4495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:21:51'); INSERT INTO `sys_job_log` VALUES (4496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:21:52'); INSERT INTO `sys_job_log` VALUES (4497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:21:53'); INSERT INTO `sys_job_log` VALUES (4498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:21:54'); INSERT INTO `sys_job_log` VALUES (4499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:21:55'); INSERT INTO `sys_job_log` VALUES (4500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-08 21:21:56'); INSERT INTO `sys_job_log` VALUES (4501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:21:57'); INSERT INTO `sys_job_log` VALUES (4502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:21:58'); INSERT INTO `sys_job_log` VALUES (4503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 21:21:59'); INSERT INTO `sys_job_log` VALUES (4504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:22:00'); INSERT INTO `sys_job_log` VALUES (4505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-08 21:22:01'); INSERT INTO `sys_job_log` VALUES (4506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:22:02'); INSERT INTO `sys_job_log` VALUES (4507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:22:03'); INSERT INTO `sys_job_log` VALUES (4508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:22:04'); INSERT INTO `sys_job_log` VALUES (4509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:22:05'); INSERT INTO `sys_job_log` VALUES (4510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:22:06'); INSERT INTO `sys_job_log` VALUES (4511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:22:07'); INSERT INTO `sys_job_log` VALUES (4512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-08 21:22:08'); INSERT INTO `sys_job_log` VALUES (4513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:22:09'); INSERT INTO `sys_job_log` VALUES (4514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:22:10'); INSERT INTO `sys_job_log` VALUES (4515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:22:11'); INSERT INTO `sys_job_log` VALUES (4516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:22:12'); INSERT INTO `sys_job_log` VALUES (4517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:22:13'); INSERT INTO `sys_job_log` VALUES (4518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:22:14'); INSERT INTO `sys_job_log` VALUES (4519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:22:15'); INSERT INTO `sys_job_log` VALUES (4520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-08 21:22:16'); INSERT INTO `sys_job_log` VALUES (4521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:22:17'); INSERT INTO `sys_job_log` VALUES (4522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:22:18'); INSERT INTO `sys_job_log` VALUES (4523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:22:19'); INSERT INTO `sys_job_log` VALUES (4524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-08 21:22:20'); INSERT INTO `sys_job_log` VALUES (4525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:22:21'); INSERT INTO `sys_job_log` VALUES (4526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 21:22:22'); INSERT INTO `sys_job_log` VALUES (4527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:22:23'); INSERT INTO `sys_job_log` VALUES (4528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:22:24'); INSERT INTO `sys_job_log` VALUES (4529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:22:25'); INSERT INTO `sys_job_log` VALUES (4530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:22:26'); INSERT INTO `sys_job_log` VALUES (4531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:22:27'); INSERT INTO `sys_job_log` VALUES (4532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:22:28'); INSERT INTO `sys_job_log` VALUES (4533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:22:29'); INSERT INTO `sys_job_log` VALUES (4534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:22:30'); INSERT INTO `sys_job_log` VALUES (4535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:22:31'); INSERT INTO `sys_job_log` VALUES (4536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-08 21:22:32'); INSERT INTO `sys_job_log` VALUES (4537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:22:33'); INSERT INTO `sys_job_log` VALUES (4538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:22:34'); INSERT INTO `sys_job_log` VALUES (4539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:22:35'); INSERT INTO `sys_job_log` VALUES (4540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:22:36'); INSERT INTO `sys_job_log` VALUES (4541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:22:37'); INSERT INTO `sys_job_log` VALUES (4542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:22:38'); INSERT INTO `sys_job_log` VALUES (4543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:22:39'); INSERT INTO `sys_job_log` VALUES (4544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:22:40'); INSERT INTO `sys_job_log` VALUES (4545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-08 21:22:41'); INSERT INTO `sys_job_log` VALUES (4546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-08 21:22:42'); INSERT INTO `sys_job_log` VALUES (4547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:22:43'); INSERT INTO `sys_job_log` VALUES (4548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:22:44'); INSERT INTO `sys_job_log` VALUES (4549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-08 21:22:45'); INSERT INTO `sys_job_log` VALUES (4550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 21:22:46'); INSERT INTO `sys_job_log` VALUES (4551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 21:22:47'); INSERT INTO `sys_job_log` VALUES (4552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:22:48'); INSERT INTO `sys_job_log` VALUES (4553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 21:22:49'); INSERT INTO `sys_job_log` VALUES (4554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-08 21:24:04'); INSERT INTO `sys_job_log` VALUES (4555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-08 21:24:06'); INSERT INTO `sys_job_log` VALUES (4556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-08 21:24:14'); INSERT INTO `sys_job_log` VALUES (4557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 21:26:04'); INSERT INTO `sys_job_log` VALUES (4558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:56毫秒', '0', '', '2022-01-08 21:26:06'); INSERT INTO `sys_job_log` VALUES (4559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-08 21:26:14'); INSERT INTO `sys_job_log` VALUES (4560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:632毫秒', '0', '', '2022-01-08 21:28:04'); INSERT INTO `sys_job_log` VALUES (4561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:28:06'); INSERT INTO `sys_job_log` VALUES (4562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-08 21:28:14'); INSERT INTO `sys_job_log` VALUES (4563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-08 21:30:04'); INSERT INTO `sys_job_log` VALUES (4564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-08 21:30:06'); INSERT INTO `sys_job_log` VALUES (4565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-08 21:30:14'); INSERT INTO `sys_job_log` VALUES (4566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-08 21:32:04'); INSERT INTO `sys_job_log` VALUES (4567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-08 21:32:06'); INSERT INTO `sys_job_log` VALUES (4568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-08 21:32:15'); INSERT INTO `sys_job_log` VALUES (4569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:277毫秒', '0', '', '2022-01-08 21:34:04'); INSERT INTO `sys_job_log` VALUES (4570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-08 21:34:06'); INSERT INTO `sys_job_log` VALUES (4571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-08 21:34:14'); INSERT INTO `sys_job_log` VALUES (4572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-08 21:36:04'); INSERT INTO `sys_job_log` VALUES (4573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:53毫秒', '0', '', '2022-01-08 21:36:06'); INSERT INTO `sys_job_log` VALUES (4574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-08 21:36:14'); INSERT INTO `sys_job_log` VALUES (4575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-08 21:38:04'); INSERT INTO `sys_job_log` VALUES (4576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-08 21:38:06'); INSERT INTO `sys_job_log` VALUES (4577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-08 21:38:14'); INSERT INTO `sys_job_log` VALUES (4578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-08 21:40:04'); INSERT INTO `sys_job_log` VALUES (4579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-08 21:40:06'); INSERT INTO `sys_job_log` VALUES (4580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-08 21:40:14'); INSERT INTO `sys_job_log` VALUES (4581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:470毫秒', '0', '', '2022-01-08 21:42:04'); INSERT INTO `sys_job_log` VALUES (4582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 21:42:06'); INSERT INTO `sys_job_log` VALUES (4583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-08 21:42:14'); INSERT INTO `sys_job_log` VALUES (4584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:302毫秒', '0', '', '2022-01-08 21:44:04'); INSERT INTO `sys_job_log` VALUES (4585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-08 21:44:06'); INSERT INTO `sys_job_log` VALUES (4586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-08 21:44:14'); INSERT INTO `sys_job_log` VALUES (4587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-08 21:46:04'); INSERT INTO `sys_job_log` VALUES (4588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-08 21:46:06'); INSERT INTO `sys_job_log` VALUES (4589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 21:46:14'); INSERT INTO `sys_job_log` VALUES (4590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-08 21:48:04'); INSERT INTO `sys_job_log` VALUES (4591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-08 21:48:06'); INSERT INTO `sys_job_log` VALUES (4592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-08 21:48:14'); INSERT INTO `sys_job_log` VALUES (4593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-08 21:50:04'); INSERT INTO `sys_job_log` VALUES (4594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-08 21:50:06'); INSERT INTO `sys_job_log` VALUES (4595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-08 21:50:14'); INSERT INTO `sys_job_log` VALUES (4596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-08 21:52:04'); INSERT INTO `sys_job_log` VALUES (4597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-08 21:52:06'); INSERT INTO `sys_job_log` VALUES (4598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-08 21:52:14'); INSERT INTO `sys_job_log` VALUES (4599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 21:54:04'); INSERT INTO `sys_job_log` VALUES (4600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-08 21:54:06'); INSERT INTO `sys_job_log` VALUES (4601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-08 21:54:14'); INSERT INTO `sys_job_log` VALUES (4602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-08 21:56:04'); INSERT INTO `sys_job_log` VALUES (4603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 21:56:06'); INSERT INTO `sys_job_log` VALUES (4604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-08 21:56:14'); INSERT INTO `sys_job_log` VALUES (4605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-08 21:58:04'); INSERT INTO `sys_job_log` VALUES (4606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-08 21:58:06'); INSERT INTO `sys_job_log` VALUES (4607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-08 21:58:14'); INSERT INTO `sys_job_log` VALUES (4608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-08 22:00:04'); INSERT INTO `sys_job_log` VALUES (4609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-08 22:00:06'); INSERT INTO `sys_job_log` VALUES (4610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:608毫秒', '0', '', '2022-01-08 22:00:14'); INSERT INTO `sys_job_log` VALUES (4611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1282毫秒', '0', '', '2022-01-08 22:02:05'); INSERT INTO `sys_job_log` VALUES (4612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-08 22:02:06'); INSERT INTO `sys_job_log` VALUES (4613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-08 22:02:14'); INSERT INTO `sys_job_log` VALUES (4614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-08 22:04:04'); INSERT INTO `sys_job_log` VALUES (4615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-08 22:04:06'); INSERT INTO `sys_job_log` VALUES (4616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-08 22:04:14'); INSERT INTO `sys_job_log` VALUES (4617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:304毫秒', '0', '', '2022-01-08 22:06:04'); INSERT INTO `sys_job_log` VALUES (4618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-08 22:06:06'); INSERT INTO `sys_job_log` VALUES (4619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-08 22:06:14'); INSERT INTO `sys_job_log` VALUES (4620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-08 22:08:04'); INSERT INTO `sys_job_log` VALUES (4621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-08 22:08:06'); INSERT INTO `sys_job_log` VALUES (4622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-08 22:08:14'); INSERT INTO `sys_job_log` VALUES (4623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-08 22:10:04'); INSERT INTO `sys_job_log` VALUES (4624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-08 22:10:06'); INSERT INTO `sys_job_log` VALUES (4625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-08 22:10:14'); INSERT INTO `sys_job_log` VALUES (4626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:402毫秒', '0', '', '2022-01-08 22:12:04'); INSERT INTO `sys_job_log` VALUES (4627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-08 22:12:06'); INSERT INTO `sys_job_log` VALUES (4628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-08 22:12:14'); INSERT INTO `sys_job_log` VALUES (4629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-08 22:14:04'); INSERT INTO `sys_job_log` VALUES (4630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-08 22:14:06'); INSERT INTO `sys_job_log` VALUES (4631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-08 22:14:14'); INSERT INTO `sys_job_log` VALUES (4632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-08 22:16:04'); INSERT INTO `sys_job_log` VALUES (4633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:288毫秒', '0', '', '2022-01-08 22:16:06'); INSERT INTO `sys_job_log` VALUES (4634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-08 22:16:14'); INSERT INTO `sys_job_log` VALUES (4635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-08 22:18:04'); INSERT INTO `sys_job_log` VALUES (4636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-08 22:18:06'); INSERT INTO `sys_job_log` VALUES (4637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-08 22:18:14'); INSERT INTO `sys_job_log` VALUES (4638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-08 22:20:04'); INSERT INTO `sys_job_log` VALUES (4639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-08 22:20:06'); INSERT INTO `sys_job_log` VALUES (4640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-08 22:20:14'); INSERT INTO `sys_job_log` VALUES (4641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1017毫秒', '0', '', '2022-01-08 22:22:05'); INSERT INTO `sys_job_log` VALUES (4642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-08 22:22:06'); INSERT INTO `sys_job_log` VALUES (4643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-08 22:22:14'); INSERT INTO `sys_job_log` VALUES (4644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-08 22:24:04'); INSERT INTO `sys_job_log` VALUES (4645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-08 22:24:06'); INSERT INTO `sys_job_log` VALUES (4646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 22:24:14'); INSERT INTO `sys_job_log` VALUES (4647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-08 22:26:04'); INSERT INTO `sys_job_log` VALUES (4648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-08 22:26:06'); INSERT INTO `sys_job_log` VALUES (4649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 22:26:14'); INSERT INTO `sys_job_log` VALUES (4650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-08 22:28:04'); INSERT INTO `sys_job_log` VALUES (4651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-08 22:28:06'); INSERT INTO `sys_job_log` VALUES (4652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-08 22:28:14'); INSERT INTO `sys_job_log` VALUES (4653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-08 22:30:04'); INSERT INTO `sys_job_log` VALUES (4654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-08 22:30:06'); INSERT INTO `sys_job_log` VALUES (4655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-08 22:30:14'); INSERT INTO `sys_job_log` VALUES (4656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-08 22:32:04'); INSERT INTO `sys_job_log` VALUES (4657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-08 22:32:06'); INSERT INTO `sys_job_log` VALUES (4658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 22:32:14'); INSERT INTO `sys_job_log` VALUES (4659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-08 22:34:04'); INSERT INTO `sys_job_log` VALUES (4660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-08 22:34:06'); INSERT INTO `sys_job_log` VALUES (4661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-08 22:34:14'); INSERT INTO `sys_job_log` VALUES (4662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-08 22:36:04'); INSERT INTO `sys_job_log` VALUES (4663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-08 22:36:06'); INSERT INTO `sys_job_log` VALUES (4664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-08 22:36:14'); INSERT INTO `sys_job_log` VALUES (4665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-08 22:38:04'); INSERT INTO `sys_job_log` VALUES (4666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:266毫秒', '0', '', '2022-01-08 22:38:06'); INSERT INTO `sys_job_log` VALUES (4667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-08 22:38:14'); INSERT INTO `sys_job_log` VALUES (4668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-08 22:40:04'); INSERT INTO `sys_job_log` VALUES (4669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-08 22:40:06'); INSERT INTO `sys_job_log` VALUES (4670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 22:40:14'); INSERT INTO `sys_job_log` VALUES (4671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-08 22:42:04'); INSERT INTO `sys_job_log` VALUES (4672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-08 22:42:06'); INSERT INTO `sys_job_log` VALUES (4673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-08 22:42:14'); INSERT INTO `sys_job_log` VALUES (4674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-08 22:44:04'); INSERT INTO `sys_job_log` VALUES (4675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-08 22:44:06'); INSERT INTO `sys_job_log` VALUES (4676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-08 22:44:14'); INSERT INTO `sys_job_log` VALUES (4677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-08 22:46:04'); INSERT INTO `sys_job_log` VALUES (4678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-08 22:46:06'); INSERT INTO `sys_job_log` VALUES (4679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-08 22:46:14'); INSERT INTO `sys_job_log` VALUES (4680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-08 22:48:04'); INSERT INTO `sys_job_log` VALUES (4681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-08 22:48:06'); INSERT INTO `sys_job_log` VALUES (4682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-08 22:48:14'); INSERT INTO `sys_job_log` VALUES (4683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-08 22:50:04'); INSERT INTO `sys_job_log` VALUES (4684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-08 22:50:06'); INSERT INTO `sys_job_log` VALUES (4685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-08 22:50:14'); INSERT INTO `sys_job_log` VALUES (4686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-08 22:52:04'); INSERT INTO `sys_job_log` VALUES (4687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-08 22:52:06'); INSERT INTO `sys_job_log` VALUES (4688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-08 22:52:14'); INSERT INTO `sys_job_log` VALUES (4689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-08 22:54:04'); INSERT INTO `sys_job_log` VALUES (4690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-08 22:54:06'); INSERT INTO `sys_job_log` VALUES (4691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-08 22:54:14'); INSERT INTO `sys_job_log` VALUES (4692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-08 22:56:04'); INSERT INTO `sys_job_log` VALUES (4693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-08 22:56:06'); INSERT INTO `sys_job_log` VALUES (4694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-08 22:56:14'); INSERT INTO `sys_job_log` VALUES (4695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-08 22:58:04'); INSERT INTO `sys_job_log` VALUES (4696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-08 22:58:06'); INSERT INTO `sys_job_log` VALUES (4697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-08 22:58:14'); INSERT INTO `sys_job_log` VALUES (4698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1691毫秒', '0', '', '2022-01-09 10:54:05'); INSERT INTO `sys_job_log` VALUES (4699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-09 10:54:06'); INSERT INTO `sys_job_log` VALUES (4700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:427毫秒', '0', '', '2022-01-09 10:54:14'); INSERT INTO `sys_job_log` VALUES (4701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-09 10:56:04'); INSERT INTO `sys_job_log` VALUES (4702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-09 10:56:06'); INSERT INTO `sys_job_log` VALUES (4703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-09 10:56:14'); INSERT INTO `sys_job_log` VALUES (4704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-09 10:58:04'); INSERT INTO `sys_job_log` VALUES (4705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-09 10:58:06'); INSERT INTO `sys_job_log` VALUES (4706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-09 10:58:14'); INSERT INTO `sys_job_log` VALUES (4707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-09 11:00:04'); INSERT INTO `sys_job_log` VALUES (4708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-09 11:00:06'); INSERT INTO `sys_job_log` VALUES (4709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-09 11:00:14'); INSERT INTO `sys_job_log` VALUES (4710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-09 11:02:04'); INSERT INTO `sys_job_log` VALUES (4711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-09 11:02:06'); INSERT INTO `sys_job_log` VALUES (4712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-09 11:02:14'); INSERT INTO `sys_job_log` VALUES (4713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-09 11:04:04'); INSERT INTO `sys_job_log` VALUES (4714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-09 11:04:06'); INSERT INTO `sys_job_log` VALUES (4715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-09 11:04:14'); INSERT INTO `sys_job_log` VALUES (4716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-09 11:06:04'); INSERT INTO `sys_job_log` VALUES (4717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-09 11:06:06'); INSERT INTO `sys_job_log` VALUES (4718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-09 11:06:14'); INSERT INTO `sys_job_log` VALUES (4719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-09 11:08:04'); INSERT INTO `sys_job_log` VALUES (4720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-09 11:08:06'); INSERT INTO `sys_job_log` VALUES (4721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-09 11:08:14'); INSERT INTO `sys_job_log` VALUES (4722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-09 11:10:04'); INSERT INTO `sys_job_log` VALUES (4723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-09 11:10:06'); INSERT INTO `sys_job_log` VALUES (4724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-09 11:10:14'); INSERT INTO `sys_job_log` VALUES (4725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:275毫秒', '0', '', '2022-01-09 11:12:04'); INSERT INTO `sys_job_log` VALUES (4726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-09 11:12:06'); INSERT INTO `sys_job_log` VALUES (4727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-09 11:12:14'); INSERT INTO `sys_job_log` VALUES (4728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-09 11:14:04'); INSERT INTO `sys_job_log` VALUES (4729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-09 11:14:06'); INSERT INTO `sys_job_log` VALUES (4730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-09 11:14:14'); INSERT INTO `sys_job_log` VALUES (4731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-09 11:16:04'); INSERT INTO `sys_job_log` VALUES (4732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-09 11:16:06'); INSERT INTO `sys_job_log` VALUES (4733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-09 11:16:14'); INSERT INTO `sys_job_log` VALUES (4734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-09 11:18:04'); INSERT INTO `sys_job_log` VALUES (4735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-09 11:18:06'); INSERT INTO `sys_job_log` VALUES (4736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-09 11:18:14'); INSERT INTO `sys_job_log` VALUES (4737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-09 11:20:04'); INSERT INTO `sys_job_log` VALUES (4738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-09 11:20:06'); INSERT INTO `sys_job_log` VALUES (4739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:350毫秒', '0', '', '2022-01-09 11:20:14'); INSERT INTO `sys_job_log` VALUES (4740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-09 11:22:04'); INSERT INTO `sys_job_log` VALUES (4741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-09 11:22:06'); INSERT INTO `sys_job_log` VALUES (4742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-09 11:22:14'); INSERT INTO `sys_job_log` VALUES (4743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-09 11:24:04'); INSERT INTO `sys_job_log` VALUES (4744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-09 11:24:06'); INSERT INTO `sys_job_log` VALUES (4745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-09 11:24:14'); INSERT INTO `sys_job_log` VALUES (4746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-09 11:26:04'); INSERT INTO `sys_job_log` VALUES (4747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-09 11:26:06'); INSERT INTO `sys_job_log` VALUES (4748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-09 11:26:14'); INSERT INTO `sys_job_log` VALUES (4749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-09 11:28:04'); INSERT INTO `sys_job_log` VALUES (4750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-09 11:28:06'); INSERT INTO `sys_job_log` VALUES (4751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-09 11:28:14'); INSERT INTO `sys_job_log` VALUES (4752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-09 11:30:04'); INSERT INTO `sys_job_log` VALUES (4753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-09 11:30:06'); INSERT INTO `sys_job_log` VALUES (4754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-09 11:30:14'); INSERT INTO `sys_job_log` VALUES (4755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:277毫秒', '0', '', '2022-01-09 11:32:04'); INSERT INTO `sys_job_log` VALUES (4756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-09 11:32:06'); INSERT INTO `sys_job_log` VALUES (4757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-09 11:32:14'); INSERT INTO `sys_job_log` VALUES (4758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-09 11:34:04'); INSERT INTO `sys_job_log` VALUES (4759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-09 11:34:06'); INSERT INTO `sys_job_log` VALUES (4760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-09 11:34:14'); INSERT INTO `sys_job_log` VALUES (4761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-09 11:36:04'); INSERT INTO `sys_job_log` VALUES (4762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-09 11:36:06'); INSERT INTO `sys_job_log` VALUES (4763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-09 11:36:14'); INSERT INTO `sys_job_log` VALUES (4764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-09 11:38:04'); INSERT INTO `sys_job_log` VALUES (4765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-09 11:38:06'); INSERT INTO `sys_job_log` VALUES (4766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-09 11:38:14'); INSERT INTO `sys_job_log` VALUES (4767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-09 11:40:04'); INSERT INTO `sys_job_log` VALUES (4768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-09 11:40:06'); INSERT INTO `sys_job_log` VALUES (4769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-09 11:40:14'); INSERT INTO `sys_job_log` VALUES (4770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-09 11:42:05'); INSERT INTO `sys_job_log` VALUES (4771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-09 11:42:06'); INSERT INTO `sys_job_log` VALUES (4772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-09 11:42:14'); INSERT INTO `sys_job_log` VALUES (4773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-09 11:44:04'); INSERT INTO `sys_job_log` VALUES (4774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-09 11:44:06'); INSERT INTO `sys_job_log` VALUES (4775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-09 11:44:14'); INSERT INTO `sys_job_log` VALUES (4776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:266毫秒', '0', '', '2022-01-09 11:46:04'); INSERT INTO `sys_job_log` VALUES (4777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-09 11:46:06'); INSERT INTO `sys_job_log` VALUES (4778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-09 11:46:14'); INSERT INTO `sys_job_log` VALUES (4779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-09 11:48:04'); INSERT INTO `sys_job_log` VALUES (4780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-09 11:48:06'); INSERT INTO `sys_job_log` VALUES (4781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-09 11:48:14'); INSERT INTO `sys_job_log` VALUES (4782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-09 11:50:04'); INSERT INTO `sys_job_log` VALUES (4783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-09 11:50:06'); INSERT INTO `sys_job_log` VALUES (4784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-09 11:50:14'); INSERT INTO `sys_job_log` VALUES (4785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-09 11:52:04'); INSERT INTO `sys_job_log` VALUES (4786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-09 11:52:06'); INSERT INTO `sys_job_log` VALUES (4787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:347毫秒', '0', '', '2022-01-09 11:52:14'); INSERT INTO `sys_job_log` VALUES (4788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-09 11:54:04'); INSERT INTO `sys_job_log` VALUES (4789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-09 11:54:06'); INSERT INTO `sys_job_log` VALUES (4790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-09 11:54:14'); INSERT INTO `sys_job_log` VALUES (4791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-09 11:56:04'); INSERT INTO `sys_job_log` VALUES (4792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-09 11:56:06'); INSERT INTO `sys_job_log` VALUES (4793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-09 11:56:14'); INSERT INTO `sys_job_log` VALUES (4794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-09 11:58:04'); INSERT INTO `sys_job_log` VALUES (4795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-09 11:58:06'); INSERT INTO `sys_job_log` VALUES (4796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:290毫秒', '0', '', '2022-01-09 11:58:14'); INSERT INTO `sys_job_log` VALUES (4797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-09 12:00:04'); INSERT INTO `sys_job_log` VALUES (4798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-09 12:00:06'); INSERT INTO `sys_job_log` VALUES (4799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-09 12:00:14'); INSERT INTO `sys_job_log` VALUES (4800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-09 12:02:04'); INSERT INTO `sys_job_log` VALUES (4801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-09 12:02:06'); INSERT INTO `sys_job_log` VALUES (4802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-09 12:02:14'); INSERT INTO `sys_job_log` VALUES (4803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-09 12:04:04'); INSERT INTO `sys_job_log` VALUES (4804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-09 12:04:06'); INSERT INTO `sys_job_log` VALUES (4805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-09 12:04:14'); INSERT INTO `sys_job_log` VALUES (4806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-09 12:06:04'); INSERT INTO `sys_job_log` VALUES (4807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-09 12:06:06'); INSERT INTO `sys_job_log` VALUES (4808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-09 12:06:14'); INSERT INTO `sys_job_log` VALUES (4809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-09 12:08:04'); INSERT INTO `sys_job_log` VALUES (4810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-09 12:08:06'); INSERT INTO `sys_job_log` VALUES (4811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-09 12:08:14'); INSERT INTO `sys_job_log` VALUES (4812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-09 12:10:04'); INSERT INTO `sys_job_log` VALUES (4813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-09 12:10:06'); INSERT INTO `sys_job_log` VALUES (4814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-09 12:10:14'); INSERT INTO `sys_job_log` VALUES (4815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-09 12:12:04'); INSERT INTO `sys_job_log` VALUES (4816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-09 12:12:06'); INSERT INTO `sys_job_log` VALUES (4817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-09 12:12:14'); INSERT INTO `sys_job_log` VALUES (4818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-09 12:14:04'); INSERT INTO `sys_job_log` VALUES (4819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-09 12:14:06'); INSERT INTO `sys_job_log` VALUES (4820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-09 12:14:14'); INSERT INTO `sys_job_log` VALUES (4821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-09 12:16:04'); INSERT INTO `sys_job_log` VALUES (4822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-09 12:16:06'); INSERT INTO `sys_job_log` VALUES (4823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-09 12:16:14'); INSERT INTO `sys_job_log` VALUES (4824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-09 12:18:04'); INSERT INTO `sys_job_log` VALUES (4825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:322毫秒', '0', '', '2022-01-09 12:18:06'); INSERT INTO `sys_job_log` VALUES (4826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-09 12:18:14'); INSERT INTO `sys_job_log` VALUES (4827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-09 12:20:04'); INSERT INTO `sys_job_log` VALUES (4828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-09 12:20:06'); INSERT INTO `sys_job_log` VALUES (4829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-09 12:20:14'); INSERT INTO `sys_job_log` VALUES (4830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-09 12:22:04'); INSERT INTO `sys_job_log` VALUES (4831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-09 12:22:06'); INSERT INTO `sys_job_log` VALUES (4832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-09 12:22:14'); INSERT INTO `sys_job_log` VALUES (4833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-09 12:24:04'); INSERT INTO `sys_job_log` VALUES (4834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-09 12:24:06'); INSERT INTO `sys_job_log` VALUES (4835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-09 12:24:14'); INSERT INTO `sys_job_log` VALUES (4836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-09 12:26:04'); INSERT INTO `sys_job_log` VALUES (4837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-09 12:26:06'); INSERT INTO `sys_job_log` VALUES (4838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-09 12:26:14'); INSERT INTO `sys_job_log` VALUES (4839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-09 12:28:04'); INSERT INTO `sys_job_log` VALUES (4840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-09 12:28:06'); INSERT INTO `sys_job_log` VALUES (4841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-09 12:28:14'); INSERT INTO `sys_job_log` VALUES (4842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-09 12:30:04'); INSERT INTO `sys_job_log` VALUES (4843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-09 12:30:06'); INSERT INTO `sys_job_log` VALUES (4844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-09 12:30:14'); INSERT INTO `sys_job_log` VALUES (4845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-09 12:32:04'); INSERT INTO `sys_job_log` VALUES (4846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-09 12:32:06'); INSERT INTO `sys_job_log` VALUES (4847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-09 12:32:14'); INSERT INTO `sys_job_log` VALUES (4848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-09 12:34:04'); INSERT INTO `sys_job_log` VALUES (4849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-09 12:34:06'); INSERT INTO `sys_job_log` VALUES (4850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-09 12:34:14'); INSERT INTO `sys_job_log` VALUES (4851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-09 12:36:04'); INSERT INTO `sys_job_log` VALUES (4852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-09 12:36:06'); INSERT INTO `sys_job_log` VALUES (4853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 12:36:14'); INSERT INTO `sys_job_log` VALUES (4854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-09 12:38:04'); INSERT INTO `sys_job_log` VALUES (4855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-09 12:38:06'); INSERT INTO `sys_job_log` VALUES (4856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 12:38:14'); INSERT INTO `sys_job_log` VALUES (4857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-09 12:40:04'); INSERT INTO `sys_job_log` VALUES (4858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-09 12:40:06'); INSERT INTO `sys_job_log` VALUES (4859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-09 12:40:14'); INSERT INTO `sys_job_log` VALUES (4860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-09 12:42:04'); INSERT INTO `sys_job_log` VALUES (4861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-09 12:42:06'); INSERT INTO `sys_job_log` VALUES (4862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:317毫秒', '0', '', '2022-01-09 12:42:14'); INSERT INTO `sys_job_log` VALUES (4863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-09 12:44:04'); INSERT INTO `sys_job_log` VALUES (4864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-09 12:44:06'); INSERT INTO `sys_job_log` VALUES (4865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-09 12:44:14'); INSERT INTO `sys_job_log` VALUES (4866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-09 12:46:04'); INSERT INTO `sys_job_log` VALUES (4867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-09 12:46:06'); INSERT INTO `sys_job_log` VALUES (4868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-09 12:46:14'); INSERT INTO `sys_job_log` VALUES (4869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-09 12:48:04'); INSERT INTO `sys_job_log` VALUES (4870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-09 12:48:06'); INSERT INTO `sys_job_log` VALUES (4871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-09 12:48:14'); INSERT INTO `sys_job_log` VALUES (4872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-09 12:50:04'); INSERT INTO `sys_job_log` VALUES (4873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-09 12:50:06'); INSERT INTO `sys_job_log` VALUES (4874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-09 12:50:14'); INSERT INTO `sys_job_log` VALUES (4875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-09 12:52:04'); INSERT INTO `sys_job_log` VALUES (4876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-09 12:52:06'); INSERT INTO `sys_job_log` VALUES (4877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 12:52:14'); INSERT INTO `sys_job_log` VALUES (4878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-09 12:54:04'); INSERT INTO `sys_job_log` VALUES (4879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-09 12:54:06'); INSERT INTO `sys_job_log` VALUES (4880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-09 12:54:14'); INSERT INTO `sys_job_log` VALUES (4881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-09 12:56:04'); INSERT INTO `sys_job_log` VALUES (4882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-09 12:56:06'); INSERT INTO `sys_job_log` VALUES (4883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-09 12:56:14'); INSERT INTO `sys_job_log` VALUES (4884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-09 12:58:04'); INSERT INTO `sys_job_log` VALUES (4885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-09 12:58:06'); INSERT INTO `sys_job_log` VALUES (4886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-09 12:58:14'); INSERT INTO `sys_job_log` VALUES (4887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-09 13:00:04'); INSERT INTO `sys_job_log` VALUES (4888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-09 13:00:06'); INSERT INTO `sys_job_log` VALUES (4889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-09 13:00:14'); INSERT INTO `sys_job_log` VALUES (4890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-09 13:02:04'); INSERT INTO `sys_job_log` VALUES (4891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-09 13:02:06'); INSERT INTO `sys_job_log` VALUES (4892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-09 13:02:14'); INSERT INTO `sys_job_log` VALUES (4893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-09 13:04:04'); INSERT INTO `sys_job_log` VALUES (4894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-09 13:04:06'); INSERT INTO `sys_job_log` VALUES (4895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-09 13:04:14'); INSERT INTO `sys_job_log` VALUES (4896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-09 13:06:04'); INSERT INTO `sys_job_log` VALUES (4897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-09 13:06:06'); INSERT INTO `sys_job_log` VALUES (4898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-09 13:06:14'); INSERT INTO `sys_job_log` VALUES (4899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:397毫秒', '0', '', '2022-01-09 13:08:04'); INSERT INTO `sys_job_log` VALUES (4900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-09 13:08:06'); INSERT INTO `sys_job_log` VALUES (4901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-09 13:08:14'); INSERT INTO `sys_job_log` VALUES (4902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-09 13:10:04'); INSERT INTO `sys_job_log` VALUES (4903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-09 13:10:06'); INSERT INTO `sys_job_log` VALUES (4904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-09 13:10:14'); INSERT INTO `sys_job_log` VALUES (4905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-09 13:12:04'); INSERT INTO `sys_job_log` VALUES (4906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-09 13:12:06'); INSERT INTO `sys_job_log` VALUES (4907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-09 13:12:14'); INSERT INTO `sys_job_log` VALUES (4908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-09 13:14:04'); INSERT INTO `sys_job_log` VALUES (4909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-09 13:14:06'); INSERT INTO `sys_job_log` VALUES (4910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-09 13:14:14'); INSERT INTO `sys_job_log` VALUES (4911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-09 13:16:04'); INSERT INTO `sys_job_log` VALUES (4912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-09 13:16:06'); INSERT INTO `sys_job_log` VALUES (4913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-09 13:16:14'); INSERT INTO `sys_job_log` VALUES (4914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-09 13:18:04'); INSERT INTO `sys_job_log` VALUES (4915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-09 13:18:06'); INSERT INTO `sys_job_log` VALUES (4916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-09 13:18:14'); INSERT INTO `sys_job_log` VALUES (4917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-09 13:20:04'); INSERT INTO `sys_job_log` VALUES (4918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-09 13:20:06'); INSERT INTO `sys_job_log` VALUES (4919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:277毫秒', '0', '', '2022-01-09 13:20:14'); INSERT INTO `sys_job_log` VALUES (4920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-09 13:22:04'); INSERT INTO `sys_job_log` VALUES (4921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-09 13:22:06'); INSERT INTO `sys_job_log` VALUES (4922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-09 13:22:14'); INSERT INTO `sys_job_log` VALUES (4923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-09 13:24:04'); INSERT INTO `sys_job_log` VALUES (4924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-09 13:24:06'); INSERT INTO `sys_job_log` VALUES (4925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-09 13:24:14'); INSERT INTO `sys_job_log` VALUES (4926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-09 13:26:04'); INSERT INTO `sys_job_log` VALUES (4927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-09 13:26:06'); INSERT INTO `sys_job_log` VALUES (4928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-09 13:26:14'); INSERT INTO `sys_job_log` VALUES (4929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-09 13:28:04'); INSERT INTO `sys_job_log` VALUES (4930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-09 13:28:06'); INSERT INTO `sys_job_log` VALUES (4931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-09 13:28:14'); INSERT INTO `sys_job_log` VALUES (4932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-09 13:30:04'); INSERT INTO `sys_job_log` VALUES (4933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-09 13:30:06'); INSERT INTO `sys_job_log` VALUES (4934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-09 13:30:14'); INSERT INTO `sys_job_log` VALUES (4935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-09 13:32:04'); INSERT INTO `sys_job_log` VALUES (4936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-09 13:32:06'); INSERT INTO `sys_job_log` VALUES (4937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-09 13:32:14'); INSERT INTO `sys_job_log` VALUES (4938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-09 13:34:04'); INSERT INTO `sys_job_log` VALUES (4939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-09 13:34:06'); INSERT INTO `sys_job_log` VALUES (4940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-09 13:34:14'); INSERT INTO `sys_job_log` VALUES (4941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-09 13:36:04'); INSERT INTO `sys_job_log` VALUES (4942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-09 13:36:06'); INSERT INTO `sys_job_log` VALUES (4943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-09 13:36:14'); INSERT INTO `sys_job_log` VALUES (4944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:619毫秒', '0', '', '2022-01-09 13:38:04'); INSERT INTO `sys_job_log` VALUES (4945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-09 13:38:06'); INSERT INTO `sys_job_log` VALUES (4946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-09 13:38:14'); INSERT INTO `sys_job_log` VALUES (4947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-09 13:40:04'); INSERT INTO `sys_job_log` VALUES (4948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-09 13:40:06'); INSERT INTO `sys_job_log` VALUES (4949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-09 13:40:14'); INSERT INTO `sys_job_log` VALUES (4950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:475毫秒', '0', '', '2022-01-09 13:42:04'); INSERT INTO `sys_job_log` VALUES (4951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-09 13:42:06'); INSERT INTO `sys_job_log` VALUES (4952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-09 13:42:14'); INSERT INTO `sys_job_log` VALUES (4953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-09 13:44:04'); INSERT INTO `sys_job_log` VALUES (4954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-09 13:44:06'); INSERT INTO `sys_job_log` VALUES (4955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-09 13:44:14'); INSERT INTO `sys_job_log` VALUES (4956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-09 13:46:04'); INSERT INTO `sys_job_log` VALUES (4957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-09 13:46:06'); INSERT INTO `sys_job_log` VALUES (4958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-09 13:46:14'); INSERT INTO `sys_job_log` VALUES (4959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-09 13:48:04'); INSERT INTO `sys_job_log` VALUES (4960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-09 13:48:06'); INSERT INTO `sys_job_log` VALUES (4961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-09 13:48:14'); INSERT INTO `sys_job_log` VALUES (4962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:366毫秒', '0', '', '2022-01-09 13:50:04'); INSERT INTO `sys_job_log` VALUES (4963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-09 13:50:06'); INSERT INTO `sys_job_log` VALUES (4964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-09 13:50:14'); INSERT INTO `sys_job_log` VALUES (4965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-09 13:52:04'); INSERT INTO `sys_job_log` VALUES (4966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-09 13:52:06'); INSERT INTO `sys_job_log` VALUES (4967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 13:52:14'); INSERT INTO `sys_job_log` VALUES (4968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:266毫秒', '0', '', '2022-01-09 13:54:04'); INSERT INTO `sys_job_log` VALUES (4969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-09 13:54:06'); INSERT INTO `sys_job_log` VALUES (4970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-09 13:54:14'); INSERT INTO `sys_job_log` VALUES (4971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-09 13:56:04'); INSERT INTO `sys_job_log` VALUES (4972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-09 13:56:06'); INSERT INTO `sys_job_log` VALUES (4973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:302毫秒', '0', '', '2022-01-09 13:56:14'); INSERT INTO `sys_job_log` VALUES (4974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-09 13:58:04'); INSERT INTO `sys_job_log` VALUES (4975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-09 13:58:06'); INSERT INTO `sys_job_log` VALUES (4976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:439毫秒', '0', '', '2022-01-09 13:58:14'); INSERT INTO `sys_job_log` VALUES (4977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-09 14:00:04'); INSERT INTO `sys_job_log` VALUES (4978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-09 14:00:06'); INSERT INTO `sys_job_log` VALUES (4979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-09 14:00:14'); INSERT INTO `sys_job_log` VALUES (4980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-09 14:02:04'); INSERT INTO `sys_job_log` VALUES (4981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-09 14:02:06'); INSERT INTO `sys_job_log` VALUES (4982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 14:02:14'); INSERT INTO `sys_job_log` VALUES (4983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-09 14:04:04'); INSERT INTO `sys_job_log` VALUES (4984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-09 14:04:06'); INSERT INTO `sys_job_log` VALUES (4985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:368毫秒', '0', '', '2022-01-09 14:04:14'); INSERT INTO `sys_job_log` VALUES (4986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-09 14:06:04'); INSERT INTO `sys_job_log` VALUES (4987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-09 14:06:06'); INSERT INTO `sys_job_log` VALUES (4988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-09 14:06:14'); INSERT INTO `sys_job_log` VALUES (4989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-09 14:08:04'); INSERT INTO `sys_job_log` VALUES (4990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-09 14:08:06'); INSERT INTO `sys_job_log` VALUES (4991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-09 14:08:14'); INSERT INTO `sys_job_log` VALUES (4992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-09 14:10:04'); INSERT INTO `sys_job_log` VALUES (4993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-09 14:10:06'); INSERT INTO `sys_job_log` VALUES (4994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-09 14:10:14'); INSERT INTO `sys_job_log` VALUES (4995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-09 14:12:04'); INSERT INTO `sys_job_log` VALUES (4996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-09 14:12:06'); INSERT INTO `sys_job_log` VALUES (4997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-09 14:12:14'); INSERT INTO `sys_job_log` VALUES (4998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-09 14:14:04'); INSERT INTO `sys_job_log` VALUES (4999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-09 14:14:06'); INSERT INTO `sys_job_log` VALUES (5000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-09 14:14:14'); INSERT INTO `sys_job_log` VALUES (5001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-09 14:16:04'); INSERT INTO `sys_job_log` VALUES (5002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-09 14:16:06'); INSERT INTO `sys_job_log` VALUES (5003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:305毫秒', '0', '', '2022-01-09 14:16:14'); INSERT INTO `sys_job_log` VALUES (5004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-09 14:18:04'); INSERT INTO `sys_job_log` VALUES (5005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-09 14:18:06'); INSERT INTO `sys_job_log` VALUES (5006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-09 14:18:14'); INSERT INTO `sys_job_log` VALUES (5007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-09 14:20:04'); INSERT INTO `sys_job_log` VALUES (5008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-09 14:20:06'); INSERT INTO `sys_job_log` VALUES (5009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-09 14:20:14'); INSERT INTO `sys_job_log` VALUES (5010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:289毫秒', '0', '', '2022-01-09 14:22:04'); INSERT INTO `sys_job_log` VALUES (5011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-09 14:22:06'); INSERT INTO `sys_job_log` VALUES (5012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-09 14:22:14'); INSERT INTO `sys_job_log` VALUES (5013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-09 14:24:04'); INSERT INTO `sys_job_log` VALUES (5014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 14:24:06'); INSERT INTO `sys_job_log` VALUES (5015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-09 14:24:14'); INSERT INTO `sys_job_log` VALUES (5016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-09 14:26:04'); INSERT INTO `sys_job_log` VALUES (5017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-09 14:26:06'); INSERT INTO `sys_job_log` VALUES (5018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-09 14:26:14'); INSERT INTO `sys_job_log` VALUES (5019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:314毫秒', '0', '', '2022-01-09 14:28:04'); INSERT INTO `sys_job_log` VALUES (5020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-09 14:28:06'); INSERT INTO `sys_job_log` VALUES (5021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-09 14:28:14'); INSERT INTO `sys_job_log` VALUES (5022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-09 14:30:04'); INSERT INTO `sys_job_log` VALUES (5023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-09 14:30:06'); INSERT INTO `sys_job_log` VALUES (5024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-09 14:30:14'); INSERT INTO `sys_job_log` VALUES (5025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-09 14:32:04'); INSERT INTO `sys_job_log` VALUES (5026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-09 14:32:06'); INSERT INTO `sys_job_log` VALUES (5027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-09 14:32:14'); INSERT INTO `sys_job_log` VALUES (5028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-09 14:34:04'); INSERT INTO `sys_job_log` VALUES (5029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-09 14:34:06'); INSERT INTO `sys_job_log` VALUES (5030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-09 14:34:14'); INSERT INTO `sys_job_log` VALUES (5031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-09 14:36:04'); INSERT INTO `sys_job_log` VALUES (5032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-09 14:36:06'); INSERT INTO `sys_job_log` VALUES (5033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-09 14:36:14'); INSERT INTO `sys_job_log` VALUES (5034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-09 14:38:04'); INSERT INTO `sys_job_log` VALUES (5035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-09 14:38:06'); INSERT INTO `sys_job_log` VALUES (5036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-09 14:38:14'); INSERT INTO `sys_job_log` VALUES (5037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-09 14:40:04'); INSERT INTO `sys_job_log` VALUES (5038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-09 14:40:06'); INSERT INTO `sys_job_log` VALUES (5039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-09 14:40:14'); INSERT INTO `sys_job_log` VALUES (5040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:453毫秒', '0', '', '2022-01-09 14:42:04'); INSERT INTO `sys_job_log` VALUES (5041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-09 14:42:06'); INSERT INTO `sys_job_log` VALUES (5042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-09 14:42:14'); INSERT INTO `sys_job_log` VALUES (5043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-09 14:44:04'); INSERT INTO `sys_job_log` VALUES (5044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-09 14:44:06'); INSERT INTO `sys_job_log` VALUES (5045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-09 14:44:14'); INSERT INTO `sys_job_log` VALUES (5046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-09 14:46:04'); INSERT INTO `sys_job_log` VALUES (5047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-09 14:46:06'); INSERT INTO `sys_job_log` VALUES (5048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-09 14:46:14'); INSERT INTO `sys_job_log` VALUES (5049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-09 14:48:04'); INSERT INTO `sys_job_log` VALUES (5050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-09 14:48:06'); INSERT INTO `sys_job_log` VALUES (5051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-09 14:48:14'); INSERT INTO `sys_job_log` VALUES (5052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-09 14:50:04'); INSERT INTO `sys_job_log` VALUES (5053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-09 14:50:06'); INSERT INTO `sys_job_log` VALUES (5054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-09 14:50:14'); INSERT INTO `sys_job_log` VALUES (5055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-09 14:52:04'); INSERT INTO `sys_job_log` VALUES (5056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-09 14:52:06'); INSERT INTO `sys_job_log` VALUES (5057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-09 14:52:14'); INSERT INTO `sys_job_log` VALUES (5058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-09 14:54:04'); INSERT INTO `sys_job_log` VALUES (5059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-09 14:54:06'); INSERT INTO `sys_job_log` VALUES (5060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-09 14:54:14'); INSERT INTO `sys_job_log` VALUES (5061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-09 14:56:04'); INSERT INTO `sys_job_log` VALUES (5062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-09 14:56:06'); INSERT INTO `sys_job_log` VALUES (5063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-09 14:56:14'); INSERT INTO `sys_job_log` VALUES (5064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-09 14:58:04'); INSERT INTO `sys_job_log` VALUES (5065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-09 14:58:06'); INSERT INTO `sys_job_log` VALUES (5066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-09 14:58:14'); INSERT INTO `sys_job_log` VALUES (5067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-09 15:00:04'); INSERT INTO `sys_job_log` VALUES (5068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-09 15:00:06'); INSERT INTO `sys_job_log` VALUES (5069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-09 15:00:14'); INSERT INTO `sys_job_log` VALUES (5070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-09 15:02:04'); INSERT INTO `sys_job_log` VALUES (5071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-09 15:02:06'); INSERT INTO `sys_job_log` VALUES (5072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-09 15:02:14'); INSERT INTO `sys_job_log` VALUES (5073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-09 15:04:04'); INSERT INTO `sys_job_log` VALUES (5074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-09 15:04:06'); INSERT INTO `sys_job_log` VALUES (5075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:326毫秒', '0', '', '2022-01-09 15:04:14'); INSERT INTO `sys_job_log` VALUES (5076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-09 15:06:04'); INSERT INTO `sys_job_log` VALUES (5077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-09 15:06:06'); INSERT INTO `sys_job_log` VALUES (5078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-09 15:06:14'); INSERT INTO `sys_job_log` VALUES (5079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-09 15:08:04'); INSERT INTO `sys_job_log` VALUES (5080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-09 15:08:06'); INSERT INTO `sys_job_log` VALUES (5081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-09 15:08:14'); INSERT INTO `sys_job_log` VALUES (5082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-09 15:10:04'); INSERT INTO `sys_job_log` VALUES (5083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-09 15:10:06'); INSERT INTO `sys_job_log` VALUES (5084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-09 15:10:14'); INSERT INTO `sys_job_log` VALUES (5085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-09 15:12:04'); INSERT INTO `sys_job_log` VALUES (5086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-09 15:12:06'); INSERT INTO `sys_job_log` VALUES (5087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-09 15:12:14'); INSERT INTO `sys_job_log` VALUES (5088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-09 15:14:04'); INSERT INTO `sys_job_log` VALUES (5089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 15:14:06'); INSERT INTO `sys_job_log` VALUES (5090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-09 15:14:14'); INSERT INTO `sys_job_log` VALUES (5091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-09 15:16:04'); INSERT INTO `sys_job_log` VALUES (5092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-09 15:16:06'); INSERT INTO `sys_job_log` VALUES (5093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-09 15:16:14'); INSERT INTO `sys_job_log` VALUES (5094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-09 15:18:04'); INSERT INTO `sys_job_log` VALUES (5095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-09 15:18:06'); INSERT INTO `sys_job_log` VALUES (5096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-09 15:18:14'); INSERT INTO `sys_job_log` VALUES (5097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-09 15:20:04'); INSERT INTO `sys_job_log` VALUES (5098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-09 15:20:06'); INSERT INTO `sys_job_log` VALUES (5099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-09 15:20:14'); INSERT INTO `sys_job_log` VALUES (5100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-09 15:22:04'); INSERT INTO `sys_job_log` VALUES (5101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-09 15:22:06'); INSERT INTO `sys_job_log` VALUES (5102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-09 15:22:14'); INSERT INTO `sys_job_log` VALUES (5103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-09 15:24:04'); INSERT INTO `sys_job_log` VALUES (5104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-09 15:24:06'); INSERT INTO `sys_job_log` VALUES (5105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-09 15:24:14'); INSERT INTO `sys_job_log` VALUES (5106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-09 15:26:04'); INSERT INTO `sys_job_log` VALUES (5107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-09 15:26:06'); INSERT INTO `sys_job_log` VALUES (5108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-09 15:26:14'); INSERT INTO `sys_job_log` VALUES (5109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-09 15:28:04'); INSERT INTO `sys_job_log` VALUES (5110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-09 15:28:06'); INSERT INTO `sys_job_log` VALUES (5111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-09 15:28:14'); INSERT INTO `sys_job_log` VALUES (5112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-09 15:30:04'); INSERT INTO `sys_job_log` VALUES (5113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-09 15:30:06'); INSERT INTO `sys_job_log` VALUES (5114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-09 15:30:14'); INSERT INTO `sys_job_log` VALUES (5115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-09 15:32:04'); INSERT INTO `sys_job_log` VALUES (5116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:280毫秒', '0', '', '2022-01-09 15:32:06'); INSERT INTO `sys_job_log` VALUES (5117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-09 15:32:14'); INSERT INTO `sys_job_log` VALUES (5118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:433毫秒', '0', '', '2022-01-09 15:34:04'); INSERT INTO `sys_job_log` VALUES (5119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-09 15:34:06'); INSERT INTO `sys_job_log` VALUES (5120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-09 15:34:14'); INSERT INTO `sys_job_log` VALUES (5121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:393毫秒', '0', '', '2022-01-09 15:36:04'); INSERT INTO `sys_job_log` VALUES (5122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-09 15:36:06'); INSERT INTO `sys_job_log` VALUES (5123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-09 15:36:14'); INSERT INTO `sys_job_log` VALUES (5124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-09 15:38:04'); INSERT INTO `sys_job_log` VALUES (5125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-09 15:38:06'); INSERT INTO `sys_job_log` VALUES (5126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-09 15:38:14'); INSERT INTO `sys_job_log` VALUES (5127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-09 15:40:04'); INSERT INTO `sys_job_log` VALUES (5128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-09 15:40:06'); INSERT INTO `sys_job_log` VALUES (5129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-09 15:40:14'); INSERT INTO `sys_job_log` VALUES (5130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-09 15:42:04'); INSERT INTO `sys_job_log` VALUES (5131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-09 15:42:06'); INSERT INTO `sys_job_log` VALUES (5132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:338毫秒', '0', '', '2022-01-09 15:42:14'); INSERT INTO `sys_job_log` VALUES (5133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-09 15:44:04'); INSERT INTO `sys_job_log` VALUES (5134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-09 15:44:06'); INSERT INTO `sys_job_log` VALUES (5135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-09 15:44:14'); INSERT INTO `sys_job_log` VALUES (5136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-09 15:46:04'); INSERT INTO `sys_job_log` VALUES (5137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-09 15:46:06'); INSERT INTO `sys_job_log` VALUES (5138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-09 15:46:14'); INSERT INTO `sys_job_log` VALUES (5139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-09 15:48:04'); INSERT INTO `sys_job_log` VALUES (5140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-09 15:48:06'); INSERT INTO `sys_job_log` VALUES (5141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-09 15:48:14'); INSERT INTO `sys_job_log` VALUES (5142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-09 15:50:04'); INSERT INTO `sys_job_log` VALUES (5143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-09 15:50:06'); INSERT INTO `sys_job_log` VALUES (5144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-09 15:50:14'); INSERT INTO `sys_job_log` VALUES (5145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-09 15:52:04'); INSERT INTO `sys_job_log` VALUES (5146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-09 15:52:06'); INSERT INTO `sys_job_log` VALUES (5147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-09 15:52:14'); INSERT INTO `sys_job_log` VALUES (5148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-09 15:54:04'); INSERT INTO `sys_job_log` VALUES (5149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-09 15:54:06'); INSERT INTO `sys_job_log` VALUES (5150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:319毫秒', '0', '', '2022-01-09 15:54:14'); INSERT INTO `sys_job_log` VALUES (5151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-09 15:56:04'); INSERT INTO `sys_job_log` VALUES (5152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-09 15:56:06'); INSERT INTO `sys_job_log` VALUES (5153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-09 15:56:14'); INSERT INTO `sys_job_log` VALUES (5154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-09 15:58:04'); INSERT INTO `sys_job_log` VALUES (5155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-09 15:58:06'); INSERT INTO `sys_job_log` VALUES (5156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-09 15:58:14'); INSERT INTO `sys_job_log` VALUES (5157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-09 16:00:04'); INSERT INTO `sys_job_log` VALUES (5158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-09 16:00:06'); INSERT INTO `sys_job_log` VALUES (5159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-09 16:00:14'); INSERT INTO `sys_job_log` VALUES (5160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-09 16:02:04'); INSERT INTO `sys_job_log` VALUES (5161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-09 16:02:06'); INSERT INTO `sys_job_log` VALUES (5162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-09 16:02:14'); INSERT INTO `sys_job_log` VALUES (5163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-09 16:04:04'); INSERT INTO `sys_job_log` VALUES (5164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-09 16:04:06'); INSERT INTO `sys_job_log` VALUES (5165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-09 16:04:14'); INSERT INTO `sys_job_log` VALUES (5166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-09 16:06:04'); INSERT INTO `sys_job_log` VALUES (5167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-09 16:06:06'); INSERT INTO `sys_job_log` VALUES (5168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-09 16:06:14'); INSERT INTO `sys_job_log` VALUES (5169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1591毫秒', '0', '', '2022-01-09 16:08:05'); INSERT INTO `sys_job_log` VALUES (5170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:367毫秒', '0', '', '2022-01-09 16:08:06'); INSERT INTO `sys_job_log` VALUES (5171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-09 16:08:14'); INSERT INTO `sys_job_log` VALUES (5172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:315毫秒', '0', '', '2022-01-09 16:10:04'); INSERT INTO `sys_job_log` VALUES (5173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-09 16:10:06'); INSERT INTO `sys_job_log` VALUES (5174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-09 16:10:14'); INSERT INTO `sys_job_log` VALUES (5175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-09 16:12:04'); INSERT INTO `sys_job_log` VALUES (5176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:275毫秒', '0', '', '2022-01-09 16:12:06'); INSERT INTO `sys_job_log` VALUES (5177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-09 16:12:14'); INSERT INTO `sys_job_log` VALUES (5178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:296毫秒', '0', '', '2022-01-09 16:14:04'); INSERT INTO `sys_job_log` VALUES (5179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-09 16:14:06'); INSERT INTO `sys_job_log` VALUES (5180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-09 16:14:14'); INSERT INTO `sys_job_log` VALUES (5181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-09 16:16:04'); INSERT INTO `sys_job_log` VALUES (5182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-09 16:16:06'); INSERT INTO `sys_job_log` VALUES (5183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-09 16:16:14'); INSERT INTO `sys_job_log` VALUES (5184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-09 16:18:04'); INSERT INTO `sys_job_log` VALUES (5185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-09 16:18:06'); INSERT INTO `sys_job_log` VALUES (5186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-09 16:18:14'); INSERT INTO `sys_job_log` VALUES (5187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-09 16:20:04'); INSERT INTO `sys_job_log` VALUES (5188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-09 16:20:06'); INSERT INTO `sys_job_log` VALUES (5189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-09 16:20:14'); INSERT INTO `sys_job_log` VALUES (5190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-09 16:22:04'); INSERT INTO `sys_job_log` VALUES (5191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-09 16:22:06'); INSERT INTO `sys_job_log` VALUES (5192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-09 16:22:14'); INSERT INTO `sys_job_log` VALUES (5193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-09 16:24:04'); INSERT INTO `sys_job_log` VALUES (5194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-09 16:24:06'); INSERT INTO `sys_job_log` VALUES (5195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-09 16:24:14'); INSERT INTO `sys_job_log` VALUES (5196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:311毫秒', '0', '', '2022-01-09 16:26:04'); INSERT INTO `sys_job_log` VALUES (5197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-09 16:26:06'); INSERT INTO `sys_job_log` VALUES (5198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-09 16:26:14'); INSERT INTO `sys_job_log` VALUES (5199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-09 16:28:04'); INSERT INTO `sys_job_log` VALUES (5200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-09 16:28:06'); INSERT INTO `sys_job_log` VALUES (5201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:356毫秒', '0', '', '2022-01-09 16:28:14'); INSERT INTO `sys_job_log` VALUES (5202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-09 16:30:04'); INSERT INTO `sys_job_log` VALUES (5203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-09 16:30:06'); INSERT INTO `sys_job_log` VALUES (5204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-09 16:30:14'); INSERT INTO `sys_job_log` VALUES (5205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-09 16:32:04'); INSERT INTO `sys_job_log` VALUES (5206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-09 16:32:06'); INSERT INTO `sys_job_log` VALUES (5207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-09 16:32:14'); INSERT INTO `sys_job_log` VALUES (5208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-09 16:34:04'); INSERT INTO `sys_job_log` VALUES (5209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-09 16:34:06'); INSERT INTO `sys_job_log` VALUES (5210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-09 16:34:14'); INSERT INTO `sys_job_log` VALUES (5211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-09 16:36:04'); INSERT INTO `sys_job_log` VALUES (5212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-09 16:36:06'); INSERT INTO `sys_job_log` VALUES (5213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-09 16:36:14'); INSERT INTO `sys_job_log` VALUES (5214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-09 16:38:04'); INSERT INTO `sys_job_log` VALUES (5215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-09 16:38:06'); INSERT INTO `sys_job_log` VALUES (5216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-09 16:38:14'); INSERT INTO `sys_job_log` VALUES (5217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-09 16:40:04'); INSERT INTO `sys_job_log` VALUES (5218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-09 16:40:06'); INSERT INTO `sys_job_log` VALUES (5219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-09 16:40:14'); INSERT INTO `sys_job_log` VALUES (5220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-09 16:42:04'); INSERT INTO `sys_job_log` VALUES (5221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 16:42:06'); INSERT INTO `sys_job_log` VALUES (5222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-09 16:42:14'); INSERT INTO `sys_job_log` VALUES (5223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:348毫秒', '0', '', '2022-01-09 16:44:04'); INSERT INTO `sys_job_log` VALUES (5224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-09 16:44:06'); INSERT INTO `sys_job_log` VALUES (5225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-09 16:44:14'); INSERT INTO `sys_job_log` VALUES (5226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:23毫秒', '0', '', '2022-01-09 16:46:04'); INSERT INTO `sys_job_log` VALUES (5227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-09 16:46:06'); INSERT INTO `sys_job_log` VALUES (5228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1258毫秒', '0', '', '2022-01-09 16:46:15'); INSERT INTO `sys_job_log` VALUES (5229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:280毫秒', '0', '', '2022-01-09 16:48:04'); INSERT INTO `sys_job_log` VALUES (5230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-09 16:48:06'); INSERT INTO `sys_job_log` VALUES (5231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-09 16:48:14'); INSERT INTO `sys_job_log` VALUES (5232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-09 16:50:04'); INSERT INTO `sys_job_log` VALUES (5233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-09 16:50:06'); INSERT INTO `sys_job_log` VALUES (5234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-09 16:50:14'); INSERT INTO `sys_job_log` VALUES (5235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-09 16:52:04'); INSERT INTO `sys_job_log` VALUES (5236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-09 16:52:06'); INSERT INTO `sys_job_log` VALUES (5237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-09 16:52:14'); INSERT INTO `sys_job_log` VALUES (5238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-09 16:54:04'); INSERT INTO `sys_job_log` VALUES (5239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-09 16:54:06'); INSERT INTO `sys_job_log` VALUES (5240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-09 16:54:14'); INSERT INTO `sys_job_log` VALUES (5241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:266毫秒', '0', '', '2022-01-09 16:56:04'); INSERT INTO `sys_job_log` VALUES (5242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-09 16:56:06'); INSERT INTO `sys_job_log` VALUES (5243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-09 16:56:14'); INSERT INTO `sys_job_log` VALUES (5244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-09 16:58:04'); INSERT INTO `sys_job_log` VALUES (5245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-09 16:58:06'); INSERT INTO `sys_job_log` VALUES (5246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-09 16:58:14'); INSERT INTO `sys_job_log` VALUES (5247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-09 17:00:04'); INSERT INTO `sys_job_log` VALUES (5248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-09 17:00:06'); INSERT INTO `sys_job_log` VALUES (5249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:346毫秒', '0', '', '2022-01-09 17:00:14'); INSERT INTO `sys_job_log` VALUES (5250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-09 17:02:04'); INSERT INTO `sys_job_log` VALUES (5251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-09 17:02:06'); INSERT INTO `sys_job_log` VALUES (5252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-09 17:02:14'); INSERT INTO `sys_job_log` VALUES (5253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-09 17:04:04'); INSERT INTO `sys_job_log` VALUES (5254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:482毫秒', '0', '', '2022-01-09 17:04:06'); INSERT INTO `sys_job_log` VALUES (5255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-09 17:04:14'); INSERT INTO `sys_job_log` VALUES (5256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-09 17:06:04'); INSERT INTO `sys_job_log` VALUES (5257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-09 17:06:06'); INSERT INTO `sys_job_log` VALUES (5258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-09 17:06:14'); INSERT INTO `sys_job_log` VALUES (5259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-09 17:08:04'); INSERT INTO `sys_job_log` VALUES (5260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-09 17:08:06'); INSERT INTO `sys_job_log` VALUES (5261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-09 17:08:14'); INSERT INTO `sys_job_log` VALUES (5262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-09 17:10:04'); INSERT INTO `sys_job_log` VALUES (5263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-09 17:10:06'); INSERT INTO `sys_job_log` VALUES (5264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-09 17:10:14'); INSERT INTO `sys_job_log` VALUES (5265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-09 17:12:04'); INSERT INTO `sys_job_log` VALUES (5266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-09 17:12:06'); INSERT INTO `sys_job_log` VALUES (5267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-09 17:12:14'); INSERT INTO `sys_job_log` VALUES (5268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-09 17:14:04'); INSERT INTO `sys_job_log` VALUES (5269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-09 17:14:06'); INSERT INTO `sys_job_log` VALUES (5270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-09 17:14:14'); INSERT INTO `sys_job_log` VALUES (5271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-09 17:16:04'); INSERT INTO `sys_job_log` VALUES (5272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-09 17:16:06'); INSERT INTO `sys_job_log` VALUES (5273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-09 17:16:14'); INSERT INTO `sys_job_log` VALUES (5274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-09 17:18:04'); INSERT INTO `sys_job_log` VALUES (5275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-09 17:18:06'); INSERT INTO `sys_job_log` VALUES (5276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-09 17:18:14'); INSERT INTO `sys_job_log` VALUES (5277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-09 17:20:04'); INSERT INTO `sys_job_log` VALUES (5278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-09 17:20:06'); INSERT INTO `sys_job_log` VALUES (5279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-09 17:20:14'); INSERT INTO `sys_job_log` VALUES (5280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-09 17:22:04'); INSERT INTO `sys_job_log` VALUES (5281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:309毫秒', '0', '', '2022-01-09 17:22:06'); INSERT INTO `sys_job_log` VALUES (5282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-09 17:22:14'); INSERT INTO `sys_job_log` VALUES (5283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-09 17:24:04'); INSERT INTO `sys_job_log` VALUES (5284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-09 17:24:06'); INSERT INTO `sys_job_log` VALUES (5285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-09 17:24:14'); INSERT INTO `sys_job_log` VALUES (5286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-09 17:26:04'); INSERT INTO `sys_job_log` VALUES (5287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-09 17:26:06'); INSERT INTO `sys_job_log` VALUES (5288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-09 17:26:14'); INSERT INTO `sys_job_log` VALUES (5289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:302毫秒', '0', '', '2022-01-09 17:28:04'); INSERT INTO `sys_job_log` VALUES (5290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-09 17:28:06'); INSERT INTO `sys_job_log` VALUES (5291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-09 17:28:14'); INSERT INTO `sys_job_log` VALUES (5292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-09 17:30:04'); INSERT INTO `sys_job_log` VALUES (5293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-09 17:30:06'); INSERT INTO `sys_job_log` VALUES (5294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-09 17:30:14'); INSERT INTO `sys_job_log` VALUES (5295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-09 17:32:04'); INSERT INTO `sys_job_log` VALUES (5296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-09 17:32:06'); INSERT INTO `sys_job_log` VALUES (5297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-09 17:32:14'); INSERT INTO `sys_job_log` VALUES (5298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-09 17:34:04'); INSERT INTO `sys_job_log` VALUES (5299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-09 17:34:06'); INSERT INTO `sys_job_log` VALUES (5300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-09 17:34:14'); INSERT INTO `sys_job_log` VALUES (5301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-09 17:36:04'); INSERT INTO `sys_job_log` VALUES (5302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-09 17:36:06'); INSERT INTO `sys_job_log` VALUES (5303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:285毫秒', '0', '', '2022-01-09 17:36:14'); INSERT INTO `sys_job_log` VALUES (5304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-09 17:38:04'); INSERT INTO `sys_job_log` VALUES (5305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-09 17:38:06'); INSERT INTO `sys_job_log` VALUES (5306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-09 17:38:14'); INSERT INTO `sys_job_log` VALUES (5307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:415毫秒', '0', '', '2022-01-09 17:40:04'); INSERT INTO `sys_job_log` VALUES (5308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-09 17:40:06'); INSERT INTO `sys_job_log` VALUES (5309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-09 17:40:14'); INSERT INTO `sys_job_log` VALUES (5310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-09 17:42:04'); INSERT INTO `sys_job_log` VALUES (5311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-09 17:42:06'); INSERT INTO `sys_job_log` VALUES (5312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-09 17:42:14'); INSERT INTO `sys_job_log` VALUES (5313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-09 17:44:04'); INSERT INTO `sys_job_log` VALUES (5314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-09 17:44:06'); INSERT INTO `sys_job_log` VALUES (5315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-09 17:44:14'); INSERT INTO `sys_job_log` VALUES (5316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-09 17:46:04'); INSERT INTO `sys_job_log` VALUES (5317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-09 17:46:06'); INSERT INTO `sys_job_log` VALUES (5318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-09 17:46:14'); INSERT INTO `sys_job_log` VALUES (5319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-09 17:48:04'); INSERT INTO `sys_job_log` VALUES (5320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:284毫秒', '0', '', '2022-01-09 17:48:06'); INSERT INTO `sys_job_log` VALUES (5321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-09 17:48:14'); INSERT INTO `sys_job_log` VALUES (5322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:286毫秒', '0', '', '2022-01-09 17:50:04'); INSERT INTO `sys_job_log` VALUES (5323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-09 17:50:06'); INSERT INTO `sys_job_log` VALUES (5324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-09 17:50:14'); INSERT INTO `sys_job_log` VALUES (5325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-09 17:52:04'); INSERT INTO `sys_job_log` VALUES (5326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-09 17:52:06'); INSERT INTO `sys_job_log` VALUES (5327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-09 17:52:14'); INSERT INTO `sys_job_log` VALUES (5328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:487毫秒', '0', '', '2022-01-09 17:54:04'); INSERT INTO `sys_job_log` VALUES (5329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-09 17:54:06'); INSERT INTO `sys_job_log` VALUES (5330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-09 17:54:14'); INSERT INTO `sys_job_log` VALUES (5331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-09 17:56:04'); INSERT INTO `sys_job_log` VALUES (5332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-09 17:56:06'); INSERT INTO `sys_job_log` VALUES (5333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-09 17:56:14'); INSERT INTO `sys_job_log` VALUES (5334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-09 17:58:04'); INSERT INTO `sys_job_log` VALUES (5335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-09 17:58:06'); INSERT INTO `sys_job_log` VALUES (5336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-09 17:58:14'); INSERT INTO `sys_job_log` VALUES (5337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-09 18:00:04'); INSERT INTO `sys_job_log` VALUES (5338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-09 18:00:06'); INSERT INTO `sys_job_log` VALUES (5339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-09 18:00:14'); INSERT INTO `sys_job_log` VALUES (5340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-09 18:02:04'); INSERT INTO `sys_job_log` VALUES (5341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-09 18:02:06'); INSERT INTO `sys_job_log` VALUES (5342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-09 18:02:14'); INSERT INTO `sys_job_log` VALUES (5343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-09 18:04:04'); INSERT INTO `sys_job_log` VALUES (5344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-09 18:04:06'); INSERT INTO `sys_job_log` VALUES (5345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-09 18:04:14'); INSERT INTO `sys_job_log` VALUES (5346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-09 18:06:04'); INSERT INTO `sys_job_log` VALUES (5347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-09 18:06:06'); INSERT INTO `sys_job_log` VALUES (5348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-09 18:06:14'); INSERT INTO `sys_job_log` VALUES (5349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:316毫秒', '0', '', '2022-01-09 18:08:04'); INSERT INTO `sys_job_log` VALUES (5350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-09 18:08:06'); INSERT INTO `sys_job_log` VALUES (5351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-09 18:08:14'); INSERT INTO `sys_job_log` VALUES (5352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-09 18:10:04'); INSERT INTO `sys_job_log` VALUES (5353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-09 18:10:06'); INSERT INTO `sys_job_log` VALUES (5354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-09 18:10:14'); INSERT INTO `sys_job_log` VALUES (5355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-09 18:12:04'); INSERT INTO `sys_job_log` VALUES (5356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 18:12:06'); INSERT INTO `sys_job_log` VALUES (5357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-09 18:12:14'); INSERT INTO `sys_job_log` VALUES (5358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-09 18:14:04'); INSERT INTO `sys_job_log` VALUES (5359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-09 18:14:06'); INSERT INTO `sys_job_log` VALUES (5360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-09 18:14:14'); INSERT INTO `sys_job_log` VALUES (5361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-09 18:16:04'); INSERT INTO `sys_job_log` VALUES (5362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-09 18:16:06'); INSERT INTO `sys_job_log` VALUES (5363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-09 18:16:14'); INSERT INTO `sys_job_log` VALUES (5364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:284毫秒', '0', '', '2022-01-09 18:18:04'); INSERT INTO `sys_job_log` VALUES (5365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-09 18:18:06'); INSERT INTO `sys_job_log` VALUES (5366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-09 18:18:14'); INSERT INTO `sys_job_log` VALUES (5367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-09 18:20:04'); INSERT INTO `sys_job_log` VALUES (5368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-09 18:20:06'); INSERT INTO `sys_job_log` VALUES (5369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-09 18:20:14'); INSERT INTO `sys_job_log` VALUES (5370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-09 18:22:04'); INSERT INTO `sys_job_log` VALUES (5371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-09 18:22:06'); INSERT INTO `sys_job_log` VALUES (5372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-09 18:22:14'); INSERT INTO `sys_job_log` VALUES (5373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-09 18:24:04'); INSERT INTO `sys_job_log` VALUES (5374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 18:24:06'); INSERT INTO `sys_job_log` VALUES (5375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-09 18:24:14'); INSERT INTO `sys_job_log` VALUES (5376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-09 18:26:04'); INSERT INTO `sys_job_log` VALUES (5377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-09 18:26:06'); INSERT INTO `sys_job_log` VALUES (5378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-09 18:26:14'); INSERT INTO `sys_job_log` VALUES (5379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-09 18:28:04'); INSERT INTO `sys_job_log` VALUES (5380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-09 18:28:06'); INSERT INTO `sys_job_log` VALUES (5381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:303毫秒', '0', '', '2022-01-09 18:28:14'); INSERT INTO `sys_job_log` VALUES (5382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-09 18:30:04'); INSERT INTO `sys_job_log` VALUES (5383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-09 18:30:06'); INSERT INTO `sys_job_log` VALUES (5384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-09 18:30:14'); INSERT INTO `sys_job_log` VALUES (5385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-09 18:32:04'); INSERT INTO `sys_job_log` VALUES (5386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-09 18:32:06'); INSERT INTO `sys_job_log` VALUES (5387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-09 18:32:14'); INSERT INTO `sys_job_log` VALUES (5388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-09 18:34:04'); INSERT INTO `sys_job_log` VALUES (5389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-09 18:34:06'); INSERT INTO `sys_job_log` VALUES (5390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-09 18:34:14'); INSERT INTO `sys_job_log` VALUES (5391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-09 18:36:04'); INSERT INTO `sys_job_log` VALUES (5392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-09 18:36:06'); INSERT INTO `sys_job_log` VALUES (5393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-09 18:36:14'); INSERT INTO `sys_job_log` VALUES (5394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-09 18:38:04'); INSERT INTO `sys_job_log` VALUES (5395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-09 18:38:06'); INSERT INTO `sys_job_log` VALUES (5396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-09 18:38:14'); INSERT INTO `sys_job_log` VALUES (5397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-09 18:40:04'); INSERT INTO `sys_job_log` VALUES (5398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-09 18:40:06'); INSERT INTO `sys_job_log` VALUES (5399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-09 18:40:14'); INSERT INTO `sys_job_log` VALUES (5400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-09 18:42:04'); INSERT INTO `sys_job_log` VALUES (5401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-09 18:42:06'); INSERT INTO `sys_job_log` VALUES (5402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-09 18:42:14'); INSERT INTO `sys_job_log` VALUES (5403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:367毫秒', '0', '', '2022-01-09 18:44:04'); INSERT INTO `sys_job_log` VALUES (5404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-09 18:44:06'); INSERT INTO `sys_job_log` VALUES (5405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-09 18:44:14'); INSERT INTO `sys_job_log` VALUES (5406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-09 18:46:04'); INSERT INTO `sys_job_log` VALUES (5407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-09 18:46:06'); INSERT INTO `sys_job_log` VALUES (5408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-09 18:46:14'); INSERT INTO `sys_job_log` VALUES (5409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-09 18:48:04'); INSERT INTO `sys_job_log` VALUES (5410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-09 18:48:06'); INSERT INTO `sys_job_log` VALUES (5411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-09 18:48:14'); INSERT INTO `sys_job_log` VALUES (5412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-09 18:50:04'); INSERT INTO `sys_job_log` VALUES (5413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-09 18:50:06'); INSERT INTO `sys_job_log` VALUES (5414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-09 18:50:14'); INSERT INTO `sys_job_log` VALUES (5415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-09 18:52:04'); INSERT INTO `sys_job_log` VALUES (5416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-09 18:52:06'); INSERT INTO `sys_job_log` VALUES (5417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-09 18:52:14'); INSERT INTO `sys_job_log` VALUES (5418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-09 18:54:04'); INSERT INTO `sys_job_log` VALUES (5419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-09 18:54:06'); INSERT INTO `sys_job_log` VALUES (5420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-09 18:54:14'); INSERT INTO `sys_job_log` VALUES (5421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-09 18:56:04'); INSERT INTO `sys_job_log` VALUES (5422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:265毫秒', '0', '', '2022-01-09 18:56:06'); INSERT INTO `sys_job_log` VALUES (5423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-09 18:56:14'); INSERT INTO `sys_job_log` VALUES (5424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:331毫秒', '0', '', '2022-01-09 18:58:04'); INSERT INTO `sys_job_log` VALUES (5425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-09 18:58:06'); INSERT INTO `sys_job_log` VALUES (5426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-09 18:58:14'); INSERT INTO `sys_job_log` VALUES (5427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-09 19:00:04'); INSERT INTO `sys_job_log` VALUES (5428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-09 19:00:06'); INSERT INTO `sys_job_log` VALUES (5429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:344毫秒', '0', '', '2022-01-09 19:00:14'); INSERT INTO `sys_job_log` VALUES (5430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:430毫秒', '0', '', '2022-01-09 19:02:04'); INSERT INTO `sys_job_log` VALUES (5431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-09 19:02:06'); INSERT INTO `sys_job_log` VALUES (5432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-09 19:02:14'); INSERT INTO `sys_job_log` VALUES (5433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:327毫秒', '0', '', '2022-01-09 19:04:04'); INSERT INTO `sys_job_log` VALUES (5434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:275毫秒', '0', '', '2022-01-09 19:04:06'); INSERT INTO `sys_job_log` VALUES (5435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-09 19:04:14'); INSERT INTO `sys_job_log` VALUES (5436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:359毫秒', '0', '', '2022-01-09 19:06:04'); INSERT INTO `sys_job_log` VALUES (5437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-09 19:06:06'); INSERT INTO `sys_job_log` VALUES (5438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-09 19:06:14'); INSERT INTO `sys_job_log` VALUES (5439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:292毫秒', '0', '', '2022-01-09 19:08:04'); INSERT INTO `sys_job_log` VALUES (5440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-09 19:08:06'); INSERT INTO `sys_job_log` VALUES (5441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:432毫秒', '0', '', '2022-01-09 19:08:14'); INSERT INTO `sys_job_log` VALUES (5442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-09 19:10:04'); INSERT INTO `sys_job_log` VALUES (5443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-09 19:10:06'); INSERT INTO `sys_job_log` VALUES (5444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-09 19:10:14'); INSERT INTO `sys_job_log` VALUES (5445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:337毫秒', '0', '', '2022-01-09 19:12:04'); INSERT INTO `sys_job_log` VALUES (5446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-09 19:12:06'); INSERT INTO `sys_job_log` VALUES (5447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:323毫秒', '0', '', '2022-01-09 19:12:14'); INSERT INTO `sys_job_log` VALUES (5448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:369毫秒', '0', '', '2022-01-09 19:14:04'); INSERT INTO `sys_job_log` VALUES (5449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-09 19:14:06'); INSERT INTO `sys_job_log` VALUES (5450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-09 19:14:14'); INSERT INTO `sys_job_log` VALUES (5451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:538毫秒', '0', '', '2022-01-09 19:16:04'); INSERT INTO `sys_job_log` VALUES (5452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-09 19:16:06'); INSERT INTO `sys_job_log` VALUES (5453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-09 19:16:14'); INSERT INTO `sys_job_log` VALUES (5454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:284毫秒', '0', '', '2022-01-09 19:18:04'); INSERT INTO `sys_job_log` VALUES (5455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:312毫秒', '0', '', '2022-01-09 19:18:06'); INSERT INTO `sys_job_log` VALUES (5456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-09 19:18:14'); INSERT INTO `sys_job_log` VALUES (5457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:393毫秒', '0', '', '2022-01-09 19:20:04'); INSERT INTO `sys_job_log` VALUES (5458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-09 19:20:06'); INSERT INTO `sys_job_log` VALUES (5459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:272毫秒', '0', '', '2022-01-09 19:20:14'); INSERT INTO `sys_job_log` VALUES (5460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:388毫秒', '0', '', '2022-01-09 19:22:04'); INSERT INTO `sys_job_log` VALUES (5461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-09 19:22:06'); INSERT INTO `sys_job_log` VALUES (5462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-09 19:22:14'); INSERT INTO `sys_job_log` VALUES (5463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:289毫秒', '0', '', '2022-01-09 19:24:04'); INSERT INTO `sys_job_log` VALUES (5464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-09 19:24:06'); INSERT INTO `sys_job_log` VALUES (5465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-09 19:24:14'); INSERT INTO `sys_job_log` VALUES (5466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:320毫秒', '0', '', '2022-01-09 19:26:04'); INSERT INTO `sys_job_log` VALUES (5467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-09 19:26:06'); INSERT INTO `sys_job_log` VALUES (5468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-09 19:26:14'); INSERT INTO `sys_job_log` VALUES (5469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-09 19:28:04'); INSERT INTO `sys_job_log` VALUES (5470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-09 19:28:06'); INSERT INTO `sys_job_log` VALUES (5471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:320毫秒', '0', '', '2022-01-09 19:28:14'); INSERT INTO `sys_job_log` VALUES (5472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-09 19:30:04'); INSERT INTO `sys_job_log` VALUES (5473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-09 19:30:06'); INSERT INTO `sys_job_log` VALUES (5474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-09 19:30:14'); INSERT INTO `sys_job_log` VALUES (5475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-09 19:32:04'); INSERT INTO `sys_job_log` VALUES (5476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-09 19:32:06'); INSERT INTO `sys_job_log` VALUES (5477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-09 19:32:14'); INSERT INTO `sys_job_log` VALUES (5478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-09 19:34:04'); INSERT INTO `sys_job_log` VALUES (5479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:291毫秒', '0', '', '2022-01-09 19:34:06'); INSERT INTO `sys_job_log` VALUES (5480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-09 19:34:14'); INSERT INTO `sys_job_log` VALUES (5481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-09 19:36:04'); INSERT INTO `sys_job_log` VALUES (5482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-09 19:36:06'); INSERT INTO `sys_job_log` VALUES (5483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-09 19:36:14'); INSERT INTO `sys_job_log` VALUES (5484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-09 19:38:04'); INSERT INTO `sys_job_log` VALUES (5485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-09 19:38:06'); INSERT INTO `sys_job_log` VALUES (5486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-09 19:38:14'); INSERT INTO `sys_job_log` VALUES (5487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-09 19:40:04'); INSERT INTO `sys_job_log` VALUES (5488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-09 19:40:06'); INSERT INTO `sys_job_log` VALUES (5489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-09 19:40:14'); INSERT INTO `sys_job_log` VALUES (5490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-10 08:46:04'); INSERT INTO `sys_job_log` VALUES (5491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-10 08:46:06'); INSERT INTO `sys_job_log` VALUES (5492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-10 08:46:14'); INSERT INTO `sys_job_log` VALUES (5493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:376毫秒', '0', '', '2022-01-10 08:48:04'); INSERT INTO `sys_job_log` VALUES (5494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-10 08:48:06'); INSERT INTO `sys_job_log` VALUES (5495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-10 08:48:14'); INSERT INTO `sys_job_log` VALUES (5496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-10 08:50:05'); INSERT INTO `sys_job_log` VALUES (5497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-10 08:50:06'); INSERT INTO `sys_job_log` VALUES (5498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-10 08:50:16'); INSERT INTO `sys_job_log` VALUES (5499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-10 08:52:04'); INSERT INTO `sys_job_log` VALUES (5500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 08:52:06'); INSERT INTO `sys_job_log` VALUES (5501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-10 08:52:14'); INSERT INTO `sys_job_log` VALUES (5502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-10 08:54:05'); INSERT INTO `sys_job_log` VALUES (5503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-10 08:54:06'); INSERT INTO `sys_job_log` VALUES (5504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-10 08:54:14'); INSERT INTO `sys_job_log` VALUES (5505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-10 08:56:04'); INSERT INTO `sys_job_log` VALUES (5506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-10 08:56:06'); INSERT INTO `sys_job_log` VALUES (5507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-10 08:56:14'); INSERT INTO `sys_job_log` VALUES (5508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-10 08:58:04'); INSERT INTO `sys_job_log` VALUES (5509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-10 08:58:06'); INSERT INTO `sys_job_log` VALUES (5510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1244毫秒', '0', '', '2022-01-10 08:58:15'); INSERT INTO `sys_job_log` VALUES (5511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-10 09:00:04'); INSERT INTO `sys_job_log` VALUES (5512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-10 09:00:06'); INSERT INTO `sys_job_log` VALUES (5513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-10 09:00:15'); INSERT INTO `sys_job_log` VALUES (5514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-10 09:02:04'); INSERT INTO `sys_job_log` VALUES (5515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 09:02:06'); INSERT INTO `sys_job_log` VALUES (5516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-10 09:02:15'); INSERT INTO `sys_job_log` VALUES (5517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-10 09:04:05'); INSERT INTO `sys_job_log` VALUES (5518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 09:04:06'); INSERT INTO `sys_job_log` VALUES (5519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-10 09:04:14'); INSERT INTO `sys_job_log` VALUES (5520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:512毫秒', '0', '', '2022-01-10 09:14:07'); INSERT INTO `sys_job_log` VALUES (5521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-10 09:14:07'); INSERT INTO `sys_job_log` VALUES (5522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:4毫秒', '0', '', '2022-01-10 09:14:14'); INSERT INTO `sys_job_log` VALUES (5523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1620毫秒', '0', '', '2022-01-10 09:16:05'); INSERT INTO `sys_job_log` VALUES (5524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1119毫秒', '0', '', '2022-01-10 09:16:07'); INSERT INTO `sys_job_log` VALUES (5525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-10 09:16:14'); INSERT INTO `sys_job_log` VALUES (5526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-10 09:18:04'); INSERT INTO `sys_job_log` VALUES (5527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 09:18:06'); INSERT INTO `sys_job_log` VALUES (5528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-10 09:18:14'); INSERT INTO `sys_job_log` VALUES (5529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-10 09:20:05'); INSERT INTO `sys_job_log` VALUES (5530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-10 09:20:06'); INSERT INTO `sys_job_log` VALUES (5531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-10 09:20:15'); INSERT INTO `sys_job_log` VALUES (5532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-10 09:22:04'); INSERT INTO `sys_job_log` VALUES (5533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-10 09:22:06'); INSERT INTO `sys_job_log` VALUES (5534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-10 09:22:15'); INSERT INTO `sys_job_log` VALUES (5535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-10 09:28:10'); INSERT INTO `sys_job_log` VALUES (5536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-10 09:28:10'); INSERT INTO `sys_job_log` VALUES (5537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:4毫秒', '0', '', '2022-01-10 09:28:14'); INSERT INTO `sys_job_log` VALUES (5538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2034毫秒', '0', '', '2022-01-10 09:30:06'); INSERT INTO `sys_job_log` VALUES (5539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1452毫秒', '0', '', '2022-01-10 09:30:07'); INSERT INTO `sys_job_log` VALUES (5540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-10 09:30:15'); INSERT INTO `sys_job_log` VALUES (5541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-10 09:32:05'); INSERT INTO `sys_job_log` VALUES (5542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-10 09:32:06'); INSERT INTO `sys_job_log` VALUES (5543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1226毫秒', '0', '', '2022-01-10 09:32:15'); INSERT INTO `sys_job_log` VALUES (5544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1277毫秒', '0', '', '2022-01-10 09:34:05'); INSERT INTO `sys_job_log` VALUES (5545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-10 09:34:06'); INSERT INTO `sys_job_log` VALUES (5546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-10 09:34:14'); INSERT INTO `sys_job_log` VALUES (5547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-10 09:36:05'); INSERT INTO `sys_job_log` VALUES (5548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-10 09:36:06'); INSERT INTO `sys_job_log` VALUES (5549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-10 09:36:15'); INSERT INTO `sys_job_log` VALUES (5550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-10 09:38:05'); INSERT INTO `sys_job_log` VALUES (5551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-10 09:38:06'); INSERT INTO `sys_job_log` VALUES (5552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-10 09:38:15'); INSERT INTO `sys_job_log` VALUES (5553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1237毫秒', '0', '', '2022-01-10 09:40:05'); INSERT INTO `sys_job_log` VALUES (5554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-10 09:40:06'); INSERT INTO `sys_job_log` VALUES (5555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-10 09:40:14'); INSERT INTO `sys_job_log` VALUES (5556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-10 09:42:04'); INSERT INTO `sys_job_log` VALUES (5557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-10 09:42:08'); INSERT INTO `sys_job_log` VALUES (5558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-10 09:42:15'); INSERT INTO `sys_job_log` VALUES (5559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 09:44:04'); INSERT INTO `sys_job_log` VALUES (5560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 09:44:06'); INSERT INTO `sys_job_log` VALUES (5561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-10 09:44:16'); INSERT INTO `sys_job_log` VALUES (5562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-10 09:46:06'); INSERT INTO `sys_job_log` VALUES (5563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-10 09:46:06'); INSERT INTO `sys_job_log` VALUES (5564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-10 09:46:16'); INSERT INTO `sys_job_log` VALUES (5565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-10 09:48:05'); INSERT INTO `sys_job_log` VALUES (5566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 09:48:06'); INSERT INTO `sys_job_log` VALUES (5567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1197毫秒', '0', '', '2022-01-10 09:48:15'); INSERT INTO `sys_job_log` VALUES (5568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-10 09:50:05'); INSERT INTO `sys_job_log` VALUES (5569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 09:50:06'); INSERT INTO `sys_job_log` VALUES (5570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-10 09:50:14'); INSERT INTO `sys_job_log` VALUES (5571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-10 09:52:05'); INSERT INTO `sys_job_log` VALUES (5572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 09:52:06'); INSERT INTO `sys_job_log` VALUES (5573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-10 09:52:15'); INSERT INTO `sys_job_log` VALUES (5574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-10 09:54:04'); INSERT INTO `sys_job_log` VALUES (5575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-10 09:54:06'); INSERT INTO `sys_job_log` VALUES (5576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 09:54:14'); INSERT INTO `sys_job_log` VALUES (5577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-10 09:56:05'); INSERT INTO `sys_job_log` VALUES (5578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-10 09:56:06'); INSERT INTO `sys_job_log` VALUES (5579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-10 09:56:15'); INSERT INTO `sys_job_log` VALUES (5580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-10 09:58:04'); INSERT INTO `sys_job_log` VALUES (5581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 09:58:06'); INSERT INTO `sys_job_log` VALUES (5582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-10 09:58:14'); INSERT INTO `sys_job_log` VALUES (5583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1450毫秒', '0', '', '2022-01-10 10:00:05'); INSERT INTO `sys_job_log` VALUES (5584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 10:00:06'); INSERT INTO `sys_job_log` VALUES (5585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1221毫秒', '0', '', '2022-01-10 10:00:15'); INSERT INTO `sys_job_log` VALUES (5586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 10:02:04'); INSERT INTO `sys_job_log` VALUES (5587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-10 10:02:06'); INSERT INTO `sys_job_log` VALUES (5588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-10 10:02:15'); INSERT INTO `sys_job_log` VALUES (5589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-10 10:04:05'); INSERT INTO `sys_job_log` VALUES (5590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 10:04:06'); INSERT INTO `sys_job_log` VALUES (5591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-10 10:04:15'); INSERT INTO `sys_job_log` VALUES (5592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-10 10:06:05'); INSERT INTO `sys_job_log` VALUES (5593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-10 10:06:06'); INSERT INTO `sys_job_log` VALUES (5594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-10 10:06:16'); INSERT INTO `sys_job_log` VALUES (5595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-10 10:08:05'); INSERT INTO `sys_job_log` VALUES (5596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-10 10:08:06'); INSERT INTO `sys_job_log` VALUES (5597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-10 10:08:14'); INSERT INTO `sys_job_log` VALUES (5598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 10:10:04'); INSERT INTO `sys_job_log` VALUES (5599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-10 10:10:07'); INSERT INTO `sys_job_log` VALUES (5600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-10 10:10:15'); INSERT INTO `sys_job_log` VALUES (5601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-10 10:12:04'); INSERT INTO `sys_job_log` VALUES (5602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-10 10:12:06'); INSERT INTO `sys_job_log` VALUES (5603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-10 10:12:14'); INSERT INTO `sys_job_log` VALUES (5604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 10:14:04'); INSERT INTO `sys_job_log` VALUES (5605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-10 10:14:06'); INSERT INTO `sys_job_log` VALUES (5606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-10 10:14:14'); INSERT INTO `sys_job_log` VALUES (5607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-10 10:16:05'); INSERT INTO `sys_job_log` VALUES (5608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-10 10:16:06'); INSERT INTO `sys_job_log` VALUES (5609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-10 10:16:14'); INSERT INTO `sys_job_log` VALUES (5610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1215毫秒', '0', '', '2022-01-10 10:18:05'); INSERT INTO `sys_job_log` VALUES (5611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-10 10:18:06'); INSERT INTO `sys_job_log` VALUES (5612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-10 10:18:15'); INSERT INTO `sys_job_log` VALUES (5613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-10 10:20:04'); INSERT INTO `sys_job_log` VALUES (5614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 10:20:06'); INSERT INTO `sys_job_log` VALUES (5615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-10 10:20:15'); INSERT INTO `sys_job_log` VALUES (5616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-10 10:22:04'); INSERT INTO `sys_job_log` VALUES (5617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 10:22:06'); INSERT INTO `sys_job_log` VALUES (5618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1180毫秒', '0', '', '2022-01-10 10:22:15'); INSERT INTO `sys_job_log` VALUES (5619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-10 10:24:04'); INSERT INTO `sys_job_log` VALUES (5620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1253毫秒', '0', '', '2022-01-10 10:24:07'); INSERT INTO `sys_job_log` VALUES (5621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 10:24:14'); INSERT INTO `sys_job_log` VALUES (5622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 10:26:04'); INSERT INTO `sys_job_log` VALUES (5623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 10:26:06'); INSERT INTO `sys_job_log` VALUES (5624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-10 10:26:14'); INSERT INTO `sys_job_log` VALUES (5625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-10 10:28:05'); INSERT INTO `sys_job_log` VALUES (5626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-10 10:28:06'); INSERT INTO `sys_job_log` VALUES (5627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-10 10:28:15'); INSERT INTO `sys_job_log` VALUES (5628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-10 10:30:04'); INSERT INTO `sys_job_log` VALUES (5629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-10 10:30:06'); INSERT INTO `sys_job_log` VALUES (5630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-10 10:30:15'); INSERT INTO `sys_job_log` VALUES (5631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-10 10:32:05'); INSERT INTO `sys_job_log` VALUES (5632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 10:32:06'); INSERT INTO `sys_job_log` VALUES (5633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-10 10:32:15'); INSERT INTO `sys_job_log` VALUES (5634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-10 10:34:04'); INSERT INTO `sys_job_log` VALUES (5635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-10 10:34:06'); INSERT INTO `sys_job_log` VALUES (5636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:303毫秒', '0', '', '2022-01-10 10:34:14'); INSERT INTO `sys_job_log` VALUES (5637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-10 10:36:04'); INSERT INTO `sys_job_log` VALUES (5638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-10 10:36:06'); INSERT INTO `sys_job_log` VALUES (5639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1122毫秒', '0', '', '2022-01-10 10:36:15'); INSERT INTO `sys_job_log` VALUES (5640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 10:38:04'); INSERT INTO `sys_job_log` VALUES (5641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-10 10:38:08'); INSERT INTO `sys_job_log` VALUES (5642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-10 10:38:15'); INSERT INTO `sys_job_log` VALUES (5643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 10:40:04'); INSERT INTO `sys_job_log` VALUES (5644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-10 10:40:06'); INSERT INTO `sys_job_log` VALUES (5645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-10 10:40:16'); INSERT INTO `sys_job_log` VALUES (5646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-10 10:42:04'); INSERT INTO `sys_job_log` VALUES (5647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-10 10:42:06'); INSERT INTO `sys_job_log` VALUES (5648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-10 10:42:15'); INSERT INTO `sys_job_log` VALUES (5649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-10 10:44:05'); INSERT INTO `sys_job_log` VALUES (5650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 10:44:06'); INSERT INTO `sys_job_log` VALUES (5651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-10 10:44:14'); INSERT INTO `sys_job_log` VALUES (5652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-10 10:46:05'); INSERT INTO `sys_job_log` VALUES (5653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-10 10:46:06'); INSERT INTO `sys_job_log` VALUES (5654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-10 10:46:15'); INSERT INTO `sys_job_log` VALUES (5655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-10 10:48:05'); INSERT INTO `sys_job_log` VALUES (5656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 10:48:06'); INSERT INTO `sys_job_log` VALUES (5657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-10 10:48:14'); INSERT INTO `sys_job_log` VALUES (5658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1255毫秒', '0', '', '2022-01-10 10:50:05'); INSERT INTO `sys_job_log` VALUES (5659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-10 10:50:06'); INSERT INTO `sys_job_log` VALUES (5660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1151毫秒', '0', '', '2022-01-10 10:50:15'); INSERT INTO `sys_job_log` VALUES (5661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-10 10:52:04'); INSERT INTO `sys_job_log` VALUES (5662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2012毫秒', '0', '', '2022-01-10 10:52:08'); INSERT INTO `sys_job_log` VALUES (5663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-10 10:52:14'); INSERT INTO `sys_job_log` VALUES (5664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-10 10:54:04'); INSERT INTO `sys_job_log` VALUES (5665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-10 10:54:06'); INSERT INTO `sys_job_log` VALUES (5666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-10 10:54:14'); INSERT INTO `sys_job_log` VALUES (5667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1237毫秒', '0', '', '2022-01-10 10:56:05'); INSERT INTO `sys_job_log` VALUES (5668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 10:56:06'); INSERT INTO `sys_job_log` VALUES (5669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-10 10:56:15'); INSERT INTO `sys_job_log` VALUES (5670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 10:58:04'); INSERT INTO `sys_job_log` VALUES (5671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-10 10:58:06'); INSERT INTO `sys_job_log` VALUES (5672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1259毫秒', '0', '', '2022-01-10 10:58:15'); INSERT INTO `sys_job_log` VALUES (5673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1547毫秒', '0', '', '2022-01-10 11:00:05'); INSERT INTO `sys_job_log` VALUES (5674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 11:00:06'); INSERT INTO `sys_job_log` VALUES (5675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1197毫秒', '0', '', '2022-01-10 11:00:15'); INSERT INTO `sys_job_log` VALUES (5676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-10 11:02:05'); INSERT INTO `sys_job_log` VALUES (5677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1285毫秒', '0', '', '2022-01-10 11:02:07'); INSERT INTO `sys_job_log` VALUES (5678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-10 11:02:14'); INSERT INTO `sys_job_log` VALUES (5679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1222毫秒', '0', '', '2022-01-10 11:04:05'); INSERT INTO `sys_job_log` VALUES (5680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-10 11:04:06'); INSERT INTO `sys_job_log` VALUES (5681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2022-01-10 11:04:15'); INSERT INTO `sys_job_log` VALUES (5682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1141毫秒', '0', '', '2022-01-10 11:06:05'); INSERT INTO `sys_job_log` VALUES (5683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-10 11:06:06'); INSERT INTO `sys_job_log` VALUES (5684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-10 11:06:15'); INSERT INTO `sys_job_log` VALUES (5685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-10 11:08:05'); INSERT INTO `sys_job_log` VALUES (5686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-10 11:08:06'); INSERT INTO `sys_job_log` VALUES (5687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-10 11:08:15'); INSERT INTO `sys_job_log` VALUES (5688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-10 11:10:05'); INSERT INTO `sys_job_log` VALUES (5689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 11:10:06'); INSERT INTO `sys_job_log` VALUES (5690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-10 11:10:14'); INSERT INTO `sys_job_log` VALUES (5691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-10 11:12:05'); INSERT INTO `sys_job_log` VALUES (5692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-10 11:12:06'); INSERT INTO `sys_job_log` VALUES (5693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-10 11:12:14'); INSERT INTO `sys_job_log` VALUES (5694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-10 11:14:05'); INSERT INTO `sys_job_log` VALUES (5695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-10 11:14:06'); INSERT INTO `sys_job_log` VALUES (5696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1220毫秒', '0', '', '2022-01-10 11:14:15'); INSERT INTO `sys_job_log` VALUES (5697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-10 11:16:04'); INSERT INTO `sys_job_log` VALUES (5698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-10 11:16:07'); INSERT INTO `sys_job_log` VALUES (5699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-10 11:16:15'); INSERT INTO `sys_job_log` VALUES (5700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1211毫秒', '0', '', '2022-01-10 11:18:05'); INSERT INTO `sys_job_log` VALUES (5701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 11:18:06'); INSERT INTO `sys_job_log` VALUES (5702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 11:18:14'); INSERT INTO `sys_job_log` VALUES (5703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1240毫秒', '0', '', '2022-01-10 11:20:05'); INSERT INTO `sys_job_log` VALUES (5704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 11:20:06'); INSERT INTO `sys_job_log` VALUES (5705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-10 11:20:15'); INSERT INTO `sys_job_log` VALUES (5706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-10 11:22:04'); INSERT INTO `sys_job_log` VALUES (5707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-10 11:22:06'); INSERT INTO `sys_job_log` VALUES (5708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-10 11:22:15'); INSERT INTO `sys_job_log` VALUES (5709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 11:24:04'); INSERT INTO `sys_job_log` VALUES (5710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-10 11:24:06'); INSERT INTO `sys_job_log` VALUES (5711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-10 11:24:15'); INSERT INTO `sys_job_log` VALUES (5712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-10 11:26:04'); INSERT INTO `sys_job_log` VALUES (5713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-10 11:26:06'); INSERT INTO `sys_job_log` VALUES (5714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 11:26:14'); INSERT INTO `sys_job_log` VALUES (5715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-10 11:28:04'); INSERT INTO `sys_job_log` VALUES (5716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 11:28:06'); INSERT INTO `sys_job_log` VALUES (5717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-10 11:28:15'); INSERT INTO `sys_job_log` VALUES (5718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1211毫秒', '0', '', '2022-01-10 11:30:05'); INSERT INTO `sys_job_log` VALUES (5719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 11:30:06'); INSERT INTO `sys_job_log` VALUES (5720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-10 11:30:15'); INSERT INTO `sys_job_log` VALUES (5721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-10 11:32:05'); INSERT INTO `sys_job_log` VALUES (5722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 11:32:06'); INSERT INTO `sys_job_log` VALUES (5723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-10 11:32:15'); INSERT INTO `sys_job_log` VALUES (5724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-10 11:34:05'); INSERT INTO `sys_job_log` VALUES (5725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 11:34:06'); INSERT INTO `sys_job_log` VALUES (5726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1227毫秒', '0', '', '2022-01-10 11:34:15'); INSERT INTO `sys_job_log` VALUES (5727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1125毫秒', '0', '', '2022-01-10 11:36:05'); INSERT INTO `sys_job_log` VALUES (5728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1246毫秒', '0', '', '2022-01-10 11:36:07'); INSERT INTO `sys_job_log` VALUES (5729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-10 11:36:14'); INSERT INTO `sys_job_log` VALUES (5730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-10 11:38:05'); INSERT INTO `sys_job_log` VALUES (5731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-10 11:38:06'); INSERT INTO `sys_job_log` VALUES (5732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-10 11:38:15'); INSERT INTO `sys_job_log` VALUES (5733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-10 11:40:06'); INSERT INTO `sys_job_log` VALUES (5734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-10 11:40:06'); INSERT INTO `sys_job_log` VALUES (5735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-10 11:40:15'); INSERT INTO `sys_job_log` VALUES (5736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2022-01-10 11:42:05'); INSERT INTO `sys_job_log` VALUES (5737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-10 11:42:06'); INSERT INTO `sys_job_log` VALUES (5738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-10 11:42:15'); INSERT INTO `sys_job_log` VALUES (5739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-10 11:44:04'); INSERT INTO `sys_job_log` VALUES (5740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 11:44:06'); INSERT INTO `sys_job_log` VALUES (5741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-10 11:44:15'); INSERT INTO `sys_job_log` VALUES (5742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1171毫秒', '0', '', '2022-01-10 11:46:05'); INSERT INTO `sys_job_log` VALUES (5743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-10 11:46:06'); INSERT INTO `sys_job_log` VALUES (5744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-10 11:46:15'); INSERT INTO `sys_job_log` VALUES (5745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2022-01-10 11:48:05'); INSERT INTO `sys_job_log` VALUES (5746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-10 11:48:06'); INSERT INTO `sys_job_log` VALUES (5747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-10 11:48:15'); INSERT INTO `sys_job_log` VALUES (5748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-10 11:50:06'); INSERT INTO `sys_job_log` VALUES (5749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-10 11:50:06'); INSERT INTO `sys_job_log` VALUES (5750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 11:50:14'); INSERT INTO `sys_job_log` VALUES (5751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-10 11:52:04'); INSERT INTO `sys_job_log` VALUES (5752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 11:52:06'); INSERT INTO `sys_job_log` VALUES (5753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-10 11:52:14'); INSERT INTO `sys_job_log` VALUES (5754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-10 11:54:05'); INSERT INTO `sys_job_log` VALUES (5755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-10 11:54:06'); INSERT INTO `sys_job_log` VALUES (5756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-10 11:54:15'); INSERT INTO `sys_job_log` VALUES (5757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-10 11:56:04'); INSERT INTO `sys_job_log` VALUES (5758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 11:56:06'); INSERT INTO `sys_job_log` VALUES (5759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-10 11:56:15'); INSERT INTO `sys_job_log` VALUES (5760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1214毫秒', '0', '', '2022-01-10 11:58:05'); INSERT INTO `sys_job_log` VALUES (5761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 11:58:06'); INSERT INTO `sys_job_log` VALUES (5762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-10 11:58:15'); INSERT INTO `sys_job_log` VALUES (5763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-10 12:00:04'); INSERT INTO `sys_job_log` VALUES (5764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-10 12:00:06'); INSERT INTO `sys_job_log` VALUES (5765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-10 12:00:15'); INSERT INTO `sys_job_log` VALUES (5766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1114毫秒', '0', '', '2022-01-10 12:02:05'); INSERT INTO `sys_job_log` VALUES (5767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-10 12:02:06'); INSERT INTO `sys_job_log` VALUES (5768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-10 12:02:15'); INSERT INTO `sys_job_log` VALUES (5769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-10 12:04:04'); INSERT INTO `sys_job_log` VALUES (5770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-10 12:04:06'); INSERT INTO `sys_job_log` VALUES (5771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:808毫秒', '0', '', '2022-01-10 12:04:14'); INSERT INTO `sys_job_log` VALUES (5772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-10 12:06:04'); INSERT INTO `sys_job_log` VALUES (5773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 12:06:06'); INSERT INTO `sys_job_log` VALUES (5774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-10 12:06:15'); INSERT INTO `sys_job_log` VALUES (5775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1334毫秒', '0', '', '2022-01-10 12:08:05'); INSERT INTO `sys_job_log` VALUES (5776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-10 12:08:06'); INSERT INTO `sys_job_log` VALUES (5777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-10 12:08:15'); INSERT INTO `sys_job_log` VALUES (5778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-10 12:10:04'); INSERT INTO `sys_job_log` VALUES (5779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-10 12:10:06'); INSERT INTO `sys_job_log` VALUES (5780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 12:10:14'); INSERT INTO `sys_job_log` VALUES (5781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1225毫秒', '0', '', '2022-01-10 12:12:05'); INSERT INTO `sys_job_log` VALUES (5782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 12:12:06'); INSERT INTO `sys_job_log` VALUES (5783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-10 12:12:15'); INSERT INTO `sys_job_log` VALUES (5784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-10 12:14:04'); INSERT INTO `sys_job_log` VALUES (5785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 12:14:06'); INSERT INTO `sys_job_log` VALUES (5786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-10 12:14:14'); INSERT INTO `sys_job_log` VALUES (5787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1249毫秒', '0', '', '2022-01-10 12:16:05'); INSERT INTO `sys_job_log` VALUES (5788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-10 12:16:06'); INSERT INTO `sys_job_log` VALUES (5789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-10 12:16:15'); INSERT INTO `sys_job_log` VALUES (5790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2011毫秒', '0', '', '2022-01-10 12:18:06'); INSERT INTO `sys_job_log` VALUES (5791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-10 12:18:06'); INSERT INTO `sys_job_log` VALUES (5792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-10 12:18:14'); INSERT INTO `sys_job_log` VALUES (5793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-10 12:20:05'); INSERT INTO `sys_job_log` VALUES (5794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-10 12:20:06'); INSERT INTO `sys_job_log` VALUES (5795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1118毫秒', '0', '', '2022-01-10 12:20:15'); INSERT INTO `sys_job_log` VALUES (5796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 12:22:04'); INSERT INTO `sys_job_log` VALUES (5797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-10 12:22:06'); INSERT INTO `sys_job_log` VALUES (5798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1239毫秒', '0', '', '2022-01-10 12:22:15'); INSERT INTO `sys_job_log` VALUES (5799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-10 12:24:05'); INSERT INTO `sys_job_log` VALUES (5800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 12:24:06'); INSERT INTO `sys_job_log` VALUES (5801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-10 12:24:14'); INSERT INTO `sys_job_log` VALUES (5802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1214毫秒', '0', '', '2022-01-10 12:26:05'); INSERT INTO `sys_job_log` VALUES (5803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 12:26:06'); INSERT INTO `sys_job_log` VALUES (5804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-10 12:26:14'); INSERT INTO `sys_job_log` VALUES (5805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-10 12:28:04'); INSERT INTO `sys_job_log` VALUES (5806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 12:28:06'); INSERT INTO `sys_job_log` VALUES (5807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-10 12:28:14'); INSERT INTO `sys_job_log` VALUES (5808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-10 12:30:04'); INSERT INTO `sys_job_log` VALUES (5809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 12:30:06'); INSERT INTO `sys_job_log` VALUES (5810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-10 12:30:14'); INSERT INTO `sys_job_log` VALUES (5811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2012毫秒', '0', '', '2022-01-10 12:32:06'); INSERT INTO `sys_job_log` VALUES (5812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-10 12:32:06'); INSERT INTO `sys_job_log` VALUES (5813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-10 12:32:14'); INSERT INTO `sys_job_log` VALUES (5814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-10 12:34:04'); INSERT INTO `sys_job_log` VALUES (5815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 12:34:06'); INSERT INTO `sys_job_log` VALUES (5816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-10 12:34:15'); INSERT INTO `sys_job_log` VALUES (5817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1220毫秒', '0', '', '2022-01-10 12:36:05'); INSERT INTO `sys_job_log` VALUES (5818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 12:36:06'); INSERT INTO `sys_job_log` VALUES (5819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-10 12:36:15'); INSERT INTO `sys_job_log` VALUES (5820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-10 12:38:04'); INSERT INTO `sys_job_log` VALUES (5821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 12:38:06'); INSERT INTO `sys_job_log` VALUES (5822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-10 12:38:14'); INSERT INTO `sys_job_log` VALUES (5823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-10 12:40:05'); INSERT INTO `sys_job_log` VALUES (5824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-10 12:40:06'); INSERT INTO `sys_job_log` VALUES (5825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-10 12:40:14'); INSERT INTO `sys_job_log` VALUES (5826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1236毫秒', '0', '', '2022-01-10 12:42:05'); INSERT INTO `sys_job_log` VALUES (5827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 12:42:06'); INSERT INTO `sys_job_log` VALUES (5828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-10 12:42:15'); INSERT INTO `sys_job_log` VALUES (5829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-10 12:44:04'); INSERT INTO `sys_job_log` VALUES (5830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-10 12:44:06'); INSERT INTO `sys_job_log` VALUES (5831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-10 12:44:15'); INSERT INTO `sys_job_log` VALUES (5832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-10 12:46:05'); INSERT INTO `sys_job_log` VALUES (5833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 12:46:06'); INSERT INTO `sys_job_log` VALUES (5834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-10 12:46:15'); INSERT INTO `sys_job_log` VALUES (5835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1238毫秒', '0', '', '2022-01-10 12:48:05'); INSERT INTO `sys_job_log` VALUES (5836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-10 12:48:06'); INSERT INTO `sys_job_log` VALUES (5837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-10 12:48:14'); INSERT INTO `sys_job_log` VALUES (5838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-10 12:50:04'); INSERT INTO `sys_job_log` VALUES (5839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 12:50:06'); INSERT INTO `sys_job_log` VALUES (5840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2006毫秒', '0', '', '2022-01-10 12:50:16'); INSERT INTO `sys_job_log` VALUES (5841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-10 12:52:04'); INSERT INTO `sys_job_log` VALUES (5842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 12:52:06'); INSERT INTO `sys_job_log` VALUES (5843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1204毫秒', '0', '', '2022-01-10 12:52:15'); INSERT INTO `sys_job_log` VALUES (5844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-10 12:54:05'); INSERT INTO `sys_job_log` VALUES (5845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-10 12:54:06'); INSERT INTO `sys_job_log` VALUES (5846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-10 12:54:15'); INSERT INTO `sys_job_log` VALUES (5847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-10 12:56:05'); INSERT INTO `sys_job_log` VALUES (5848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 12:56:06'); INSERT INTO `sys_job_log` VALUES (5849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-10 12:56:15'); INSERT INTO `sys_job_log` VALUES (5850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-10 12:58:05'); INSERT INTO `sys_job_log` VALUES (5851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-10 12:58:06'); INSERT INTO `sys_job_log` VALUES (5852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-10 12:58:14'); INSERT INTO `sys_job_log` VALUES (5853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1219毫秒', '0', '', '2022-01-10 13:00:05'); INSERT INTO `sys_job_log` VALUES (5854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 13:00:06'); INSERT INTO `sys_job_log` VALUES (5855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2011毫秒', '0', '', '2022-01-10 13:00:16'); INSERT INTO `sys_job_log` VALUES (5856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1217毫秒', '0', '', '2022-01-10 13:02:05'); INSERT INTO `sys_job_log` VALUES (5857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-10 13:02:06'); INSERT INTO `sys_job_log` VALUES (5858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-10 13:02:15'); INSERT INTO `sys_job_log` VALUES (5859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-10 13:04:04'); INSERT INTO `sys_job_log` VALUES (5860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-10 13:04:06'); INSERT INTO `sys_job_log` VALUES (5861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-10 13:04:15'); INSERT INTO `sys_job_log` VALUES (5862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-10 13:06:05'); INSERT INTO `sys_job_log` VALUES (5863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-10 13:06:06'); INSERT INTO `sys_job_log` VALUES (5864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-10 13:06:14'); INSERT INTO `sys_job_log` VALUES (5865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-10 13:08:05'); INSERT INTO `sys_job_log` VALUES (5866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-10 13:08:06'); INSERT INTO `sys_job_log` VALUES (5867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-10 13:08:14'); INSERT INTO `sys_job_log` VALUES (5868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-10 13:10:06'); INSERT INTO `sys_job_log` VALUES (5869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-10 13:10:06'); INSERT INTO `sys_job_log` VALUES (5870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-10 13:10:14'); INSERT INTO `sys_job_log` VALUES (5871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1269毫秒', '0', '', '2022-01-10 13:12:05'); INSERT INTO `sys_job_log` VALUES (5872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-10 13:12:06'); INSERT INTO `sys_job_log` VALUES (5873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-10 13:12:15'); INSERT INTO `sys_job_log` VALUES (5874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-10 13:14:05'); INSERT INTO `sys_job_log` VALUES (5875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-10 13:14:06'); INSERT INTO `sys_job_log` VALUES (5876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-10 13:14:15'); INSERT INTO `sys_job_log` VALUES (5877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-10 13:16:05'); INSERT INTO `sys_job_log` VALUES (5878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-10 13:16:06'); INSERT INTO `sys_job_log` VALUES (5879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-10 13:16:15'); INSERT INTO `sys_job_log` VALUES (5880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-10 13:18:05'); INSERT INTO `sys_job_log` VALUES (5881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-10 13:18:06'); INSERT INTO `sys_job_log` VALUES (5882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 13:18:14'); INSERT INTO `sys_job_log` VALUES (5883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-10 13:20:06'); INSERT INTO `sys_job_log` VALUES (5884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-10 13:20:06'); INSERT INTO `sys_job_log` VALUES (5885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-10 13:20:15'); INSERT INTO `sys_job_log` VALUES (5886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-10 13:22:05'); INSERT INTO `sys_job_log` VALUES (5887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-10 13:22:06'); INSERT INTO `sys_job_log` VALUES (5888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-10 13:22:15'); INSERT INTO `sys_job_log` VALUES (5889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1223毫秒', '0', '', '2022-01-10 13:24:05'); INSERT INTO `sys_job_log` VALUES (5890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 13:24:06'); INSERT INTO `sys_job_log` VALUES (5891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-10 13:24:15'); INSERT INTO `sys_job_log` VALUES (5892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2022-01-10 13:26:05'); INSERT INTO `sys_job_log` VALUES (5893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-10 13:26:07'); INSERT INTO `sys_job_log` VALUES (5894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-10 13:26:14'); INSERT INTO `sys_job_log` VALUES (5895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-10 13:28:05'); INSERT INTO `sys_job_log` VALUES (5896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-10 13:28:06'); INSERT INTO `sys_job_log` VALUES (5897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 13:28:14'); INSERT INTO `sys_job_log` VALUES (5898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-10 13:30:06'); INSERT INTO `sys_job_log` VALUES (5899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-10 13:30:06'); INSERT INTO `sys_job_log` VALUES (5900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-10 13:30:15'); INSERT INTO `sys_job_log` VALUES (5901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-10 13:32:05'); INSERT INTO `sys_job_log` VALUES (5902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-10 13:32:06'); INSERT INTO `sys_job_log` VALUES (5903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 13:32:14'); INSERT INTO `sys_job_log` VALUES (5904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-10 13:34:05'); INSERT INTO `sys_job_log` VALUES (5905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 13:34:06'); INSERT INTO `sys_job_log` VALUES (5906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-10 13:34:15'); INSERT INTO `sys_job_log` VALUES (5907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-10 13:36:05'); INSERT INTO `sys_job_log` VALUES (5908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 13:36:06'); INSERT INTO `sys_job_log` VALUES (5909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-10 13:36:14'); INSERT INTO `sys_job_log` VALUES (5910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 13:38:04'); INSERT INTO `sys_job_log` VALUES (5911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-10 13:38:06'); INSERT INTO `sys_job_log` VALUES (5912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-10 13:38:14'); INSERT INTO `sys_job_log` VALUES (5913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 13:40:04'); INSERT INTO `sys_job_log` VALUES (5914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-10 13:40:06'); INSERT INTO `sys_job_log` VALUES (5915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-10 13:40:16'); INSERT INTO `sys_job_log` VALUES (5916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-10 13:42:04'); INSERT INTO `sys_job_log` VALUES (5917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 13:42:06'); INSERT INTO `sys_job_log` VALUES (5918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-10 13:42:14'); INSERT INTO `sys_job_log` VALUES (5919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1495毫秒', '0', '', '2022-01-10 13:44:05'); INSERT INTO `sys_job_log` VALUES (5920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 13:44:06'); INSERT INTO `sys_job_log` VALUES (5921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 13:44:14'); INSERT INTO `sys_job_log` VALUES (5922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1219毫秒', '0', '', '2022-01-10 13:46:05'); INSERT INTO `sys_job_log` VALUES (5923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 13:46:06'); INSERT INTO `sys_job_log` VALUES (5924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 13:46:14'); INSERT INTO `sys_job_log` VALUES (5925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-10 13:48:04'); INSERT INTO `sys_job_log` VALUES (5926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 13:48:06'); INSERT INTO `sys_job_log` VALUES (5927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 13:48:14'); INSERT INTO `sys_job_log` VALUES (5928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-10 13:50:04'); INSERT INTO `sys_job_log` VALUES (5929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-10 13:50:06'); INSERT INTO `sys_job_log` VALUES (5930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-10 13:50:14'); INSERT INTO `sys_job_log` VALUES (5931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-10 13:52:05'); INSERT INTO `sys_job_log` VALUES (5932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-10 13:52:06'); INSERT INTO `sys_job_log` VALUES (5933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-10 13:52:15'); INSERT INTO `sys_job_log` VALUES (5934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-10 13:54:04'); INSERT INTO `sys_job_log` VALUES (5935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-10 13:54:06'); INSERT INTO `sys_job_log` VALUES (5936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-10 13:54:15'); INSERT INTO `sys_job_log` VALUES (5937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-10 13:56:05'); INSERT INTO `sys_job_log` VALUES (5938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-10 13:56:06'); INSERT INTO `sys_job_log` VALUES (5939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1213毫秒', '0', '', '2022-01-10 13:56:15'); INSERT INTO `sys_job_log` VALUES (5940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1222毫秒', '0', '', '2022-01-10 13:58:05'); INSERT INTO `sys_job_log` VALUES (5941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-10 13:58:06'); INSERT INTO `sys_job_log` VALUES (5942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-10 13:58:14'); INSERT INTO `sys_job_log` VALUES (5943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-10 14:00:04'); INSERT INTO `sys_job_log` VALUES (5944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-10 14:00:06'); INSERT INTO `sys_job_log` VALUES (5945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-10 14:00:14'); INSERT INTO `sys_job_log` VALUES (5946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1234毫秒', '0', '', '2022-01-10 14:02:05'); INSERT INTO `sys_job_log` VALUES (5947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 14:02:06'); INSERT INTO `sys_job_log` VALUES (5948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-10 14:02:15'); INSERT INTO `sys_job_log` VALUES (5949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-10 14:04:05'); INSERT INTO `sys_job_log` VALUES (5950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-10 14:04:06'); INSERT INTO `sys_job_log` VALUES (5951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-10 14:04:14'); INSERT INTO `sys_job_log` VALUES (5952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-10 14:06:05'); INSERT INTO `sys_job_log` VALUES (5953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-10 14:06:06'); INSERT INTO `sys_job_log` VALUES (5954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-10 14:06:15'); INSERT INTO `sys_job_log` VALUES (5955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-10 14:08:04'); INSERT INTO `sys_job_log` VALUES (5956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 14:08:06'); INSERT INTO `sys_job_log` VALUES (5957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-10 14:08:14'); INSERT INTO `sys_job_log` VALUES (5958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-10 14:10:04'); INSERT INTO `sys_job_log` VALUES (5959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-10 14:10:06'); INSERT INTO `sys_job_log` VALUES (5960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-10 14:10:14'); INSERT INTO `sys_job_log` VALUES (5961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-10 14:12:04'); INSERT INTO `sys_job_log` VALUES (5962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 14:12:06'); INSERT INTO `sys_job_log` VALUES (5963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-10 14:12:16'); INSERT INTO `sys_job_log` VALUES (5964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-10 14:14:05'); INSERT INTO `sys_job_log` VALUES (5965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-10 14:14:06'); INSERT INTO `sys_job_log` VALUES (5966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-10 14:14:14'); INSERT INTO `sys_job_log` VALUES (5967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-10 14:16:05'); INSERT INTO `sys_job_log` VALUES (5968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-10 14:16:06'); INSERT INTO `sys_job_log` VALUES (5969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1221毫秒', '0', '', '2022-01-10 14:16:15'); INSERT INTO `sys_job_log` VALUES (5970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-10 14:18:05'); INSERT INTO `sys_job_log` VALUES (5971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-10 14:18:06'); INSERT INTO `sys_job_log` VALUES (5972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 14:18:14'); INSERT INTO `sys_job_log` VALUES (5973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2022-01-10 14:20:05'); INSERT INTO `sys_job_log` VALUES (5974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-10 14:20:06'); INSERT INTO `sys_job_log` VALUES (5975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-10 14:20:15'); INSERT INTO `sys_job_log` VALUES (5976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-10 14:22:04'); INSERT INTO `sys_job_log` VALUES (5977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 14:22:06'); INSERT INTO `sys_job_log` VALUES (5978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-10 14:22:14'); INSERT INTO `sys_job_log` VALUES (5979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-10 14:24:04'); INSERT INTO `sys_job_log` VALUES (5980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 14:24:06'); INSERT INTO `sys_job_log` VALUES (5981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-10 14:24:15'); INSERT INTO `sys_job_log` VALUES (5982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-10 14:26:05'); INSERT INTO `sys_job_log` VALUES (5983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-10 14:26:06'); INSERT INTO `sys_job_log` VALUES (5984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-10 14:26:15'); INSERT INTO `sys_job_log` VALUES (5985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-10 14:28:04'); INSERT INTO `sys_job_log` VALUES (5986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 14:28:06'); INSERT INTO `sys_job_log` VALUES (5987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-10 14:28:14'); INSERT INTO `sys_job_log` VALUES (5988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-10 14:30:05'); INSERT INTO `sys_job_log` VALUES (5989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 14:30:06'); INSERT INTO `sys_job_log` VALUES (5990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-10 14:30:15'); INSERT INTO `sys_job_log` VALUES (5991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 14:32:04'); INSERT INTO `sys_job_log` VALUES (5992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1264毫秒', '0', '', '2022-01-10 14:32:07'); INSERT INTO `sys_job_log` VALUES (5993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 14:32:14'); INSERT INTO `sys_job_log` VALUES (5994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-10 14:34:04'); INSERT INTO `sys_job_log` VALUES (5995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-10 14:34:06'); INSERT INTO `sys_job_log` VALUES (5996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-10 14:34:14'); INSERT INTO `sys_job_log` VALUES (5997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-10 14:36:05'); INSERT INTO `sys_job_log` VALUES (5998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-10 14:36:06'); INSERT INTO `sys_job_log` VALUES (5999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1197毫秒', '0', '', '2022-01-10 14:36:15'); INSERT INTO `sys_job_log` VALUES (6000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1234毫秒', '0', '', '2022-01-10 14:38:05'); INSERT INTO `sys_job_log` VALUES (6001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 14:38:06'); INSERT INTO `sys_job_log` VALUES (6002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 14:38:14'); INSERT INTO `sys_job_log` VALUES (6003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-10 14:40:05'); INSERT INTO `sys_job_log` VALUES (6004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-10 14:40:06'); INSERT INTO `sys_job_log` VALUES (6005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-10 14:40:15'); INSERT INTO `sys_job_log` VALUES (6006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-10 14:42:04'); INSERT INTO `sys_job_log` VALUES (6007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-10 14:42:06'); INSERT INTO `sys_job_log` VALUES (6008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-10 14:42:14'); INSERT INTO `sys_job_log` VALUES (6009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-10 14:44:04'); INSERT INTO `sys_job_log` VALUES (6010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-10 14:44:06'); INSERT INTO `sys_job_log` VALUES (6011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1789毫秒', '0', '', '2022-01-10 14:44:15'); INSERT INTO `sys_job_log` VALUES (6012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-10 14:46:05'); INSERT INTO `sys_job_log` VALUES (6013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-10 14:46:06'); INSERT INTO `sys_job_log` VALUES (6014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-10 14:46:15'); INSERT INTO `sys_job_log` VALUES (6015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1134毫秒', '0', '', '2022-01-10 14:48:05'); INSERT INTO `sys_job_log` VALUES (6016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-10 14:48:06'); INSERT INTO `sys_job_log` VALUES (6017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 14:48:14'); INSERT INTO `sys_job_log` VALUES (6018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-10 14:50:05'); INSERT INTO `sys_job_log` VALUES (6019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 14:50:06'); INSERT INTO `sys_job_log` VALUES (6020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1220毫秒', '0', '', '2022-01-10 14:50:15'); INSERT INTO `sys_job_log` VALUES (6021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 14:52:04'); INSERT INTO `sys_job_log` VALUES (6022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 14:52:06'); INSERT INTO `sys_job_log` VALUES (6023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-10 14:52:14'); INSERT INTO `sys_job_log` VALUES (6024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-10 14:54:04'); INSERT INTO `sys_job_log` VALUES (6025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-10 14:54:06'); INSERT INTO `sys_job_log` VALUES (6026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-10 14:54:14'); INSERT INTO `sys_job_log` VALUES (6027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-10 14:56:05'); INSERT INTO `sys_job_log` VALUES (6028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-10 14:56:06'); INSERT INTO `sys_job_log` VALUES (6029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-10 14:56:15'); INSERT INTO `sys_job_log` VALUES (6030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-10 14:58:05'); INSERT INTO `sys_job_log` VALUES (6031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 14:58:06'); INSERT INTO `sys_job_log` VALUES (6032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-10 14:58:14'); INSERT INTO `sys_job_log` VALUES (6033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-10 15:00:05'); INSERT INTO `sys_job_log` VALUES (6034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 15:00:06'); INSERT INTO `sys_job_log` VALUES (6035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-10 15:00:15'); INSERT INTO `sys_job_log` VALUES (6036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-10 15:02:04'); INSERT INTO `sys_job_log` VALUES (6037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 15:02:06'); INSERT INTO `sys_job_log` VALUES (6038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-10 15:02:14'); INSERT INTO `sys_job_log` VALUES (6039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-10 15:04:04'); INSERT INTO `sys_job_log` VALUES (6040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 15:04:06'); INSERT INTO `sys_job_log` VALUES (6041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-10 15:04:14'); INSERT INTO `sys_job_log` VALUES (6042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-10 15:06:04'); INSERT INTO `sys_job_log` VALUES (6043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 15:06:06'); INSERT INTO `sys_job_log` VALUES (6044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-10 15:06:14'); INSERT INTO `sys_job_log` VALUES (6045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-10 15:08:05'); INSERT INTO `sys_job_log` VALUES (6046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 15:08:06'); INSERT INTO `sys_job_log` VALUES (6047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 15:08:14'); INSERT INTO `sys_job_log` VALUES (6048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-10 15:10:05'); INSERT INTO `sys_job_log` VALUES (6049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-10 15:10:06'); INSERT INTO `sys_job_log` VALUES (6050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-10 15:10:15'); INSERT INTO `sys_job_log` VALUES (6051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-10 15:12:04'); INSERT INTO `sys_job_log` VALUES (6052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-10 15:12:06'); INSERT INTO `sys_job_log` VALUES (6053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-10 15:12:14'); INSERT INTO `sys_job_log` VALUES (6054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-10 15:14:04'); INSERT INTO `sys_job_log` VALUES (6055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-10 15:14:06'); INSERT INTO `sys_job_log` VALUES (6056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-10 15:14:15'); INSERT INTO `sys_job_log` VALUES (6057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 15:16:04'); INSERT INTO `sys_job_log` VALUES (6058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-10 15:16:06'); INSERT INTO `sys_job_log` VALUES (6059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-10 15:16:14'); INSERT INTO `sys_job_log` VALUES (6060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-10 15:18:05'); INSERT INTO `sys_job_log` VALUES (6061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-10 15:18:06'); INSERT INTO `sys_job_log` VALUES (6062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-10 15:18:14'); INSERT INTO `sys_job_log` VALUES (6063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-10 15:20:05'); INSERT INTO `sys_job_log` VALUES (6064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-10 15:20:06'); INSERT INTO `sys_job_log` VALUES (6065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-10 15:20:15'); INSERT INTO `sys_job_log` VALUES (6066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-10 15:22:05'); INSERT INTO `sys_job_log` VALUES (6067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 15:22:06'); INSERT INTO `sys_job_log` VALUES (6068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-10 15:22:14'); INSERT INTO `sys_job_log` VALUES (6069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 15:24:04'); INSERT INTO `sys_job_log` VALUES (6070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-10 15:24:06'); INSERT INTO `sys_job_log` VALUES (6071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 15:24:14'); INSERT INTO `sys_job_log` VALUES (6072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-10 15:26:04'); INSERT INTO `sys_job_log` VALUES (6073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-10 15:26:07'); INSERT INTO `sys_job_log` VALUES (6074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-10 15:26:14'); INSERT INTO `sys_job_log` VALUES (6075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-10 15:28:05'); INSERT INTO `sys_job_log` VALUES (6076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-10 15:28:06'); INSERT INTO `sys_job_log` VALUES (6077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-10 15:28:14'); INSERT INTO `sys_job_log` VALUES (6078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-10 15:30:04'); INSERT INTO `sys_job_log` VALUES (6079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 15:30:06'); INSERT INTO `sys_job_log` VALUES (6080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-10 15:30:15'); INSERT INTO `sys_job_log` VALUES (6081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-10 15:32:04'); INSERT INTO `sys_job_log` VALUES (6082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 15:32:06'); INSERT INTO `sys_job_log` VALUES (6083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-10 15:32:14'); INSERT INTO `sys_job_log` VALUES (6084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-10 15:34:05'); INSERT INTO `sys_job_log` VALUES (6085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-10 15:34:06'); INSERT INTO `sys_job_log` VALUES (6086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-10 15:34:14'); INSERT INTO `sys_job_log` VALUES (6087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-10 15:36:05'); INSERT INTO `sys_job_log` VALUES (6088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 15:36:06'); INSERT INTO `sys_job_log` VALUES (6089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-10 15:36:14'); INSERT INTO `sys_job_log` VALUES (6090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-10 15:38:04'); INSERT INTO `sys_job_log` VALUES (6091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-10 15:38:06'); INSERT INTO `sys_job_log` VALUES (6092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-10 15:38:14'); INSERT INTO `sys_job_log` VALUES (6093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1223毫秒', '0', '', '2022-01-10 15:40:05'); INSERT INTO `sys_job_log` VALUES (6094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 15:40:06'); INSERT INTO `sys_job_log` VALUES (6095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-10 15:40:15'); INSERT INTO `sys_job_log` VALUES (6096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-10 15:42:04'); INSERT INTO `sys_job_log` VALUES (6097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 15:42:06'); INSERT INTO `sys_job_log` VALUES (6098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-10 15:42:14'); INSERT INTO `sys_job_log` VALUES (6099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 15:44:04'); INSERT INTO `sys_job_log` VALUES (6100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-10 15:44:06'); INSERT INTO `sys_job_log` VALUES (6101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1077毫秒', '0', '', '2022-01-10 15:44:15'); INSERT INTO `sys_job_log` VALUES (6102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-10 15:46:04'); INSERT INTO `sys_job_log` VALUES (6103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-10 15:46:07'); INSERT INTO `sys_job_log` VALUES (6104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-10 15:46:14'); INSERT INTO `sys_job_log` VALUES (6105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-10 15:48:04'); INSERT INTO `sys_job_log` VALUES (6106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-10 15:48:06'); INSERT INTO `sys_job_log` VALUES (6107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-10 15:48:14'); INSERT INTO `sys_job_log` VALUES (6108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-10 15:50:05'); INSERT INTO `sys_job_log` VALUES (6109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-10 15:50:06'); INSERT INTO `sys_job_log` VALUES (6110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-10 15:50:15'); INSERT INTO `sys_job_log` VALUES (6111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-10 15:52:04'); INSERT INTO `sys_job_log` VALUES (6112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-10 15:52:06'); INSERT INTO `sys_job_log` VALUES (6113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-10 15:52:14'); INSERT INTO `sys_job_log` VALUES (6114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1250毫秒', '0', '', '2022-01-10 15:54:05'); INSERT INTO `sys_job_log` VALUES (6115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-10 15:54:06'); INSERT INTO `sys_job_log` VALUES (6116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2022-01-10 15:54:15'); INSERT INTO `sys_job_log` VALUES (6117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-10 15:56:05'); INSERT INTO `sys_job_log` VALUES (6118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-10 15:56:06'); INSERT INTO `sys_job_log` VALUES (6119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-10 15:56:15'); INSERT INTO `sys_job_log` VALUES (6120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-10 15:58:05'); INSERT INTO `sys_job_log` VALUES (6121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-10 15:58:06'); INSERT INTO `sys_job_log` VALUES (6122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-10 15:58:14'); INSERT INTO `sys_job_log` VALUES (6123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-10 16:00:04'); INSERT INTO `sys_job_log` VALUES (6124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-10 16:00:06'); INSERT INTO `sys_job_log` VALUES (6125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-10 16:00:14'); INSERT INTO `sys_job_log` VALUES (6126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-10 16:02:05'); INSERT INTO `sys_job_log` VALUES (6127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 16:02:06'); INSERT INTO `sys_job_log` VALUES (6128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 16:02:14'); INSERT INTO `sys_job_log` VALUES (6129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1230毫秒', '0', '', '2022-01-10 16:04:05'); INSERT INTO `sys_job_log` VALUES (6130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-10 16:04:06'); INSERT INTO `sys_job_log` VALUES (6131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-10 16:04:15'); INSERT INTO `sys_job_log` VALUES (6132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-10 16:06:05'); INSERT INTO `sys_job_log` VALUES (6133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 16:06:06'); INSERT INTO `sys_job_log` VALUES (6134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-10 16:06:15'); INSERT INTO `sys_job_log` VALUES (6135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 16:08:04'); INSERT INTO `sys_job_log` VALUES (6136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-10 16:08:06'); INSERT INTO `sys_job_log` VALUES (6137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-10 16:08:14'); INSERT INTO `sys_job_log` VALUES (6138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 16:10:04'); INSERT INTO `sys_job_log` VALUES (6139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 16:10:06'); INSERT INTO `sys_job_log` VALUES (6140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-10 16:10:14'); INSERT INTO `sys_job_log` VALUES (6141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-10 16:12:04'); INSERT INTO `sys_job_log` VALUES (6142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 16:12:06'); INSERT INTO `sys_job_log` VALUES (6143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-10 16:12:15'); INSERT INTO `sys_job_log` VALUES (6144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-10 16:14:04'); INSERT INTO `sys_job_log` VALUES (6145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-10 16:14:06'); INSERT INTO `sys_job_log` VALUES (6146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-10 16:14:15'); INSERT INTO `sys_job_log` VALUES (6147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 16:16:04'); INSERT INTO `sys_job_log` VALUES (6148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-10 16:16:06'); INSERT INTO `sys_job_log` VALUES (6149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-10 16:16:14'); INSERT INTO `sys_job_log` VALUES (6150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1272毫秒', '0', '', '2022-01-10 16:18:05'); INSERT INTO `sys_job_log` VALUES (6151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-10 16:18:06'); INSERT INTO `sys_job_log` VALUES (6152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-10 16:18:14'); INSERT INTO `sys_job_log` VALUES (6153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-10 16:20:05'); INSERT INTO `sys_job_log` VALUES (6154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-10 16:20:06'); INSERT INTO `sys_job_log` VALUES (6155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-10 16:20:14'); INSERT INTO `sys_job_log` VALUES (6156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-10 16:22:05'); INSERT INTO `sys_job_log` VALUES (6157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-10 16:22:06'); INSERT INTO `sys_job_log` VALUES (6158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 16:22:14'); INSERT INTO `sys_job_log` VALUES (6159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-10 16:24:04'); INSERT INTO `sys_job_log` VALUES (6160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 16:24:06'); INSERT INTO `sys_job_log` VALUES (6161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-10 16:24:15'); INSERT INTO `sys_job_log` VALUES (6162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-10 16:26:05'); INSERT INTO `sys_job_log` VALUES (6163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 16:26:06'); INSERT INTO `sys_job_log` VALUES (6164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-10 16:26:15'); INSERT INTO `sys_job_log` VALUES (6165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-10 16:28:05'); INSERT INTO `sys_job_log` VALUES (6166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-10 16:28:06'); INSERT INTO `sys_job_log` VALUES (6167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-10 16:28:14'); INSERT INTO `sys_job_log` VALUES (6168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-10 16:30:05'); INSERT INTO `sys_job_log` VALUES (6169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1082毫秒', '0', '', '2022-01-10 16:30:07'); INSERT INTO `sys_job_log` VALUES (6170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-10 16:30:14'); INSERT INTO `sys_job_log` VALUES (6171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-10 16:32:05'); INSERT INTO `sys_job_log` VALUES (6172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-10 16:32:06'); INSERT INTO `sys_job_log` VALUES (6173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1169毫秒', '0', '', '2022-01-10 16:32:15'); INSERT INTO `sys_job_log` VALUES (6174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-10 16:34:05'); INSERT INTO `sys_job_log` VALUES (6175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 16:34:06'); INSERT INTO `sys_job_log` VALUES (6176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-10 16:34:15'); INSERT INTO `sys_job_log` VALUES (6177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-10 16:36:05'); INSERT INTO `sys_job_log` VALUES (6178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-10 16:36:06'); INSERT INTO `sys_job_log` VALUES (6179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-10 16:36:14'); INSERT INTO `sys_job_log` VALUES (6180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 16:38:04'); INSERT INTO `sys_job_log` VALUES (6181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-10 16:38:06'); INSERT INTO `sys_job_log` VALUES (6182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-10 16:38:14'); INSERT INTO `sys_job_log` VALUES (6183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-10 16:40:05'); INSERT INTO `sys_job_log` VALUES (6184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-10 16:40:06'); INSERT INTO `sys_job_log` VALUES (6185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-10 16:40:14'); INSERT INTO `sys_job_log` VALUES (6186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-10 16:42:04'); INSERT INTO `sys_job_log` VALUES (6187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 16:42:06'); INSERT INTO `sys_job_log` VALUES (6188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1077毫秒', '0', '', '2022-01-10 16:42:15'); INSERT INTO `sys_job_log` VALUES (6189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-10 16:44:04'); INSERT INTO `sys_job_log` VALUES (6190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 16:44:06'); INSERT INTO `sys_job_log` VALUES (6191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-10 16:44:15'); INSERT INTO `sys_job_log` VALUES (6192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-10 16:46:04'); INSERT INTO `sys_job_log` VALUES (6193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 16:46:06'); INSERT INTO `sys_job_log` VALUES (6194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-10 16:46:15'); INSERT INTO `sys_job_log` VALUES (6195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-10 16:48:05'); INSERT INTO `sys_job_log` VALUES (6196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-10 16:48:06'); INSERT INTO `sys_job_log` VALUES (6197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-10 16:48:14'); INSERT INTO `sys_job_log` VALUES (6198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2022-01-10 16:50:05'); INSERT INTO `sys_job_log` VALUES (6199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-10 16:50:06'); INSERT INTO `sys_job_log` VALUES (6200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1228毫秒', '0', '', '2022-01-10 16:50:15'); INSERT INTO `sys_job_log` VALUES (6201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-10 16:52:04'); INSERT INTO `sys_job_log` VALUES (6202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-10 16:52:06'); INSERT INTO `sys_job_log` VALUES (6203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-10 16:52:14'); INSERT INTO `sys_job_log` VALUES (6204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-10 16:54:05'); INSERT INTO `sys_job_log` VALUES (6205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-10 16:54:06'); INSERT INTO `sys_job_log` VALUES (6206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-10 16:54:14'); INSERT INTO `sys_job_log` VALUES (6207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-10 16:56:05'); INSERT INTO `sys_job_log` VALUES (6208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-10 16:56:06'); INSERT INTO `sys_job_log` VALUES (6209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-10 16:56:14'); INSERT INTO `sys_job_log` VALUES (6210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-10 16:58:05'); INSERT INTO `sys_job_log` VALUES (6211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 16:58:06'); INSERT INTO `sys_job_log` VALUES (6212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-10 16:58:14'); INSERT INTO `sys_job_log` VALUES (6213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-10 17:00:05'); INSERT INTO `sys_job_log` VALUES (6214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-10 17:00:06'); INSERT INTO `sys_job_log` VALUES (6215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-10 17:00:15'); INSERT INTO `sys_job_log` VALUES (6216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1272毫秒', '0', '', '2022-01-10 17:02:05'); INSERT INTO `sys_job_log` VALUES (6217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-10 17:02:06'); INSERT INTO `sys_job_log` VALUES (6218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-10 17:02:15'); INSERT INTO `sys_job_log` VALUES (6219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-10 17:04:05'); INSERT INTO `sys_job_log` VALUES (6220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-10 17:04:06'); INSERT INTO `sys_job_log` VALUES (6221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-10 17:04:14'); INSERT INTO `sys_job_log` VALUES (6222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-10 17:06:04'); INSERT INTO `sys_job_log` VALUES (6223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 17:06:06'); INSERT INTO `sys_job_log` VALUES (6224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1214毫秒', '0', '', '2022-01-10 17:06:15'); INSERT INTO `sys_job_log` VALUES (6225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1226毫秒', '0', '', '2022-01-10 17:08:05'); INSERT INTO `sys_job_log` VALUES (6226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-10 17:08:06'); INSERT INTO `sys_job_log` VALUES (6227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-10 17:08:14'); INSERT INTO `sys_job_log` VALUES (6228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1125毫秒', '0', '', '2022-01-10 17:10:05'); INSERT INTO `sys_job_log` VALUES (6229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-10 17:10:06'); INSERT INTO `sys_job_log` VALUES (6230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 17:10:14'); INSERT INTO `sys_job_log` VALUES (6231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-10 17:12:05'); INSERT INTO `sys_job_log` VALUES (6232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-10 17:12:06'); INSERT INTO `sys_job_log` VALUES (6233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-10 17:12:14'); INSERT INTO `sys_job_log` VALUES (6234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-10 17:14:05'); INSERT INTO `sys_job_log` VALUES (6235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 17:14:06'); INSERT INTO `sys_job_log` VALUES (6236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-10 17:14:14'); INSERT INTO `sys_job_log` VALUES (6237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 17:16:04'); INSERT INTO `sys_job_log` VALUES (6238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-10 17:16:07'); INSERT INTO `sys_job_log` VALUES (6239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-10 17:16:14'); INSERT INTO `sys_job_log` VALUES (6240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-10 17:18:05'); INSERT INTO `sys_job_log` VALUES (6241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-10 17:18:06'); INSERT INTO `sys_job_log` VALUES (6242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-10 17:18:14'); INSERT INTO `sys_job_log` VALUES (6243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-10 17:20:05'); INSERT INTO `sys_job_log` VALUES (6244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 17:20:06'); INSERT INTO `sys_job_log` VALUES (6245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-10 17:20:15'); INSERT INTO `sys_job_log` VALUES (6246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-10 17:22:04'); INSERT INTO `sys_job_log` VALUES (6247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 17:22:06'); INSERT INTO `sys_job_log` VALUES (6248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-10 17:22:14'); INSERT INTO `sys_job_log` VALUES (6249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 17:24:04'); INSERT INTO `sys_job_log` VALUES (6250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-10 17:24:06'); INSERT INTO `sys_job_log` VALUES (6251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-10 17:24:15'); INSERT INTO `sys_job_log` VALUES (6252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-10 17:26:05'); INSERT INTO `sys_job_log` VALUES (6253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 17:26:06'); INSERT INTO `sys_job_log` VALUES (6254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1170毫秒', '0', '', '2022-01-10 17:26:15'); INSERT INTO `sys_job_log` VALUES (6255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-10 17:28:04'); INSERT INTO `sys_job_log` VALUES (6256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-10 17:28:06'); INSERT INTO `sys_job_log` VALUES (6257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-10 17:28:14'); INSERT INTO `sys_job_log` VALUES (6258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-10 17:30:05'); INSERT INTO `sys_job_log` VALUES (6259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-10 17:30:06'); INSERT INTO `sys_job_log` VALUES (6260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-10 17:30:15'); INSERT INTO `sys_job_log` VALUES (6261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1257毫秒', '0', '', '2022-01-10 17:32:05'); INSERT INTO `sys_job_log` VALUES (6262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-10 17:32:06'); INSERT INTO `sys_job_log` VALUES (6263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-10 17:32:14'); INSERT INTO `sys_job_log` VALUES (6264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-10 17:34:05'); INSERT INTO `sys_job_log` VALUES (6265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 17:34:06'); INSERT INTO `sys_job_log` VALUES (6266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-10 17:34:15'); INSERT INTO `sys_job_log` VALUES (6267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-10 17:36:05'); INSERT INTO `sys_job_log` VALUES (6268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-10 17:36:06'); INSERT INTO `sys_job_log` VALUES (6269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 17:36:14'); INSERT INTO `sys_job_log` VALUES (6270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-10 22:02:11'); INSERT INTO `sys_job_log` VALUES (6271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:4毫秒', '0', '', '2022-01-10 22:02:11'); INSERT INTO `sys_job_log` VALUES (6272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-10 22:02:14'); INSERT INTO `sys_job_log` VALUES (6273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-10 22:04:04'); INSERT INTO `sys_job_log` VALUES (6274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-10 22:04:06'); INSERT INTO `sys_job_log` VALUES (6275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-10 22:04:14'); INSERT INTO `sys_job_log` VALUES (6276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:288毫秒', '0', '', '2022-01-10 22:06:04'); INSERT INTO `sys_job_log` VALUES (6277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-10 22:06:06'); INSERT INTO `sys_job_log` VALUES (6278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-10 22:06:14'); INSERT INTO `sys_job_log` VALUES (6279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:281毫秒', '0', '', '2022-01-10 22:08:04'); INSERT INTO `sys_job_log` VALUES (6280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-10 22:08:06'); INSERT INTO `sys_job_log` VALUES (6281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-10 22:08:14'); INSERT INTO `sys_job_log` VALUES (6282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-10 22:10:04'); INSERT INTO `sys_job_log` VALUES (6283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-10 22:10:06'); INSERT INTO `sys_job_log` VALUES (6284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-10 22:10:14'); INSERT INTO `sys_job_log` VALUES (6285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-10 22:12:04'); INSERT INTO `sys_job_log` VALUES (6286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-10 22:12:06'); INSERT INTO `sys_job_log` VALUES (6287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-10 22:12:14'); INSERT INTO `sys_job_log` VALUES (6288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-10 22:14:04'); INSERT INTO `sys_job_log` VALUES (6289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-10 22:14:06'); INSERT INTO `sys_job_log` VALUES (6290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-10 22:14:14'); INSERT INTO `sys_job_log` VALUES (6291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:296毫秒', '0', '', '2022-01-10 22:16:04'); INSERT INTO `sys_job_log` VALUES (6292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-10 22:16:06'); INSERT INTO `sys_job_log` VALUES (6293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-10 22:16:14'); INSERT INTO `sys_job_log` VALUES (6294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-10 22:18:04'); INSERT INTO `sys_job_log` VALUES (6295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-10 22:18:06'); INSERT INTO `sys_job_log` VALUES (6296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-10 22:18:14'); INSERT INTO `sys_job_log` VALUES (6297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-10 22:20:04'); INSERT INTO `sys_job_log` VALUES (6298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-10 22:20:06'); INSERT INTO `sys_job_log` VALUES (6299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-10 22:20:14'); INSERT INTO `sys_job_log` VALUES (6300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-10 22:22:04'); INSERT INTO `sys_job_log` VALUES (6301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-10 22:22:06'); INSERT INTO `sys_job_log` VALUES (6302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-10 22:22:14'); INSERT INTO `sys_job_log` VALUES (6303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-10 22:24:04'); INSERT INTO `sys_job_log` VALUES (6304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:272毫秒', '0', '', '2022-01-10 22:24:06'); INSERT INTO `sys_job_log` VALUES (6305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-10 22:24:14'); INSERT INTO `sys_job_log` VALUES (6306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:290毫秒', '0', '', '2022-01-10 22:26:04'); INSERT INTO `sys_job_log` VALUES (6307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-10 22:26:06'); INSERT INTO `sys_job_log` VALUES (6308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-10 22:26:14'); INSERT INTO `sys_job_log` VALUES (6309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-10 22:28:04'); INSERT INTO `sys_job_log` VALUES (6310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-10 22:28:06'); INSERT INTO `sys_job_log` VALUES (6311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-10 22:28:14'); INSERT INTO `sys_job_log` VALUES (6312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-10 22:30:04'); INSERT INTO `sys_job_log` VALUES (6313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-10 22:30:06'); INSERT INTO `sys_job_log` VALUES (6314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-10 22:30:14'); INSERT INTO `sys_job_log` VALUES (6315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-10 22:32:04'); INSERT INTO `sys_job_log` VALUES (6316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-10 22:32:06'); INSERT INTO `sys_job_log` VALUES (6317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-10 22:32:14'); INSERT INTO `sys_job_log` VALUES (6318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-10 22:34:04'); INSERT INTO `sys_job_log` VALUES (6319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-10 22:34:06'); INSERT INTO `sys_job_log` VALUES (6320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-10 22:34:14'); INSERT INTO `sys_job_log` VALUES (6321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:292毫秒', '0', '', '2022-01-10 22:36:04'); INSERT INTO `sys_job_log` VALUES (6322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-10 22:36:06'); INSERT INTO `sys_job_log` VALUES (6323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-10 22:36:14'); INSERT INTO `sys_job_log` VALUES (6324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-10 22:38:04'); INSERT INTO `sys_job_log` VALUES (6325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-10 22:38:06'); INSERT INTO `sys_job_log` VALUES (6326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-10 22:38:14'); INSERT INTO `sys_job_log` VALUES (6327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-10 22:40:04'); INSERT INTO `sys_job_log` VALUES (6328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-10 22:40:06'); INSERT INTO `sys_job_log` VALUES (6329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-10 22:40:14'); INSERT INTO `sys_job_log` VALUES (6330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-10 22:42:04'); INSERT INTO `sys_job_log` VALUES (6331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-10 22:42:06'); INSERT INTO `sys_job_log` VALUES (6332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-10 22:42:14'); INSERT INTO `sys_job_log` VALUES (6333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-10 22:44:04'); INSERT INTO `sys_job_log` VALUES (6334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 22:44:06'); INSERT INTO `sys_job_log` VALUES (6335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-10 22:44:14'); INSERT INTO `sys_job_log` VALUES (6336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:299毫秒', '0', '', '2022-01-10 22:46:04'); INSERT INTO `sys_job_log` VALUES (6337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-10 22:46:06'); INSERT INTO `sys_job_log` VALUES (6338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-10 22:46:14'); INSERT INTO `sys_job_log` VALUES (6339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-10 22:48:04'); INSERT INTO `sys_job_log` VALUES (6340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-10 22:48:06'); INSERT INTO `sys_job_log` VALUES (6341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-10 22:48:14'); INSERT INTO `sys_job_log` VALUES (6342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-10 22:50:04'); INSERT INTO `sys_job_log` VALUES (6343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-10 22:50:06'); INSERT INTO `sys_job_log` VALUES (6344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-10 22:50:14'); INSERT INTO `sys_job_log` VALUES (6345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-10 22:52:04'); INSERT INTO `sys_job_log` VALUES (6346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 22:52:06'); INSERT INTO `sys_job_log` VALUES (6347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-10 22:52:14'); INSERT INTO `sys_job_log` VALUES (6348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-10 22:54:04'); INSERT INTO `sys_job_log` VALUES (6349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-10 22:54:06'); INSERT INTO `sys_job_log` VALUES (6350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-10 22:54:14'); INSERT INTO `sys_job_log` VALUES (6351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-10 22:56:04'); INSERT INTO `sys_job_log` VALUES (6352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-10 22:56:06'); INSERT INTO `sys_job_log` VALUES (6353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-10 22:56:14'); INSERT INTO `sys_job_log` VALUES (6354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-10 22:58:04'); INSERT INTO `sys_job_log` VALUES (6355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-10 22:58:06'); INSERT INTO `sys_job_log` VALUES (6356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-10 22:58:14'); INSERT INTO `sys_job_log` VALUES (6357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-10 23:00:04'); INSERT INTO `sys_job_log` VALUES (6358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-10 23:00:06'); INSERT INTO `sys_job_log` VALUES (6359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-10 23:00:14'); INSERT INTO `sys_job_log` VALUES (6360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-10 23:02:04'); INSERT INTO `sys_job_log` VALUES (6361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-10 23:02:06'); INSERT INTO `sys_job_log` VALUES (6362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-10 23:02:14'); INSERT INTO `sys_job_log` VALUES (6363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-10 23:04:04'); INSERT INTO `sys_job_log` VALUES (6364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-10 23:04:06'); INSERT INTO `sys_job_log` VALUES (6365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-10 23:04:14'); INSERT INTO `sys_job_log` VALUES (6366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-10 23:06:04'); INSERT INTO `sys_job_log` VALUES (6367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 23:06:06'); INSERT INTO `sys_job_log` VALUES (6368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-10 23:06:14'); INSERT INTO `sys_job_log` VALUES (6369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-10 23:08:04'); INSERT INTO `sys_job_log` VALUES (6370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-10 23:08:06'); INSERT INTO `sys_job_log` VALUES (6371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-10 23:08:14'); INSERT INTO `sys_job_log` VALUES (6372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:290毫秒', '0', '', '2022-01-10 23:10:04'); INSERT INTO `sys_job_log` VALUES (6373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-10 23:10:06'); INSERT INTO `sys_job_log` VALUES (6374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-10 23:10:14'); INSERT INTO `sys_job_log` VALUES (6375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-10 23:12:04'); INSERT INTO `sys_job_log` VALUES (6376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-10 23:12:06'); INSERT INTO `sys_job_log` VALUES (6377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1009毫秒', '0', '', '2022-01-10 23:12:15'); INSERT INTO `sys_job_log` VALUES (6378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-10 23:14:04'); INSERT INTO `sys_job_log` VALUES (6379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-10 23:14:06'); INSERT INTO `sys_job_log` VALUES (6380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-10 23:14:14'); INSERT INTO `sys_job_log` VALUES (6381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:400毫秒', '0', '', '2022-01-10 23:16:04'); INSERT INTO `sys_job_log` VALUES (6382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-10 23:16:06'); INSERT INTO `sys_job_log` VALUES (6383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-10 23:16:14'); INSERT INTO `sys_job_log` VALUES (6384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-10 23:18:04'); INSERT INTO `sys_job_log` VALUES (6385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-10 23:18:06'); INSERT INTO `sys_job_log` VALUES (6386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-10 23:18:14'); INSERT INTO `sys_job_log` VALUES (6387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-10 23:20:04'); INSERT INTO `sys_job_log` VALUES (6388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-10 23:20:06'); INSERT INTO `sys_job_log` VALUES (6389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-10 23:20:14'); INSERT INTO `sys_job_log` VALUES (6390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-10 23:22:04'); INSERT INTO `sys_job_log` VALUES (6391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-10 23:22:06'); INSERT INTO `sys_job_log` VALUES (6392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-10 23:22:14'); INSERT INTO `sys_job_log` VALUES (6393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-10 23:24:04'); INSERT INTO `sys_job_log` VALUES (6394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-10 23:24:06'); INSERT INTO `sys_job_log` VALUES (6395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-10 23:24:14'); INSERT INTO `sys_job_log` VALUES (6396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-10 23:26:04'); INSERT INTO `sys_job_log` VALUES (6397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-10 23:26:06'); INSERT INTO `sys_job_log` VALUES (6398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-10 23:26:14'); INSERT INTO `sys_job_log` VALUES (6399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-10 23:28:04'); INSERT INTO `sys_job_log` VALUES (6400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-10 23:28:06'); INSERT INTO `sys_job_log` VALUES (6401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-10 23:28:14'); INSERT INTO `sys_job_log` VALUES (6402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-10 23:30:04'); INSERT INTO `sys_job_log` VALUES (6403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-10 23:30:06'); INSERT INTO `sys_job_log` VALUES (6404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-10 23:30:14'); INSERT INTO `sys_job_log` VALUES (6405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-10 23:32:04'); INSERT INTO `sys_job_log` VALUES (6406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-10 23:32:06'); INSERT INTO `sys_job_log` VALUES (6407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-10 23:32:14'); INSERT INTO `sys_job_log` VALUES (6408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:573毫秒', '0', '', '2022-01-10 23:34:04'); INSERT INTO `sys_job_log` VALUES (6409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-10 23:34:06'); INSERT INTO `sys_job_log` VALUES (6410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-10 23:34:14'); INSERT INTO `sys_job_log` VALUES (6411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:320毫秒', '0', '', '2022-01-10 23:36:04'); INSERT INTO `sys_job_log` VALUES (6412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-10 23:36:06'); INSERT INTO `sys_job_log` VALUES (6413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-10 23:36:14'); INSERT INTO `sys_job_log` VALUES (6414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-10 23:38:04'); INSERT INTO `sys_job_log` VALUES (6415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-10 23:38:06'); INSERT INTO `sys_job_log` VALUES (6416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-10 23:38:14'); INSERT INTO `sys_job_log` VALUES (6417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-10 23:40:04'); INSERT INTO `sys_job_log` VALUES (6418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-10 23:40:06'); INSERT INTO `sys_job_log` VALUES (6419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-10 23:40:14'); INSERT INTO `sys_job_log` VALUES (6420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-10 23:42:04'); INSERT INTO `sys_job_log` VALUES (6421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-10 23:42:06'); INSERT INTO `sys_job_log` VALUES (6422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-10 23:42:14'); INSERT INTO `sys_job_log` VALUES (6423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-10 23:44:04'); INSERT INTO `sys_job_log` VALUES (6424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-10 23:44:06'); INSERT INTO `sys_job_log` VALUES (6425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2454毫秒', '0', '', '2022-01-11 08:42:06'); INSERT INTO `sys_job_log` VALUES (6426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1874毫秒', '0', '', '2022-01-11 08:42:08'); INSERT INTO `sys_job_log` VALUES (6427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1342毫秒', '0', '', '2022-01-11 08:42:15'); INSERT INTO `sys_job_log` VALUES (6428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-11 08:44:04'); INSERT INTO `sys_job_log` VALUES (6429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-11 08:44:06'); INSERT INTO `sys_job_log` VALUES (6430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2018毫秒', '0', '', '2022-01-11 08:44:16'); INSERT INTO `sys_job_log` VALUES (6431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-11 08:46:04'); INSERT INTO `sys_job_log` VALUES (6432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-11 08:46:06'); INSERT INTO `sys_job_log` VALUES (6433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-11 08:46:14'); INSERT INTO `sys_job_log` VALUES (6434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-11 08:48:04'); INSERT INTO `sys_job_log` VALUES (6435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-11 08:48:07'); INSERT INTO `sys_job_log` VALUES (6436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-11 08:48:14'); INSERT INTO `sys_job_log` VALUES (6437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-11 08:50:05'); INSERT INTO `sys_job_log` VALUES (6438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-11 08:50:06'); INSERT INTO `sys_job_log` VALUES (6439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-11 08:50:15'); INSERT INTO `sys_job_log` VALUES (6440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2022-01-11 08:52:05'); INSERT INTO `sys_job_log` VALUES (6441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-11 08:52:06'); INSERT INTO `sys_job_log` VALUES (6442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-11 08:52:14'); INSERT INTO `sys_job_log` VALUES (6443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-11 08:54:04'); INSERT INTO `sys_job_log` VALUES (6444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-11 08:54:06'); INSERT INTO `sys_job_log` VALUES (6445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-11 08:54:15'); INSERT INTO `sys_job_log` VALUES (6446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-11 08:56:05'); INSERT INTO `sys_job_log` VALUES (6447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 08:56:06'); INSERT INTO `sys_job_log` VALUES (6448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-11 08:56:15'); INSERT INTO `sys_job_log` VALUES (6449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-11 08:58:05'); INSERT INTO `sys_job_log` VALUES (6450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-11 08:58:06'); INSERT INTO `sys_job_log` VALUES (6451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-11 08:58:15'); INSERT INTO `sys_job_log` VALUES (6452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-11 09:00:04'); INSERT INTO `sys_job_log` VALUES (6453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-11 09:00:06'); INSERT INTO `sys_job_log` VALUES (6454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-11 09:00:14'); INSERT INTO `sys_job_log` VALUES (6455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-11 09:02:05'); INSERT INTO `sys_job_log` VALUES (6456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-11 09:02:06'); INSERT INTO `sys_job_log` VALUES (6457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-11 09:02:14'); INSERT INTO `sys_job_log` VALUES (6458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-11 09:04:04'); INSERT INTO `sys_job_log` VALUES (6459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 09:04:06'); INSERT INTO `sys_job_log` VALUES (6460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-11 09:04:14'); INSERT INTO `sys_job_log` VALUES (6461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1291毫秒', '0', '', '2022-01-11 09:06:05'); INSERT INTO `sys_job_log` VALUES (6462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-11 09:06:06'); INSERT INTO `sys_job_log` VALUES (6463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-11 09:06:15'); INSERT INTO `sys_job_log` VALUES (6464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-11 09:08:05'); INSERT INTO `sys_job_log` VALUES (6465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 09:08:06'); INSERT INTO `sys_job_log` VALUES (6466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-11 09:08:15'); INSERT INTO `sys_job_log` VALUES (6467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-11 09:10:05'); INSERT INTO `sys_job_log` VALUES (6468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 09:10:06'); INSERT INTO `sys_job_log` VALUES (6469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-11 09:10:14'); INSERT INTO `sys_job_log` VALUES (6470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-11 09:12:04'); INSERT INTO `sys_job_log` VALUES (6471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 09:12:06'); INSERT INTO `sys_job_log` VALUES (6472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-11 09:12:15'); INSERT INTO `sys_job_log` VALUES (6473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-11 09:14:05'); INSERT INTO `sys_job_log` VALUES (6474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 09:14:06'); INSERT INTO `sys_job_log` VALUES (6475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-11 09:14:15'); INSERT INTO `sys_job_log` VALUES (6476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-11 09:16:06'); INSERT INTO `sys_job_log` VALUES (6477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-11 09:16:06'); INSERT INTO `sys_job_log` VALUES (6478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-11 09:16:14'); INSERT INTO `sys_job_log` VALUES (6479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-11 09:18:05'); INSERT INTO `sys_job_log` VALUES (6480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-11 09:18:06'); INSERT INTO `sys_job_log` VALUES (6481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-11 09:18:15'); INSERT INTO `sys_job_log` VALUES (6482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 09:20:04'); INSERT INTO `sys_job_log` VALUES (6483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-11 09:20:06'); INSERT INTO `sys_job_log` VALUES (6484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-11 09:20:15'); INSERT INTO `sys_job_log` VALUES (6485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2007毫秒', '0', '', '2022-01-11 09:22:06'); INSERT INTO `sys_job_log` VALUES (6486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-11 09:22:06'); INSERT INTO `sys_job_log` VALUES (6487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1126毫秒', '0', '', '2022-01-11 09:22:15'); INSERT INTO `sys_job_log` VALUES (6488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 09:24:04'); INSERT INTO `sys_job_log` VALUES (6489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-11 09:24:06'); INSERT INTO `sys_job_log` VALUES (6490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 09:24:14'); INSERT INTO `sys_job_log` VALUES (6491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-11 09:26:05'); INSERT INTO `sys_job_log` VALUES (6492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-11 09:26:06'); INSERT INTO `sys_job_log` VALUES (6493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 09:26:15'); INSERT INTO `sys_job_log` VALUES (6494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-11 09:28:04'); INSERT INTO `sys_job_log` VALUES (6495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 09:28:06'); INSERT INTO `sys_job_log` VALUES (6496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-11 09:28:16'); INSERT INTO `sys_job_log` VALUES (6497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1293毫秒', '0', '', '2022-01-11 09:30:05'); INSERT INTO `sys_job_log` VALUES (6498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 09:30:06'); INSERT INTO `sys_job_log` VALUES (6499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-11 09:30:14'); INSERT INTO `sys_job_log` VALUES (6500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 09:32:05'); INSERT INTO `sys_job_log` VALUES (6501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 09:32:06'); INSERT INTO `sys_job_log` VALUES (6502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-11 09:32:15'); INSERT INTO `sys_job_log` VALUES (6503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-11 09:34:04'); INSERT INTO `sys_job_log` VALUES (6504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 09:34:06'); INSERT INTO `sys_job_log` VALUES (6505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1175毫秒', '0', '', '2022-01-11 09:34:15'); INSERT INTO `sys_job_log` VALUES (6506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-11 09:36:05'); INSERT INTO `sys_job_log` VALUES (6507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 09:36:06'); INSERT INTO `sys_job_log` VALUES (6508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-11 09:36:15'); INSERT INTO `sys_job_log` VALUES (6509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-11 09:38:06'); INSERT INTO `sys_job_log` VALUES (6510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-11 09:38:06'); INSERT INTO `sys_job_log` VALUES (6511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:428毫秒', '0', '', '2022-01-11 09:38:14'); INSERT INTO `sys_job_log` VALUES (6512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-11 09:40:04'); INSERT INTO `sys_job_log` VALUES (6513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-11 09:40:06'); INSERT INTO `sys_job_log` VALUES (6514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-11 09:40:15'); INSERT INTO `sys_job_log` VALUES (6515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1269毫秒', '0', '', '2022-01-11 09:42:05'); INSERT INTO `sys_job_log` VALUES (6516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-11 09:42:06'); INSERT INTO `sys_job_log` VALUES (6517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-11 09:42:14'); INSERT INTO `sys_job_log` VALUES (6518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-11 09:44:04'); INSERT INTO `sys_job_log` VALUES (6519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-11 09:44:06'); INSERT INTO `sys_job_log` VALUES (6520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-11 09:44:15'); INSERT INTO `sys_job_log` VALUES (6521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-11 09:46:05'); INSERT INTO `sys_job_log` VALUES (6522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-11 09:46:06'); INSERT INTO `sys_job_log` VALUES (6523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-11 09:46:14'); INSERT INTO `sys_job_log` VALUES (6524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1145毫秒', '0', '', '2022-01-11 09:48:05'); INSERT INTO `sys_job_log` VALUES (6525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:298毫秒', '0', '', '2022-01-11 09:48:06'); INSERT INTO `sys_job_log` VALUES (6526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-11 09:48:15'); INSERT INTO `sys_job_log` VALUES (6527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:7毫秒', '0', '', '2022-01-11 09:50:04'); INSERT INTO `sys_job_log` VALUES (6528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-11 09:50:06'); INSERT INTO `sys_job_log` VALUES (6529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-11 09:50:14'); INSERT INTO `sys_job_log` VALUES (6530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 09:52:05'); INSERT INTO `sys_job_log` VALUES (6531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1486毫秒', '0', '', '2022-01-11 09:52:07'); INSERT INTO `sys_job_log` VALUES (6532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-11 09:52:14'); INSERT INTO `sys_job_log` VALUES (6533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-11 09:54:04'); INSERT INTO `sys_job_log` VALUES (6534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-11 09:54:06'); INSERT INTO `sys_job_log` VALUES (6535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 09:54:15'); INSERT INTO `sys_job_log` VALUES (6536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-11 09:56:04'); INSERT INTO `sys_job_log` VALUES (6537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-11 09:56:06'); INSERT INTO `sys_job_log` VALUES (6538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-11 09:56:15'); INSERT INTO `sys_job_log` VALUES (6539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-11 09:58:04'); INSERT INTO `sys_job_log` VALUES (6540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 09:58:06'); INSERT INTO `sys_job_log` VALUES (6541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-11 09:58:15'); INSERT INTO `sys_job_log` VALUES (6542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-11 10:00:04'); INSERT INTO `sys_job_log` VALUES (6543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-11 10:00:06'); INSERT INTO `sys_job_log` VALUES (6544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-11 10:00:14'); INSERT INTO `sys_job_log` VALUES (6545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-11 10:02:05'); INSERT INTO `sys_job_log` VALUES (6546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 10:02:06'); INSERT INTO `sys_job_log` VALUES (6547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-11 10:02:14'); INSERT INTO `sys_job_log` VALUES (6548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-11 10:04:04'); INSERT INTO `sys_job_log` VALUES (6549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 10:04:06'); INSERT INTO `sys_job_log` VALUES (6550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-11 10:04:14'); INSERT INTO `sys_job_log` VALUES (6551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-11 10:06:04'); INSERT INTO `sys_job_log` VALUES (6552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 10:06:06'); INSERT INTO `sys_job_log` VALUES (6553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1114毫秒', '0', '', '2022-01-11 10:06:15'); INSERT INTO `sys_job_log` VALUES (6554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-11 10:08:05'); INSERT INTO `sys_job_log` VALUES (6555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 10:08:06'); INSERT INTO `sys_job_log` VALUES (6556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-11 10:08:15'); INSERT INTO `sys_job_log` VALUES (6557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:423毫秒', '0', '', '2022-01-11 10:10:04'); INSERT INTO `sys_job_log` VALUES (6558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 10:10:06'); INSERT INTO `sys_job_log` VALUES (6559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-11 10:10:14'); INSERT INTO `sys_job_log` VALUES (6560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-11 10:12:04'); INSERT INTO `sys_job_log` VALUES (6561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-11 10:12:06'); INSERT INTO `sys_job_log` VALUES (6562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-11 10:12:14'); INSERT INTO `sys_job_log` VALUES (6563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-11 10:14:04'); INSERT INTO `sys_job_log` VALUES (6564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-11 10:14:06'); INSERT INTO `sys_job_log` VALUES (6565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-11 10:14:15'); INSERT INTO `sys_job_log` VALUES (6566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-11 10:16:04'); INSERT INTO `sys_job_log` VALUES (6567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-11 10:16:07'); INSERT INTO `sys_job_log` VALUES (6568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-11 10:16:14'); INSERT INTO `sys_job_log` VALUES (6569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1933毫秒', '0', '', '2022-01-11 10:18:05'); INSERT INTO `sys_job_log` VALUES (6570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-11 10:18:06'); INSERT INTO `sys_job_log` VALUES (6571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1226毫秒', '0', '', '2022-01-11 10:18:15'); INSERT INTO `sys_job_log` VALUES (6572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 10:20:05'); INSERT INTO `sys_job_log` VALUES (6573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-11 10:20:06'); INSERT INTO `sys_job_log` VALUES (6574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-11 10:20:15'); INSERT INTO `sys_job_log` VALUES (6575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-11 10:22:04'); INSERT INTO `sys_job_log` VALUES (6576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 10:22:06'); INSERT INTO `sys_job_log` VALUES (6577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-11 10:22:14'); INSERT INTO `sys_job_log` VALUES (6578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-11 10:24:04'); INSERT INTO `sys_job_log` VALUES (6579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 10:24:06'); INSERT INTO `sys_job_log` VALUES (6580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-11 10:24:14'); INSERT INTO `sys_job_log` VALUES (6581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-11 10:26:05'); INSERT INTO `sys_job_log` VALUES (6582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-11 10:26:06'); INSERT INTO `sys_job_log` VALUES (6583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-11 10:26:15'); INSERT INTO `sys_job_log` VALUES (6584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-11 10:28:04'); INSERT INTO `sys_job_log` VALUES (6585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1136毫秒', '0', '', '2022-01-11 10:28:07'); INSERT INTO `sys_job_log` VALUES (6586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-11 10:28:14'); INSERT INTO `sys_job_log` VALUES (6587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-11 10:30:05'); INSERT INTO `sys_job_log` VALUES (6588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 10:30:06'); INSERT INTO `sys_job_log` VALUES (6589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-11 10:30:15'); INSERT INTO `sys_job_log` VALUES (6590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-11 10:32:05'); INSERT INTO `sys_job_log` VALUES (6591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-11 10:32:06'); INSERT INTO `sys_job_log` VALUES (6592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-11 10:32:15'); INSERT INTO `sys_job_log` VALUES (6593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-11 10:34:04'); INSERT INTO `sys_job_log` VALUES (6594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 10:34:06'); INSERT INTO `sys_job_log` VALUES (6595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-11 10:34:15'); INSERT INTO `sys_job_log` VALUES (6596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-11 10:36:05'); INSERT INTO `sys_job_log` VALUES (6597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-11 10:36:06'); INSERT INTO `sys_job_log` VALUES (6598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1175毫秒', '0', '', '2022-01-11 10:36:15'); INSERT INTO `sys_job_log` VALUES (6599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-11 10:38:05'); INSERT INTO `sys_job_log` VALUES (6600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-11 10:38:06'); INSERT INTO `sys_job_log` VALUES (6601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-11 10:38:15'); INSERT INTO `sys_job_log` VALUES (6602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-11 10:40:05'); INSERT INTO `sys_job_log` VALUES (6603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-11 10:40:06'); INSERT INTO `sys_job_log` VALUES (6604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 10:40:14'); INSERT INTO `sys_job_log` VALUES (6605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-11 10:42:05'); INSERT INTO `sys_job_log` VALUES (6606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-11 10:42:06'); INSERT INTO `sys_job_log` VALUES (6607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-11 10:42:15'); INSERT INTO `sys_job_log` VALUES (6608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-11 10:44:06'); INSERT INTO `sys_job_log` VALUES (6609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:893毫秒', '0', '', '2022-01-11 10:44:06'); INSERT INTO `sys_job_log` VALUES (6610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-11 10:44:14'); INSERT INTO `sys_job_log` VALUES (6611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-11 10:46:05'); INSERT INTO `sys_job_log` VALUES (6612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-11 10:46:06'); INSERT INTO `sys_job_log` VALUES (6613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-11 10:46:15'); INSERT INTO `sys_job_log` VALUES (6614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 10:48:05'); INSERT INTO `sys_job_log` VALUES (6615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 10:48:06'); INSERT INTO `sys_job_log` VALUES (6616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1197毫秒', '0', '', '2022-01-11 10:48:15'); INSERT INTO `sys_job_log` VALUES (6617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1118毫秒', '0', '', '2022-01-11 10:50:05'); INSERT INTO `sys_job_log` VALUES (6618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-11 10:50:06'); INSERT INTO `sys_job_log` VALUES (6619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 10:50:15'); INSERT INTO `sys_job_log` VALUES (6620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-11 10:52:05'); INSERT INTO `sys_job_log` VALUES (6621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 10:52:06'); INSERT INTO `sys_job_log` VALUES (6622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-11 10:52:14'); INSERT INTO `sys_job_log` VALUES (6623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-11 10:54:04'); INSERT INTO `sys_job_log` VALUES (6624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 10:54:06'); INSERT INTO `sys_job_log` VALUES (6625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 10:54:15'); INSERT INTO `sys_job_log` VALUES (6626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-11 10:56:05'); INSERT INTO `sys_job_log` VALUES (6627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 10:56:06'); INSERT INTO `sys_job_log` VALUES (6628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-11 10:56:15'); INSERT INTO `sys_job_log` VALUES (6629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-11 10:58:05'); INSERT INTO `sys_job_log` VALUES (6630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 10:58:06'); INSERT INTO `sys_job_log` VALUES (6631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-11 10:58:15'); INSERT INTO `sys_job_log` VALUES (6632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-11 11:00:04'); INSERT INTO `sys_job_log` VALUES (6633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-11 11:00:06'); INSERT INTO `sys_job_log` VALUES (6634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-11 11:00:15'); INSERT INTO `sys_job_log` VALUES (6635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-11 11:02:05'); INSERT INTO `sys_job_log` VALUES (6636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-11 11:02:06'); INSERT INTO `sys_job_log` VALUES (6637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-11 11:02:15'); INSERT INTO `sys_job_log` VALUES (6638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-11 11:04:04'); INSERT INTO `sys_job_log` VALUES (6639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-11 11:04:06'); INSERT INTO `sys_job_log` VALUES (6640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-11 11:04:14'); INSERT INTO `sys_job_log` VALUES (6641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1489毫秒', '0', '', '2022-01-11 11:06:05'); INSERT INTO `sys_job_log` VALUES (6642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 11:06:06'); INSERT INTO `sys_job_log` VALUES (6643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1114毫秒', '0', '', '2022-01-11 11:06:15'); INSERT INTO `sys_job_log` VALUES (6644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1197毫秒', '0', '', '2022-01-11 11:08:05'); INSERT INTO `sys_job_log` VALUES (6645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-11 11:08:06'); INSERT INTO `sys_job_log` VALUES (6646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-11 11:08:15'); INSERT INTO `sys_job_log` VALUES (6647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-11 11:10:05'); INSERT INTO `sys_job_log` VALUES (6648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 11:10:06'); INSERT INTO `sys_job_log` VALUES (6649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-11 11:10:15'); INSERT INTO `sys_job_log` VALUES (6650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-11 11:12:04'); INSERT INTO `sys_job_log` VALUES (6651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 11:12:06'); INSERT INTO `sys_job_log` VALUES (6652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-11 11:12:15'); INSERT INTO `sys_job_log` VALUES (6653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-11 11:14:05'); INSERT INTO `sys_job_log` VALUES (6654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 11:14:06'); INSERT INTO `sys_job_log` VALUES (6655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-11 11:14:15'); INSERT INTO `sys_job_log` VALUES (6656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1228毫秒', '0', '', '2022-01-11 11:16:05'); INSERT INTO `sys_job_log` VALUES (6657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-11 11:16:06'); INSERT INTO `sys_job_log` VALUES (6658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-11 11:16:14'); INSERT INTO `sys_job_log` VALUES (6659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-11 11:18:04'); INSERT INTO `sys_job_log` VALUES (6660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-11 11:18:06'); INSERT INTO `sys_job_log` VALUES (6661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-11 11:18:15'); INSERT INTO `sys_job_log` VALUES (6662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-11 11:20:05'); INSERT INTO `sys_job_log` VALUES (6663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-11 11:20:06'); INSERT INTO `sys_job_log` VALUES (6664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 11:20:15'); INSERT INTO `sys_job_log` VALUES (6665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-11 11:22:05'); INSERT INTO `sys_job_log` VALUES (6666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 11:22:06'); INSERT INTO `sys_job_log` VALUES (6667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-11 11:22:14'); INSERT INTO `sys_job_log` VALUES (6668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-11 11:24:04'); INSERT INTO `sys_job_log` VALUES (6669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 11:24:06'); INSERT INTO `sys_job_log` VALUES (6670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-11 11:24:15'); INSERT INTO `sys_job_log` VALUES (6671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-11 11:26:05'); INSERT INTO `sys_job_log` VALUES (6672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-11 11:26:06'); INSERT INTO `sys_job_log` VALUES (6673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-11 11:26:15'); INSERT INTO `sys_job_log` VALUES (6674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1250毫秒', '0', '', '2022-01-11 11:28:05'); INSERT INTO `sys_job_log` VALUES (6675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-11 11:28:06'); INSERT INTO `sys_job_log` VALUES (6676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-11 11:28:14'); INSERT INTO `sys_job_log` VALUES (6677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-11 11:30:05'); INSERT INTO `sys_job_log` VALUES (6678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-11 11:30:06'); INSERT INTO `sys_job_log` VALUES (6679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-11 11:30:14'); INSERT INTO `sys_job_log` VALUES (6680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-11 11:32:05'); INSERT INTO `sys_job_log` VALUES (6681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 11:32:06'); INSERT INTO `sys_job_log` VALUES (6682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-11 11:32:14'); INSERT INTO `sys_job_log` VALUES (6683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-11 11:34:04'); INSERT INTO `sys_job_log` VALUES (6684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 11:34:06'); INSERT INTO `sys_job_log` VALUES (6685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-11 11:34:14'); INSERT INTO `sys_job_log` VALUES (6686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 11:36:05'); INSERT INTO `sys_job_log` VALUES (6687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-11 11:36:06'); INSERT INTO `sys_job_log` VALUES (6688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-11 11:36:14'); INSERT INTO `sys_job_log` VALUES (6689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-11 11:38:04'); INSERT INTO `sys_job_log` VALUES (6690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 11:38:06'); INSERT INTO `sys_job_log` VALUES (6691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-11 11:38:14'); INSERT INTO `sys_job_log` VALUES (6692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-11 11:40:04'); INSERT INTO `sys_job_log` VALUES (6693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 11:40:06'); INSERT INTO `sys_job_log` VALUES (6694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1122毫秒', '0', '', '2022-01-11 11:40:15'); INSERT INTO `sys_job_log` VALUES (6695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-11 11:42:04'); INSERT INTO `sys_job_log` VALUES (6696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-11 11:42:06'); INSERT INTO `sys_job_log` VALUES (6697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-11 11:42:14'); INSERT INTO `sys_job_log` VALUES (6698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-11 11:44:04'); INSERT INTO `sys_job_log` VALUES (6699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-11 11:44:06'); INSERT INTO `sys_job_log` VALUES (6700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1125毫秒', '0', '', '2022-01-11 11:44:15'); INSERT INTO `sys_job_log` VALUES (6701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-11 11:46:04'); INSERT INTO `sys_job_log` VALUES (6702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 11:46:06'); INSERT INTO `sys_job_log` VALUES (6703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 11:46:14'); INSERT INTO `sys_job_log` VALUES (6704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-11 11:48:04'); INSERT INTO `sys_job_log` VALUES (6705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-11 11:48:06'); INSERT INTO `sys_job_log` VALUES (6706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-11 11:48:14'); INSERT INTO `sys_job_log` VALUES (6707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-11 11:50:06'); INSERT INTO `sys_job_log` VALUES (6708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-11 11:50:06'); INSERT INTO `sys_job_log` VALUES (6709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-11 11:50:15'); INSERT INTO `sys_job_log` VALUES (6710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-11 11:52:04'); INSERT INTO `sys_job_log` VALUES (6711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 11:52:06'); INSERT INTO `sys_job_log` VALUES (6712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-11 11:52:14'); INSERT INTO `sys_job_log` VALUES (6713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 11:54:04'); INSERT INTO `sys_job_log` VALUES (6714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:61毫秒', '0', '', '2022-01-11 11:54:06'); INSERT INTO `sys_job_log` VALUES (6715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-11 11:54:15'); INSERT INTO `sys_job_log` VALUES (6716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-11 11:56:04'); INSERT INTO `sys_job_log` VALUES (6717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-11 11:56:07'); INSERT INTO `sys_job_log` VALUES (6718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-11 11:56:14'); INSERT INTO `sys_job_log` VALUES (6719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-11 11:58:04'); INSERT INTO `sys_job_log` VALUES (6720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 11:58:06'); INSERT INTO `sys_job_log` VALUES (6721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-11 11:58:15'); INSERT INTO `sys_job_log` VALUES (6722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-11 12:00:05'); INSERT INTO `sys_job_log` VALUES (6723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-11 12:00:06'); INSERT INTO `sys_job_log` VALUES (6724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-11 12:00:15'); INSERT INTO `sys_job_log` VALUES (6725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-11 12:02:05'); INSERT INTO `sys_job_log` VALUES (6726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-11 12:02:06'); INSERT INTO `sys_job_log` VALUES (6727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-11 12:02:14'); INSERT INTO `sys_job_log` VALUES (6728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-11 12:04:04'); INSERT INTO `sys_job_log` VALUES (6729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 12:04:06'); INSERT INTO `sys_job_log` VALUES (6730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-11 12:04:15'); INSERT INTO `sys_job_log` VALUES (6731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-11 12:06:05'); INSERT INTO `sys_job_log` VALUES (6732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 12:06:06'); INSERT INTO `sys_job_log` VALUES (6733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-11 12:06:14'); INSERT INTO `sys_job_log` VALUES (6734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-11 12:08:04'); INSERT INTO `sys_job_log` VALUES (6735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 12:08:06'); INSERT INTO `sys_job_log` VALUES (6736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-11 12:08:14'); INSERT INTO `sys_job_log` VALUES (6737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-11 12:10:05'); INSERT INTO `sys_job_log` VALUES (6738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-11 12:10:06'); INSERT INTO `sys_job_log` VALUES (6739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-11 12:10:15'); INSERT INTO `sys_job_log` VALUES (6740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-11 12:12:05'); INSERT INTO `sys_job_log` VALUES (6741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 12:12:06'); INSERT INTO `sys_job_log` VALUES (6742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1172毫秒', '0', '', '2022-01-11 12:12:15'); INSERT INTO `sys_job_log` VALUES (6743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-11 12:14:04'); INSERT INTO `sys_job_log` VALUES (6744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 12:14:06'); INSERT INTO `sys_job_log` VALUES (6745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-11 12:14:14'); INSERT INTO `sys_job_log` VALUES (6746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-11 12:16:04'); INSERT INTO `sys_job_log` VALUES (6747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 12:16:06'); INSERT INTO `sys_job_log` VALUES (6748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-11 12:16:15'); INSERT INTO `sys_job_log` VALUES (6749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-11 12:18:05'); INSERT INTO `sys_job_log` VALUES (6750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-11 12:18:06'); INSERT INTO `sys_job_log` VALUES (6751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-11 12:18:14'); INSERT INTO `sys_job_log` VALUES (6752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-11 12:20:04'); INSERT INTO `sys_job_log` VALUES (6753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 12:20:06'); INSERT INTO `sys_job_log` VALUES (6754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-11 12:20:16'); INSERT INTO `sys_job_log` VALUES (6755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-11 12:22:05'); INSERT INTO `sys_job_log` VALUES (6756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-11 12:22:06'); INSERT INTO `sys_job_log` VALUES (6757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 12:22:14'); INSERT INTO `sys_job_log` VALUES (6758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-11 12:24:04'); INSERT INTO `sys_job_log` VALUES (6759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-11 12:24:06'); INSERT INTO `sys_job_log` VALUES (6760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 12:24:15'); INSERT INTO `sys_job_log` VALUES (6761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-11 12:26:06'); INSERT INTO `sys_job_log` VALUES (6762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-11 12:26:06'); INSERT INTO `sys_job_log` VALUES (6763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-11 12:26:15'); INSERT INTO `sys_job_log` VALUES (6764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-11 12:28:04'); INSERT INTO `sys_job_log` VALUES (6765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 12:28:06'); INSERT INTO `sys_job_log` VALUES (6766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-11 12:28:14'); INSERT INTO `sys_job_log` VALUES (6767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-11 12:30:04'); INSERT INTO `sys_job_log` VALUES (6768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-11 12:30:06'); INSERT INTO `sys_job_log` VALUES (6769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-11 12:30:14'); INSERT INTO `sys_job_log` VALUES (6770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:328毫秒', '0', '', '2022-01-11 12:32:04'); INSERT INTO `sys_job_log` VALUES (6771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-11 12:32:06'); INSERT INTO `sys_job_log` VALUES (6772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-11 12:32:15'); INSERT INTO `sys_job_log` VALUES (6773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-11 12:34:04'); INSERT INTO `sys_job_log` VALUES (6774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 12:34:06'); INSERT INTO `sys_job_log` VALUES (6775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 12:34:15'); INSERT INTO `sys_job_log` VALUES (6776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-11 12:36:05'); INSERT INTO `sys_job_log` VALUES (6777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 12:36:06'); INSERT INTO `sys_job_log` VALUES (6778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-11 12:36:14'); INSERT INTO `sys_job_log` VALUES (6779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-11 12:38:04'); INSERT INTO `sys_job_log` VALUES (6780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-11 12:38:07'); INSERT INTO `sys_job_log` VALUES (6781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-11 12:38:15'); INSERT INTO `sys_job_log` VALUES (6782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1129毫秒', '0', '', '2022-01-11 12:40:05'); INSERT INTO `sys_job_log` VALUES (6783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 12:40:06'); INSERT INTO `sys_job_log` VALUES (6784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-11 12:40:14'); INSERT INTO `sys_job_log` VALUES (6785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-11 12:42:04'); INSERT INTO `sys_job_log` VALUES (6786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-11 12:42:06'); INSERT INTO `sys_job_log` VALUES (6787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-11 12:42:15'); INSERT INTO `sys_job_log` VALUES (6788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-11 12:44:04'); INSERT INTO `sys_job_log` VALUES (6789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-11 12:44:07'); INSERT INTO `sys_job_log` VALUES (6790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-11 12:44:14'); INSERT INTO `sys_job_log` VALUES (6791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-11 12:46:05'); INSERT INTO `sys_job_log` VALUES (6792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-11 12:46:06'); INSERT INTO `sys_job_log` VALUES (6793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-11 12:46:14'); INSERT INTO `sys_job_log` VALUES (6794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-11 12:48:05'); INSERT INTO `sys_job_log` VALUES (6795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 12:48:06'); INSERT INTO `sys_job_log` VALUES (6796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1197毫秒', '0', '', '2022-01-11 12:48:15'); INSERT INTO `sys_job_log` VALUES (6797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-11 12:50:04'); INSERT INTO `sys_job_log` VALUES (6798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-11 12:50:07'); INSERT INTO `sys_job_log` VALUES (6799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 12:50:15'); INSERT INTO `sys_job_log` VALUES (6800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-11 12:52:04'); INSERT INTO `sys_job_log` VALUES (6801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-11 12:52:06'); INSERT INTO `sys_job_log` VALUES (6802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1114毫秒', '0', '', '2022-01-11 12:52:15'); INSERT INTO `sys_job_log` VALUES (6803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-11 12:54:04'); INSERT INTO `sys_job_log` VALUES (6804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-11 12:54:06'); INSERT INTO `sys_job_log` VALUES (6805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-11 12:54:15'); INSERT INTO `sys_job_log` VALUES (6806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-11 12:56:04'); INSERT INTO `sys_job_log` VALUES (6807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-11 12:56:07'); INSERT INTO `sys_job_log` VALUES (6808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-11 12:56:14'); INSERT INTO `sys_job_log` VALUES (6809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-11 12:58:05'); INSERT INTO `sys_job_log` VALUES (6810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-11 12:58:06'); INSERT INTO `sys_job_log` VALUES (6811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-11 12:58:14'); INSERT INTO `sys_job_log` VALUES (6812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2012毫秒', '0', '', '2022-01-11 13:33:23'); INSERT INTO `sys_job_log` VALUES (6813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-11 13:33:25'); INSERT INTO `sys_job_log` VALUES (6814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2008毫秒', '0', '', '2022-01-11 13:33:27'); INSERT INTO `sys_job_log` VALUES (6815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-11 13:33:27'); INSERT INTO `sys_job_log` VALUES (6816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 13:33:27'); INSERT INTO `sys_job_log` VALUES (6817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 13:33:28'); INSERT INTO `sys_job_log` VALUES (6828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 13:33:29'); INSERT INTO `sys_job_log` VALUES (6840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 13:33:30'); INSERT INTO `sys_job_log` VALUES (6851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 13:33:31'); INSERT INTO `sys_job_log` VALUES (6863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2015毫秒', '0', '', '2022-01-11 13:34:06'); INSERT INTO `sys_job_log` VALUES (6864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 13:34:06'); INSERT INTO `sys_job_log` VALUES (6865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-11 13:34:15'); INSERT INTO `sys_job_log` VALUES (6866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-11 13:36:04'); INSERT INTO `sys_job_log` VALUES (6867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 13:36:06'); INSERT INTO `sys_job_log` VALUES (6868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-11 13:36:14'); INSERT INTO `sys_job_log` VALUES (6869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 13:38:04'); INSERT INTO `sys_job_log` VALUES (6870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-11 13:38:06'); INSERT INTO `sys_job_log` VALUES (6871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-11 13:38:14'); INSERT INTO `sys_job_log` VALUES (6872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-11 13:40:05'); INSERT INTO `sys_job_log` VALUES (6873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-11 13:40:06'); INSERT INTO `sys_job_log` VALUES (6874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-11 13:40:15'); INSERT INTO `sys_job_log` VALUES (6875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-11 13:42:05'); INSERT INTO `sys_job_log` VALUES (6876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-11 13:42:06'); INSERT INTO `sys_job_log` VALUES (6877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-11 13:42:15'); INSERT INTO `sys_job_log` VALUES (6878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-11 13:44:04'); INSERT INTO `sys_job_log` VALUES (6879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 13:44:06'); INSERT INTO `sys_job_log` VALUES (6880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-11 13:44:15'); INSERT INTO `sys_job_log` VALUES (6881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1162毫秒', '0', '', '2022-01-11 13:46:05'); INSERT INTO `sys_job_log` VALUES (6882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 13:46:06'); INSERT INTO `sys_job_log` VALUES (6883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1167毫秒', '0', '', '2022-01-11 13:46:15'); INSERT INTO `sys_job_log` VALUES (6884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 13:48:04'); INSERT INTO `sys_job_log` VALUES (6885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-11 13:48:06'); INSERT INTO `sys_job_log` VALUES (6886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-11 13:48:14'); INSERT INTO `sys_job_log` VALUES (6887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1175毫秒', '0', '', '2022-01-11 13:50:05'); INSERT INTO `sys_job_log` VALUES (6888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 13:50:06'); INSERT INTO `sys_job_log` VALUES (6889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-11 13:50:14'); INSERT INTO `sys_job_log` VALUES (6890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-11 13:52:05'); INSERT INTO `sys_job_log` VALUES (6891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-11 13:52:06'); INSERT INTO `sys_job_log` VALUES (6892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-11 13:52:14'); INSERT INTO `sys_job_log` VALUES (6893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1223毫秒', '0', '', '2022-01-11 13:54:05'); INSERT INTO `sys_job_log` VALUES (6894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-11 13:54:06'); INSERT INTO `sys_job_log` VALUES (6895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 13:54:15'); INSERT INTO `sys_job_log` VALUES (6896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-11 13:56:04'); INSERT INTO `sys_job_log` VALUES (6897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-11 13:56:06'); INSERT INTO `sys_job_log` VALUES (6898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1160毫秒', '0', '', '2022-01-11 13:56:15'); INSERT INTO `sys_job_log` VALUES (6899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-11 13:58:05'); INSERT INTO `sys_job_log` VALUES (6900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 13:58:06'); INSERT INTO `sys_job_log` VALUES (6901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1170毫秒', '0', '', '2022-01-11 13:58:15'); INSERT INTO `sys_job_log` VALUES (6902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1180毫秒', '0', '', '2022-01-11 14:00:05'); INSERT INTO `sys_job_log` VALUES (6903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 14:00:06'); INSERT INTO `sys_job_log` VALUES (6904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 14:00:14'); INSERT INTO `sys_job_log` VALUES (6905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-11 14:02:05'); INSERT INTO `sys_job_log` VALUES (6906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-11 14:02:06'); INSERT INTO `sys_job_log` VALUES (6907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2022-01-11 14:02:15'); INSERT INTO `sys_job_log` VALUES (6908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-11 14:04:05'); INSERT INTO `sys_job_log` VALUES (6909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 14:04:06'); INSERT INTO `sys_job_log` VALUES (6910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 14:04:15'); INSERT INTO `sys_job_log` VALUES (6911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-11 14:06:04'); INSERT INTO `sys_job_log` VALUES (6912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 14:06:06'); INSERT INTO `sys_job_log` VALUES (6913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-11 14:06:14'); INSERT INTO `sys_job_log` VALUES (6914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-11 14:08:05'); INSERT INTO `sys_job_log` VALUES (6915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-11 14:08:06'); INSERT INTO `sys_job_log` VALUES (6916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-11 14:08:14'); INSERT INTO `sys_job_log` VALUES (6917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-11 14:10:05'); INSERT INTO `sys_job_log` VALUES (6918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 14:10:06'); INSERT INTO `sys_job_log` VALUES (6919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-11 14:10:15'); INSERT INTO `sys_job_log` VALUES (6920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-11 14:12:05'); INSERT INTO `sys_job_log` VALUES (6921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-11 14:12:06'); INSERT INTO `sys_job_log` VALUES (6922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-11 14:12:14'); INSERT INTO `sys_job_log` VALUES (6923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-11 14:14:04'); INSERT INTO `sys_job_log` VALUES (6924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-11 14:14:06'); INSERT INTO `sys_job_log` VALUES (6925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-11 14:14:15'); INSERT INTO `sys_job_log` VALUES (6926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-11 14:16:04'); INSERT INTO `sys_job_log` VALUES (6927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-11 14:16:06'); INSERT INTO `sys_job_log` VALUES (6928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-11 14:16:14'); INSERT INTO `sys_job_log` VALUES (6929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-11 14:18:04'); INSERT INTO `sys_job_log` VALUES (6930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-11 14:18:06'); INSERT INTO `sys_job_log` VALUES (6931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-11 14:18:14'); INSERT INTO `sys_job_log` VALUES (6932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1082毫秒', '0', '', '2022-01-11 14:20:05'); INSERT INTO `sys_job_log` VALUES (6933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-11 14:20:06'); INSERT INTO `sys_job_log` VALUES (6934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-11 14:20:15'); INSERT INTO `sys_job_log` VALUES (6935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-11 14:22:04'); INSERT INTO `sys_job_log` VALUES (6936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1122毫秒', '0', '', '2022-01-11 14:22:07'); INSERT INTO `sys_job_log` VALUES (6937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-11 14:22:14'); INSERT INTO `sys_job_log` VALUES (6938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-11 14:24:05'); INSERT INTO `sys_job_log` VALUES (6939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-11 14:24:06'); INSERT INTO `sys_job_log` VALUES (6940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-11 14:24:15'); INSERT INTO `sys_job_log` VALUES (6941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1143毫秒', '0', '', '2022-01-11 14:26:05'); INSERT INTO `sys_job_log` VALUES (6942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-11 14:26:06'); INSERT INTO `sys_job_log` VALUES (6943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-11 14:26:15'); INSERT INTO `sys_job_log` VALUES (6944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1289毫秒', '0', '', '2022-01-11 14:28:05'); INSERT INTO `sys_job_log` VALUES (6945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 14:28:06'); INSERT INTO `sys_job_log` VALUES (6946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-11 14:28:15'); INSERT INTO `sys_job_log` VALUES (6947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-11 14:30:06'); INSERT INTO `sys_job_log` VALUES (6948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-11 14:30:08'); INSERT INTO `sys_job_log` VALUES (6949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-11 14:30:14'); INSERT INTO `sys_job_log` VALUES (6950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-11 14:32:05'); INSERT INTO `sys_job_log` VALUES (6951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-11 14:32:06'); INSERT INTO `sys_job_log` VALUES (6952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-11 14:32:15'); INSERT INTO `sys_job_log` VALUES (6953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-11 14:34:05'); INSERT INTO `sys_job_log` VALUES (6954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 14:34:06'); INSERT INTO `sys_job_log` VALUES (6955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-11 14:34:15'); INSERT INTO `sys_job_log` VALUES (6956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-11 14:36:05'); INSERT INTO `sys_job_log` VALUES (6957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 14:36:06'); INSERT INTO `sys_job_log` VALUES (6958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 14:36:15'); INSERT INTO `sys_job_log` VALUES (6959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-11 14:38:05'); INSERT INTO `sys_job_log` VALUES (6960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-11 14:38:06'); INSERT INTO `sys_job_log` VALUES (6961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1128毫秒', '0', '', '2022-01-11 14:38:15'); INSERT INTO `sys_job_log` VALUES (6962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-11 14:40:04'); INSERT INTO `sys_job_log` VALUES (6963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 14:40:06'); INSERT INTO `sys_job_log` VALUES (6964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-11 14:40:15'); INSERT INTO `sys_job_log` VALUES (6965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-11 14:42:04'); INSERT INTO `sys_job_log` VALUES (6966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-11 14:42:06'); INSERT INTO `sys_job_log` VALUES (6967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-11 14:42:15'); INSERT INTO `sys_job_log` VALUES (6968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-11 14:44:05'); INSERT INTO `sys_job_log` VALUES (6969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-11 14:44:06'); INSERT INTO `sys_job_log` VALUES (6970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1160毫秒', '0', '', '2022-01-11 14:44:15'); INSERT INTO `sys_job_log` VALUES (6971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-11 14:46:04'); INSERT INTO `sys_job_log` VALUES (6972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 14:46:06'); INSERT INTO `sys_job_log` VALUES (6973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-11 14:46:15'); INSERT INTO `sys_job_log` VALUES (6974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1172毫秒', '0', '', '2022-01-11 14:48:05'); INSERT INTO `sys_job_log` VALUES (6975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 14:48:06'); INSERT INTO `sys_job_log` VALUES (6976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-11 14:48:15'); INSERT INTO `sys_job_log` VALUES (6977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-11 14:50:05'); INSERT INTO `sys_job_log` VALUES (6978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-11 14:50:06'); INSERT INTO `sys_job_log` VALUES (6979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1180毫秒', '0', '', '2022-01-11 14:50:15'); INSERT INTO `sys_job_log` VALUES (6980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-11 14:52:05'); INSERT INTO `sys_job_log` VALUES (6981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-11 14:52:06'); INSERT INTO `sys_job_log` VALUES (6982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-11 14:52:14'); INSERT INTO `sys_job_log` VALUES (6983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1171毫秒', '0', '', '2022-01-11 14:54:05'); INSERT INTO `sys_job_log` VALUES (6984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-11 14:54:06'); INSERT INTO `sys_job_log` VALUES (6985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-11 14:54:14'); INSERT INTO `sys_job_log` VALUES (6986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-11 14:56:05'); INSERT INTO `sys_job_log` VALUES (6987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:63毫秒', '0', '', '2022-01-11 14:56:06'); INSERT INTO `sys_job_log` VALUES (6988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-11 14:56:15'); INSERT INTO `sys_job_log` VALUES (6989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-11 14:58:05'); INSERT INTO `sys_job_log` VALUES (6990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-11 14:58:06'); INSERT INTO `sys_job_log` VALUES (6991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 14:58:15'); INSERT INTO `sys_job_log` VALUES (6992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-11 15:00:05'); INSERT INTO `sys_job_log` VALUES (6993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-11 15:00:06'); INSERT INTO `sys_job_log` VALUES (6994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1171毫秒', '0', '', '2022-01-11 15:00:15'); INSERT INTO `sys_job_log` VALUES (6995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-11 15:02:06'); INSERT INTO `sys_job_log` VALUES (6996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-11 15:02:06'); INSERT INTO `sys_job_log` VALUES (6997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 15:02:14'); INSERT INTO `sys_job_log` VALUES (6998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-11 15:04:05'); INSERT INTO `sys_job_log` VALUES (6999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 15:04:06'); INSERT INTO `sys_job_log` VALUES (7000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-11 15:04:14'); INSERT INTO `sys_job_log` VALUES (7001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-11 15:06:04'); INSERT INTO `sys_job_log` VALUES (7002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 15:06:06'); INSERT INTO `sys_job_log` VALUES (7003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-11 15:06:15'); INSERT INTO `sys_job_log` VALUES (7004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-11 15:08:06'); INSERT INTO `sys_job_log` VALUES (7005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-11 15:08:06'); INSERT INTO `sys_job_log` VALUES (7006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-11 15:08:14'); INSERT INTO `sys_job_log` VALUES (7007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-11 15:10:05'); INSERT INTO `sys_job_log` VALUES (7008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-11 15:10:06'); INSERT INTO `sys_job_log` VALUES (7009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1141毫秒', '0', '', '2022-01-11 15:10:15'); INSERT INTO `sys_job_log` VALUES (7010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-11 15:12:05'); INSERT INTO `sys_job_log` VALUES (7011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-11 15:12:06'); INSERT INTO `sys_job_log` VALUES (7012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1165毫秒', '0', '', '2022-01-11 15:12:15'); INSERT INTO `sys_job_log` VALUES (7013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1246毫秒', '0', '', '2022-01-11 15:14:05'); INSERT INTO `sys_job_log` VALUES (7014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 15:14:06'); INSERT INTO `sys_job_log` VALUES (7015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-11 15:14:14'); INSERT INTO `sys_job_log` VALUES (7016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-11 15:16:04'); INSERT INTO `sys_job_log` VALUES (7017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 15:16:06'); INSERT INTO `sys_job_log` VALUES (7018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-11 15:16:15'); INSERT INTO `sys_job_log` VALUES (7019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-11 15:18:05'); INSERT INTO `sys_job_log` VALUES (7020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 15:18:06'); INSERT INTO `sys_job_log` VALUES (7021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-11 15:18:15'); INSERT INTO `sys_job_log` VALUES (7022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1197毫秒', '0', '', '2022-01-11 15:20:05'); INSERT INTO `sys_job_log` VALUES (7023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-11 15:20:07'); INSERT INTO `sys_job_log` VALUES (7024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-11 15:20:14'); INSERT INTO `sys_job_log` VALUES (7025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-11 15:22:05'); INSERT INTO `sys_job_log` VALUES (7026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-11 15:22:06'); INSERT INTO `sys_job_log` VALUES (7027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 15:22:15'); INSERT INTO `sys_job_log` VALUES (7028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-11 15:24:05'); INSERT INTO `sys_job_log` VALUES (7029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-11 15:24:06'); INSERT INTO `sys_job_log` VALUES (7030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 15:24:15'); INSERT INTO `sys_job_log` VALUES (7031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-11 15:26:05'); INSERT INTO `sys_job_log` VALUES (7032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-11 15:26:07'); INSERT INTO `sys_job_log` VALUES (7033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 15:26:14'); INSERT INTO `sys_job_log` VALUES (7034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-11 15:28:04'); INSERT INTO `sys_job_log` VALUES (7035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-11 15:28:06'); INSERT INTO `sys_job_log` VALUES (7036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1132毫秒', '0', '', '2022-01-11 15:28:15'); INSERT INTO `sys_job_log` VALUES (7037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-11 15:30:05'); INSERT INTO `sys_job_log` VALUES (7038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-11 15:30:06'); INSERT INTO `sys_job_log` VALUES (7039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-11 15:30:15'); INSERT INTO `sys_job_log` VALUES (7040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-11 15:32:04'); INSERT INTO `sys_job_log` VALUES (7041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 15:32:06'); INSERT INTO `sys_job_log` VALUES (7042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-11 15:32:15'); INSERT INTO `sys_job_log` VALUES (7043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 15:34:04'); INSERT INTO `sys_job_log` VALUES (7044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-11 15:34:06'); INSERT INTO `sys_job_log` VALUES (7045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-11 15:34:15'); INSERT INTO `sys_job_log` VALUES (7046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1220毫秒', '0', '', '2022-01-11 15:36:05'); INSERT INTO `sys_job_log` VALUES (7047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 15:36:06'); INSERT INTO `sys_job_log` VALUES (7048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1175毫秒', '0', '', '2022-01-11 15:36:15'); INSERT INTO `sys_job_log` VALUES (7049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1164毫秒', '0', '', '2022-01-11 15:38:05'); INSERT INTO `sys_job_log` VALUES (7050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-11 15:38:06'); INSERT INTO `sys_job_log` VALUES (7051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-11 15:38:14'); INSERT INTO `sys_job_log` VALUES (7052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-11 15:40:05'); INSERT INTO `sys_job_log` VALUES (7053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-11 15:40:06'); INSERT INTO `sys_job_log` VALUES (7054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-11 15:40:14'); INSERT INTO `sys_job_log` VALUES (7055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-11 15:42:04'); INSERT INTO `sys_job_log` VALUES (7056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-11 15:42:06'); INSERT INTO `sys_job_log` VALUES (7057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-11 15:42:15'); INSERT INTO `sys_job_log` VALUES (7058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-11 15:44:04'); INSERT INTO `sys_job_log` VALUES (7059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-11 15:44:06'); INSERT INTO `sys_job_log` VALUES (7060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-11 15:44:14'); INSERT INTO `sys_job_log` VALUES (7061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1242毫秒', '0', '', '2022-01-11 15:46:05'); INSERT INTO `sys_job_log` VALUES (7062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 15:46:06'); INSERT INTO `sys_job_log` VALUES (7063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-11 15:46:15'); INSERT INTO `sys_job_log` VALUES (7064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-11 15:48:04'); INSERT INTO `sys_job_log` VALUES (7065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-11 15:48:06'); INSERT INTO `sys_job_log` VALUES (7066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-11 15:48:16'); INSERT INTO `sys_job_log` VALUES (7067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-11 15:50:04'); INSERT INTO `sys_job_log` VALUES (7068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 15:50:06'); INSERT INTO `sys_job_log` VALUES (7069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 15:50:14'); INSERT INTO `sys_job_log` VALUES (7070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-11 15:52:05'); INSERT INTO `sys_job_log` VALUES (7071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 15:52:06'); INSERT INTO `sys_job_log` VALUES (7072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1170毫秒', '0', '', '2022-01-11 15:52:15'); INSERT INTO `sys_job_log` VALUES (7073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-11 15:54:04'); INSERT INTO `sys_job_log` VALUES (7074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 15:54:06'); INSERT INTO `sys_job_log` VALUES (7075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-11 15:54:15'); INSERT INTO `sys_job_log` VALUES (7076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1180毫秒', '0', '', '2022-01-11 15:56:05'); INSERT INTO `sys_job_log` VALUES (7077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-11 15:56:06'); INSERT INTO `sys_job_log` VALUES (7078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-11 15:56:15'); INSERT INTO `sys_job_log` VALUES (7079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-11 15:58:05'); INSERT INTO `sys_job_log` VALUES (7080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-11 15:58:06'); INSERT INTO `sys_job_log` VALUES (7081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-11 15:58:15'); INSERT INTO `sys_job_log` VALUES (7082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-11 16:00:05'); INSERT INTO `sys_job_log` VALUES (7083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-11 16:00:06'); INSERT INTO `sys_job_log` VALUES (7084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-11 16:00:15'); INSERT INTO `sys_job_log` VALUES (7085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-11 16:02:04'); INSERT INTO `sys_job_log` VALUES (7086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 16:02:06'); INSERT INTO `sys_job_log` VALUES (7087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-11 16:02:15'); INSERT INTO `sys_job_log` VALUES (7088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-11 16:04:05'); INSERT INTO `sys_job_log` VALUES (7089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-11 16:04:06'); INSERT INTO `sys_job_log` VALUES (7090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-11 16:04:15'); INSERT INTO `sys_job_log` VALUES (7091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-11 16:06:04'); INSERT INTO `sys_job_log` VALUES (7092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 16:06:06'); INSERT INTO `sys_job_log` VALUES (7093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-11 16:06:14'); INSERT INTO `sys_job_log` VALUES (7094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1150毫秒', '0', '', '2022-01-11 16:08:05'); INSERT INTO `sys_job_log` VALUES (7095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-11 16:08:06'); INSERT INTO `sys_job_log` VALUES (7096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-11 16:08:15'); INSERT INTO `sys_job_log` VALUES (7097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-11 16:10:05'); INSERT INTO `sys_job_log` VALUES (7098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-11 16:10:06'); INSERT INTO `sys_job_log` VALUES (7099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-11 16:10:16'); INSERT INTO `sys_job_log` VALUES (7100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-11 16:12:05'); INSERT INTO `sys_job_log` VALUES (7101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-11 16:12:06'); INSERT INTO `sys_job_log` VALUES (7102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-11 16:12:15'); INSERT INTO `sys_job_log` VALUES (7103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-11 16:14:04'); INSERT INTO `sys_job_log` VALUES (7104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 16:14:06'); INSERT INTO `sys_job_log` VALUES (7105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-11 16:14:15'); INSERT INTO `sys_job_log` VALUES (7106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-11 16:16:04'); INSERT INTO `sys_job_log` VALUES (7107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-11 16:16:08'); INSERT INTO `sys_job_log` VALUES (7108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-11 16:16:15'); INSERT INTO `sys_job_log` VALUES (7109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-11 16:18:04'); INSERT INTO `sys_job_log` VALUES (7110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-11 16:18:06'); INSERT INTO `sys_job_log` VALUES (7111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 16:18:15'); INSERT INTO `sys_job_log` VALUES (7112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-11 16:20:05'); INSERT INTO `sys_job_log` VALUES (7113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-11 16:20:06'); INSERT INTO `sys_job_log` VALUES (7114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1175毫秒', '0', '', '2022-01-11 16:20:15'); INSERT INTO `sys_job_log` VALUES (7115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-11 16:22:04'); INSERT INTO `sys_job_log` VALUES (7116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:57毫秒', '0', '', '2022-01-11 16:22:06'); INSERT INTO `sys_job_log` VALUES (7117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-11 16:22:14'); INSERT INTO `sys_job_log` VALUES (7118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-11 16:24:05'); INSERT INTO `sys_job_log` VALUES (7119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 16:24:06'); INSERT INTO `sys_job_log` VALUES (7120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-11 16:24:14'); INSERT INTO `sys_job_log` VALUES (7121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2007毫秒', '0', '', '2022-01-11 16:26:06'); INSERT INTO `sys_job_log` VALUES (7122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-11 16:26:06'); INSERT INTO `sys_job_log` VALUES (7123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-11 16:26:15'); INSERT INTO `sys_job_log` VALUES (7124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-11 16:28:05'); INSERT INTO `sys_job_log` VALUES (7125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-11 16:28:06'); INSERT INTO `sys_job_log` VALUES (7126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-11 16:28:15'); INSERT INTO `sys_job_log` VALUES (7127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-11 16:30:05'); INSERT INTO `sys_job_log` VALUES (7128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-11 16:30:06'); INSERT INTO `sys_job_log` VALUES (7129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-11 16:30:15'); INSERT INTO `sys_job_log` VALUES (7130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-11 16:32:04'); INSERT INTO `sys_job_log` VALUES (7131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 16:32:06'); INSERT INTO `sys_job_log` VALUES (7132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-11 16:32:15'); INSERT INTO `sys_job_log` VALUES (7133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-11 16:34:04'); INSERT INTO `sys_job_log` VALUES (7134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-11 16:34:06'); INSERT INTO `sys_job_log` VALUES (7135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-11 16:34:15'); INSERT INTO `sys_job_log` VALUES (7136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 16:36:05'); INSERT INTO `sys_job_log` VALUES (7137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 16:36:06'); INSERT INTO `sys_job_log` VALUES (7138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-11 16:36:15'); INSERT INTO `sys_job_log` VALUES (7139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-11 16:38:04'); INSERT INTO `sys_job_log` VALUES (7140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-11 16:38:07'); INSERT INTO `sys_job_log` VALUES (7141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1173毫秒', '0', '', '2022-01-11 16:38:15'); INSERT INTO `sys_job_log` VALUES (7142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-11 16:40:04'); INSERT INTO `sys_job_log` VALUES (7143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-11 16:40:06'); INSERT INTO `sys_job_log` VALUES (7144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-11 16:40:14'); INSERT INTO `sys_job_log` VALUES (7145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-11 16:42:05'); INSERT INTO `sys_job_log` VALUES (7146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-11 16:42:06'); INSERT INTO `sys_job_log` VALUES (7147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-11 16:42:15'); INSERT INTO `sys_job_log` VALUES (7148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-11 16:44:04'); INSERT INTO `sys_job_log` VALUES (7149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-11 16:44:06'); INSERT INTO `sys_job_log` VALUES (7150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2010毫秒', '0', '', '2022-01-11 16:44:16'); INSERT INTO `sys_job_log` VALUES (7151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-11 16:46:05'); INSERT INTO `sys_job_log` VALUES (7152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-11 16:46:06'); INSERT INTO `sys_job_log` VALUES (7153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-11 16:46:15'); INSERT INTO `sys_job_log` VALUES (7154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1214毫秒', '0', '', '2022-01-11 16:48:05'); INSERT INTO `sys_job_log` VALUES (7155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 16:48:06'); INSERT INTO `sys_job_log` VALUES (7156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-11 16:48:15'); INSERT INTO `sys_job_log` VALUES (7157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-11 16:50:04'); INSERT INTO `sys_job_log` VALUES (7158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 16:50:06'); INSERT INTO `sys_job_log` VALUES (7159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-11 16:50:16'); INSERT INTO `sys_job_log` VALUES (7160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1222毫秒', '0', '', '2022-01-11 16:52:05'); INSERT INTO `sys_job_log` VALUES (7161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-11 16:52:06'); INSERT INTO `sys_job_log` VALUES (7162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-11 16:52:15'); INSERT INTO `sys_job_log` VALUES (7163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-11 16:54:05'); INSERT INTO `sys_job_log` VALUES (7164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-11 16:54:06'); INSERT INTO `sys_job_log` VALUES (7165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-11 16:54:15'); INSERT INTO `sys_job_log` VALUES (7166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-11 16:56:05'); INSERT INTO `sys_job_log` VALUES (7167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-11 16:56:06'); INSERT INTO `sys_job_log` VALUES (7168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1169毫秒', '0', '', '2022-01-11 16:56:15'); INSERT INTO `sys_job_log` VALUES (7169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-11 16:58:05'); INSERT INTO `sys_job_log` VALUES (7170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-11 16:58:06'); INSERT INTO `sys_job_log` VALUES (7171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1169毫秒', '0', '', '2022-01-11 16:58:15'); INSERT INTO `sys_job_log` VALUES (7172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-11 17:00:04'); INSERT INTO `sys_job_log` VALUES (7173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-11 17:00:06'); INSERT INTO `sys_job_log` VALUES (7174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-11 17:00:14'); INSERT INTO `sys_job_log` VALUES (7175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-11 17:02:04'); INSERT INTO `sys_job_log` VALUES (7176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-11 17:02:06'); INSERT INTO `sys_job_log` VALUES (7177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-11 17:02:15'); INSERT INTO `sys_job_log` VALUES (7178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2022-01-11 17:04:05'); INSERT INTO `sys_job_log` VALUES (7179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-11 17:04:06'); INSERT INTO `sys_job_log` VALUES (7180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-11 17:04:14'); INSERT INTO `sys_job_log` VALUES (7181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-11 17:06:05'); INSERT INTO `sys_job_log` VALUES (7182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 17:06:06'); INSERT INTO `sys_job_log` VALUES (7183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-11 17:06:14'); INSERT INTO `sys_job_log` VALUES (7184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1236毫秒', '0', '', '2022-01-11 17:08:05'); INSERT INTO `sys_job_log` VALUES (7185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 17:08:06'); INSERT INTO `sys_job_log` VALUES (7186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-11 17:08:15'); INSERT INTO `sys_job_log` VALUES (7187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-11 17:10:05'); INSERT INTO `sys_job_log` VALUES (7188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-11 17:10:06'); INSERT INTO `sys_job_log` VALUES (7189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-11 17:10:15'); INSERT INTO `sys_job_log` VALUES (7190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-11 17:12:05'); INSERT INTO `sys_job_log` VALUES (7191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 17:12:06'); INSERT INTO `sys_job_log` VALUES (7192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-11 17:12:14'); INSERT INTO `sys_job_log` VALUES (7193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-11 17:14:04'); INSERT INTO `sys_job_log` VALUES (7194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 17:14:06'); INSERT INTO `sys_job_log` VALUES (7195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-11 17:14:14'); INSERT INTO `sys_job_log` VALUES (7196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-11 17:16:05'); INSERT INTO `sys_job_log` VALUES (7197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-11 17:16:06'); INSERT INTO `sys_job_log` VALUES (7198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-11 17:16:15'); INSERT INTO `sys_job_log` VALUES (7199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-11 17:18:05'); INSERT INTO `sys_job_log` VALUES (7200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-11 17:18:06'); INSERT INTO `sys_job_log` VALUES (7201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-11 17:18:14'); INSERT INTO `sys_job_log` VALUES (7202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1220毫秒', '0', '', '2022-01-11 17:20:05'); INSERT INTO `sys_job_log` VALUES (7203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-11 17:20:06'); INSERT INTO `sys_job_log` VALUES (7204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-11 17:20:14'); INSERT INTO `sys_job_log` VALUES (7205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-11 17:22:04'); INSERT INTO `sys_job_log` VALUES (7206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-11 17:22:06'); INSERT INTO `sys_job_log` VALUES (7207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-11 17:22:15'); INSERT INTO `sys_job_log` VALUES (7208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1172毫秒', '0', '', '2022-01-11 17:24:05'); INSERT INTO `sys_job_log` VALUES (7209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 17:24:06'); INSERT INTO `sys_job_log` VALUES (7210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-11 17:24:14'); INSERT INTO `sys_job_log` VALUES (7211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-11 17:26:04'); INSERT INTO `sys_job_log` VALUES (7212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-11 17:26:06'); INSERT INTO `sys_job_log` VALUES (7213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1172毫秒', '0', '', '2022-01-11 17:26:15'); INSERT INTO `sys_job_log` VALUES (7214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-11 17:28:05'); INSERT INTO `sys_job_log` VALUES (7215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 17:28:06'); INSERT INTO `sys_job_log` VALUES (7216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-11 17:28:15'); INSERT INTO `sys_job_log` VALUES (7217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-11 17:30:04'); INSERT INTO `sys_job_log` VALUES (7218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-11 17:30:06'); INSERT INTO `sys_job_log` VALUES (7219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-11 17:30:14'); INSERT INTO `sys_job_log` VALUES (7220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:436毫秒', '0', '', '2022-01-11 20:44:09'); INSERT INTO `sys_job_log` VALUES (7221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:4毫秒', '0', '', '2022-01-11 20:44:09'); INSERT INTO `sys_job_log` VALUES (7222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:4毫秒', '0', '', '2022-01-11 20:44:14'); INSERT INTO `sys_job_log` VALUES (7223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-11 20:46:04'); INSERT INTO `sys_job_log` VALUES (7224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-11 20:46:06'); INSERT INTO `sys_job_log` VALUES (7225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-11 20:46:14'); INSERT INTO `sys_job_log` VALUES (7226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-11 20:48:04'); INSERT INTO `sys_job_log` VALUES (7227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-11 20:48:06'); INSERT INTO `sys_job_log` VALUES (7228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-11 20:48:14'); INSERT INTO `sys_job_log` VALUES (7229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-11 20:50:04'); INSERT INTO `sys_job_log` VALUES (7230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-11 20:50:06'); INSERT INTO `sys_job_log` VALUES (7231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-11 20:50:14'); INSERT INTO `sys_job_log` VALUES (7232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-11 20:52:04'); INSERT INTO `sys_job_log` VALUES (7233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-11 20:52:06'); INSERT INTO `sys_job_log` VALUES (7234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-11 20:52:14'); INSERT INTO `sys_job_log` VALUES (7235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-11 20:54:04'); INSERT INTO `sys_job_log` VALUES (7236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-11 20:54:06'); INSERT INTO `sys_job_log` VALUES (7237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-11 20:54:14'); INSERT INTO `sys_job_log` VALUES (7238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-11 20:56:04'); INSERT INTO `sys_job_log` VALUES (7239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-11 20:56:06'); INSERT INTO `sys_job_log` VALUES (7240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-11 20:56:14'); INSERT INTO `sys_job_log` VALUES (7241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-11 20:58:04'); INSERT INTO `sys_job_log` VALUES (7242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-11 20:58:06'); INSERT INTO `sys_job_log` VALUES (7243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-11 20:58:14'); INSERT INTO `sys_job_log` VALUES (7244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-11 21:00:04'); INSERT INTO `sys_job_log` VALUES (7245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-11 21:00:06'); INSERT INTO `sys_job_log` VALUES (7246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-11 21:00:14'); INSERT INTO `sys_job_log` VALUES (7247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-11 21:02:04'); INSERT INTO `sys_job_log` VALUES (7248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-11 21:02:06'); INSERT INTO `sys_job_log` VALUES (7249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-11 21:02:14'); INSERT INTO `sys_job_log` VALUES (7250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-11 21:04:04'); INSERT INTO `sys_job_log` VALUES (7251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 21:04:06'); INSERT INTO `sys_job_log` VALUES (7252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-11 21:04:14'); INSERT INTO `sys_job_log` VALUES (7253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-11 21:06:04'); INSERT INTO `sys_job_log` VALUES (7254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:300毫秒', '0', '', '2022-01-11 21:06:06'); INSERT INTO `sys_job_log` VALUES (7255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-11 21:06:14'); INSERT INTO `sys_job_log` VALUES (7256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-11 21:08:04'); INSERT INTO `sys_job_log` VALUES (7257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-11 21:08:06'); INSERT INTO `sys_job_log` VALUES (7258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-11 21:08:14'); INSERT INTO `sys_job_log` VALUES (7259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-11 21:10:04'); INSERT INTO `sys_job_log` VALUES (7260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-11 21:10:06'); INSERT INTO `sys_job_log` VALUES (7261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-11 21:10:14'); INSERT INTO `sys_job_log` VALUES (7262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:298毫秒', '0', '', '2022-01-11 21:12:04'); INSERT INTO `sys_job_log` VALUES (7263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-11 21:12:06'); INSERT INTO `sys_job_log` VALUES (7264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-11 21:12:14'); INSERT INTO `sys_job_log` VALUES (7265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-11 21:14:04'); INSERT INTO `sys_job_log` VALUES (7266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-11 21:14:06'); INSERT INTO `sys_job_log` VALUES (7267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-11 21:14:14'); INSERT INTO `sys_job_log` VALUES (7268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-11 21:16:04'); INSERT INTO `sys_job_log` VALUES (7269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-11 21:16:06'); INSERT INTO `sys_job_log` VALUES (7270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-11 21:16:14'); INSERT INTO `sys_job_log` VALUES (7271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-11 21:18:04'); INSERT INTO `sys_job_log` VALUES (7272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-11 21:18:06'); INSERT INTO `sys_job_log` VALUES (7273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-11 21:18:14'); INSERT INTO `sys_job_log` VALUES (7274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-11 21:20:04'); INSERT INTO `sys_job_log` VALUES (7275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-11 21:20:06'); INSERT INTO `sys_job_log` VALUES (7276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-11 21:20:14'); INSERT INTO `sys_job_log` VALUES (7277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1215毫秒', '0', '', '2022-01-11 21:22:05'); INSERT INTO `sys_job_log` VALUES (7278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-11 21:22:06'); INSERT INTO `sys_job_log` VALUES (7279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-11 21:22:14'); INSERT INTO `sys_job_log` VALUES (7280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-11 21:24:05'); INSERT INTO `sys_job_log` VALUES (7281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-11 21:24:06'); INSERT INTO `sys_job_log` VALUES (7282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-11 21:24:14'); INSERT INTO `sys_job_log` VALUES (7283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-11 21:26:04'); INSERT INTO `sys_job_log` VALUES (7284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-11 21:26:06'); INSERT INTO `sys_job_log` VALUES (7285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-11 21:26:14'); INSERT INTO `sys_job_log` VALUES (7286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-11 21:28:04'); INSERT INTO `sys_job_log` VALUES (7287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-11 21:28:06'); INSERT INTO `sys_job_log` VALUES (7288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-11 21:28:14'); INSERT INTO `sys_job_log` VALUES (7289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-11 21:30:04'); INSERT INTO `sys_job_log` VALUES (7290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-11 21:30:06'); INSERT INTO `sys_job_log` VALUES (7291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-11 21:30:14'); INSERT INTO `sys_job_log` VALUES (7292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-11 21:32:04'); INSERT INTO `sys_job_log` VALUES (7293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-11 21:32:06'); INSERT INTO `sys_job_log` VALUES (7294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-11 21:32:14'); INSERT INTO `sys_job_log` VALUES (7295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:693毫秒', '0', '', '2022-01-11 21:34:04'); INSERT INTO `sys_job_log` VALUES (7296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-11 21:34:06'); INSERT INTO `sys_job_log` VALUES (7297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-11 21:34:14'); INSERT INTO `sys_job_log` VALUES (7298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-11 21:36:04'); INSERT INTO `sys_job_log` VALUES (7299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 21:36:06'); INSERT INTO `sys_job_log` VALUES (7300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-11 21:36:14'); INSERT INTO `sys_job_log` VALUES (7301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-11 21:38:04'); INSERT INTO `sys_job_log` VALUES (7302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-11 21:38:06'); INSERT INTO `sys_job_log` VALUES (7303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-11 21:38:14'); INSERT INTO `sys_job_log` VALUES (7304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-11 21:40:04'); INSERT INTO `sys_job_log` VALUES (7305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-11 21:40:06'); INSERT INTO `sys_job_log` VALUES (7306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:439毫秒', '0', '', '2022-01-11 21:40:14'); INSERT INTO `sys_job_log` VALUES (7307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-11 21:42:04'); INSERT INTO `sys_job_log` VALUES (7308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-11 21:42:06'); INSERT INTO `sys_job_log` VALUES (7309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-11 21:42:14'); INSERT INTO `sys_job_log` VALUES (7310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-11 21:44:04'); INSERT INTO `sys_job_log` VALUES (7311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-11 21:44:06'); INSERT INTO `sys_job_log` VALUES (7312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-11 21:44:14'); INSERT INTO `sys_job_log` VALUES (7313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-11 21:46:04'); INSERT INTO `sys_job_log` VALUES (7314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-11 21:46:06'); INSERT INTO `sys_job_log` VALUES (7315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-11 21:46:14'); INSERT INTO `sys_job_log` VALUES (7316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-11 21:48:04'); INSERT INTO `sys_job_log` VALUES (7317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-11 21:48:06'); INSERT INTO `sys_job_log` VALUES (7318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-11 21:48:14'); INSERT INTO `sys_job_log` VALUES (7319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:623毫秒', '0', '', '2022-01-12 08:40:08'); INSERT INTO `sys_job_log` VALUES (7320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:4毫秒', '0', '', '2022-01-12 08:40:08'); INSERT INTO `sys_job_log` VALUES (7321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-12 08:40:14'); INSERT INTO `sys_job_log` VALUES (7322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2024毫秒', '0', '', '2022-01-12 08:42:06'); INSERT INTO `sys_job_log` VALUES (7323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1838毫秒', '0', '', '2022-01-12 08:42:07'); INSERT INTO `sys_job_log` VALUES (7324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-12 08:42:14'); INSERT INTO `sys_job_log` VALUES (7325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1755毫秒', '0', '', '2022-01-12 08:44:05'); INSERT INTO `sys_job_log` VALUES (7326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:985毫秒', '0', '', '2022-01-12 08:44:06'); INSERT INTO `sys_job_log` VALUES (7327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1341毫秒', '0', '', '2022-01-12 08:44:15'); INSERT INTO `sys_job_log` VALUES (7328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-12 08:46:04'); INSERT INTO `sys_job_log` VALUES (7329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 08:46:06'); INSERT INTO `sys_job_log` VALUES (7330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-12 08:46:14'); INSERT INTO `sys_job_log` VALUES (7331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-12 08:48:05'); INSERT INTO `sys_job_log` VALUES (7332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-12 08:48:06'); INSERT INTO `sys_job_log` VALUES (7333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-12 08:48:14'); INSERT INTO `sys_job_log` VALUES (7334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-12 08:50:05'); INSERT INTO `sys_job_log` VALUES (7335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-12 08:50:06'); INSERT INTO `sys_job_log` VALUES (7336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:494毫秒', '0', '', '2022-01-12 08:50:14'); INSERT INTO `sys_job_log` VALUES (7337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-12 08:52:04'); INSERT INTO `sys_job_log` VALUES (7338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 08:52:06'); INSERT INTO `sys_job_log` VALUES (7339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-12 08:52:14'); INSERT INTO `sys_job_log` VALUES (7340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-12 08:54:04'); INSERT INTO `sys_job_log` VALUES (7341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 08:54:06'); INSERT INTO `sys_job_log` VALUES (7342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-12 08:54:15'); INSERT INTO `sys_job_log` VALUES (7343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1217毫秒', '0', '', '2022-01-12 08:56:05'); INSERT INTO `sys_job_log` VALUES (7344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 08:56:06'); INSERT INTO `sys_job_log` VALUES (7345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-12 08:56:15'); INSERT INTO `sys_job_log` VALUES (7346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-12 08:58:05'); INSERT INTO `sys_job_log` VALUES (7347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 08:58:06'); INSERT INTO `sys_job_log` VALUES (7348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-12 08:58:14'); INSERT INTO `sys_job_log` VALUES (7349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-12 09:00:05'); INSERT INTO `sys_job_log` VALUES (7350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-12 09:00:06'); INSERT INTO `sys_job_log` VALUES (7351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-12 09:00:14'); INSERT INTO `sys_job_log` VALUES (7352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1240毫秒', '0', '', '2022-01-12 09:02:05'); INSERT INTO `sys_job_log` VALUES (7353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 09:02:06'); INSERT INTO `sys_job_log` VALUES (7354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-12 09:02:14'); INSERT INTO `sys_job_log` VALUES (7355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-12 09:04:04'); INSERT INTO `sys_job_log` VALUES (7356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-12 09:04:06'); INSERT INTO `sys_job_log` VALUES (7357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1083毫秒', '0', '', '2022-01-12 09:04:15'); INSERT INTO `sys_job_log` VALUES (7358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1310毫秒', '0', '', '2022-01-12 09:06:05'); INSERT INTO `sys_job_log` VALUES (7359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 09:06:06'); INSERT INTO `sys_job_log` VALUES (7360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-12 09:06:14'); INSERT INTO `sys_job_log` VALUES (7361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-12 09:08:05'); INSERT INTO `sys_job_log` VALUES (7362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-12 09:08:06'); INSERT INTO `sys_job_log` VALUES (7363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1180毫秒', '0', '', '2022-01-12 09:08:15'); INSERT INTO `sys_job_log` VALUES (7364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1141毫秒', '0', '', '2022-01-12 09:10:05'); INSERT INTO `sys_job_log` VALUES (7365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-12 09:10:06'); INSERT INTO `sys_job_log` VALUES (7366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-12 09:10:15'); INSERT INTO `sys_job_log` VALUES (7367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-12 09:12:05'); INSERT INTO `sys_job_log` VALUES (7368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-12 09:12:06'); INSERT INTO `sys_job_log` VALUES (7369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-12 09:12:14'); INSERT INTO `sys_job_log` VALUES (7370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-12 09:14:05'); INSERT INTO `sys_job_log` VALUES (7371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 09:14:06'); INSERT INTO `sys_job_log` VALUES (7372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-12 09:14:15'); INSERT INTO `sys_job_log` VALUES (7373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-12 09:16:04'); INSERT INTO `sys_job_log` VALUES (7374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 09:16:06'); INSERT INTO `sys_job_log` VALUES (7375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-12 09:16:14'); INSERT INTO `sys_job_log` VALUES (7376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-12 09:18:04'); INSERT INTO `sys_job_log` VALUES (7377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-12 09:18:06'); INSERT INTO `sys_job_log` VALUES (7378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-12 09:18:14'); INSERT INTO `sys_job_log` VALUES (7379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-12 09:20:04'); INSERT INTO `sys_job_log` VALUES (7380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 09:20:06'); INSERT INTO `sys_job_log` VALUES (7381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2014毫秒', '0', '', '2022-01-12 09:20:16'); INSERT INTO `sys_job_log` VALUES (7382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-12 09:22:05'); INSERT INTO `sys_job_log` VALUES (7383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 09:22:06'); INSERT INTO `sys_job_log` VALUES (7384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-12 09:22:14'); INSERT INTO `sys_job_log` VALUES (7385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1204毫秒', '0', '', '2022-01-12 09:24:05'); INSERT INTO `sys_job_log` VALUES (7386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-12 09:24:06'); INSERT INTO `sys_job_log` VALUES (7387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-12 09:24:15'); INSERT INTO `sys_job_log` VALUES (7388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1204毫秒', '0', '', '2022-01-12 09:26:05'); INSERT INTO `sys_job_log` VALUES (7389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 09:26:06'); INSERT INTO `sys_job_log` VALUES (7390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-12 09:26:15'); INSERT INTO `sys_job_log` VALUES (7391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-12 09:28:05'); INSERT INTO `sys_job_log` VALUES (7392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-12 09:28:06'); INSERT INTO `sys_job_log` VALUES (7393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-12 09:28:15'); INSERT INTO `sys_job_log` VALUES (7394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-12 09:30:04'); INSERT INTO `sys_job_log` VALUES (7395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-12 09:30:06'); INSERT INTO `sys_job_log` VALUES (7396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-12 09:30:15'); INSERT INTO `sys_job_log` VALUES (7397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1263毫秒', '0', '', '2022-01-12 09:32:05'); INSERT INTO `sys_job_log` VALUES (7398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 09:32:06'); INSERT INTO `sys_job_log` VALUES (7399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-12 09:32:15'); INSERT INTO `sys_job_log` VALUES (7400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-12 09:34:04'); INSERT INTO `sys_job_log` VALUES (7401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-12 09:34:06'); INSERT INTO `sys_job_log` VALUES (7402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-12 09:34:14'); INSERT INTO `sys_job_log` VALUES (7403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-12 09:36:04'); INSERT INTO `sys_job_log` VALUES (7404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 09:36:06'); INSERT INTO `sys_job_log` VALUES (7405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1219毫秒', '0', '', '2022-01-12 09:36:15'); INSERT INTO `sys_job_log` VALUES (7406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-12 09:38:05'); INSERT INTO `sys_job_log` VALUES (7407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 09:38:06'); INSERT INTO `sys_job_log` VALUES (7408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-12 09:38:14'); INSERT INTO `sys_job_log` VALUES (7409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-12 09:40:04'); INSERT INTO `sys_job_log` VALUES (7410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-12 09:40:07'); INSERT INTO `sys_job_log` VALUES (7411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 09:40:14'); INSERT INTO `sys_job_log` VALUES (7412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-12 09:42:05'); INSERT INTO `sys_job_log` VALUES (7413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 09:42:06'); INSERT INTO `sys_job_log` VALUES (7414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-12 09:42:15'); INSERT INTO `sys_job_log` VALUES (7415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 09:44:04'); INSERT INTO `sys_job_log` VALUES (7416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-12 09:44:06'); INSERT INTO `sys_job_log` VALUES (7417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1214毫秒', '0', '', '2022-01-12 09:44:15'); INSERT INTO `sys_job_log` VALUES (7418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-12 09:46:04'); INSERT INTO `sys_job_log` VALUES (7419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 09:46:06'); INSERT INTO `sys_job_log` VALUES (7420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-12 09:46:16'); INSERT INTO `sys_job_log` VALUES (7421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-12 09:48:05'); INSERT INTO `sys_job_log` VALUES (7422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 09:48:06'); INSERT INTO `sys_job_log` VALUES (7423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-12 09:48:14'); INSERT INTO `sys_job_log` VALUES (7424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-12 09:50:05'); INSERT INTO `sys_job_log` VALUES (7425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-12 09:50:06'); INSERT INTO `sys_job_log` VALUES (7426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-12 09:50:14'); INSERT INTO `sys_job_log` VALUES (7427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-12 09:52:04'); INSERT INTO `sys_job_log` VALUES (7428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 09:52:06'); INSERT INTO `sys_job_log` VALUES (7429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2007毫秒', '0', '', '2022-01-12 09:52:16'); INSERT INTO `sys_job_log` VALUES (7430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-12 09:54:04'); INSERT INTO `sys_job_log` VALUES (7431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 09:54:06'); INSERT INTO `sys_job_log` VALUES (7432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1179毫秒', '0', '', '2022-01-12 09:54:15'); INSERT INTO `sys_job_log` VALUES (7433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-12 09:56:04'); INSERT INTO `sys_job_log` VALUES (7434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-12 09:56:06'); INSERT INTO `sys_job_log` VALUES (7435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-12 09:56:15'); INSERT INTO `sys_job_log` VALUES (7436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2017毫秒', '0', '', '2022-01-12 09:58:06'); INSERT INTO `sys_job_log` VALUES (7437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-12 09:58:06'); INSERT INTO `sys_job_log` VALUES (7438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-12 09:58:15'); INSERT INTO `sys_job_log` VALUES (7439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-12 10:00:04'); INSERT INTO `sys_job_log` VALUES (7440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-12 10:00:06'); INSERT INTO `sys_job_log` VALUES (7441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-12 10:00:15'); INSERT INTO `sys_job_log` VALUES (7442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-12 10:02:05'); INSERT INTO `sys_job_log` VALUES (7443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-12 10:02:06'); INSERT INTO `sys_job_log` VALUES (7444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-12 10:02:15'); INSERT INTO `sys_job_log` VALUES (7445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-12 10:04:05'); INSERT INTO `sys_job_log` VALUES (7446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-12 10:04:06'); INSERT INTO `sys_job_log` VALUES (7447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-12 10:04:15'); INSERT INTO `sys_job_log` VALUES (7448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 10:06:04'); INSERT INTO `sys_job_log` VALUES (7449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-12 10:06:06'); INSERT INTO `sys_job_log` VALUES (7450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-12 10:06:14'); INSERT INTO `sys_job_log` VALUES (7451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2018毫秒', '0', '', '2022-01-12 10:08:06'); INSERT INTO `sys_job_log` VALUES (7452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:59毫秒', '0', '', '2022-01-12 10:08:06'); INSERT INTO `sys_job_log` VALUES (7453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-12 10:08:14'); INSERT INTO `sys_job_log` VALUES (7454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1223毫秒', '0', '', '2022-01-12 10:10:05'); INSERT INTO `sys_job_log` VALUES (7455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 10:10:06'); INSERT INTO `sys_job_log` VALUES (7456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-12 10:10:15'); INSERT INTO `sys_job_log` VALUES (7457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-12 10:12:05'); INSERT INTO `sys_job_log` VALUES (7458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1085毫秒', '0', '', '2022-01-12 10:12:07'); INSERT INTO `sys_job_log` VALUES (7459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-12 10:12:14'); INSERT INTO `sys_job_log` VALUES (7460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-12 10:14:04'); INSERT INTO `sys_job_log` VALUES (7461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 10:14:06'); INSERT INTO `sys_job_log` VALUES (7462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 10:14:14'); INSERT INTO `sys_job_log` VALUES (7463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-12 10:16:05'); INSERT INTO `sys_job_log` VALUES (7464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 10:16:06'); INSERT INTO `sys_job_log` VALUES (7465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-12 10:16:15'); INSERT INTO `sys_job_log` VALUES (7466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2015毫秒', '0', '', '2022-01-12 10:18:06'); INSERT INTO `sys_job_log` VALUES (7467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-12 10:18:06'); INSERT INTO `sys_job_log` VALUES (7468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 10:18:14'); INSERT INTO `sys_job_log` VALUES (7469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-12 10:20:05'); INSERT INTO `sys_job_log` VALUES (7470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-12 10:20:06'); INSERT INTO `sys_job_log` VALUES (7471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-12 10:20:14'); INSERT INTO `sys_job_log` VALUES (7472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-12 10:22:05'); INSERT INTO `sys_job_log` VALUES (7473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-12 10:22:06'); INSERT INTO `sys_job_log` VALUES (7474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-12 10:22:15'); INSERT INTO `sys_job_log` VALUES (7475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-12 10:24:04'); INSERT INTO `sys_job_log` VALUES (7476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-12 10:24:07'); INSERT INTO `sys_job_log` VALUES (7477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 10:24:14'); INSERT INTO `sys_job_log` VALUES (7478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1222毫秒', '0', '', '2022-01-12 10:26:05'); INSERT INTO `sys_job_log` VALUES (7479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-12 10:26:06'); INSERT INTO `sys_job_log` VALUES (7480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-12 10:26:14'); INSERT INTO `sys_job_log` VALUES (7481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-12 10:28:05'); INSERT INTO `sys_job_log` VALUES (7482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-12 10:28:06'); INSERT INTO `sys_job_log` VALUES (7483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 10:28:14'); INSERT INTO `sys_job_log` VALUES (7484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1249毫秒', '0', '', '2022-01-12 10:30:05'); INSERT INTO `sys_job_log` VALUES (7485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-12 10:30:06'); INSERT INTO `sys_job_log` VALUES (7486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-12 10:30:15'); INSERT INTO `sys_job_log` VALUES (7487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-12 10:32:04'); INSERT INTO `sys_job_log` VALUES (7488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 10:32:06'); INSERT INTO `sys_job_log` VALUES (7489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-12 10:32:15'); INSERT INTO `sys_job_log` VALUES (7490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1084毫秒', '0', '', '2022-01-12 10:34:05'); INSERT INTO `sys_job_log` VALUES (7491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 10:34:06'); INSERT INTO `sys_job_log` VALUES (7492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-12 10:34:15'); INSERT INTO `sys_job_log` VALUES (7493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1213毫秒', '0', '', '2022-01-12 10:36:05'); INSERT INTO `sys_job_log` VALUES (7494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 10:36:06'); INSERT INTO `sys_job_log` VALUES (7495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-12 10:36:15'); INSERT INTO `sys_job_log` VALUES (7496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-12 10:38:04'); INSERT INTO `sys_job_log` VALUES (7497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 10:38:06'); INSERT INTO `sys_job_log` VALUES (7498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-12 10:38:15'); INSERT INTO `sys_job_log` VALUES (7499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-12 10:40:04'); INSERT INTO `sys_job_log` VALUES (7500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-12 10:40:06'); INSERT INTO `sys_job_log` VALUES (7501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-12 10:40:14'); INSERT INTO `sys_job_log` VALUES (7502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1127毫秒', '0', '', '2022-01-12 10:42:05'); INSERT INTO `sys_job_log` VALUES (7503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-12 10:42:06'); INSERT INTO `sys_job_log` VALUES (7504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1311毫秒', '0', '', '2022-01-12 10:42:15'); INSERT INTO `sys_job_log` VALUES (7505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-12 10:44:05'); INSERT INTO `sys_job_log` VALUES (7506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-12 10:44:06'); INSERT INTO `sys_job_log` VALUES (7507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1167毫秒', '0', '', '2022-01-12 10:44:15'); INSERT INTO `sys_job_log` VALUES (7508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-12 10:46:05'); INSERT INTO `sys_job_log` VALUES (7509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 10:46:06'); INSERT INTO `sys_job_log` VALUES (7510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-12 10:46:15'); INSERT INTO `sys_job_log` VALUES (7511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-12 10:48:04'); INSERT INTO `sys_job_log` VALUES (7512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-12 10:48:06'); INSERT INTO `sys_job_log` VALUES (7513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1215毫秒', '0', '', '2022-01-12 10:48:15'); INSERT INTO `sys_job_log` VALUES (7514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-12 10:50:04'); INSERT INTO `sys_job_log` VALUES (7515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-12 10:50:06'); INSERT INTO `sys_job_log` VALUES (7516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 10:50:14'); INSERT INTO `sys_job_log` VALUES (7517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-12 10:52:04'); INSERT INTO `sys_job_log` VALUES (7518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-12 10:52:06'); INSERT INTO `sys_job_log` VALUES (7519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-12 10:52:14'); INSERT INTO `sys_job_log` VALUES (7520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-12 10:54:05'); INSERT INTO `sys_job_log` VALUES (7521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 10:54:06'); INSERT INTO `sys_job_log` VALUES (7522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-12 10:54:15'); INSERT INTO `sys_job_log` VALUES (7523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 10:56:04'); INSERT INTO `sys_job_log` VALUES (7524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:60毫秒', '0', '', '2022-01-12 10:56:06'); INSERT INTO `sys_job_log` VALUES (7525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-12 10:56:14'); INSERT INTO `sys_job_log` VALUES (7526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-12 10:58:04'); INSERT INTO `sys_job_log` VALUES (7527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 10:58:06'); INSERT INTO `sys_job_log` VALUES (7528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-12 10:58:14'); INSERT INTO `sys_job_log` VALUES (7529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-12 11:00:05'); INSERT INTO `sys_job_log` VALUES (7530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 11:00:06'); INSERT INTO `sys_job_log` VALUES (7531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2022-01-12 11:00:15'); INSERT INTO `sys_job_log` VALUES (7532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-12 11:02:04'); INSERT INTO `sys_job_log` VALUES (7533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-12 11:02:06'); INSERT INTO `sys_job_log` VALUES (7534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-12 11:02:14'); INSERT INTO `sys_job_log` VALUES (7535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-12 11:04:05'); INSERT INTO `sys_job_log` VALUES (7536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 11:04:06'); INSERT INTO `sys_job_log` VALUES (7537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-12 11:04:14'); INSERT INTO `sys_job_log` VALUES (7538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-12 11:06:05'); INSERT INTO `sys_job_log` VALUES (7539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-12 11:06:06'); INSERT INTO `sys_job_log` VALUES (7540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-12 11:06:15'); INSERT INTO `sys_job_log` VALUES (7541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-12 11:08:04'); INSERT INTO `sys_job_log` VALUES (7542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-12 11:08:06'); INSERT INTO `sys_job_log` VALUES (7543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-12 11:08:14'); INSERT INTO `sys_job_log` VALUES (7544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1236毫秒', '0', '', '2022-01-12 11:10:05'); INSERT INTO `sys_job_log` VALUES (7545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-12 11:10:06'); INSERT INTO `sys_job_log` VALUES (7546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-12 11:10:14'); INSERT INTO `sys_job_log` VALUES (7547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-12 11:12:05'); INSERT INTO `sys_job_log` VALUES (7548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-12 11:12:06'); INSERT INTO `sys_job_log` VALUES (7549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-12 11:12:14'); INSERT INTO `sys_job_log` VALUES (7550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-12 11:14:05'); INSERT INTO `sys_job_log` VALUES (7551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-12 11:14:06'); INSERT INTO `sys_job_log` VALUES (7552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-12 11:14:15'); INSERT INTO `sys_job_log` VALUES (7553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2022-01-12 11:16:05'); INSERT INTO `sys_job_log` VALUES (7554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-12 11:16:06'); INSERT INTO `sys_job_log` VALUES (7555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-12 11:16:14'); INSERT INTO `sys_job_log` VALUES (7556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 11:18:04'); INSERT INTO `sys_job_log` VALUES (7557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-12 11:18:06'); INSERT INTO `sys_job_log` VALUES (7558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-12 11:18:14'); INSERT INTO `sys_job_log` VALUES (7559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-12 11:20:05'); INSERT INTO `sys_job_log` VALUES (7560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-12 11:20:06'); INSERT INTO `sys_job_log` VALUES (7561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-12 11:20:14'); INSERT INTO `sys_job_log` VALUES (7562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 11:22:04'); INSERT INTO `sys_job_log` VALUES (7563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-12 11:22:06'); INSERT INTO `sys_job_log` VALUES (7564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1204毫秒', '0', '', '2022-01-12 11:22:15'); INSERT INTO `sys_job_log` VALUES (7565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-12 11:24:04'); INSERT INTO `sys_job_log` VALUES (7566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 11:24:06'); INSERT INTO `sys_job_log` VALUES (7567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 11:24:14'); INSERT INTO `sys_job_log` VALUES (7568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-12 11:26:05'); INSERT INTO `sys_job_log` VALUES (7569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 11:26:06'); INSERT INTO `sys_job_log` VALUES (7570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1180毫秒', '0', '', '2022-01-12 11:26:15'); INSERT INTO `sys_job_log` VALUES (7571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-12 11:28:04'); INSERT INTO `sys_job_log` VALUES (7572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 11:28:06'); INSERT INTO `sys_job_log` VALUES (7573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-12 11:28:14'); INSERT INTO `sys_job_log` VALUES (7574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-12 11:30:05'); INSERT INTO `sys_job_log` VALUES (7575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 11:30:06'); INSERT INTO `sys_job_log` VALUES (7576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-12 11:30:15'); INSERT INTO `sys_job_log` VALUES (7577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-12 11:32:05'); INSERT INTO `sys_job_log` VALUES (7578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-12 11:32:06'); INSERT INTO `sys_job_log` VALUES (7579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-12 11:32:15'); INSERT INTO `sys_job_log` VALUES (7580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-12 11:34:04'); INSERT INTO `sys_job_log` VALUES (7581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-12 11:34:06'); INSERT INTO `sys_job_log` VALUES (7582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-12 11:34:14'); INSERT INTO `sys_job_log` VALUES (7583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1230毫秒', '0', '', '2022-01-12 11:36:05'); INSERT INTO `sys_job_log` VALUES (7584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 11:36:06'); INSERT INTO `sys_job_log` VALUES (7585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-12 11:36:15'); INSERT INTO `sys_job_log` VALUES (7586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-12 11:38:05'); INSERT INTO `sys_job_log` VALUES (7587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 11:38:06'); INSERT INTO `sys_job_log` VALUES (7588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-12 11:38:14'); INSERT INTO `sys_job_log` VALUES (7589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1123毫秒', '0', '', '2022-01-12 11:40:05'); INSERT INTO `sys_job_log` VALUES (7590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-12 11:40:06'); INSERT INTO `sys_job_log` VALUES (7591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-12 11:40:14'); INSERT INTO `sys_job_log` VALUES (7592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2022-01-12 11:42:05'); INSERT INTO `sys_job_log` VALUES (7593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-12 11:42:06'); INSERT INTO `sys_job_log` VALUES (7594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1225毫秒', '0', '', '2022-01-12 11:42:15'); INSERT INTO `sys_job_log` VALUES (7595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-12 11:44:05'); INSERT INTO `sys_job_log` VALUES (7596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-12 11:44:06'); INSERT INTO `sys_job_log` VALUES (7597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-12 11:44:15'); INSERT INTO `sys_job_log` VALUES (7598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-12 11:46:04'); INSERT INTO `sys_job_log` VALUES (7599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-12 11:46:06'); INSERT INTO `sys_job_log` VALUES (7600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-12 11:46:14'); INSERT INTO `sys_job_log` VALUES (7601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-12 11:48:04'); INSERT INTO `sys_job_log` VALUES (7602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 11:48:06'); INSERT INTO `sys_job_log` VALUES (7603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-12 11:48:15'); INSERT INTO `sys_job_log` VALUES (7604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-12 11:50:05'); INSERT INTO `sys_job_log` VALUES (7605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-12 11:50:06'); INSERT INTO `sys_job_log` VALUES (7606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-12 11:50:14'); INSERT INTO `sys_job_log` VALUES (7607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 11:52:04'); INSERT INTO `sys_job_log` VALUES (7608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-12 11:52:06'); INSERT INTO `sys_job_log` VALUES (7609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-12 11:52:15'); INSERT INTO `sys_job_log` VALUES (7610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-12 11:54:04'); INSERT INTO `sys_job_log` VALUES (7611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-12 11:54:06'); INSERT INTO `sys_job_log` VALUES (7612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-12 11:54:15'); INSERT INTO `sys_job_log` VALUES (7613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-12 11:56:05'); INSERT INTO `sys_job_log` VALUES (7614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-12 11:56:06'); INSERT INTO `sys_job_log` VALUES (7615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-12 11:56:14'); INSERT INTO `sys_job_log` VALUES (7616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-12 11:58:04'); INSERT INTO `sys_job_log` VALUES (7617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1217毫秒', '0', '', '2022-01-12 11:58:07'); INSERT INTO `sys_job_log` VALUES (7618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 11:58:14'); INSERT INTO `sys_job_log` VALUES (7619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-12 12:00:04'); INSERT INTO `sys_job_log` VALUES (7620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-12 12:00:06'); INSERT INTO `sys_job_log` VALUES (7621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-12 12:00:15'); INSERT INTO `sys_job_log` VALUES (7622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-12 12:02:05'); INSERT INTO `sys_job_log` VALUES (7623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-12 12:02:06'); INSERT INTO `sys_job_log` VALUES (7624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-12 12:02:15'); INSERT INTO `sys_job_log` VALUES (7625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-12 12:04:04'); INSERT INTO `sys_job_log` VALUES (7626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-12 12:04:06'); INSERT INTO `sys_job_log` VALUES (7627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-12 12:04:15'); INSERT INTO `sys_job_log` VALUES (7628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1165毫秒', '0', '', '2022-01-12 12:06:05'); INSERT INTO `sys_job_log` VALUES (7629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-12 12:06:06'); INSERT INTO `sys_job_log` VALUES (7630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-12 12:06:14'); INSERT INTO `sys_job_log` VALUES (7631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-12 12:08:04'); INSERT INTO `sys_job_log` VALUES (7632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-12 12:08:06'); INSERT INTO `sys_job_log` VALUES (7633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-12 12:08:14'); INSERT INTO `sys_job_log` VALUES (7634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-12 12:10:04'); INSERT INTO `sys_job_log` VALUES (7635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-12 12:10:06'); INSERT INTO `sys_job_log` VALUES (7636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-12 12:10:14'); INSERT INTO `sys_job_log` VALUES (7637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1161毫秒', '0', '', '2022-01-12 12:12:05'); INSERT INTO `sys_job_log` VALUES (7638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 12:12:06'); INSERT INTO `sys_job_log` VALUES (7639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-12 12:12:14'); INSERT INTO `sys_job_log` VALUES (7640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-12 12:14:05'); INSERT INTO `sys_job_log` VALUES (7641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-12 12:14:06'); INSERT INTO `sys_job_log` VALUES (7642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-12 12:14:15'); INSERT INTO `sys_job_log` VALUES (7643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-12 12:16:06'); INSERT INTO `sys_job_log` VALUES (7644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 12:16:06'); INSERT INTO `sys_job_log` VALUES (7645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-12 12:16:14'); INSERT INTO `sys_job_log` VALUES (7646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1302毫秒', '0', '', '2022-01-12 12:18:05'); INSERT INTO `sys_job_log` VALUES (7647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-12 12:18:06'); INSERT INTO `sys_job_log` VALUES (7648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-12 12:18:15'); INSERT INTO `sys_job_log` VALUES (7649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1180毫秒', '0', '', '2022-01-12 12:20:05'); INSERT INTO `sys_job_log` VALUES (7650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 12:20:06'); INSERT INTO `sys_job_log` VALUES (7651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1074毫秒', '0', '', '2022-01-12 12:20:15'); INSERT INTO `sys_job_log` VALUES (7652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-12 12:22:04'); INSERT INTO `sys_job_log` VALUES (7653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-12 12:22:06'); INSERT INTO `sys_job_log` VALUES (7654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-12 12:22:15'); INSERT INTO `sys_job_log` VALUES (7655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-12 12:24:05'); INSERT INTO `sys_job_log` VALUES (7656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-12 12:24:06'); INSERT INTO `sys_job_log` VALUES (7657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-12 12:24:15'); INSERT INTO `sys_job_log` VALUES (7658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1135毫秒', '0', '', '2022-01-12 12:26:05'); INSERT INTO `sys_job_log` VALUES (7659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-12 12:26:06'); INSERT INTO `sys_job_log` VALUES (7660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-12 12:26:14'); INSERT INTO `sys_job_log` VALUES (7661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-12 12:28:06'); INSERT INTO `sys_job_log` VALUES (7662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-12 12:28:06'); INSERT INTO `sys_job_log` VALUES (7663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1248毫秒', '0', '', '2022-01-12 12:28:15'); INSERT INTO `sys_job_log` VALUES (7664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-12 12:30:04'); INSERT INTO `sys_job_log` VALUES (7665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-12 12:30:06'); INSERT INTO `sys_job_log` VALUES (7666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-12 12:30:14'); INSERT INTO `sys_job_log` VALUES (7667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-12 12:32:04'); INSERT INTO `sys_job_log` VALUES (7668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 12:32:06'); INSERT INTO `sys_job_log` VALUES (7669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-12 12:32:14'); INSERT INTO `sys_job_log` VALUES (7670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-12 12:34:04'); INSERT INTO `sys_job_log` VALUES (7671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-12 12:34:06'); INSERT INTO `sys_job_log` VALUES (7672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-12 12:34:15'); INSERT INTO `sys_job_log` VALUES (7673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-12 12:36:04'); INSERT INTO `sys_job_log` VALUES (7674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-12 12:36:06'); INSERT INTO `sys_job_log` VALUES (7675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-12 12:36:14'); INSERT INTO `sys_job_log` VALUES (7676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1220毫秒', '0', '', '2022-01-12 12:38:05'); INSERT INTO `sys_job_log` VALUES (7677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 12:38:06'); INSERT INTO `sys_job_log` VALUES (7678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-12 12:38:15'); INSERT INTO `sys_job_log` VALUES (7679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1233毫秒', '0', '', '2022-01-12 12:40:05'); INSERT INTO `sys_job_log` VALUES (7680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 12:40:06'); INSERT INTO `sys_job_log` VALUES (7681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-12 12:40:15'); INSERT INTO `sys_job_log` VALUES (7682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-12 12:42:04'); INSERT INTO `sys_job_log` VALUES (7683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 12:42:06'); INSERT INTO `sys_job_log` VALUES (7684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-12 12:42:14'); INSERT INTO `sys_job_log` VALUES (7685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2255毫秒', '0', '', '2022-01-12 13:36:06'); INSERT INTO `sys_job_log` VALUES (7686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-12 13:36:06'); INSERT INTO `sys_job_log` VALUES (7687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:308毫秒', '0', '', '2022-01-12 13:36:14'); INSERT INTO `sys_job_log` VALUES (7688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-12 13:38:04'); INSERT INTO `sys_job_log` VALUES (7689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-12 13:38:06'); INSERT INTO `sys_job_log` VALUES (7690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-12 13:38:14'); INSERT INTO `sys_job_log` VALUES (7691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-12 13:40:04'); INSERT INTO `sys_job_log` VALUES (7692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-12 13:40:06'); INSERT INTO `sys_job_log` VALUES (7693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-12 13:40:15'); INSERT INTO `sys_job_log` VALUES (7694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-12 13:42:04'); INSERT INTO `sys_job_log` VALUES (7695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-12 13:42:06'); INSERT INTO `sys_job_log` VALUES (7696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-12 13:42:15'); INSERT INTO `sys_job_log` VALUES (7697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-12 13:44:04'); INSERT INTO `sys_job_log` VALUES (7698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 13:44:06'); INSERT INTO `sys_job_log` VALUES (7699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-12 13:44:14'); INSERT INTO `sys_job_log` VALUES (7700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-12 13:46:04'); INSERT INTO `sys_job_log` VALUES (7701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-12 13:46:06'); INSERT INTO `sys_job_log` VALUES (7702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-12 13:46:14'); INSERT INTO `sys_job_log` VALUES (7703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-12 13:48:05'); INSERT INTO `sys_job_log` VALUES (7704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-12 13:48:06'); INSERT INTO `sys_job_log` VALUES (7705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-12 13:48:15'); INSERT INTO `sys_job_log` VALUES (7706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-12 13:50:04'); INSERT INTO `sys_job_log` VALUES (7707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1223毫秒', '0', '', '2022-01-12 13:50:07'); INSERT INTO `sys_job_log` VALUES (7708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-12 13:50:15'); INSERT INTO `sys_job_log` VALUES (7709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-12 13:52:05'); INSERT INTO `sys_job_log` VALUES (7710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 13:52:06'); INSERT INTO `sys_job_log` VALUES (7711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1229毫秒', '0', '', '2022-01-12 13:52:15'); INSERT INTO `sys_job_log` VALUES (7712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1258毫秒', '0', '', '2022-01-12 13:54:05'); INSERT INTO `sys_job_log` VALUES (7713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-12 13:54:06'); INSERT INTO `sys_job_log` VALUES (7714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-12 13:54:15'); INSERT INTO `sys_job_log` VALUES (7715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-12 13:56:05'); INSERT INTO `sys_job_log` VALUES (7716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-12 13:56:06'); INSERT INTO `sys_job_log` VALUES (7717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-12 13:56:15'); INSERT INTO `sys_job_log` VALUES (7718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-12 13:58:04'); INSERT INTO `sys_job_log` VALUES (7719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 13:58:06'); INSERT INTO `sys_job_log` VALUES (7720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-12 13:58:15'); INSERT INTO `sys_job_log` VALUES (7721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1126毫秒', '0', '', '2022-01-12 14:00:05'); INSERT INTO `sys_job_log` VALUES (7722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-12 14:00:06'); INSERT INTO `sys_job_log` VALUES (7723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1129毫秒', '0', '', '2022-01-12 14:00:15'); INSERT INTO `sys_job_log` VALUES (7724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-12 14:02:05'); INSERT INTO `sys_job_log` VALUES (7725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-12 14:02:06'); INSERT INTO `sys_job_log` VALUES (7726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-12 14:02:15'); INSERT INTO `sys_job_log` VALUES (7727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-12 14:04:04'); INSERT INTO `sys_job_log` VALUES (7728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 14:04:06'); INSERT INTO `sys_job_log` VALUES (7729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-12 14:04:14'); INSERT INTO `sys_job_log` VALUES (7730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-12 14:06:04'); INSERT INTO `sys_job_log` VALUES (7731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-12 14:06:06'); INSERT INTO `sys_job_log` VALUES (7732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1180毫秒', '0', '', '2022-01-12 14:06:15'); INSERT INTO `sys_job_log` VALUES (7733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-12 14:08:04'); INSERT INTO `sys_job_log` VALUES (7734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-12 14:08:06'); INSERT INTO `sys_job_log` VALUES (7735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-12 14:08:15'); INSERT INTO `sys_job_log` VALUES (7736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-12 14:10:04'); INSERT INTO `sys_job_log` VALUES (7737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-12 14:10:06'); INSERT INTO `sys_job_log` VALUES (7738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:623毫秒', '0', '', '2022-01-12 14:10:14'); INSERT INTO `sys_job_log` VALUES (7739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 14:12:04'); INSERT INTO `sys_job_log` VALUES (7740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 14:12:06'); INSERT INTO `sys_job_log` VALUES (7741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-12 14:12:15'); INSERT INTO `sys_job_log` VALUES (7742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-12 14:14:04'); INSERT INTO `sys_job_log` VALUES (7743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-12 14:14:06'); INSERT INTO `sys_job_log` VALUES (7744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-12 14:14:14'); INSERT INTO `sys_job_log` VALUES (7745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-12 14:16:04'); INSERT INTO `sys_job_log` VALUES (7746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-12 14:16:07'); INSERT INTO `sys_job_log` VALUES (7747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-12 14:16:14'); INSERT INTO `sys_job_log` VALUES (7748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-12 14:18:04'); INSERT INTO `sys_job_log` VALUES (7749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-12 14:18:06'); INSERT INTO `sys_job_log` VALUES (7750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-12 14:18:15'); INSERT INTO `sys_job_log` VALUES (7751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:320毫秒', '0', '', '2022-01-12 14:20:04'); INSERT INTO `sys_job_log` VALUES (7752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 14:20:06'); INSERT INTO `sys_job_log` VALUES (7753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-12 14:20:15'); INSERT INTO `sys_job_log` VALUES (7754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-12 14:22:04'); INSERT INTO `sys_job_log` VALUES (7755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1378毫秒', '0', '', '2022-01-12 14:22:07'); INSERT INTO `sys_job_log` VALUES (7756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1124毫秒', '0', '', '2022-01-12 14:22:15'); INSERT INTO `sys_job_log` VALUES (7757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-12 14:24:04'); INSERT INTO `sys_job_log` VALUES (7758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 14:24:06'); INSERT INTO `sys_job_log` VALUES (7759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-12 14:24:15'); INSERT INTO `sys_job_log` VALUES (7760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-12 14:26:04'); INSERT INTO `sys_job_log` VALUES (7761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 14:26:06'); INSERT INTO `sys_job_log` VALUES (7762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 14:26:14'); INSERT INTO `sys_job_log` VALUES (7763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 14:28:04'); INSERT INTO `sys_job_log` VALUES (7764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1119毫秒', '0', '', '2022-01-12 14:28:07'); INSERT INTO `sys_job_log` VALUES (7765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-12 14:28:15'); INSERT INTO `sys_job_log` VALUES (7766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-12 14:30:04'); INSERT INTO `sys_job_log` VALUES (7767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-12 14:30:06'); INSERT INTO `sys_job_log` VALUES (7768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-12 14:30:15'); INSERT INTO `sys_job_log` VALUES (7769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-12 14:32:04'); INSERT INTO `sys_job_log` VALUES (7770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-12 14:32:06'); INSERT INTO `sys_job_log` VALUES (7771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-12 14:32:15'); INSERT INTO `sys_job_log` VALUES (7772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 14:34:04'); INSERT INTO `sys_job_log` VALUES (7773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 14:34:06'); INSERT INTO `sys_job_log` VALUES (7774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-12 14:34:15'); INSERT INTO `sys_job_log` VALUES (7775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-12 14:36:04'); INSERT INTO `sys_job_log` VALUES (7776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-12 14:36:06'); INSERT INTO `sys_job_log` VALUES (7777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-12 14:36:14'); INSERT INTO `sys_job_log` VALUES (7778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-12 14:38:04'); INSERT INTO `sys_job_log` VALUES (7779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 14:38:06'); INSERT INTO `sys_job_log` VALUES (7780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-12 14:38:14'); INSERT INTO `sys_job_log` VALUES (7781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-12 14:40:06'); INSERT INTO `sys_job_log` VALUES (7782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:764毫秒', '0', '', '2022-01-12 14:40:06'); INSERT INTO `sys_job_log` VALUES (7783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-12 14:40:15'); INSERT INTO `sys_job_log` VALUES (7784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-12 14:42:04'); INSERT INTO `sys_job_log` VALUES (7785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-12 14:42:06'); INSERT INTO `sys_job_log` VALUES (7786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1009毫秒', '0', '', '2022-01-12 14:42:15'); INSERT INTO `sys_job_log` VALUES (7787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-12 14:44:04'); INSERT INTO `sys_job_log` VALUES (7788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-12 14:44:06'); INSERT INTO `sys_job_log` VALUES (7789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-12 14:44:14'); INSERT INTO `sys_job_log` VALUES (7790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-12 14:46:04'); INSERT INTO `sys_job_log` VALUES (7791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-12 14:46:07'); INSERT INTO `sys_job_log` VALUES (7792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-12 14:46:15'); INSERT INTO `sys_job_log` VALUES (7793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-12 14:48:04'); INSERT INTO `sys_job_log` VALUES (7794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-12 14:48:06'); INSERT INTO `sys_job_log` VALUES (7795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-12 14:48:15'); INSERT INTO `sys_job_log` VALUES (7796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1331毫秒', '0', '', '2022-01-12 14:50:05'); INSERT INTO `sys_job_log` VALUES (7797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-12 14:50:06'); INSERT INTO `sys_job_log` VALUES (7798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-12 14:50:15'); INSERT INTO `sys_job_log` VALUES (7799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-12 14:52:04'); INSERT INTO `sys_job_log` VALUES (7800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 14:52:06'); INSERT INTO `sys_job_log` VALUES (7801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-12 14:52:16'); INSERT INTO `sys_job_log` VALUES (7802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1269毫秒', '0', '', '2022-01-12 14:54:05'); INSERT INTO `sys_job_log` VALUES (7803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-12 14:54:06'); INSERT INTO `sys_job_log` VALUES (7804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1175毫秒', '0', '', '2022-01-12 14:54:15'); INSERT INTO `sys_job_log` VALUES (7805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-12 14:56:04'); INSERT INTO `sys_job_log` VALUES (7806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-12 14:56:06'); INSERT INTO `sys_job_log` VALUES (7807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-12 14:56:15'); INSERT INTO `sys_job_log` VALUES (7808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-12 14:58:04'); INSERT INTO `sys_job_log` VALUES (7809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-12 14:58:06'); INSERT INTO `sys_job_log` VALUES (7810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-12 14:58:14'); INSERT INTO `sys_job_log` VALUES (7811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-12 15:00:04'); INSERT INTO `sys_job_log` VALUES (7812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 15:00:06'); INSERT INTO `sys_job_log` VALUES (7813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-12 15:00:15'); INSERT INTO `sys_job_log` VALUES (7814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-12 15:02:04'); INSERT INTO `sys_job_log` VALUES (7815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-12 15:02:06'); INSERT INTO `sys_job_log` VALUES (7816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-12 15:02:14'); INSERT INTO `sys_job_log` VALUES (7817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-12 15:04:04'); INSERT INTO `sys_job_log` VALUES (7818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 15:04:06'); INSERT INTO `sys_job_log` VALUES (7819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 15:04:14'); INSERT INTO `sys_job_log` VALUES (7820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-12 15:06:04'); INSERT INTO `sys_job_log` VALUES (7821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 15:06:06'); INSERT INTO `sys_job_log` VALUES (7822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-12 15:06:14'); INSERT INTO `sys_job_log` VALUES (7823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-12 15:08:04'); INSERT INTO `sys_job_log` VALUES (7824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 15:08:06'); INSERT INTO `sys_job_log` VALUES (7825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-12 15:08:14'); INSERT INTO `sys_job_log` VALUES (7826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-12 15:10:04'); INSERT INTO `sys_job_log` VALUES (7827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-12 15:10:06'); INSERT INTO `sys_job_log` VALUES (7828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-12 15:10:14'); INSERT INTO `sys_job_log` VALUES (7829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-12 15:12:04'); INSERT INTO `sys_job_log` VALUES (7830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 15:12:06'); INSERT INTO `sys_job_log` VALUES (7831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 15:12:14'); INSERT INTO `sys_job_log` VALUES (7832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-12 15:14:04'); INSERT INTO `sys_job_log` VALUES (7833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 15:14:06'); INSERT INTO `sys_job_log` VALUES (7834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-12 15:14:15'); INSERT INTO `sys_job_log` VALUES (7835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-12 15:16:04'); INSERT INTO `sys_job_log` VALUES (7836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 15:16:06'); INSERT INTO `sys_job_log` VALUES (7837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-12 15:16:15'); INSERT INTO `sys_job_log` VALUES (7838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-12 15:18:04'); INSERT INTO `sys_job_log` VALUES (7839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-12 15:18:06'); INSERT INTO `sys_job_log` VALUES (7840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-12 15:18:14'); INSERT INTO `sys_job_log` VALUES (7841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-12 15:20:04'); INSERT INTO `sys_job_log` VALUES (7842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 15:20:06'); INSERT INTO `sys_job_log` VALUES (7843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-12 15:20:14'); INSERT INTO `sys_job_log` VALUES (7844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-12 15:22:04'); INSERT INTO `sys_job_log` VALUES (7845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-12 15:22:07'); INSERT INTO `sys_job_log` VALUES (7846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-12 15:22:14'); INSERT INTO `sys_job_log` VALUES (7847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-12 15:24:04'); INSERT INTO `sys_job_log` VALUES (7848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 15:24:06'); INSERT INTO `sys_job_log` VALUES (7849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-12 15:24:14'); INSERT INTO `sys_job_log` VALUES (7850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-12 15:26:05'); INSERT INTO `sys_job_log` VALUES (7851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-12 15:26:06'); INSERT INTO `sys_job_log` VALUES (7852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-12 15:26:15'); INSERT INTO `sys_job_log` VALUES (7853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-12 15:28:05'); INSERT INTO `sys_job_log` VALUES (7854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-12 15:28:06'); INSERT INTO `sys_job_log` VALUES (7855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-12 15:28:14'); INSERT INTO `sys_job_log` VALUES (7856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-12 15:30:05'); INSERT INTO `sys_job_log` VALUES (7857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-12 15:30:06'); INSERT INTO `sys_job_log` VALUES (7858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-12 15:30:15'); INSERT INTO `sys_job_log` VALUES (7859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-12 15:32:05'); INSERT INTO `sys_job_log` VALUES (7860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-12 15:32:06'); INSERT INTO `sys_job_log` VALUES (7861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-12 15:32:15'); INSERT INTO `sys_job_log` VALUES (7862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-12 15:34:04'); INSERT INTO `sys_job_log` VALUES (7863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-12 15:34:06'); INSERT INTO `sys_job_log` VALUES (7864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 15:34:14'); INSERT INTO `sys_job_log` VALUES (7865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-12 15:36:05'); INSERT INTO `sys_job_log` VALUES (7866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-12 15:36:06'); INSERT INTO `sys_job_log` VALUES (7867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-12 15:36:15'); INSERT INTO `sys_job_log` VALUES (7868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-12 15:38:06'); INSERT INTO `sys_job_log` VALUES (7869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-12 15:38:06'); INSERT INTO `sys_job_log` VALUES (7870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-12 15:38:15'); INSERT INTO `sys_job_log` VALUES (7871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-12 15:40:05'); INSERT INTO `sys_job_log` VALUES (7872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 15:40:06'); INSERT INTO `sys_job_log` VALUES (7873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-12 15:40:14'); INSERT INTO `sys_job_log` VALUES (7874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-12 15:42:04'); INSERT INTO `sys_job_log` VALUES (7875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 15:42:06'); INSERT INTO `sys_job_log` VALUES (7876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1175毫秒', '0', '', '2022-01-12 15:42:15'); INSERT INTO `sys_job_log` VALUES (7877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-12 15:44:04'); INSERT INTO `sys_job_log` VALUES (7878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-12 15:44:07'); INSERT INTO `sys_job_log` VALUES (7879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 15:44:14'); INSERT INTO `sys_job_log` VALUES (7880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-12 15:46:05'); INSERT INTO `sys_job_log` VALUES (7881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 15:46:06'); INSERT INTO `sys_job_log` VALUES (7882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-12 15:46:15'); INSERT INTO `sys_job_log` VALUES (7883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-12 15:48:04'); INSERT INTO `sys_job_log` VALUES (7884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-12 15:48:06'); INSERT INTO `sys_job_log` VALUES (7885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-12 15:48:15'); INSERT INTO `sys_job_log` VALUES (7886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1248毫秒', '0', '', '2022-01-12 15:50:05'); INSERT INTO `sys_job_log` VALUES (7887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 15:50:06'); INSERT INTO `sys_job_log` VALUES (7888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1267毫秒', '0', '', '2022-01-12 15:50:15'); INSERT INTO `sys_job_log` VALUES (7889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-12 15:52:05'); INSERT INTO `sys_job_log` VALUES (7890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 15:52:06'); INSERT INTO `sys_job_log` VALUES (7891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-12 15:52:15'); INSERT INTO `sys_job_log` VALUES (7892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-12 15:54:05'); INSERT INTO `sys_job_log` VALUES (7893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 15:54:06'); INSERT INTO `sys_job_log` VALUES (7894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-12 15:54:15'); INSERT INTO `sys_job_log` VALUES (7895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-12 15:56:05'); INSERT INTO `sys_job_log` VALUES (7896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 15:56:06'); INSERT INTO `sys_job_log` VALUES (7897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-12 15:56:15'); INSERT INTO `sys_job_log` VALUES (7898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-12 15:58:05'); INSERT INTO `sys_job_log` VALUES (7899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 15:58:06'); INSERT INTO `sys_job_log` VALUES (7900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-12 15:58:15'); INSERT INTO `sys_job_log` VALUES (7901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-12 16:00:04'); INSERT INTO `sys_job_log` VALUES (7902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 16:00:06'); INSERT INTO `sys_job_log` VALUES (7903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-12 16:00:14'); INSERT INTO `sys_job_log` VALUES (7904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-12 16:02:05'); INSERT INTO `sys_job_log` VALUES (7905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-12 16:02:06'); INSERT INTO `sys_job_log` VALUES (7906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-12 16:02:15'); INSERT INTO `sys_job_log` VALUES (7907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-12 16:04:05'); INSERT INTO `sys_job_log` VALUES (7908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-12 16:04:06'); INSERT INTO `sys_job_log` VALUES (7909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-12 16:04:15'); INSERT INTO `sys_job_log` VALUES (7910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-12 16:06:05'); INSERT INTO `sys_job_log` VALUES (7911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-12 16:06:06'); INSERT INTO `sys_job_log` VALUES (7912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 16:06:14'); INSERT INTO `sys_job_log` VALUES (7913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1247毫秒', '0', '', '2022-01-12 16:08:05'); INSERT INTO `sys_job_log` VALUES (7914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-12 16:08:06'); INSERT INTO `sys_job_log` VALUES (7915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 16:08:14'); INSERT INTO `sys_job_log` VALUES (7916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1168毫秒', '0', '', '2022-01-12 16:10:05'); INSERT INTO `sys_job_log` VALUES (7917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-12 16:10:06'); INSERT INTO `sys_job_log` VALUES (7918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-12 16:10:15'); INSERT INTO `sys_job_log` VALUES (7919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1204毫秒', '0', '', '2022-01-12 16:12:05'); INSERT INTO `sys_job_log` VALUES (7920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-12 16:12:06'); INSERT INTO `sys_job_log` VALUES (7921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-12 16:12:15'); INSERT INTO `sys_job_log` VALUES (7922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-12 16:14:04'); INSERT INTO `sys_job_log` VALUES (7923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-12 16:14:06'); INSERT INTO `sys_job_log` VALUES (7924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-12 16:14:15'); INSERT INTO `sys_job_log` VALUES (7925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-12 16:16:04'); INSERT INTO `sys_job_log` VALUES (7926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 16:16:06'); INSERT INTO `sys_job_log` VALUES (7927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1170毫秒', '0', '', '2022-01-12 16:16:15'); INSERT INTO `sys_job_log` VALUES (7928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-12 16:18:04'); INSERT INTO `sys_job_log` VALUES (7929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-12 16:18:06'); INSERT INTO `sys_job_log` VALUES (7930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-12 16:18:14'); INSERT INTO `sys_job_log` VALUES (7931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-12 16:20:05'); INSERT INTO `sys_job_log` VALUES (7932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 16:20:06'); INSERT INTO `sys_job_log` VALUES (7933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-12 16:20:15'); INSERT INTO `sys_job_log` VALUES (7934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-12 16:22:04'); INSERT INTO `sys_job_log` VALUES (7935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-12 16:22:06'); INSERT INTO `sys_job_log` VALUES (7936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-12 16:22:14'); INSERT INTO `sys_job_log` VALUES (7937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-12 16:24:05'); INSERT INTO `sys_job_log` VALUES (7938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 16:24:06'); INSERT INTO `sys_job_log` VALUES (7939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-12 16:24:15'); INSERT INTO `sys_job_log` VALUES (7940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-12 16:26:05'); INSERT INTO `sys_job_log` VALUES (7941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-12 16:26:06'); INSERT INTO `sys_job_log` VALUES (7942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1119毫秒', '0', '', '2022-01-12 16:26:15'); INSERT INTO `sys_job_log` VALUES (7943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-12 16:28:05'); INSERT INTO `sys_job_log` VALUES (7944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-12 16:28:07'); INSERT INTO `sys_job_log` VALUES (7945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-12 16:28:14'); INSERT INTO `sys_job_log` VALUES (7946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-12 16:30:04'); INSERT INTO `sys_job_log` VALUES (7947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-12 16:30:06'); INSERT INTO `sys_job_log` VALUES (7948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-12 16:30:14'); INSERT INTO `sys_job_log` VALUES (7949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-12 16:32:05'); INSERT INTO `sys_job_log` VALUES (7950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-12 16:32:06'); INSERT INTO `sys_job_log` VALUES (7951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-12 16:32:15'); INSERT INTO `sys_job_log` VALUES (7952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-12 16:34:04'); INSERT INTO `sys_job_log` VALUES (7953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 16:34:06'); INSERT INTO `sys_job_log` VALUES (7954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-12 16:34:15'); INSERT INTO `sys_job_log` VALUES (7955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-12 16:36:05'); INSERT INTO `sys_job_log` VALUES (7956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-12 16:36:06'); INSERT INTO `sys_job_log` VALUES (7957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-12 16:36:15'); INSERT INTO `sys_job_log` VALUES (7958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-12 16:38:06'); INSERT INTO `sys_job_log` VALUES (7959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-12 16:38:06'); INSERT INTO `sys_job_log` VALUES (7960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-12 16:38:14'); INSERT INTO `sys_job_log` VALUES (7961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-12 16:40:05'); INSERT INTO `sys_job_log` VALUES (7962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-12 16:40:06'); INSERT INTO `sys_job_log` VALUES (7963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-12 16:40:14'); INSERT INTO `sys_job_log` VALUES (7964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2022-01-12 16:42:05'); INSERT INTO `sys_job_log` VALUES (7965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-12 16:42:06'); INSERT INTO `sys_job_log` VALUES (7966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1884毫秒', '0', '', '2022-01-12 16:42:15'); INSERT INTO `sys_job_log` VALUES (7967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1239毫秒', '0', '', '2022-01-12 16:44:05'); INSERT INTO `sys_job_log` VALUES (7968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-12 16:44:06'); INSERT INTO `sys_job_log` VALUES (7969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-12 16:44:15'); INSERT INTO `sys_job_log` VALUES (7970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-12 16:46:05'); INSERT INTO `sys_job_log` VALUES (7971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-12 16:46:06'); INSERT INTO `sys_job_log` VALUES (7972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-12 16:46:15'); INSERT INTO `sys_job_log` VALUES (7973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1117毫秒', '0', '', '2022-01-12 16:48:05'); INSERT INTO `sys_job_log` VALUES (7974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-12 16:48:06'); INSERT INTO `sys_job_log` VALUES (7975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-12 16:48:15'); INSERT INTO `sys_job_log` VALUES (7976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1227毫秒', '0', '', '2022-01-12 16:50:05'); INSERT INTO `sys_job_log` VALUES (7977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 16:50:06'); INSERT INTO `sys_job_log` VALUES (7978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-12 16:50:15'); INSERT INTO `sys_job_log` VALUES (7979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-12 16:52:05'); INSERT INTO `sys_job_log` VALUES (7980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 16:52:06'); INSERT INTO `sys_job_log` VALUES (7981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-12 16:52:15'); INSERT INTO `sys_job_log` VALUES (7982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-12 16:54:04'); INSERT INTO `sys_job_log` VALUES (7983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-12 16:54:06'); INSERT INTO `sys_job_log` VALUES (7984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1229毫秒', '0', '', '2022-01-12 16:54:15'); INSERT INTO `sys_job_log` VALUES (7985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-12 16:56:05'); INSERT INTO `sys_job_log` VALUES (7986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 16:56:06'); INSERT INTO `sys_job_log` VALUES (7987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1122毫秒', '0', '', '2022-01-12 16:56:15'); INSERT INTO `sys_job_log` VALUES (7988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-12 16:58:04'); INSERT INTO `sys_job_log` VALUES (7989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-12 16:58:06'); INSERT INTO `sys_job_log` VALUES (7990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 16:58:14'); INSERT INTO `sys_job_log` VALUES (7991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-12 17:00:06'); INSERT INTO `sys_job_log` VALUES (7992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 17:00:06'); INSERT INTO `sys_job_log` VALUES (7993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-12 17:00:15'); INSERT INTO `sys_job_log` VALUES (7994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-12 17:02:05'); INSERT INTO `sys_job_log` VALUES (7995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 17:02:06'); INSERT INTO `sys_job_log` VALUES (7996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-12 17:02:15'); INSERT INTO `sys_job_log` VALUES (7997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1242毫秒', '0', '', '2022-01-12 17:04:05'); INSERT INTO `sys_job_log` VALUES (7998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-12 17:04:06'); INSERT INTO `sys_job_log` VALUES (7999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-12 17:04:15'); INSERT INTO `sys_job_log` VALUES (8000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-12 17:06:04'); INSERT INTO `sys_job_log` VALUES (8001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2022-01-12 17:06:07'); INSERT INTO `sys_job_log` VALUES (8002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1130毫秒', '0', '', '2022-01-12 17:06:15'); INSERT INTO `sys_job_log` VALUES (8003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-12 17:08:04'); INSERT INTO `sys_job_log` VALUES (8004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 17:08:06'); INSERT INTO `sys_job_log` VALUES (8005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-12 17:08:14'); INSERT INTO `sys_job_log` VALUES (8006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-12 17:10:05'); INSERT INTO `sys_job_log` VALUES (8007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-12 17:10:06'); INSERT INTO `sys_job_log` VALUES (8008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-12 17:10:15'); INSERT INTO `sys_job_log` VALUES (8009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-12 17:12:04'); INSERT INTO `sys_job_log` VALUES (8010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 17:12:06'); INSERT INTO `sys_job_log` VALUES (8011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-12 17:12:15'); INSERT INTO `sys_job_log` VALUES (8012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-12 17:14:04'); INSERT INTO `sys_job_log` VALUES (8013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-12 17:14:06'); INSERT INTO `sys_job_log` VALUES (8014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-12 17:14:15'); INSERT INTO `sys_job_log` VALUES (8015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1222毫秒', '0', '', '2022-01-12 17:16:05'); INSERT INTO `sys_job_log` VALUES (8016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 17:16:06'); INSERT INTO `sys_job_log` VALUES (8017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-12 17:16:15'); INSERT INTO `sys_job_log` VALUES (8018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2008毫秒', '0', '', '2022-01-12 17:18:06'); INSERT INTO `sys_job_log` VALUES (8019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-12 17:18:06'); INSERT INTO `sys_job_log` VALUES (8020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-12 17:18:14'); INSERT INTO `sys_job_log` VALUES (8021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-12 17:20:05'); INSERT INTO `sys_job_log` VALUES (8022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 17:20:06'); INSERT INTO `sys_job_log` VALUES (8023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1256毫秒', '0', '', '2022-01-12 17:20:15'); INSERT INTO `sys_job_log` VALUES (8024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1258毫秒', '0', '', '2022-01-12 17:22:05'); INSERT INTO `sys_job_log` VALUES (8025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-12 17:22:06'); INSERT INTO `sys_job_log` VALUES (8026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1439毫秒', '0', '', '2022-01-12 17:22:15'); INSERT INTO `sys_job_log` VALUES (8027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-12 17:24:05'); INSERT INTO `sys_job_log` VALUES (8028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-12 17:24:06'); INSERT INTO `sys_job_log` VALUES (8029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-12 17:24:15'); INSERT INTO `sys_job_log` VALUES (8030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-12 17:26:04'); INSERT INTO `sys_job_log` VALUES (8031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-12 17:26:06'); INSERT INTO `sys_job_log` VALUES (8032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-12 17:26:15'); INSERT INTO `sys_job_log` VALUES (8033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-12 17:28:05'); INSERT INTO `sys_job_log` VALUES (8034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 17:28:06'); INSERT INTO `sys_job_log` VALUES (8035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-12 17:28:15'); INSERT INTO `sys_job_log` VALUES (8036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-12 17:30:05'); INSERT INTO `sys_job_log` VALUES (8037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-12 17:30:06'); INSERT INTO `sys_job_log` VALUES (8038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1082毫秒', '0', '', '2022-01-12 17:30:15'); INSERT INTO `sys_job_log` VALUES (8039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:863毫秒', '0', '', '2022-01-12 18:30:04'); INSERT INTO `sys_job_log` VALUES (8040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-12 18:30:06'); INSERT INTO `sys_job_log` VALUES (8041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-12 18:30:14'); INSERT INTO `sys_job_log` VALUES (8042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-12 18:32:04'); INSERT INTO `sys_job_log` VALUES (8043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-12 18:32:06'); INSERT INTO `sys_job_log` VALUES (8044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 18:32:14'); INSERT INTO `sys_job_log` VALUES (8045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-12 18:34:04'); INSERT INTO `sys_job_log` VALUES (8046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-12 18:34:06'); INSERT INTO `sys_job_log` VALUES (8047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-12 18:34:14'); INSERT INTO `sys_job_log` VALUES (8048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-12 18:36:04'); INSERT INTO `sys_job_log` VALUES (8049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 18:36:06'); INSERT INTO `sys_job_log` VALUES (8050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-12 18:36:14'); INSERT INTO `sys_job_log` VALUES (8051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-12 18:38:04'); INSERT INTO `sys_job_log` VALUES (8052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 18:38:06'); INSERT INTO `sys_job_log` VALUES (8053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-12 18:38:14'); INSERT INTO `sys_job_log` VALUES (8054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-12 18:40:04'); INSERT INTO `sys_job_log` VALUES (8055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-12 18:40:06'); INSERT INTO `sys_job_log` VALUES (8056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-12 18:40:14'); INSERT INTO `sys_job_log` VALUES (8057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-12 18:42:04'); INSERT INTO `sys_job_log` VALUES (8058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 18:42:06'); INSERT INTO `sys_job_log` VALUES (8059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-12 18:42:14'); INSERT INTO `sys_job_log` VALUES (8060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-12 18:44:04'); INSERT INTO `sys_job_log` VALUES (8061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-12 18:44:06'); INSERT INTO `sys_job_log` VALUES (8062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-12 18:44:14'); INSERT INTO `sys_job_log` VALUES (8063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-12 18:46:04'); INSERT INTO `sys_job_log` VALUES (8064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-12 18:46:06'); INSERT INTO `sys_job_log` VALUES (8065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-12 18:46:14'); INSERT INTO `sys_job_log` VALUES (8066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-12 18:48:04'); INSERT INTO `sys_job_log` VALUES (8067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 18:48:06'); INSERT INTO `sys_job_log` VALUES (8068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-12 18:48:14'); INSERT INTO `sys_job_log` VALUES (8069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-12 18:50:04'); INSERT INTO `sys_job_log` VALUES (8070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-12 18:50:06'); INSERT INTO `sys_job_log` VALUES (8071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-12 18:50:14'); INSERT INTO `sys_job_log` VALUES (8072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-12 18:52:04'); INSERT INTO `sys_job_log` VALUES (8073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-12 18:52:06'); INSERT INTO `sys_job_log` VALUES (8074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-12 18:52:14'); INSERT INTO `sys_job_log` VALUES (8075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-12 18:54:04'); INSERT INTO `sys_job_log` VALUES (8076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-12 18:54:06'); INSERT INTO `sys_job_log` VALUES (8077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-12 18:54:14'); INSERT INTO `sys_job_log` VALUES (8078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:423毫秒', '0', '', '2022-01-12 18:56:04'); INSERT INTO `sys_job_log` VALUES (8079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-12 18:56:06'); INSERT INTO `sys_job_log` VALUES (8080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-12 18:56:14'); INSERT INTO `sys_job_log` VALUES (8081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-12 18:58:04'); INSERT INTO `sys_job_log` VALUES (8082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 18:58:06'); INSERT INTO `sys_job_log` VALUES (8083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-12 18:58:14'); INSERT INTO `sys_job_log` VALUES (8084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-12 19:00:04'); INSERT INTO `sys_job_log` VALUES (8085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 19:00:06'); INSERT INTO `sys_job_log` VALUES (8086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-12 19:00:14'); INSERT INTO `sys_job_log` VALUES (8087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-12 19:02:04'); INSERT INTO `sys_job_log` VALUES (8088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-12 19:02:06'); INSERT INTO `sys_job_log` VALUES (8089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 19:02:14'); INSERT INTO `sys_job_log` VALUES (8090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-12 19:04:04'); INSERT INTO `sys_job_log` VALUES (8091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-12 19:04:06'); INSERT INTO `sys_job_log` VALUES (8092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-12 19:04:14'); INSERT INTO `sys_job_log` VALUES (8093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-12 19:06:04'); INSERT INTO `sys_job_log` VALUES (8094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 19:06:06'); INSERT INTO `sys_job_log` VALUES (8095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-12 19:06:14'); INSERT INTO `sys_job_log` VALUES (8096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-12 19:08:04'); INSERT INTO `sys_job_log` VALUES (8097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-12 19:08:06'); INSERT INTO `sys_job_log` VALUES (8098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-12 19:08:14'); INSERT INTO `sys_job_log` VALUES (8099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:309毫秒', '0', '', '2022-01-12 19:10:04'); INSERT INTO `sys_job_log` VALUES (8100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1020毫秒', '0', '', '2022-01-12 19:10:07'); INSERT INTO `sys_job_log` VALUES (8101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-12 19:10:14'); INSERT INTO `sys_job_log` VALUES (8102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2014毫秒', '0', '', '2022-01-12 19:12:06'); INSERT INTO `sys_job_log` VALUES (8103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-12 19:12:08'); INSERT INTO `sys_job_log` VALUES (8104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-12 19:12:16'); INSERT INTO `sys_job_log` VALUES (8105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-12 19:14:04'); INSERT INTO `sys_job_log` VALUES (8106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 19:14:06'); INSERT INTO `sys_job_log` VALUES (8107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:322毫秒', '0', '', '2022-01-12 19:14:14'); INSERT INTO `sys_job_log` VALUES (8108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-12 19:16:04'); INSERT INTO `sys_job_log` VALUES (8109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-12 19:16:06'); INSERT INTO `sys_job_log` VALUES (8110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-12 19:16:14'); INSERT INTO `sys_job_log` VALUES (8111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-12 19:18:04'); INSERT INTO `sys_job_log` VALUES (8112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-12 19:18:06'); INSERT INTO `sys_job_log` VALUES (8113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-12 19:18:14'); INSERT INTO `sys_job_log` VALUES (8114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-12 19:20:04'); INSERT INTO `sys_job_log` VALUES (8115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 19:20:06'); INSERT INTO `sys_job_log` VALUES (8116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-12 19:20:14'); INSERT INTO `sys_job_log` VALUES (8117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-12 19:22:04'); INSERT INTO `sys_job_log` VALUES (8118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-12 19:22:06'); INSERT INTO `sys_job_log` VALUES (8119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 19:22:14'); INSERT INTO `sys_job_log` VALUES (8120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-12 19:24:04'); INSERT INTO `sys_job_log` VALUES (8121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 19:24:06'); INSERT INTO `sys_job_log` VALUES (8122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-12 19:24:14'); INSERT INTO `sys_job_log` VALUES (8123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-12 19:26:04'); INSERT INTO `sys_job_log` VALUES (8124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-12 19:26:06'); INSERT INTO `sys_job_log` VALUES (8125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-12 19:26:14'); INSERT INTO `sys_job_log` VALUES (8126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-12 19:28:04'); INSERT INTO `sys_job_log` VALUES (8127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-12 19:28:06'); INSERT INTO `sys_job_log` VALUES (8128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-12 19:28:14'); INSERT INTO `sys_job_log` VALUES (8129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-12 19:30:04'); INSERT INTO `sys_job_log` VALUES (8130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-12 19:30:06'); INSERT INTO `sys_job_log` VALUES (8131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-12 19:30:14'); INSERT INTO `sys_job_log` VALUES (8132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-12 19:32:04'); INSERT INTO `sys_job_log` VALUES (8133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-12 19:32:06'); INSERT INTO `sys_job_log` VALUES (8134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-12 19:32:14'); INSERT INTO `sys_job_log` VALUES (8135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-12 19:34:04'); INSERT INTO `sys_job_log` VALUES (8136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-12 19:34:06'); INSERT INTO `sys_job_log` VALUES (8137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-12 19:34:14'); INSERT INTO `sys_job_log` VALUES (8138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1290毫秒', '0', '', '2022-01-12 19:36:05'); INSERT INTO `sys_job_log` VALUES (8139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 19:36:06'); INSERT INTO `sys_job_log` VALUES (8140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-12 19:36:14'); INSERT INTO `sys_job_log` VALUES (8141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-12 19:38:04'); INSERT INTO `sys_job_log` VALUES (8142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 19:38:06'); INSERT INTO `sys_job_log` VALUES (8143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-12 19:38:14'); INSERT INTO `sys_job_log` VALUES (8144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-12 19:40:04'); INSERT INTO `sys_job_log` VALUES (8145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-12 19:40:06'); INSERT INTO `sys_job_log` VALUES (8146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-12 19:40:14'); INSERT INTO `sys_job_log` VALUES (8147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:289毫秒', '0', '', '2022-01-12 19:42:04'); INSERT INTO `sys_job_log` VALUES (8148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-12 19:42:06'); INSERT INTO `sys_job_log` VALUES (8149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-12 19:42:14'); INSERT INTO `sys_job_log` VALUES (8150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-12 19:44:04'); INSERT INTO `sys_job_log` VALUES (8151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-12 19:44:06'); INSERT INTO `sys_job_log` VALUES (8152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-12 19:44:14'); INSERT INTO `sys_job_log` VALUES (8153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-12 19:46:04'); INSERT INTO `sys_job_log` VALUES (8154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-12 19:46:06'); INSERT INTO `sys_job_log` VALUES (8155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-12 19:46:14'); INSERT INTO `sys_job_log` VALUES (8156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-12 19:48:04'); INSERT INTO `sys_job_log` VALUES (8157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-12 19:48:06'); INSERT INTO `sys_job_log` VALUES (8158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-12 19:48:14'); INSERT INTO `sys_job_log` VALUES (8159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-12 19:50:04'); INSERT INTO `sys_job_log` VALUES (8160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-12 19:50:06'); INSERT INTO `sys_job_log` VALUES (8161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-12 19:50:14'); INSERT INTO `sys_job_log` VALUES (8162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-12 19:52:04'); INSERT INTO `sys_job_log` VALUES (8163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-12 19:52:06'); INSERT INTO `sys_job_log` VALUES (8164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-12 19:52:14'); INSERT INTO `sys_job_log` VALUES (8165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-12 19:54:04'); INSERT INTO `sys_job_log` VALUES (8166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-12 19:54:06'); INSERT INTO `sys_job_log` VALUES (8167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 19:54:14'); INSERT INTO `sys_job_log` VALUES (8168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-12 19:56:04'); INSERT INTO `sys_job_log` VALUES (8169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-12 19:56:06'); INSERT INTO `sys_job_log` VALUES (8170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-12 19:56:14'); INSERT INTO `sys_job_log` VALUES (8171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:443毫秒', '0', '', '2022-01-12 19:58:04'); INSERT INTO `sys_job_log` VALUES (8172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-12 19:58:06'); INSERT INTO `sys_job_log` VALUES (8173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-12 19:58:14'); INSERT INTO `sys_job_log` VALUES (8174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-12 20:00:04'); INSERT INTO `sys_job_log` VALUES (8175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-12 20:00:06'); INSERT INTO `sys_job_log` VALUES (8176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-12 20:00:14'); INSERT INTO `sys_job_log` VALUES (8177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-12 20:02:04'); INSERT INTO `sys_job_log` VALUES (8178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-12 20:02:06'); INSERT INTO `sys_job_log` VALUES (8179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-12 20:02:14'); INSERT INTO `sys_job_log` VALUES (8180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-12 20:04:04'); INSERT INTO `sys_job_log` VALUES (8181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-12 20:04:06'); INSERT INTO `sys_job_log` VALUES (8182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-12 20:04:14'); INSERT INTO `sys_job_log` VALUES (8183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-12 20:06:04'); INSERT INTO `sys_job_log` VALUES (8184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 20:06:06'); INSERT INTO `sys_job_log` VALUES (8185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-12 20:06:14'); INSERT INTO `sys_job_log` VALUES (8186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-12 20:08:04'); INSERT INTO `sys_job_log` VALUES (8187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-12 20:08:06'); INSERT INTO `sys_job_log` VALUES (8188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-12 20:08:14'); INSERT INTO `sys_job_log` VALUES (8189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-12 20:10:04'); INSERT INTO `sys_job_log` VALUES (8190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-12 20:10:06'); INSERT INTO `sys_job_log` VALUES (8191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-12 20:10:14'); INSERT INTO `sys_job_log` VALUES (8192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-12 20:12:04'); INSERT INTO `sys_job_log` VALUES (8193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 20:12:06'); INSERT INTO `sys_job_log` VALUES (8194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-12 20:12:14'); INSERT INTO `sys_job_log` VALUES (8195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-12 20:14:04'); INSERT INTO `sys_job_log` VALUES (8196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-12 20:14:06'); INSERT INTO `sys_job_log` VALUES (8197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-12 20:14:14'); INSERT INTO `sys_job_log` VALUES (8198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-12 20:16:04'); INSERT INTO `sys_job_log` VALUES (8199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-12 20:16:06'); INSERT INTO `sys_job_log` VALUES (8200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 20:16:14'); INSERT INTO `sys_job_log` VALUES (8201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-12 20:18:04'); INSERT INTO `sys_job_log` VALUES (8202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 20:18:06'); INSERT INTO `sys_job_log` VALUES (8203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-12 20:18:14'); INSERT INTO `sys_job_log` VALUES (8204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-12 20:20:04'); INSERT INTO `sys_job_log` VALUES (8205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-12 20:20:06'); INSERT INTO `sys_job_log` VALUES (8206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-12 20:20:14'); INSERT INTO `sys_job_log` VALUES (8207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-12 20:22:04'); INSERT INTO `sys_job_log` VALUES (8208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-12 20:22:06'); INSERT INTO `sys_job_log` VALUES (8209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-12 20:22:14'); INSERT INTO `sys_job_log` VALUES (8210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-12 20:24:04'); INSERT INTO `sys_job_log` VALUES (8211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-12 20:24:06'); INSERT INTO `sys_job_log` VALUES (8212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-12 20:24:14'); INSERT INTO `sys_job_log` VALUES (8213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-12 20:26:04'); INSERT INTO `sys_job_log` VALUES (8214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-12 20:26:06'); INSERT INTO `sys_job_log` VALUES (8215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-12 20:26:14'); INSERT INTO `sys_job_log` VALUES (8216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-12 20:28:04'); INSERT INTO `sys_job_log` VALUES (8217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-12 20:28:06'); INSERT INTO `sys_job_log` VALUES (8218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-12 20:28:14'); INSERT INTO `sys_job_log` VALUES (8219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-12 20:30:04'); INSERT INTO `sys_job_log` VALUES (8220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:286毫秒', '0', '', '2022-01-12 20:30:06'); INSERT INTO `sys_job_log` VALUES (8221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-12 20:30:14'); INSERT INTO `sys_job_log` VALUES (8222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-12 20:32:04'); INSERT INTO `sys_job_log` VALUES (8223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-12 20:32:06'); INSERT INTO `sys_job_log` VALUES (8224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-12 20:32:14'); INSERT INTO `sys_job_log` VALUES (8225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-12 20:34:04'); INSERT INTO `sys_job_log` VALUES (8226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 20:34:06'); INSERT INTO `sys_job_log` VALUES (8227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-12 20:34:14'); INSERT INTO `sys_job_log` VALUES (8228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:281毫秒', '0', '', '2022-01-12 20:36:04'); INSERT INTO `sys_job_log` VALUES (8229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 20:36:06'); INSERT INTO `sys_job_log` VALUES (8230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-12 20:36:14'); INSERT INTO `sys_job_log` VALUES (8231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-12 20:38:04'); INSERT INTO `sys_job_log` VALUES (8232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-12 20:38:06'); INSERT INTO `sys_job_log` VALUES (8233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-12 20:38:14'); INSERT INTO `sys_job_log` VALUES (8234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-12 20:40:04'); INSERT INTO `sys_job_log` VALUES (8235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-12 20:40:06'); INSERT INTO `sys_job_log` VALUES (8236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-12 20:40:14'); INSERT INTO `sys_job_log` VALUES (8237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-12 20:42:04'); INSERT INTO `sys_job_log` VALUES (8238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-12 20:42:06'); INSERT INTO `sys_job_log` VALUES (8239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-12 20:42:14'); INSERT INTO `sys_job_log` VALUES (8240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-12 20:44:04'); INSERT INTO `sys_job_log` VALUES (8241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-12 20:44:06'); INSERT INTO `sys_job_log` VALUES (8242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-12 20:44:14'); INSERT INTO `sys_job_log` VALUES (8243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-12 20:46:04'); INSERT INTO `sys_job_log` VALUES (8244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-12 20:46:06'); INSERT INTO `sys_job_log` VALUES (8245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-12 20:46:14'); INSERT INTO `sys_job_log` VALUES (8246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-12 20:48:04'); INSERT INTO `sys_job_log` VALUES (8247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-12 20:48:06'); INSERT INTO `sys_job_log` VALUES (8248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-12 20:48:14'); INSERT INTO `sys_job_log` VALUES (8249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-12 20:50:04'); INSERT INTO `sys_job_log` VALUES (8250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 20:50:06'); INSERT INTO `sys_job_log` VALUES (8251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-12 20:50:14'); INSERT INTO `sys_job_log` VALUES (8252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-12 20:52:04'); INSERT INTO `sys_job_log` VALUES (8253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:280毫秒', '0', '', '2022-01-12 20:52:06'); INSERT INTO `sys_job_log` VALUES (8254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-12 20:52:14'); INSERT INTO `sys_job_log` VALUES (8255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-12 20:54:04'); INSERT INTO `sys_job_log` VALUES (8256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 20:54:06'); INSERT INTO `sys_job_log` VALUES (8257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-12 20:54:14'); INSERT INTO `sys_job_log` VALUES (8258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-12 20:56:04'); INSERT INTO `sys_job_log` VALUES (8259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:288毫秒', '0', '', '2022-01-12 20:56:06'); INSERT INTO `sys_job_log` VALUES (8260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-12 20:56:14'); INSERT INTO `sys_job_log` VALUES (8261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-12 20:58:04'); INSERT INTO `sys_job_log` VALUES (8262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-12 20:58:06'); INSERT INTO `sys_job_log` VALUES (8263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-12 20:58:14'); INSERT INTO `sys_job_log` VALUES (8264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-12 21:00:04'); INSERT INTO `sys_job_log` VALUES (8265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-12 21:00:06'); INSERT INTO `sys_job_log` VALUES (8266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-12 21:00:14'); INSERT INTO `sys_job_log` VALUES (8267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-12 21:02:04'); INSERT INTO `sys_job_log` VALUES (8268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 21:02:06'); INSERT INTO `sys_job_log` VALUES (8269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-12 21:02:14'); INSERT INTO `sys_job_log` VALUES (8270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-12 21:04:04'); INSERT INTO `sys_job_log` VALUES (8271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-12 21:04:06'); INSERT INTO `sys_job_log` VALUES (8272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-12 21:04:14'); INSERT INTO `sys_job_log` VALUES (8273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-12 21:06:04'); INSERT INTO `sys_job_log` VALUES (8274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 21:06:06'); INSERT INTO `sys_job_log` VALUES (8275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-12 21:06:14'); INSERT INTO `sys_job_log` VALUES (8276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-12 21:08:04'); INSERT INTO `sys_job_log` VALUES (8277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-12 21:08:06'); INSERT INTO `sys_job_log` VALUES (8278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-12 21:08:14'); INSERT INTO `sys_job_log` VALUES (8279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-12 21:10:04'); INSERT INTO `sys_job_log` VALUES (8280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-12 21:10:06'); INSERT INTO `sys_job_log` VALUES (8281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-12 21:10:14'); INSERT INTO `sys_job_log` VALUES (8282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-12 21:12:04'); INSERT INTO `sys_job_log` VALUES (8283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-12 21:12:06'); INSERT INTO `sys_job_log` VALUES (8284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-12 21:12:14'); INSERT INTO `sys_job_log` VALUES (8285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-12 21:14:04'); INSERT INTO `sys_job_log` VALUES (8286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-12 21:14:06'); INSERT INTO `sys_job_log` VALUES (8287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-12 21:14:14'); INSERT INTO `sys_job_log` VALUES (8288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-12 21:16:04'); INSERT INTO `sys_job_log` VALUES (8289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-12 21:16:06'); INSERT INTO `sys_job_log` VALUES (8290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-12 21:16:14'); INSERT INTO `sys_job_log` VALUES (8291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-12 21:18:04'); INSERT INTO `sys_job_log` VALUES (8292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-12 21:18:06'); INSERT INTO `sys_job_log` VALUES (8293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-12 21:18:14'); INSERT INTO `sys_job_log` VALUES (8294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-12 21:20:04'); INSERT INTO `sys_job_log` VALUES (8295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-12 21:20:06'); INSERT INTO `sys_job_log` VALUES (8296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-12 21:20:14'); INSERT INTO `sys_job_log` VALUES (8297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-12 21:22:04'); INSERT INTO `sys_job_log` VALUES (8298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-12 21:22:06'); INSERT INTO `sys_job_log` VALUES (8299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-12 21:22:14'); INSERT INTO `sys_job_log` VALUES (8300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-12 21:24:04'); INSERT INTO `sys_job_log` VALUES (8301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-12 21:24:06'); INSERT INTO `sys_job_log` VALUES (8302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 21:24:14'); INSERT INTO `sys_job_log` VALUES (8303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-12 21:26:04'); INSERT INTO `sys_job_log` VALUES (8304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-12 21:26:06'); INSERT INTO `sys_job_log` VALUES (8305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-12 21:26:14'); INSERT INTO `sys_job_log` VALUES (8306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-12 21:28:04'); INSERT INTO `sys_job_log` VALUES (8307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-12 21:28:06'); INSERT INTO `sys_job_log` VALUES (8308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-12 21:28:14'); INSERT INTO `sys_job_log` VALUES (8309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:344毫秒', '0', '', '2022-01-12 21:30:04'); INSERT INTO `sys_job_log` VALUES (8310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-12 21:30:06'); INSERT INTO `sys_job_log` VALUES (8311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:354毫秒', '0', '', '2022-01-12 21:30:14'); INSERT INTO `sys_job_log` VALUES (8312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:294毫秒', '0', '', '2022-01-12 21:32:04'); INSERT INTO `sys_job_log` VALUES (8313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-12 21:32:06'); INSERT INTO `sys_job_log` VALUES (8314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-12 21:32:14'); INSERT INTO `sys_job_log` VALUES (8315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-12 21:34:04'); INSERT INTO `sys_job_log` VALUES (8316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-12 21:34:06'); INSERT INTO `sys_job_log` VALUES (8317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:283毫秒', '0', '', '2022-01-12 21:34:14'); INSERT INTO `sys_job_log` VALUES (8318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-12 21:36:04'); INSERT INTO `sys_job_log` VALUES (8319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-12 21:36:06'); INSERT INTO `sys_job_log` VALUES (8320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-12 21:36:14'); INSERT INTO `sys_job_log` VALUES (8321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-12 21:38:04'); INSERT INTO `sys_job_log` VALUES (8322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-12 21:38:06'); INSERT INTO `sys_job_log` VALUES (8323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-12 21:38:14'); INSERT INTO `sys_job_log` VALUES (8324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-12 21:40:04'); INSERT INTO `sys_job_log` VALUES (8325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-12 21:40:06'); INSERT INTO `sys_job_log` VALUES (8326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-12 21:40:14'); INSERT INTO `sys_job_log` VALUES (8327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-12 21:42:04'); INSERT INTO `sys_job_log` VALUES (8328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 21:42:06'); INSERT INTO `sys_job_log` VALUES (8329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-12 21:42:14'); INSERT INTO `sys_job_log` VALUES (8330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:285毫秒', '0', '', '2022-01-12 21:44:04'); INSERT INTO `sys_job_log` VALUES (8331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-12 21:44:06'); INSERT INTO `sys_job_log` VALUES (8332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-12 21:44:14'); INSERT INTO `sys_job_log` VALUES (8333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-12 21:46:04'); INSERT INTO `sys_job_log` VALUES (8334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-12 21:46:06'); INSERT INTO `sys_job_log` VALUES (8335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-12 21:46:14'); INSERT INTO `sys_job_log` VALUES (8336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-12 21:48:04'); INSERT INTO `sys_job_log` VALUES (8337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-12 21:48:06'); INSERT INTO `sys_job_log` VALUES (8338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-12 21:48:14'); INSERT INTO `sys_job_log` VALUES (8339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-12 21:50:04'); INSERT INTO `sys_job_log` VALUES (8340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-12 21:50:06'); INSERT INTO `sys_job_log` VALUES (8341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-12 21:50:14'); INSERT INTO `sys_job_log` VALUES (8342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-12 21:52:04'); INSERT INTO `sys_job_log` VALUES (8343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-12 21:52:06'); INSERT INTO `sys_job_log` VALUES (8344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-12 21:52:14'); INSERT INTO `sys_job_log` VALUES (8345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-12 21:54:04'); INSERT INTO `sys_job_log` VALUES (8346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-12 21:54:06'); INSERT INTO `sys_job_log` VALUES (8347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-12 21:54:14'); INSERT INTO `sys_job_log` VALUES (8348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:409毫秒', '0', '', '2022-01-12 21:56:04'); INSERT INTO `sys_job_log` VALUES (8349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-12 21:56:06'); INSERT INTO `sys_job_log` VALUES (8350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-12 21:56:14'); INSERT INTO `sys_job_log` VALUES (8351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-12 21:58:04'); INSERT INTO `sys_job_log` VALUES (8352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-12 21:58:06'); INSERT INTO `sys_job_log` VALUES (8353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-12 21:58:14'); INSERT INTO `sys_job_log` VALUES (8354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:778毫秒', '0', '', '2022-01-13 08:40:07'); INSERT INTO `sys_job_log` VALUES (8355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:4毫秒', '0', '', '2022-01-13 08:40:08'); INSERT INTO `sys_job_log` VALUES (8356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-13 08:40:14'); INSERT INTO `sys_job_log` VALUES (8357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:321毫秒', '0', '', '2022-01-13 08:42:04'); INSERT INTO `sys_job_log` VALUES (8358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-13 08:42:07'); INSERT INTO `sys_job_log` VALUES (8359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-13 08:42:14'); INSERT INTO `sys_job_log` VALUES (8360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-13 08:44:05'); INSERT INTO `sys_job_log` VALUES (8361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-13 08:44:06'); INSERT INTO `sys_job_log` VALUES (8362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-13 08:44:15'); INSERT INTO `sys_job_log` VALUES (8363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-13 08:46:04'); INSERT INTO `sys_job_log` VALUES (8364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-13 08:46:06'); INSERT INTO `sys_job_log` VALUES (8365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-13 08:46:14'); INSERT INTO `sys_job_log` VALUES (8366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-13 08:48:04'); INSERT INTO `sys_job_log` VALUES (8367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-13 08:48:06'); INSERT INTO `sys_job_log` VALUES (8368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-13 08:48:14'); INSERT INTO `sys_job_log` VALUES (8369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-13 08:50:04'); INSERT INTO `sys_job_log` VALUES (8370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-13 08:50:06'); INSERT INTO `sys_job_log` VALUES (8371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1841毫秒', '0', '', '2022-01-13 08:50:15'); INSERT INTO `sys_job_log` VALUES (8372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-13 08:52:04'); INSERT INTO `sys_job_log` VALUES (8373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-13 08:52:06'); INSERT INTO `sys_job_log` VALUES (8374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-13 08:52:14'); INSERT INTO `sys_job_log` VALUES (8375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-13 08:54:04'); INSERT INTO `sys_job_log` VALUES (8376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-13 08:54:07'); INSERT INTO `sys_job_log` VALUES (8377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-13 08:54:14'); INSERT INTO `sys_job_log` VALUES (8378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:508毫秒', '0', '', '2022-01-13 08:56:04'); INSERT INTO `sys_job_log` VALUES (8379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-13 08:56:06'); INSERT INTO `sys_job_log` VALUES (8380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-13 08:56:15'); INSERT INTO `sys_job_log` VALUES (8381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-13 08:58:05'); INSERT INTO `sys_job_log` VALUES (8382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-13 08:58:06'); INSERT INTO `sys_job_log` VALUES (8383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-13 08:58:15'); INSERT INTO `sys_job_log` VALUES (8384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-13 09:00:04'); INSERT INTO `sys_job_log` VALUES (8385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-13 09:00:07'); INSERT INTO `sys_job_log` VALUES (8386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1256毫秒', '0', '', '2022-01-13 09:00:15'); INSERT INTO `sys_job_log` VALUES (8387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-13 09:02:04'); INSERT INTO `sys_job_log` VALUES (8388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-13 09:02:06'); INSERT INTO `sys_job_log` VALUES (8389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1093毫秒', '0', '', '2022-01-13 09:02:15'); INSERT INTO `sys_job_log` VALUES (8390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-13 09:04:04'); INSERT INTO `sys_job_log` VALUES (8391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-13 09:04:06'); INSERT INTO `sys_job_log` VALUES (8392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-13 09:04:15'); INSERT INTO `sys_job_log` VALUES (8393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:299毫秒', '0', '', '2022-01-13 09:06:04'); INSERT INTO `sys_job_log` VALUES (8394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-13 09:06:06'); INSERT INTO `sys_job_log` VALUES (8395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-13 09:06:14'); INSERT INTO `sys_job_log` VALUES (8396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-13 09:08:04'); INSERT INTO `sys_job_log` VALUES (8397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-13 09:08:06'); INSERT INTO `sys_job_log` VALUES (8398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-13 09:08:14'); INSERT INTO `sys_job_log` VALUES (8399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-13 09:10:04'); INSERT INTO `sys_job_log` VALUES (8400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-13 09:10:06'); INSERT INTO `sys_job_log` VALUES (8401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-13 09:10:15'); INSERT INTO `sys_job_log` VALUES (8402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-13 09:12:04'); INSERT INTO `sys_job_log` VALUES (8403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-13 09:12:06'); INSERT INTO `sys_job_log` VALUES (8404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-13 09:12:15'); INSERT INTO `sys_job_log` VALUES (8405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-13 09:14:04'); INSERT INTO `sys_job_log` VALUES (8406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-13 09:14:06'); INSERT INTO `sys_job_log` VALUES (8407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-13 09:14:14'); INSERT INTO `sys_job_log` VALUES (8408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-13 09:16:04'); INSERT INTO `sys_job_log` VALUES (8409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:58毫秒', '0', '', '2022-01-13 09:16:06'); INSERT INTO `sys_job_log` VALUES (8410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-13 09:16:14'); INSERT INTO `sys_job_log` VALUES (8411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-13 09:18:05'); INSERT INTO `sys_job_log` VALUES (8412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:284毫秒', '0', '', '2022-01-13 09:18:06'); INSERT INTO `sys_job_log` VALUES (8413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2022-01-13 09:18:15'); INSERT INTO `sys_job_log` VALUES (8414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-13 09:20:05'); INSERT INTO `sys_job_log` VALUES (8415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-13 09:20:06'); INSERT INTO `sys_job_log` VALUES (8416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-13 09:20:15'); INSERT INTO `sys_job_log` VALUES (8417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-13 09:22:04'); INSERT INTO `sys_job_log` VALUES (8418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-13 09:22:06'); INSERT INTO `sys_job_log` VALUES (8419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-13 09:22:14'); INSERT INTO `sys_job_log` VALUES (8420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-13 09:24:04'); INSERT INTO `sys_job_log` VALUES (8421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-13 09:24:06'); INSERT INTO `sys_job_log` VALUES (8422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-13 09:24:14'); INSERT INTO `sys_job_log` VALUES (8423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-13 09:26:05'); INSERT INTO `sys_job_log` VALUES (8424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-13 09:26:06'); INSERT INTO `sys_job_log` VALUES (8425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-13 09:26:15'); INSERT INTO `sys_job_log` VALUES (8426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-13 09:28:04'); INSERT INTO `sys_job_log` VALUES (8427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-13 09:28:06'); INSERT INTO `sys_job_log` VALUES (8428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-13 09:28:15'); INSERT INTO `sys_job_log` VALUES (8429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-13 09:30:04'); INSERT INTO `sys_job_log` VALUES (8430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-13 09:30:06'); INSERT INTO `sys_job_log` VALUES (8431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-13 09:30:15'); INSERT INTO `sys_job_log` VALUES (8432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1248毫秒', '0', '', '2022-01-13 09:32:05'); INSERT INTO `sys_job_log` VALUES (8433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-13 09:32:06'); INSERT INTO `sys_job_log` VALUES (8434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-13 09:32:15'); INSERT INTO `sys_job_log` VALUES (8435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-13 09:34:04'); INSERT INTO `sys_job_log` VALUES (8436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-13 09:34:07'); INSERT INTO `sys_job_log` VALUES (8437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-13 09:34:14'); INSERT INTO `sys_job_log` VALUES (8438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-13 09:36:04'); INSERT INTO `sys_job_log` VALUES (8439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-13 09:36:06'); INSERT INTO `sys_job_log` VALUES (8440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-13 09:36:14'); INSERT INTO `sys_job_log` VALUES (8441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-13 09:38:05'); INSERT INTO `sys_job_log` VALUES (8442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-13 09:38:06'); INSERT INTO `sys_job_log` VALUES (8443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-13 09:38:14'); INSERT INTO `sys_job_log` VALUES (8444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-13 09:40:04'); INSERT INTO `sys_job_log` VALUES (8445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-13 09:40:07'); INSERT INTO `sys_job_log` VALUES (8446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-13 09:40:14'); INSERT INTO `sys_job_log` VALUES (8447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-13 09:42:04'); INSERT INTO `sys_job_log` VALUES (8448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-13 09:42:06'); INSERT INTO `sys_job_log` VALUES (8449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-13 09:42:15'); INSERT INTO `sys_job_log` VALUES (8450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-13 09:44:05'); INSERT INTO `sys_job_log` VALUES (8451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-13 09:44:06'); INSERT INTO `sys_job_log` VALUES (8452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-13 09:44:14'); INSERT INTO `sys_job_log` VALUES (8453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-13 09:46:05'); INSERT INTO `sys_job_log` VALUES (8454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-13 09:46:06'); INSERT INTO `sys_job_log` VALUES (8455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1128毫秒', '0', '', '2022-01-13 09:46:15'); INSERT INTO `sys_job_log` VALUES (8456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-13 09:48:05'); INSERT INTO `sys_job_log` VALUES (8457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-13 09:48:06'); INSERT INTO `sys_job_log` VALUES (8458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-13 09:48:14'); INSERT INTO `sys_job_log` VALUES (8459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-13 09:50:04'); INSERT INTO `sys_job_log` VALUES (8460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-13 09:50:06'); INSERT INTO `sys_job_log` VALUES (8461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-13 09:50:14'); INSERT INTO `sys_job_log` VALUES (8462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:495毫秒', '0', '', '2022-01-13 09:52:04'); INSERT INTO `sys_job_log` VALUES (8463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-13 09:52:06'); INSERT INTO `sys_job_log` VALUES (8464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-13 09:52:14'); INSERT INTO `sys_job_log` VALUES (8465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-13 09:54:05'); INSERT INTO `sys_job_log` VALUES (8466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-13 09:54:06'); INSERT INTO `sys_job_log` VALUES (8467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-13 09:54:15'); INSERT INTO `sys_job_log` VALUES (8468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1189毫秒', '0', '', '2022-01-13 09:56:05'); INSERT INTO `sys_job_log` VALUES (8469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-13 09:56:06'); INSERT INTO `sys_job_log` VALUES (8470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-13 09:56:15'); INSERT INTO `sys_job_log` VALUES (8471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-13 09:58:05'); INSERT INTO `sys_job_log` VALUES (8472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-13 09:58:06'); INSERT INTO `sys_job_log` VALUES (8473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-13 09:58:15'); INSERT INTO `sys_job_log` VALUES (8474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-13 10:00:04'); INSERT INTO `sys_job_log` VALUES (8475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-13 10:00:06'); INSERT INTO `sys_job_log` VALUES (8476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-13 10:00:16'); INSERT INTO `sys_job_log` VALUES (8477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1264毫秒', '0', '', '2022-01-13 10:02:05'); INSERT INTO `sys_job_log` VALUES (8478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-13 10:02:06'); INSERT INTO `sys_job_log` VALUES (8479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-13 10:02:14'); INSERT INTO `sys_job_log` VALUES (8480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-13 10:04:05'); INSERT INTO `sys_job_log` VALUES (8481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-13 10:04:06'); INSERT INTO `sys_job_log` VALUES (8482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1197毫秒', '0', '', '2022-01-13 10:04:15'); INSERT INTO `sys_job_log` VALUES (8483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-13 10:06:04'); INSERT INTO `sys_job_log` VALUES (8484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-13 10:06:06'); INSERT INTO `sys_job_log` VALUES (8485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-13 10:06:14'); INSERT INTO `sys_job_log` VALUES (8486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-13 10:08:05'); INSERT INTO `sys_job_log` VALUES (8487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-13 10:08:06'); INSERT INTO `sys_job_log` VALUES (8488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-13 10:08:15'); INSERT INTO `sys_job_log` VALUES (8489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-13 10:10:05'); INSERT INTO `sys_job_log` VALUES (8490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-13 10:10:06'); INSERT INTO `sys_job_log` VALUES (8491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1213毫秒', '0', '', '2022-01-13 10:10:15'); INSERT INTO `sys_job_log` VALUES (8492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-13 10:12:04'); INSERT INTO `sys_job_log` VALUES (8493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-13 10:12:06'); INSERT INTO `sys_job_log` VALUES (8494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2015毫秒', '0', '', '2022-01-13 10:12:16'); INSERT INTO `sys_job_log` VALUES (8495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-13 10:14:04'); INSERT INTO `sys_job_log` VALUES (8496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-13 10:14:06'); INSERT INTO `sys_job_log` VALUES (8497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-13 10:14:14'); INSERT INTO `sys_job_log` VALUES (8498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-13 10:16:04'); INSERT INTO `sys_job_log` VALUES (8499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-13 10:16:06'); INSERT INTO `sys_job_log` VALUES (8500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-13 10:16:15'); INSERT INTO `sys_job_log` VALUES (8501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1151毫秒', '0', '', '2022-01-13 10:18:05'); INSERT INTO `sys_job_log` VALUES (8502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-13 10:18:06'); INSERT INTO `sys_job_log` VALUES (8503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-13 10:18:14'); INSERT INTO `sys_job_log` VALUES (8504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-13 10:20:04'); INSERT INTO `sys_job_log` VALUES (8505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-13 10:20:06'); INSERT INTO `sys_job_log` VALUES (8506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-13 10:20:14'); INSERT INTO `sys_job_log` VALUES (8507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-13 10:22:04'); INSERT INTO `sys_job_log` VALUES (8508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-13 10:22:06'); INSERT INTO `sys_job_log` VALUES (8509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-13 10:22:14'); INSERT INTO `sys_job_log` VALUES (8510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-13 10:24:04'); INSERT INTO `sys_job_log` VALUES (8511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-13 10:24:07'); INSERT INTO `sys_job_log` VALUES (8512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-13 10:24:14'); INSERT INTO `sys_job_log` VALUES (8513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1231毫秒', '0', '', '2022-01-13 10:26:05'); INSERT INTO `sys_job_log` VALUES (8514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-13 10:26:06'); INSERT INTO `sys_job_log` VALUES (8515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1240毫秒', '0', '', '2022-01-13 10:26:15'); INSERT INTO `sys_job_log` VALUES (8516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-13 10:28:05'); INSERT INTO `sys_job_log` VALUES (8517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-13 10:28:06'); INSERT INTO `sys_job_log` VALUES (8518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-13 10:28:15'); INSERT INTO `sys_job_log` VALUES (8519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-13 10:30:04'); INSERT INTO `sys_job_log` VALUES (8520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-13 10:30:06'); INSERT INTO `sys_job_log` VALUES (8521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-13 10:30:14'); INSERT INTO `sys_job_log` VALUES (8522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2022-01-13 10:32:05'); INSERT INTO `sys_job_log` VALUES (8523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-13 10:32:06'); INSERT INTO `sys_job_log` VALUES (8524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1223毫秒', '0', '', '2022-01-13 10:32:15'); INSERT INTO `sys_job_log` VALUES (8525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-13 10:34:05'); INSERT INTO `sys_job_log` VALUES (8526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-13 10:34:06'); INSERT INTO `sys_job_log` VALUES (8527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-13 10:34:15'); INSERT INTO `sys_job_log` VALUES (8528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-13 10:36:04'); INSERT INTO `sys_job_log` VALUES (8529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-13 10:36:06'); INSERT INTO `sys_job_log` VALUES (8530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-13 10:36:14'); INSERT INTO `sys_job_log` VALUES (8531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1265毫秒', '0', '', '2022-01-13 10:38:05'); INSERT INTO `sys_job_log` VALUES (8532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-13 10:38:06'); INSERT INTO `sys_job_log` VALUES (8533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-13 10:38:15'); INSERT INTO `sys_job_log` VALUES (8534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-13 10:40:06'); INSERT INTO `sys_job_log` VALUES (8535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-13 10:40:06'); INSERT INTO `sys_job_log` VALUES (8536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-13 10:40:14'); INSERT INTO `sys_job_log` VALUES (8537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-13 10:42:05'); INSERT INTO `sys_job_log` VALUES (8538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-13 10:42:06'); INSERT INTO `sys_job_log` VALUES (8539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-13 10:42:14'); INSERT INTO `sys_job_log` VALUES (8540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1180毫秒', '0', '', '2022-01-13 10:44:05'); INSERT INTO `sys_job_log` VALUES (8541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-13 10:44:06'); INSERT INTO `sys_job_log` VALUES (8542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-13 10:44:15'); INSERT INTO `sys_job_log` VALUES (8543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1243毫秒', '0', '', '2022-01-13 10:46:05'); INSERT INTO `sys_job_log` VALUES (8544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-13 10:46:06'); INSERT INTO `sys_job_log` VALUES (8545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-13 10:46:16'); INSERT INTO `sys_job_log` VALUES (8546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-13 10:48:04'); INSERT INTO `sys_job_log` VALUES (8547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-13 10:48:06'); INSERT INTO `sys_job_log` VALUES (8548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-13 10:48:14'); INSERT INTO `sys_job_log` VALUES (8549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1262毫秒', '0', '', '2022-01-13 10:50:05'); INSERT INTO `sys_job_log` VALUES (8550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-13 10:50:06'); INSERT INTO `sys_job_log` VALUES (8551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-13 10:50:15'); INSERT INTO `sys_job_log` VALUES (8552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-13 10:52:04'); INSERT INTO `sys_job_log` VALUES (8553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-13 10:52:06'); INSERT INTO `sys_job_log` VALUES (8554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-13 10:52:14'); INSERT INTO `sys_job_log` VALUES (8555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-13 10:54:04'); INSERT INTO `sys_job_log` VALUES (8556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-13 10:54:06'); INSERT INTO `sys_job_log` VALUES (8557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-13 10:54:15'); INSERT INTO `sys_job_log` VALUES (8558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1077毫秒', '0', '', '2022-01-13 10:56:05'); INSERT INTO `sys_job_log` VALUES (8559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-13 10:56:06'); INSERT INTO `sys_job_log` VALUES (8560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-13 10:56:15'); INSERT INTO `sys_job_log` VALUES (8561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-13 10:58:04'); INSERT INTO `sys_job_log` VALUES (8562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-13 10:58:06'); INSERT INTO `sys_job_log` VALUES (8563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1171毫秒', '0', '', '2022-01-13 10:58:15'); INSERT INTO `sys_job_log` VALUES (8564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-13 11:00:04'); INSERT INTO `sys_job_log` VALUES (8565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-13 11:00:06'); INSERT INTO `sys_job_log` VALUES (8566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1170毫秒', '0', '', '2022-01-13 11:00:15'); INSERT INTO `sys_job_log` VALUES (8567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2022-01-13 11:02:05'); INSERT INTO `sys_job_log` VALUES (8568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-13 11:02:06'); INSERT INTO `sys_job_log` VALUES (8569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1172毫秒', '0', '', '2022-01-13 11:02:15'); INSERT INTO `sys_job_log` VALUES (8570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1233毫秒', '0', '', '2022-01-13 11:04:05'); INSERT INTO `sys_job_log` VALUES (8571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-13 11:04:06'); INSERT INTO `sys_job_log` VALUES (8572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-13 11:04:14'); INSERT INTO `sys_job_log` VALUES (8573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:666毫秒', '0', '', '2022-01-13 11:08:17'); INSERT INTO `sys_job_log` VALUES (8574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:4毫秒', '0', '', '2022-01-13 11:08:17'); INSERT INTO `sys_job_log` VALUES (8575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:4毫秒', '0', '', '2022-01-13 11:08:17'); INSERT INTO `sys_job_log` VALUES (8576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2026毫秒', '0', '', '2022-01-13 11:10:06'); INSERT INTO `sys_job_log` VALUES (8577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1894毫秒', '0', '', '2022-01-13 11:10:07'); INSERT INTO `sys_job_log` VALUES (8578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1145毫秒', '0', '', '2022-01-13 11:10:15'); INSERT INTO `sys_job_log` VALUES (8579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-13 11:12:04'); INSERT INTO `sys_job_log` VALUES (8580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-13 11:12:06'); INSERT INTO `sys_job_log` VALUES (8581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-13 11:12:14'); INSERT INTO `sys_job_log` VALUES (8582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-13 11:14:04'); INSERT INTO `sys_job_log` VALUES (8583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-13 11:14:06'); INSERT INTO `sys_job_log` VALUES (8584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-13 11:14:15'); INSERT INTO `sys_job_log` VALUES (8585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-13 11:16:04'); INSERT INTO `sys_job_log` VALUES (8586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-13 11:16:06'); INSERT INTO `sys_job_log` VALUES (8587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-13 11:16:14'); INSERT INTO `sys_job_log` VALUES (8588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-13 11:18:05'); INSERT INTO `sys_job_log` VALUES (8589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-13 11:18:06'); INSERT INTO `sys_job_log` VALUES (8590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-13 11:18:15'); INSERT INTO `sys_job_log` VALUES (8591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-13 11:20:04'); INSERT INTO `sys_job_log` VALUES (8592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-13 11:20:06'); INSERT INTO `sys_job_log` VALUES (8593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-13 11:20:15'); INSERT INTO `sys_job_log` VALUES (8594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-13 11:22:05'); INSERT INTO `sys_job_log` VALUES (8595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-13 11:22:06'); INSERT INTO `sys_job_log` VALUES (8596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-13 11:22:15'); INSERT INTO `sys_job_log` VALUES (8597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-13 11:24:05'); INSERT INTO `sys_job_log` VALUES (8598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-13 11:24:06'); INSERT INTO `sys_job_log` VALUES (8599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1175毫秒', '0', '', '2022-01-13 11:24:15'); INSERT INTO `sys_job_log` VALUES (8600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-13 11:26:04'); INSERT INTO `sys_job_log` VALUES (8601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-13 11:26:06'); INSERT INTO `sys_job_log` VALUES (8602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-13 11:26:16'); INSERT INTO `sys_job_log` VALUES (8603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1226毫秒', '0', '', '2022-01-13 11:28:05'); INSERT INTO `sys_job_log` VALUES (8604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-13 11:28:06'); INSERT INTO `sys_job_log` VALUES (8605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-13 11:28:15'); INSERT INTO `sys_job_log` VALUES (8606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-13 11:30:05'); INSERT INTO `sys_job_log` VALUES (8607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-13 11:30:06'); INSERT INTO `sys_job_log` VALUES (8608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-13 11:30:15'); INSERT INTO `sys_job_log` VALUES (8609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-13 11:32:06'); INSERT INTO `sys_job_log` VALUES (8610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-13 11:32:06'); INSERT INTO `sys_job_log` VALUES (8611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-13 11:32:14'); INSERT INTO `sys_job_log` VALUES (8612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-13 11:34:04'); INSERT INTO `sys_job_log` VALUES (8613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-13 11:34:06'); INSERT INTO `sys_job_log` VALUES (8614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-13 11:34:15'); INSERT INTO `sys_job_log` VALUES (8615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-13 11:36:04'); INSERT INTO `sys_job_log` VALUES (8616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-13 11:36:06'); INSERT INTO `sys_job_log` VALUES (8617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-13 11:36:14'); INSERT INTO `sys_job_log` VALUES (8618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-13 11:38:04'); INSERT INTO `sys_job_log` VALUES (8619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-13 11:38:06'); INSERT INTO `sys_job_log` VALUES (8620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-13 11:38:14'); INSERT INTO `sys_job_log` VALUES (8621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1343毫秒', '0', '', '2022-01-13 11:40:05'); INSERT INTO `sys_job_log` VALUES (8622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-13 11:40:06'); INSERT INTO `sys_job_log` VALUES (8623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1219毫秒', '0', '', '2022-01-13 11:40:15'); INSERT INTO `sys_job_log` VALUES (8624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-13 11:42:05'); INSERT INTO `sys_job_log` VALUES (8625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-13 11:42:06'); INSERT INTO `sys_job_log` VALUES (8626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-13 11:42:15'); INSERT INTO `sys_job_log` VALUES (8627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-13 11:44:04'); INSERT INTO `sys_job_log` VALUES (8628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-13 11:44:06'); INSERT INTO `sys_job_log` VALUES (8629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-13 11:44:16'); INSERT INTO `sys_job_log` VALUES (8630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-13 11:46:04'); INSERT INTO `sys_job_log` VALUES (8631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-13 11:46:06'); INSERT INTO `sys_job_log` VALUES (8632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-13 11:46:15'); INSERT INTO `sys_job_log` VALUES (8633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-13 11:48:04'); INSERT INTO `sys_job_log` VALUES (8634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-13 11:48:06'); INSERT INTO `sys_job_log` VALUES (8635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1117毫秒', '0', '', '2022-01-13 11:48:15'); INSERT INTO `sys_job_log` VALUES (8636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-13 11:50:04'); INSERT INTO `sys_job_log` VALUES (8637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-13 11:50:06'); INSERT INTO `sys_job_log` VALUES (8638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-13 11:50:14'); INSERT INTO `sys_job_log` VALUES (8639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-13 11:52:04'); INSERT INTO `sys_job_log` VALUES (8640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-13 11:52:06'); INSERT INTO `sys_job_log` VALUES (8641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-13 11:52:14'); INSERT INTO `sys_job_log` VALUES (8642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-13 11:54:05'); INSERT INTO `sys_job_log` VALUES (8643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-13 11:54:06'); INSERT INTO `sys_job_log` VALUES (8644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1213毫秒', '0', '', '2022-01-13 11:54:15'); INSERT INTO `sys_job_log` VALUES (8645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1370毫秒', '0', '', '2022-01-13 11:56:05'); INSERT INTO `sys_job_log` VALUES (8646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-13 11:56:06'); INSERT INTO `sys_job_log` VALUES (8647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-13 11:56:14'); INSERT INTO `sys_job_log` VALUES (8648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-13 11:58:04'); INSERT INTO `sys_job_log` VALUES (8649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-13 11:58:06'); INSERT INTO `sys_job_log` VALUES (8650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-13 11:58:14'); INSERT INTO `sys_job_log` VALUES (8651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1242毫秒', '0', '', '2022-01-13 12:00:05'); INSERT INTO `sys_job_log` VALUES (8652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-13 12:00:06'); INSERT INTO `sys_job_log` VALUES (8653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1222毫秒', '0', '', '2022-01-13 12:00:15'); INSERT INTO `sys_job_log` VALUES (8654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-13 12:02:04'); INSERT INTO `sys_job_log` VALUES (8655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-13 12:02:06'); INSERT INTO `sys_job_log` VALUES (8656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-13 12:02:14'); INSERT INTO `sys_job_log` VALUES (8657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:544毫秒', '0', '', '2022-01-13 12:04:04'); INSERT INTO `sys_job_log` VALUES (8658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-13 12:04:06'); INSERT INTO `sys_job_log` VALUES (8659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-13 12:04:14'); INSERT INTO `sys_job_log` VALUES (8660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1230毫秒', '0', '', '2022-01-13 12:06:05'); INSERT INTO `sys_job_log` VALUES (8661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-13 12:06:06'); INSERT INTO `sys_job_log` VALUES (8662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-13 12:06:15'); INSERT INTO `sys_job_log` VALUES (8663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1238毫秒', '0', '', '2022-01-13 12:08:05'); INSERT INTO `sys_job_log` VALUES (8664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-13 12:08:06'); INSERT INTO `sys_job_log` VALUES (8665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1219毫秒', '0', '', '2022-01-13 12:08:15'); INSERT INTO `sys_job_log` VALUES (8666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:318毫秒', '0', '', '2022-01-13 12:10:04'); INSERT INTO `sys_job_log` VALUES (8667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:550毫秒', '0', '', '2022-01-13 12:10:06'); INSERT INTO `sys_job_log` VALUES (8668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1388毫秒', '0', '', '2022-01-13 12:10:15'); INSERT INTO `sys_job_log` VALUES (8669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-13 12:12:05'); INSERT INTO `sys_job_log` VALUES (8670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-13 12:12:06'); INSERT INTO `sys_job_log` VALUES (8671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-13 12:12:14'); INSERT INTO `sys_job_log` VALUES (8672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-13 12:14:05'); INSERT INTO `sys_job_log` VALUES (8673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-13 12:14:06'); INSERT INTO `sys_job_log` VALUES (8674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1117毫秒', '0', '', '2022-01-13 12:14:15'); INSERT INTO `sys_job_log` VALUES (8675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-13 12:16:05'); INSERT INTO `sys_job_log` VALUES (8676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-13 12:16:06'); INSERT INTO `sys_job_log` VALUES (8677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1221毫秒', '0', '', '2022-01-13 12:16:15'); INSERT INTO `sys_job_log` VALUES (8678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-13 12:18:05'); INSERT INTO `sys_job_log` VALUES (8679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-13 12:18:06'); INSERT INTO `sys_job_log` VALUES (8680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-13 12:18:14'); INSERT INTO `sys_job_log` VALUES (8681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-13 12:20:04'); INSERT INTO `sys_job_log` VALUES (8682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-13 12:20:06'); INSERT INTO `sys_job_log` VALUES (8683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-13 12:20:15'); INSERT INTO `sys_job_log` VALUES (8684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-13 12:22:04'); INSERT INTO `sys_job_log` VALUES (8685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-13 12:22:06'); INSERT INTO `sys_job_log` VALUES (8686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-13 12:22:14'); INSERT INTO `sys_job_log` VALUES (8687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1150毫秒', '0', '', '2022-01-13 12:24:05'); INSERT INTO `sys_job_log` VALUES (8688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-13 12:24:06'); INSERT INTO `sys_job_log` VALUES (8689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1221毫秒', '0', '', '2022-01-13 12:24:15'); INSERT INTO `sys_job_log` VALUES (8690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-13 12:26:05'); INSERT INTO `sys_job_log` VALUES (8691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-13 12:26:06'); INSERT INTO `sys_job_log` VALUES (8692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1215毫秒', '0', '', '2022-01-13 12:26:15'); INSERT INTO `sys_job_log` VALUES (8693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1229毫秒', '0', '', '2022-01-13 12:28:05'); INSERT INTO `sys_job_log` VALUES (8694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-13 12:28:06'); INSERT INTO `sys_job_log` VALUES (8695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1236毫秒', '0', '', '2022-01-13 12:28:15'); INSERT INTO `sys_job_log` VALUES (8696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1118毫秒', '0', '', '2022-01-13 12:30:05'); INSERT INTO `sys_job_log` VALUES (8697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:461毫秒', '0', '', '2022-01-13 12:30:06'); INSERT INTO `sys_job_log` VALUES (8698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-13 12:30:15'); INSERT INTO `sys_job_log` VALUES (8699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-13 12:32:04'); INSERT INTO `sys_job_log` VALUES (8700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-13 12:32:06'); INSERT INTO `sys_job_log` VALUES (8701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-13 12:32:14'); INSERT INTO `sys_job_log` VALUES (8702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-13 12:34:04'); INSERT INTO `sys_job_log` VALUES (8703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-13 12:34:06'); INSERT INTO `sys_job_log` VALUES (8704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-13 12:34:14'); INSERT INTO `sys_job_log` VALUES (8705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-13 12:36:05'); INSERT INTO `sys_job_log` VALUES (8706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-13 12:36:06'); INSERT INTO `sys_job_log` VALUES (8707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-13 12:36:14'); INSERT INTO `sys_job_log` VALUES (8708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-13 12:38:04'); INSERT INTO `sys_job_log` VALUES (8709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-13 12:38:06'); INSERT INTO `sys_job_log` VALUES (8710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1234毫秒', '0', '', '2022-01-13 12:38:15'); INSERT INTO `sys_job_log` VALUES (8711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-13 12:40:04'); INSERT INTO `sys_job_log` VALUES (8712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-13 12:40:06'); INSERT INTO `sys_job_log` VALUES (8713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-13 12:40:14'); INSERT INTO `sys_job_log` VALUES (8714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-13 12:42:04'); INSERT INTO `sys_job_log` VALUES (8715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-13 12:42:06'); INSERT INTO `sys_job_log` VALUES (8716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1131毫秒', '0', '', '2022-01-13 12:42:15'); INSERT INTO `sys_job_log` VALUES (8717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1123毫秒', '0', '', '2022-01-13 12:44:05'); INSERT INTO `sys_job_log` VALUES (8718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-13 12:44:06'); INSERT INTO `sys_job_log` VALUES (8719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-13 12:44:14'); INSERT INTO `sys_job_log` VALUES (8720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-13 12:46:05'); INSERT INTO `sys_job_log` VALUES (8721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-13 12:46:06'); INSERT INTO `sys_job_log` VALUES (8722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1131毫秒', '0', '', '2022-01-13 12:46:15'); INSERT INTO `sys_job_log` VALUES (8723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-13 12:48:05'); INSERT INTO `sys_job_log` VALUES (8724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-13 12:48:06'); INSERT INTO `sys_job_log` VALUES (8725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-13 12:48:15'); INSERT INTO `sys_job_log` VALUES (8726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-13 12:50:04'); INSERT INTO `sys_job_log` VALUES (8727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-13 12:50:06'); INSERT INTO `sys_job_log` VALUES (8728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1204毫秒', '0', '', '2022-01-13 12:50:15'); INSERT INTO `sys_job_log` VALUES (8729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-13 12:52:04'); INSERT INTO `sys_job_log` VALUES (8730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-13 12:52:06'); INSERT INTO `sys_job_log` VALUES (8731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-13 12:52:14'); INSERT INTO `sys_job_log` VALUES (8732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-13 12:54:04'); INSERT INTO `sys_job_log` VALUES (8733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-13 12:54:06'); INSERT INTO `sys_job_log` VALUES (8734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-13 12:54:14'); INSERT INTO `sys_job_log` VALUES (8735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-13 12:56:05'); INSERT INTO `sys_job_log` VALUES (8736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-13 12:56:06'); INSERT INTO `sys_job_log` VALUES (8737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-13 12:56:15'); INSERT INTO `sys_job_log` VALUES (8738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-13 12:58:04'); INSERT INTO `sys_job_log` VALUES (8739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-13 12:58:06'); INSERT INTO `sys_job_log` VALUES (8740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-13 12:58:14'); INSERT INTO `sys_job_log` VALUES (8741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-13 13:00:04'); INSERT INTO `sys_job_log` VALUES (8742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-13 13:00:06'); INSERT INTO `sys_job_log` VALUES (8743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-13 13:00:15'); INSERT INTO `sys_job_log` VALUES (8744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-13 13:02:04'); INSERT INTO `sys_job_log` VALUES (8745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-13 13:02:06'); INSERT INTO `sys_job_log` VALUES (8746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-13 13:02:15'); INSERT INTO `sys_job_log` VALUES (8747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-13 13:04:04'); INSERT INTO `sys_job_log` VALUES (8748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-13 13:04:06'); INSERT INTO `sys_job_log` VALUES (8749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-13 13:04:14'); INSERT INTO `sys_job_log` VALUES (8750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-13 13:06:04'); INSERT INTO `sys_job_log` VALUES (8751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-13 13:06:06'); INSERT INTO `sys_job_log` VALUES (8752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-13 13:06:15'); INSERT INTO `sys_job_log` VALUES (8753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1135毫秒', '0', '', '2022-01-13 13:08:05'); INSERT INTO `sys_job_log` VALUES (8754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-13 13:08:06'); INSERT INTO `sys_job_log` VALUES (8755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1124毫秒', '0', '', '2022-01-13 13:08:15'); INSERT INTO `sys_job_log` VALUES (8756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1251毫秒', '0', '', '2022-01-13 13:10:05'); INSERT INTO `sys_job_log` VALUES (8757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-13 13:10:06'); INSERT INTO `sys_job_log` VALUES (8758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-13 13:10:15'); INSERT INTO `sys_job_log` VALUES (8759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-13 13:12:04'); INSERT INTO `sys_job_log` VALUES (8760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-13 13:12:06'); INSERT INTO `sys_job_log` VALUES (8761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-13 13:12:14'); INSERT INTO `sys_job_log` VALUES (8762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1221毫秒', '0', '', '2022-01-13 13:14:05'); INSERT INTO `sys_job_log` VALUES (8763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-13 13:14:06'); INSERT INTO `sys_job_log` VALUES (8764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1133毫秒', '0', '', '2022-01-13 13:14:15'); INSERT INTO `sys_job_log` VALUES (8765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1223毫秒', '0', '', '2022-01-13 13:16:05'); INSERT INTO `sys_job_log` VALUES (8766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-13 13:16:06'); INSERT INTO `sys_job_log` VALUES (8767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-13 13:16:15'); INSERT INTO `sys_job_log` VALUES (8768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-13 13:18:04'); INSERT INTO `sys_job_log` VALUES (8769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1115毫秒', '0', '', '2022-01-13 13:18:07'); INSERT INTO `sys_job_log` VALUES (8770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-13 13:18:14'); INSERT INTO `sys_job_log` VALUES (8771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-13 13:20:04'); INSERT INTO `sys_job_log` VALUES (8772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-13 13:20:06'); INSERT INTO `sys_job_log` VALUES (8773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1219毫秒', '0', '', '2022-01-13 13:20:15'); INSERT INTO `sys_job_log` VALUES (8774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-13 13:22:04'); INSERT INTO `sys_job_log` VALUES (8775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-13 13:22:06'); INSERT INTO `sys_job_log` VALUES (8776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-13 13:22:14'); INSERT INTO `sys_job_log` VALUES (8777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2019毫秒', '0', '', '2022-01-13 13:24:06'); INSERT INTO `sys_job_log` VALUES (8778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-13 13:24:06'); INSERT INTO `sys_job_log` VALUES (8779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-13 13:24:14'); INSERT INTO `sys_job_log` VALUES (8780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-13 13:26:05'); INSERT INTO `sys_job_log` VALUES (8781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-13 13:26:06'); INSERT INTO `sys_job_log` VALUES (8782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-13 13:26:15'); INSERT INTO `sys_job_log` VALUES (8783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-13 13:28:05'); INSERT INTO `sys_job_log` VALUES (8784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-13 13:28:06'); INSERT INTO `sys_job_log` VALUES (8785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-13 13:28:15'); INSERT INTO `sys_job_log` VALUES (8786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1226毫秒', '0', '', '2022-01-13 13:30:05'); INSERT INTO `sys_job_log` VALUES (8787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-13 13:30:06'); INSERT INTO `sys_job_log` VALUES (8788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1223毫秒', '0', '', '2022-01-13 13:30:15'); INSERT INTO `sys_job_log` VALUES (8789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-13 13:32:04'); INSERT INTO `sys_job_log` VALUES (8790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-13 13:32:06'); INSERT INTO `sys_job_log` VALUES (8791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-13 13:32:14'); INSERT INTO `sys_job_log` VALUES (8792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-13 13:34:04'); INSERT INTO `sys_job_log` VALUES (8793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-13 13:34:06'); INSERT INTO `sys_job_log` VALUES (8794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-13 13:34:14'); INSERT INTO `sys_job_log` VALUES (8795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-13 13:36:04'); INSERT INTO `sys_job_log` VALUES (8796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-13 13:36:06'); INSERT INTO `sys_job_log` VALUES (8797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1869毫秒', '0', '', '2022-01-13 13:36:15'); INSERT INTO `sys_job_log` VALUES (8798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1938毫秒', '0', '', '2022-01-13 13:38:05'); INSERT INTO `sys_job_log` VALUES (8799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-13 13:38:06'); INSERT INTO `sys_job_log` VALUES (8800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-13 13:38:14'); INSERT INTO `sys_job_log` VALUES (8801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-13 13:40:06'); INSERT INTO `sys_job_log` VALUES (8802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-13 13:40:08'); INSERT INTO `sys_job_log` VALUES (8803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:348毫秒', '0', '', '2022-01-13 13:40:14'); INSERT INTO `sys_job_log` VALUES (8804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:319毫秒', '0', '', '2022-01-13 13:42:04'); INSERT INTO `sys_job_log` VALUES (8805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-13 13:42:06'); INSERT INTO `sys_job_log` VALUES (8806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1214毫秒', '0', '', '2022-01-13 13:42:15'); INSERT INTO `sys_job_log` VALUES (8807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1233毫秒', '0', '', '2022-01-13 13:44:05'); INSERT INTO `sys_job_log` VALUES (8808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-13 13:44:06'); INSERT INTO `sys_job_log` VALUES (8809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-13 13:44:15'); INSERT INTO `sys_job_log` VALUES (8810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1281毫秒', '0', '', '2022-01-13 13:46:05'); INSERT INTO `sys_job_log` VALUES (8811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-13 13:46:06'); INSERT INTO `sys_job_log` VALUES (8812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-13 13:46:15'); INSERT INTO `sys_job_log` VALUES (8813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1220毫秒', '0', '', '2022-01-13 13:48:05'); INSERT INTO `sys_job_log` VALUES (8814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-13 13:48:06'); INSERT INTO `sys_job_log` VALUES (8815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1260毫秒', '0', '', '2022-01-13 13:48:15'); INSERT INTO `sys_job_log` VALUES (8816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-13 13:50:04'); INSERT INTO `sys_job_log` VALUES (8817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-13 13:50:06'); INSERT INTO `sys_job_log` VALUES (8818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-13 13:50:15'); INSERT INTO `sys_job_log` VALUES (8819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-13 13:52:04'); INSERT INTO `sys_job_log` VALUES (8820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-13 13:52:06'); INSERT INTO `sys_job_log` VALUES (8821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-13 13:52:14'); INSERT INTO `sys_job_log` VALUES (8822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1250毫秒', '0', '', '2022-01-13 13:54:05'); INSERT INTO `sys_job_log` VALUES (8823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-13 13:54:06'); INSERT INTO `sys_job_log` VALUES (8824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-13 13:54:14'); INSERT INTO `sys_job_log` VALUES (8825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-13 13:56:04'); INSERT INTO `sys_job_log` VALUES (8826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1282毫秒', '0', '', '2022-01-13 13:56:07'); INSERT INTO `sys_job_log` VALUES (8827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-13 13:56:14'); INSERT INTO `sys_job_log` VALUES (8828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1244毫秒', '0', '', '2022-01-13 13:58:05'); INSERT INTO `sys_job_log` VALUES (8829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-13 13:58:06'); INSERT INTO `sys_job_log` VALUES (8830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-13 13:58:15'); INSERT INTO `sys_job_log` VALUES (8831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1288毫秒', '0', '', '2022-01-13 14:00:05'); INSERT INTO `sys_job_log` VALUES (8832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-13 14:00:06'); INSERT INTO `sys_job_log` VALUES (8833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1241毫秒', '0', '', '2022-01-13 14:00:15'); INSERT INTO `sys_job_log` VALUES (8834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-13 14:02:04'); INSERT INTO `sys_job_log` VALUES (8835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-13 14:02:06'); INSERT INTO `sys_job_log` VALUES (8836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-13 14:02:14'); INSERT INTO `sys_job_log` VALUES (8837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1221毫秒', '0', '', '2022-01-13 14:04:05'); INSERT INTO `sys_job_log` VALUES (8838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-13 14:04:06'); INSERT INTO `sys_job_log` VALUES (8839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1129毫秒', '0', '', '2022-01-13 14:04:15'); INSERT INTO `sys_job_log` VALUES (8840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-13 14:06:04'); INSERT INTO `sys_job_log` VALUES (8841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-13 14:06:06'); INSERT INTO `sys_job_log` VALUES (8842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:715毫秒', '0', '', '2022-01-13 14:06:14'); INSERT INTO `sys_job_log` VALUES (8843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1204毫秒', '0', '', '2022-01-13 14:08:05'); INSERT INTO `sys_job_log` VALUES (8844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-13 14:08:06'); INSERT INTO `sys_job_log` VALUES (8845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-13 14:08:14'); INSERT INTO `sys_job_log` VALUES (8846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-13 14:10:05'); INSERT INTO `sys_job_log` VALUES (8847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-13 14:10:06'); INSERT INTO `sys_job_log` VALUES (8848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1149毫秒', '0', '', '2022-01-13 14:10:15'); INSERT INTO `sys_job_log` VALUES (8849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-13 14:12:04'); INSERT INTO `sys_job_log` VALUES (8850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-13 14:12:06'); INSERT INTO `sys_job_log` VALUES (8851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-13 14:12:14'); INSERT INTO `sys_job_log` VALUES (8852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1336毫秒', '0', '', '2022-01-13 14:14:05'); INSERT INTO `sys_job_log` VALUES (8853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-13 14:14:06'); INSERT INTO `sys_job_log` VALUES (8854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-13 14:14:14'); INSERT INTO `sys_job_log` VALUES (8855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-13 14:16:05'); INSERT INTO `sys_job_log` VALUES (8856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-13 14:16:06'); INSERT INTO `sys_job_log` VALUES (8857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-13 14:16:14'); INSERT INTO `sys_job_log` VALUES (8858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-13 14:18:04'); INSERT INTO `sys_job_log` VALUES (8859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:54毫秒', '0', '', '2022-01-13 14:18:06'); INSERT INTO `sys_job_log` VALUES (8860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-13 14:18:14'); INSERT INTO `sys_job_log` VALUES (8861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-13 14:20:04'); INSERT INTO `sys_job_log` VALUES (8862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-13 14:20:06'); INSERT INTO `sys_job_log` VALUES (8863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-13 14:20:14'); INSERT INTO `sys_job_log` VALUES (8864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-13 14:22:04'); INSERT INTO `sys_job_log` VALUES (8865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-13 14:22:06'); INSERT INTO `sys_job_log` VALUES (8866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-13 14:22:14'); INSERT INTO `sys_job_log` VALUES (8867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1086毫秒', '0', '', '2022-01-13 14:24:05'); INSERT INTO `sys_job_log` VALUES (8868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-13 14:24:06'); INSERT INTO `sys_job_log` VALUES (8869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1170毫秒', '0', '', '2022-01-13 14:24:15'); INSERT INTO `sys_job_log` VALUES (8870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-13 14:26:04'); INSERT INTO `sys_job_log` VALUES (8871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-13 14:26:07'); INSERT INTO `sys_job_log` VALUES (8872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1163毫秒', '0', '', '2022-01-13 14:26:15'); INSERT INTO `sys_job_log` VALUES (8873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-13 14:28:05'); INSERT INTO `sys_job_log` VALUES (8874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-13 14:28:06'); INSERT INTO `sys_job_log` VALUES (8875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-13 14:28:14'); INSERT INTO `sys_job_log` VALUES (8876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-13 14:30:04'); INSERT INTO `sys_job_log` VALUES (8877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-13 14:30:06'); INSERT INTO `sys_job_log` VALUES (8878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-13 14:30:15'); INSERT INTO `sys_job_log` VALUES (8879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-13 14:32:04'); INSERT INTO `sys_job_log` VALUES (8880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-13 14:32:06'); INSERT INTO `sys_job_log` VALUES (8881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-13 14:32:14'); INSERT INTO `sys_job_log` VALUES (8882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-13 14:34:04'); INSERT INTO `sys_job_log` VALUES (8883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-13 14:34:06'); INSERT INTO `sys_job_log` VALUES (8884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-13 14:34:15'); INSERT INTO `sys_job_log` VALUES (8885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-13 14:36:04'); INSERT INTO `sys_job_log` VALUES (8886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-13 14:36:06'); INSERT INTO `sys_job_log` VALUES (8887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1123毫秒', '0', '', '2022-01-13 14:36:15'); INSERT INTO `sys_job_log` VALUES (8888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-13 14:38:04'); INSERT INTO `sys_job_log` VALUES (8889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1172毫秒', '0', '', '2022-01-13 14:38:07'); INSERT INTO `sys_job_log` VALUES (8890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-13 14:38:14'); INSERT INTO `sys_job_log` VALUES (8891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1071毫秒', '0', '', '2022-01-13 14:40:05'); INSERT INTO `sys_job_log` VALUES (8892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-13 14:40:06'); INSERT INTO `sys_job_log` VALUES (8893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1164毫秒', '0', '', '2022-01-13 14:40:15'); INSERT INTO `sys_job_log` VALUES (8894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-13 14:42:04'); INSERT INTO `sys_job_log` VALUES (8895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-13 14:42:06'); INSERT INTO `sys_job_log` VALUES (8896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-13 14:42:14'); INSERT INTO `sys_job_log` VALUES (8897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-13 14:44:04'); INSERT INTO `sys_job_log` VALUES (8898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1160毫秒', '0', '', '2022-01-13 14:44:07'); INSERT INTO `sys_job_log` VALUES (8899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-13 14:44:14'); INSERT INTO `sys_job_log` VALUES (8900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1251毫秒', '0', '', '2022-01-13 14:46:05'); INSERT INTO `sys_job_log` VALUES (8901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-13 14:46:06'); INSERT INTO `sys_job_log` VALUES (8902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-13 14:46:15'); INSERT INTO `sys_job_log` VALUES (8903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-13 14:48:05'); INSERT INTO `sys_job_log` VALUES (8904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-13 14:48:06'); INSERT INTO `sys_job_log` VALUES (8905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1171毫秒', '0', '', '2022-01-13 14:48:15'); INSERT INTO `sys_job_log` VALUES (8906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-13 14:50:04'); INSERT INTO `sys_job_log` VALUES (8907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-13 14:50:06'); INSERT INTO `sys_job_log` VALUES (8908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-13 14:50:15'); INSERT INTO `sys_job_log` VALUES (8909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-13 14:52:04'); INSERT INTO `sys_job_log` VALUES (8910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:52毫秒', '0', '', '2022-01-13 14:52:06'); INSERT INTO `sys_job_log` VALUES (8911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-13 14:52:14'); INSERT INTO `sys_job_log` VALUES (8912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1080毫秒', '0', '', '2022-01-13 14:54:05'); INSERT INTO `sys_job_log` VALUES (8913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-13 14:54:06'); INSERT INTO `sys_job_log` VALUES (8914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1171毫秒', '0', '', '2022-01-13 14:54:15'); INSERT INTO `sys_job_log` VALUES (8915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-13 14:56:04'); INSERT INTO `sys_job_log` VALUES (8916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-13 14:56:06'); INSERT INTO `sys_job_log` VALUES (8917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-13 14:56:14'); INSERT INTO `sys_job_log` VALUES (8918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-13 14:58:04'); INSERT INTO `sys_job_log` VALUES (8919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-13 14:58:06'); INSERT INTO `sys_job_log` VALUES (8920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-13 14:58:14'); INSERT INTO `sys_job_log` VALUES (8921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-13 15:14:04'); INSERT INTO `sys_job_log` VALUES (8922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-13 15:14:06'); INSERT INTO `sys_job_log` VALUES (8923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-13 15:14:14'); INSERT INTO `sys_job_log` VALUES (8924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2037毫秒', '0', '', '2022-01-13 15:16:06'); INSERT INTO `sys_job_log` VALUES (8925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1741毫秒', '0', '', '2022-01-13 15:16:07'); INSERT INTO `sys_job_log` VALUES (8926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1244毫秒', '0', '', '2022-01-13 15:16:15'); INSERT INTO `sys_job_log` VALUES (8927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:288毫秒', '0', '', '2022-01-13 15:18:04'); INSERT INTO `sys_job_log` VALUES (8928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-13 15:18:06'); INSERT INTO `sys_job_log` VALUES (8929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1246毫秒', '0', '', '2022-01-13 15:18:15'); INSERT INTO `sys_job_log` VALUES (8930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-13 15:20:04'); INSERT INTO `sys_job_log` VALUES (8931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-13 15:20:06'); INSERT INTO `sys_job_log` VALUES (8932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1204毫秒', '0', '', '2022-01-13 15:20:15'); INSERT INTO `sys_job_log` VALUES (8933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-13 15:22:04'); INSERT INTO `sys_job_log` VALUES (8934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-13 15:22:06'); INSERT INTO `sys_job_log` VALUES (8935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-13 15:22:14'); INSERT INTO `sys_job_log` VALUES (8936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-13 15:23:08'); INSERT INTO `sys_job_log` VALUES (8937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1213毫秒', '0', '', '2022-01-13 15:24:05'); INSERT INTO `sys_job_log` VALUES (8938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-13 15:24:06'); INSERT INTO `sys_job_log` VALUES (8939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1137毫秒', '0', '', '2022-01-13 15:24:15'); INSERT INTO `sys_job_log` VALUES (8940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1157毫秒', '0', '', '2022-01-13 15:26:05'); INSERT INTO `sys_job_log` VALUES (8941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-13 15:26:06'); INSERT INTO `sys_job_log` VALUES (8942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-13 15:26:15'); INSERT INTO `sys_job_log` VALUES (8943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1315毫秒', '0', '', '2022-01-13 15:28:05'); INSERT INTO `sys_job_log` VALUES (8944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-13 15:28:06'); INSERT INTO `sys_job_log` VALUES (8945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-13 15:28:14'); INSERT INTO `sys_job_log` VALUES (8946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1266毫秒', '0', '', '2022-01-13 15:29:57'); INSERT INTO `sys_job_log` VALUES (8947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1238毫秒', '0', '', '2022-01-13 15:30:05'); INSERT INTO `sys_job_log` VALUES (8948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-13 15:30:06'); INSERT INTO `sys_job_log` VALUES (8949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1228毫秒', '0', '', '2022-01-13 15:30:15'); INSERT INTO `sys_job_log` VALUES (8950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2011毫秒', '0', '', '2022-01-13 15:32:06'); INSERT INTO `sys_job_log` VALUES (8951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1773毫秒', '0', '', '2022-01-13 15:32:07'); INSERT INTO `sys_job_log` VALUES (8952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-13 15:32:15'); INSERT INTO `sys_job_log` VALUES (8953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1257毫秒', '0', '', '2022-01-13 15:33:57'); INSERT INTO `sys_job_log` VALUES (8954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-13 15:34:04'); INSERT INTO `sys_job_log` VALUES (8955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-13 15:34:06'); INSERT INTO `sys_job_log` VALUES (8956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1233毫秒', '0', '', '2022-01-13 15:34:15'); INSERT INTO `sys_job_log` VALUES (8957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:360毫秒', '0', '', '2022-01-13 15:36:04'); INSERT INTO `sys_job_log` VALUES (8958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-13 15:36:04'); INSERT INTO `sys_job_log` VALUES (8959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-13 15:36:06'); INSERT INTO `sys_job_log` VALUES (8960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1243毫秒', '0', '', '2022-01-13 15:36:15'); INSERT INTO `sys_job_log` VALUES (8961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-13 15:38:05'); INSERT INTO `sys_job_log` VALUES (8962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-13 15:38:06'); INSERT INTO `sys_job_log` VALUES (8963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-13 15:38:14'); INSERT INTO `sys_job_log` VALUES (8964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1220毫秒', '0', '', '2022-01-13 15:40:05'); INSERT INTO `sys_job_log` VALUES (8965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-13 15:40:06'); INSERT INTO `sys_job_log` VALUES (8966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1125毫秒', '0', '', '2022-01-13 15:40:15'); INSERT INTO `sys_job_log` VALUES (8967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2304毫秒', '0', '', '2022-01-13 15:42:06'); INSERT INTO `sys_job_log` VALUES (8968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2009毫秒', '0', '', '2022-01-13 15:42:08'); INSERT INTO `sys_job_log` VALUES (8969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-13 15:42:15'); INSERT INTO `sys_job_log` VALUES (8970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-13 15:42:57'); INSERT INTO `sys_job_log` VALUES (8971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:403毫秒', '0', '', '2022-01-13 15:44:04'); INSERT INTO `sys_job_log` VALUES (8972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-13 15:44:06'); INSERT INTO `sys_job_log` VALUES (8973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1164毫秒', '0', '', '2022-01-13 15:44:15'); INSERT INTO `sys_job_log` VALUES (8974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-13 15:46:04'); INSERT INTO `sys_job_log` VALUES (8975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-13 15:46:06'); INSERT INTO `sys_job_log` VALUES (8976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1546毫秒', '0', '', '2022-01-13 15:46:15'); INSERT INTO `sys_job_log` VALUES (8977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-13 15:48:06'); INSERT INTO `sys_job_log` VALUES (8978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-13 15:48:06'); INSERT INTO `sys_job_log` VALUES (8979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-13 15:48:14'); INSERT INTO `sys_job_log` VALUES (8980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2246毫秒', '0', '', '2022-01-13 21:22:06'); INSERT INTO `sys_job_log` VALUES (8981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:681毫秒', '0', '', '2022-01-13 21:22:07'); INSERT INTO `sys_job_log` VALUES (8982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-13 21:22:14'); INSERT INTO `sys_job_log` VALUES (8983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-13 21:24:04'); INSERT INTO `sys_job_log` VALUES (8984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-13 21:24:06'); INSERT INTO `sys_job_log` VALUES (8985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-13 21:24:14'); INSERT INTO `sys_job_log` VALUES (8986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-13 21:26:04'); INSERT INTO `sys_job_log` VALUES (8987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:315毫秒', '0', '', '2022-01-13 21:26:06'); INSERT INTO `sys_job_log` VALUES (8988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-13 21:26:14'); INSERT INTO `sys_job_log` VALUES (8989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-13 21:28:04'); INSERT INTO `sys_job_log` VALUES (8990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-13 21:28:06'); INSERT INTO `sys_job_log` VALUES (8991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-13 21:28:14'); INSERT INTO `sys_job_log` VALUES (8992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-13 21:30:04'); INSERT INTO `sys_job_log` VALUES (8993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-13 21:30:06'); INSERT INTO `sys_job_log` VALUES (8994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-13 21:30:14'); INSERT INTO `sys_job_log` VALUES (8995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:302毫秒', '0', '', '2022-01-13 21:32:04'); INSERT INTO `sys_job_log` VALUES (8996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-13 21:32:06'); INSERT INTO `sys_job_log` VALUES (8997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-13 21:32:14'); INSERT INTO `sys_job_log` VALUES (8998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-13 21:34:04'); INSERT INTO `sys_job_log` VALUES (8999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:266毫秒', '0', '', '2022-01-13 21:34:06'); INSERT INTO `sys_job_log` VALUES (9000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-13 21:34:14'); INSERT INTO `sys_job_log` VALUES (9001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:265毫秒', '0', '', '2022-01-13 21:36:04'); INSERT INTO `sys_job_log` VALUES (9002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-13 21:36:06'); INSERT INTO `sys_job_log` VALUES (9003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-13 21:36:14'); INSERT INTO `sys_job_log` VALUES (9004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-13 21:38:04'); INSERT INTO `sys_job_log` VALUES (9005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-13 21:38:06'); INSERT INTO `sys_job_log` VALUES (9006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:424毫秒', '0', '', '2022-01-13 21:38:14'); INSERT INTO `sys_job_log` VALUES (9007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-13 21:40:04'); INSERT INTO `sys_job_log` VALUES (9008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-13 21:40:06'); INSERT INTO `sys_job_log` VALUES (9009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-13 21:40:14'); INSERT INTO `sys_job_log` VALUES (9010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-13 21:42:04'); INSERT INTO `sys_job_log` VALUES (9011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-13 21:42:06'); INSERT INTO `sys_job_log` VALUES (9012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-13 21:42:14'); INSERT INTO `sys_job_log` VALUES (9013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:285毫秒', '0', '', '2022-01-13 21:44:04'); INSERT INTO `sys_job_log` VALUES (9014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-13 21:44:06'); INSERT INTO `sys_job_log` VALUES (9015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-13 21:44:14'); INSERT INTO `sys_job_log` VALUES (9016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:417毫秒', '0', '', '2022-01-13 21:46:04'); INSERT INTO `sys_job_log` VALUES (9017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-13 21:46:06'); INSERT INTO `sys_job_log` VALUES (9018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-13 21:46:14'); INSERT INTO `sys_job_log` VALUES (9019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-13 21:48:04'); INSERT INTO `sys_job_log` VALUES (9020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-13 21:48:06'); INSERT INTO `sys_job_log` VALUES (9021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-13 21:48:14'); INSERT INTO `sys_job_log` VALUES (9022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-13 21:50:04'); INSERT INTO `sys_job_log` VALUES (9023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-13 21:50:06'); INSERT INTO `sys_job_log` VALUES (9024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-13 21:50:14'); INSERT INTO `sys_job_log` VALUES (9025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-13 21:52:04'); INSERT INTO `sys_job_log` VALUES (9026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-13 21:52:06'); INSERT INTO `sys_job_log` VALUES (9027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-13 21:52:14'); INSERT INTO `sys_job_log` VALUES (9028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-13 21:54:04'); INSERT INTO `sys_job_log` VALUES (9029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-13 21:54:06'); INSERT INTO `sys_job_log` VALUES (9030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-13 21:54:14'); INSERT INTO `sys_job_log` VALUES (9031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-13 21:56:04'); INSERT INTO `sys_job_log` VALUES (9032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-13 21:56:06'); INSERT INTO `sys_job_log` VALUES (9033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-13 21:56:14'); INSERT INTO `sys_job_log` VALUES (9034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:343毫秒', '0', '', '2022-01-13 21:58:04'); INSERT INTO `sys_job_log` VALUES (9035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-13 21:58:06'); INSERT INTO `sys_job_log` VALUES (9036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-13 21:58:14'); INSERT INTO `sys_job_log` VALUES (9037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-13 22:00:04'); INSERT INTO `sys_job_log` VALUES (9038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-13 22:00:06'); INSERT INTO `sys_job_log` VALUES (9039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-13 22:00:14'); INSERT INTO `sys_job_log` VALUES (9040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-13 22:02:04'); INSERT INTO `sys_job_log` VALUES (9041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-13 22:02:06'); INSERT INTO `sys_job_log` VALUES (9042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-13 22:02:14'); INSERT INTO `sys_job_log` VALUES (9043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-13 22:04:04'); INSERT INTO `sys_job_log` VALUES (9044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-13 22:04:06'); INSERT INTO `sys_job_log` VALUES (9045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-13 22:04:14'); INSERT INTO `sys_job_log` VALUES (9046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:345毫秒', '0', '', '2022-01-13 22:06:04'); INSERT INTO `sys_job_log` VALUES (9047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-13 22:06:06'); INSERT INTO `sys_job_log` VALUES (9048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:418毫秒', '0', '', '2022-01-13 22:06:14'); INSERT INTO `sys_job_log` VALUES (9049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:358毫秒', '0', '', '2022-01-13 22:08:04'); INSERT INTO `sys_job_log` VALUES (9050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-13 22:08:06'); INSERT INTO `sys_job_log` VALUES (9051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-13 22:08:14'); INSERT INTO `sys_job_log` VALUES (9052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:351毫秒', '0', '', '2022-01-13 22:10:04'); INSERT INTO `sys_job_log` VALUES (9053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-13 22:10:06'); INSERT INTO `sys_job_log` VALUES (9054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-13 22:10:14'); INSERT INTO `sys_job_log` VALUES (9055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-13 22:12:04'); INSERT INTO `sys_job_log` VALUES (9056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-13 22:12:06'); INSERT INTO `sys_job_log` VALUES (9057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-13 22:12:14'); INSERT INTO `sys_job_log` VALUES (9058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-13 22:14:04'); INSERT INTO `sys_job_log` VALUES (9059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-13 22:14:06'); INSERT INTO `sys_job_log` VALUES (9060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-13 22:14:14'); INSERT INTO `sys_job_log` VALUES (9061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-13 22:16:04'); INSERT INTO `sys_job_log` VALUES (9062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-13 22:16:06'); INSERT INTO `sys_job_log` VALUES (9063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-13 22:16:14'); INSERT INTO `sys_job_log` VALUES (9064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1564毫秒', '0', '', '2022-01-14 11:52:05'); INSERT INTO `sys_job_log` VALUES (9065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-14 11:52:06'); INSERT INTO `sys_job_log` VALUES (9066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-14 11:52:15'); INSERT INTO `sys_job_log` VALUES (9067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1306毫秒', '0', '', '2022-01-14 11:54:05'); INSERT INTO `sys_job_log` VALUES (9068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-14 11:54:06'); INSERT INTO `sys_job_log` VALUES (9069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-14 11:54:15'); INSERT INTO `sys_job_log` VALUES (9070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1228毫秒', '0', '', '2022-01-14 11:56:05'); INSERT INTO `sys_job_log` VALUES (9071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-14 11:56:06'); INSERT INTO `sys_job_log` VALUES (9072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-14 11:56:14'); INSERT INTO `sys_job_log` VALUES (9073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-14 11:58:04'); INSERT INTO `sys_job_log` VALUES (9074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-14 11:58:06'); INSERT INTO `sys_job_log` VALUES (9075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-14 11:58:14'); INSERT INTO `sys_job_log` VALUES (9076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2017毫秒', '0', '', '2022-01-14 12:00:06'); INSERT INTO `sys_job_log` VALUES (9077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-14 12:00:06'); INSERT INTO `sys_job_log` VALUES (9078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1251毫秒', '0', '', '2022-01-14 12:00:15'); INSERT INTO `sys_job_log` VALUES (9079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-14 12:02:04'); INSERT INTO `sys_job_log` VALUES (9080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:490毫秒', '0', '', '2022-01-14 12:02:06'); INSERT INTO `sys_job_log` VALUES (9081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:306毫秒', '0', '', '2022-01-14 12:02:14'); INSERT INTO `sys_job_log` VALUES (9082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1249毫秒', '0', '', '2022-01-14 12:04:05'); INSERT INTO `sys_job_log` VALUES (9083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-14 12:04:06'); INSERT INTO `sys_job_log` VALUES (9084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-14 12:04:15'); INSERT INTO `sys_job_log` VALUES (9085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-14 12:06:04'); INSERT INTO `sys_job_log` VALUES (9086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-14 12:06:06'); INSERT INTO `sys_job_log` VALUES (9087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-14 12:06:14'); INSERT INTO `sys_job_log` VALUES (9088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 12:08:04'); INSERT INTO `sys_job_log` VALUES (9089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-14 12:08:06'); INSERT INTO `sys_job_log` VALUES (9090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-14 12:08:14'); INSERT INTO `sys_job_log` VALUES (9091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1241毫秒', '0', '', '2022-01-14 12:10:05'); INSERT INTO `sys_job_log` VALUES (9092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-14 12:10:06'); INSERT INTO `sys_job_log` VALUES (9093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1229毫秒', '0', '', '2022-01-14 12:10:15'); INSERT INTO `sys_job_log` VALUES (9094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-14 12:12:04'); INSERT INTO `sys_job_log` VALUES (9095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-14 12:12:06'); INSERT INTO `sys_job_log` VALUES (9096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1140毫秒', '0', '', '2022-01-14 12:12:15'); INSERT INTO `sys_job_log` VALUES (9097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1268毫秒', '0', '', '2022-01-14 12:14:05'); INSERT INTO `sys_job_log` VALUES (9098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-14 12:14:06'); INSERT INTO `sys_job_log` VALUES (9099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-14 12:14:15'); INSERT INTO `sys_job_log` VALUES (9100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-14 12:16:05'); INSERT INTO `sys_job_log` VALUES (9101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-14 12:16:06'); INSERT INTO `sys_job_log` VALUES (9102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-14 12:16:14'); INSERT INTO `sys_job_log` VALUES (9103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 12:18:04'); INSERT INTO `sys_job_log` VALUES (9104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-14 12:18:06'); INSERT INTO `sys_job_log` VALUES (9105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-14 12:18:15'); INSERT INTO `sys_job_log` VALUES (9106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-14 12:20:04'); INSERT INTO `sys_job_log` VALUES (9107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-14 12:20:06'); INSERT INTO `sys_job_log` VALUES (9108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-14 12:20:14'); INSERT INTO `sys_job_log` VALUES (9109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 12:22:04'); INSERT INTO `sys_job_log` VALUES (9110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-14 12:22:06'); INSERT INTO `sys_job_log` VALUES (9111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-14 12:22:14'); INSERT INTO `sys_job_log` VALUES (9112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-14 12:24:05'); INSERT INTO `sys_job_log` VALUES (9113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-14 12:24:06'); INSERT INTO `sys_job_log` VALUES (9114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-14 12:24:15'); INSERT INTO `sys_job_log` VALUES (9115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-14 12:26:05'); INSERT INTO `sys_job_log` VALUES (9116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-14 12:26:06'); INSERT INTO `sys_job_log` VALUES (9117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-14 12:26:15'); INSERT INTO `sys_job_log` VALUES (9118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-14 12:28:04'); INSERT INTO `sys_job_log` VALUES (9119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 12:28:06'); INSERT INTO `sys_job_log` VALUES (9120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-14 12:28:15'); INSERT INTO `sys_job_log` VALUES (9121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1222毫秒', '0', '', '2022-01-14 12:30:05'); INSERT INTO `sys_job_log` VALUES (9122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-14 12:30:06'); INSERT INTO `sys_job_log` VALUES (9123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1232毫秒', '0', '', '2022-01-14 12:30:15'); INSERT INTO `sys_job_log` VALUES (9124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-14 12:32:05'); INSERT INTO `sys_job_log` VALUES (9125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-14 12:32:06'); INSERT INTO `sys_job_log` VALUES (9126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1217毫秒', '0', '', '2022-01-14 12:32:15'); INSERT INTO `sys_job_log` VALUES (9127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1237毫秒', '0', '', '2022-01-14 12:34:05'); INSERT INTO `sys_job_log` VALUES (9128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-14 12:34:06'); INSERT INTO `sys_job_log` VALUES (9129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1233毫秒', '0', '', '2022-01-14 12:34:15'); INSERT INTO `sys_job_log` VALUES (9130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-14 12:36:05'); INSERT INTO `sys_job_log` VALUES (9131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-14 12:36:06'); INSERT INTO `sys_job_log` VALUES (9132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-14 12:36:15'); INSERT INTO `sys_job_log` VALUES (9133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1202毫秒', '0', '', '2022-01-14 12:38:05'); INSERT INTO `sys_job_log` VALUES (9134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-14 12:38:06'); INSERT INTO `sys_job_log` VALUES (9135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2006毫秒', '0', '', '2022-01-14 12:38:16'); INSERT INTO `sys_job_log` VALUES (9136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-14 12:40:05'); INSERT INTO `sys_job_log` VALUES (9137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-14 12:40:06'); INSERT INTO `sys_job_log` VALUES (9138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-14 12:40:15'); INSERT INTO `sys_job_log` VALUES (9139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-14 12:42:04'); INSERT INTO `sys_job_log` VALUES (9140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-14 12:42:06'); INSERT INTO `sys_job_log` VALUES (9141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-14 12:42:15'); INSERT INTO `sys_job_log` VALUES (9142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-14 12:44:04'); INSERT INTO `sys_job_log` VALUES (9143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-14 12:44:06'); INSERT INTO `sys_job_log` VALUES (9144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-14 12:44:14'); INSERT INTO `sys_job_log` VALUES (9145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1123毫秒', '0', '', '2022-01-14 12:46:05'); INSERT INTO `sys_job_log` VALUES (9146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-14 12:46:06'); INSERT INTO `sys_job_log` VALUES (9147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-14 12:46:14'); INSERT INTO `sys_job_log` VALUES (9148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1213毫秒', '0', '', '2022-01-14 12:48:05'); INSERT INTO `sys_job_log` VALUES (9149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-14 12:48:06'); INSERT INTO `sys_job_log` VALUES (9150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1231毫秒', '0', '', '2022-01-14 12:48:15'); INSERT INTO `sys_job_log` VALUES (9151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-14 12:50:04'); INSERT INTO `sys_job_log` VALUES (9152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-14 12:50:06'); INSERT INTO `sys_job_log` VALUES (9153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-14 12:50:14'); INSERT INTO `sys_job_log` VALUES (9154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-14 12:52:04'); INSERT INTO `sys_job_log` VALUES (9155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 12:52:06'); INSERT INTO `sys_job_log` VALUES (9156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-14 12:52:14'); INSERT INTO `sys_job_log` VALUES (9157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1219毫秒', '0', '', '2022-01-14 12:54:05'); INSERT INTO `sys_job_log` VALUES (9158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-14 12:54:06'); INSERT INTO `sys_job_log` VALUES (9159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1234毫秒', '0', '', '2022-01-14 12:54:15'); INSERT INTO `sys_job_log` VALUES (9160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-14 12:56:05'); INSERT INTO `sys_job_log` VALUES (9161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-14 12:56:06'); INSERT INTO `sys_job_log` VALUES (9162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-14 12:56:14'); INSERT INTO `sys_job_log` VALUES (9163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-14 12:58:05'); INSERT INTO `sys_job_log` VALUES (9164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 12:58:06'); INSERT INTO `sys_job_log` VALUES (9165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1224毫秒', '0', '', '2022-01-14 12:58:15'); INSERT INTO `sys_job_log` VALUES (9166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2015毫秒', '0', '', '2022-01-14 13:00:06'); INSERT INTO `sys_job_log` VALUES (9167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-14 13:00:06'); INSERT INTO `sys_job_log` VALUES (9168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1271毫秒', '0', '', '2022-01-14 13:00:15'); INSERT INTO `sys_job_log` VALUES (9169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-14 13:02:04'); INSERT INTO `sys_job_log` VALUES (9170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 13:02:06'); INSERT INTO `sys_job_log` VALUES (9171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-14 13:02:15'); INSERT INTO `sys_job_log` VALUES (9172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-14 13:04:05'); INSERT INTO `sys_job_log` VALUES (9173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-14 13:04:06'); INSERT INTO `sys_job_log` VALUES (9174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-14 13:04:14'); INSERT INTO `sys_job_log` VALUES (9175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2017毫秒', '0', '', '2022-01-14 13:06:06'); INSERT INTO `sys_job_log` VALUES (9176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-14 13:06:06'); INSERT INTO `sys_job_log` VALUES (9177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-14 13:06:15'); INSERT INTO `sys_job_log` VALUES (9178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-14 13:08:05'); INSERT INTO `sys_job_log` VALUES (9179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-14 13:08:06'); INSERT INTO `sys_job_log` VALUES (9180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1127毫秒', '0', '', '2022-01-14 13:08:15'); INSERT INTO `sys_job_log` VALUES (9181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1122毫秒', '0', '', '2022-01-14 13:10:05'); INSERT INTO `sys_job_log` VALUES (9182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-14 13:10:06'); INSERT INTO `sys_job_log` VALUES (9183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1238毫秒', '0', '', '2022-01-14 13:10:15'); INSERT INTO `sys_job_log` VALUES (9184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 13:12:04'); INSERT INTO `sys_job_log` VALUES (9185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1233毫秒', '0', '', '2022-01-14 13:12:07'); INSERT INTO `sys_job_log` VALUES (9186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-14 13:12:14'); INSERT INTO `sys_job_log` VALUES (9187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1124毫秒', '0', '', '2022-01-14 13:14:05'); INSERT INTO `sys_job_log` VALUES (9188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 13:14:06'); INSERT INTO `sys_job_log` VALUES (9189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-14 13:14:14'); INSERT INTO `sys_job_log` VALUES (9190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-14 13:16:05'); INSERT INTO `sys_job_log` VALUES (9191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-14 13:16:06'); INSERT INTO `sys_job_log` VALUES (9192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-14 13:16:15'); INSERT INTO `sys_job_log` VALUES (9193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-14 13:18:04'); INSERT INTO `sys_job_log` VALUES (9194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-14 13:18:06'); INSERT INTO `sys_job_log` VALUES (9195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-14 13:18:14'); INSERT INTO `sys_job_log` VALUES (9196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-14 13:20:05'); INSERT INTO `sys_job_log` VALUES (9197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 13:20:06'); INSERT INTO `sys_job_log` VALUES (9198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-14 13:20:15'); INSERT INTO `sys_job_log` VALUES (9199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-14 13:22:05'); INSERT INTO `sys_job_log` VALUES (9200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-14 13:22:06'); INSERT INTO `sys_job_log` VALUES (9201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1223毫秒', '0', '', '2022-01-14 13:22:15'); INSERT INTO `sys_job_log` VALUES (9202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-14 13:24:04'); INSERT INTO `sys_job_log` VALUES (9203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-14 13:24:06'); INSERT INTO `sys_job_log` VALUES (9204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-14 13:24:14'); INSERT INTO `sys_job_log` VALUES (9205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-14 13:26:05'); INSERT INTO `sys_job_log` VALUES (9206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-14 13:26:06'); INSERT INTO `sys_job_log` VALUES (9207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-14 13:26:15'); INSERT INTO `sys_job_log` VALUES (9208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1228毫秒', '0', '', '2022-01-14 13:28:05'); INSERT INTO `sys_job_log` VALUES (9209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-14 13:28:06'); INSERT INTO `sys_job_log` VALUES (9210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1230毫秒', '0', '', '2022-01-14 13:28:15'); INSERT INTO `sys_job_log` VALUES (9211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 13:30:04'); INSERT INTO `sys_job_log` VALUES (9212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-14 13:30:06'); INSERT INTO `sys_job_log` VALUES (9213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-14 13:30:14'); INSERT INTO `sys_job_log` VALUES (9214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-14 13:32:04'); INSERT INTO `sys_job_log` VALUES (9215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 13:32:06'); INSERT INTO `sys_job_log` VALUES (9216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-14 13:32:15'); INSERT INTO `sys_job_log` VALUES (9217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-14 13:34:05'); INSERT INTO `sys_job_log` VALUES (9218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-14 13:34:06'); INSERT INTO `sys_job_log` VALUES (9219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-14 13:34:16'); INSERT INTO `sys_job_log` VALUES (9220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-14 13:36:05'); INSERT INTO `sys_job_log` VALUES (9221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 13:36:06'); INSERT INTO `sys_job_log` VALUES (9222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-14 13:36:15'); INSERT INTO `sys_job_log` VALUES (9223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-14 13:38:05'); INSERT INTO `sys_job_log` VALUES (9224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-14 13:38:06'); INSERT INTO `sys_job_log` VALUES (9225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-14 13:38:15'); INSERT INTO `sys_job_log` VALUES (9226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-14 13:40:05'); INSERT INTO `sys_job_log` VALUES (9227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 13:40:06'); INSERT INTO `sys_job_log` VALUES (9228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-14 13:40:15'); INSERT INTO `sys_job_log` VALUES (9229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-14 13:42:04'); INSERT INTO `sys_job_log` VALUES (9230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 13:42:06'); INSERT INTO `sys_job_log` VALUES (9231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-14 13:42:15'); INSERT INTO `sys_job_log` VALUES (9232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-14 13:44:04'); INSERT INTO `sys_job_log` VALUES (9233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 13:44:06'); INSERT INTO `sys_job_log` VALUES (9234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1114毫秒', '0', '', '2022-01-14 13:44:15'); INSERT INTO `sys_job_log` VALUES (9235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1186毫秒', '0', '', '2022-01-14 13:46:05'); INSERT INTO `sys_job_log` VALUES (9236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 13:46:06'); INSERT INTO `sys_job_log` VALUES (9237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-14 13:46:14'); INSERT INTO `sys_job_log` VALUES (9238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-14 13:48:04'); INSERT INTO `sys_job_log` VALUES (9239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-14 13:48:06'); INSERT INTO `sys_job_log` VALUES (9240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-14 13:48:15'); INSERT INTO `sys_job_log` VALUES (9241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1213毫秒', '0', '', '2022-01-14 13:50:05'); INSERT INTO `sys_job_log` VALUES (9242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-14 13:50:06'); INSERT INTO `sys_job_log` VALUES (9243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1194毫秒', '0', '', '2022-01-14 13:50:15'); INSERT INTO `sys_job_log` VALUES (9244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-14 13:52:04'); INSERT INTO `sys_job_log` VALUES (9245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-14 13:52:06'); INSERT INTO `sys_job_log` VALUES (9246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-14 13:52:15'); INSERT INTO `sys_job_log` VALUES (9247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1147毫秒', '0', '', '2022-01-14 13:54:05'); INSERT INTO `sys_job_log` VALUES (9248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-14 13:54:06'); INSERT INTO `sys_job_log` VALUES (9249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1102毫秒', '0', '', '2022-01-14 13:54:15'); INSERT INTO `sys_job_log` VALUES (9250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-14 13:56:04'); INSERT INTO `sys_job_log` VALUES (9251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 13:56:06'); INSERT INTO `sys_job_log` VALUES (9252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-14 13:56:15'); INSERT INTO `sys_job_log` VALUES (9253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1198毫秒', '0', '', '2022-01-14 13:58:05'); INSERT INTO `sys_job_log` VALUES (9254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-14 13:58:06'); INSERT INTO `sys_job_log` VALUES (9255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-14 13:58:14'); INSERT INTO `sys_job_log` VALUES (9256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-14 14:00:05'); INSERT INTO `sys_job_log` VALUES (9257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-14 14:00:06'); INSERT INTO `sys_job_log` VALUES (9258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-14 14:00:14'); INSERT INTO `sys_job_log` VALUES (9259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-14 14:02:04'); INSERT INTO `sys_job_log` VALUES (9260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-14 14:02:06'); INSERT INTO `sys_job_log` VALUES (9261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-14 14:02:14'); INSERT INTO `sys_job_log` VALUES (9262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-14 14:04:05'); INSERT INTO `sys_job_log` VALUES (9263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 14:04:06'); INSERT INTO `sys_job_log` VALUES (9264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-14 14:04:14'); INSERT INTO `sys_job_log` VALUES (9265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-14 14:06:04'); INSERT INTO `sys_job_log` VALUES (9266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 14:06:06'); INSERT INTO `sys_job_log` VALUES (9267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1088毫秒', '0', '', '2022-01-14 14:06:15'); INSERT INTO `sys_job_log` VALUES (9268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-14 14:08:05'); INSERT INTO `sys_job_log` VALUES (9269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 14:08:06'); INSERT INTO `sys_job_log` VALUES (9270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-14 14:08:16'); INSERT INTO `sys_job_log` VALUES (9271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-14 14:10:04'); INSERT INTO `sys_job_log` VALUES (9272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 14:10:06'); INSERT INTO `sys_job_log` VALUES (9273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1242毫秒', '0', '', '2022-01-14 14:10:15'); INSERT INTO `sys_job_log` VALUES (9274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-14 14:12:04'); INSERT INTO `sys_job_log` VALUES (9275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 14:12:06'); INSERT INTO `sys_job_log` VALUES (9276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-14 14:12:15'); INSERT INTO `sys_job_log` VALUES (9277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-14 14:14:04'); INSERT INTO `sys_job_log` VALUES (9278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-14 14:14:06'); INSERT INTO `sys_job_log` VALUES (9279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-14 14:14:14'); INSERT INTO `sys_job_log` VALUES (9280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-14 14:16:05'); INSERT INTO `sys_job_log` VALUES (9281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-14 14:16:06'); INSERT INTO `sys_job_log` VALUES (9282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-14 14:16:14'); INSERT INTO `sys_job_log` VALUES (9283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-14 14:18:05'); INSERT INTO `sys_job_log` VALUES (9284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-14 14:18:06'); INSERT INTO `sys_job_log` VALUES (9285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1127毫秒', '0', '', '2022-01-14 14:18:15'); INSERT INTO `sys_job_log` VALUES (9286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1217毫秒', '0', '', '2022-01-14 14:20:05'); INSERT INTO `sys_job_log` VALUES (9287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 14:20:06'); INSERT INTO `sys_job_log` VALUES (9288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 14:20:14'); INSERT INTO `sys_job_log` VALUES (9289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-14 14:22:04'); INSERT INTO `sys_job_log` VALUES (9290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-14 14:22:06'); INSERT INTO `sys_job_log` VALUES (9291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-14 14:22:14'); INSERT INTO `sys_job_log` VALUES (9292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-14 14:24:05'); INSERT INTO `sys_job_log` VALUES (9293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 14:24:06'); INSERT INTO `sys_job_log` VALUES (9294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-14 14:24:15'); INSERT INTO `sys_job_log` VALUES (9295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-14 14:26:05'); INSERT INTO `sys_job_log` VALUES (9296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-14 14:26:06'); INSERT INTO `sys_job_log` VALUES (9297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1208毫秒', '0', '', '2022-01-14 14:26:15'); INSERT INTO `sys_job_log` VALUES (9298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1178毫秒', '0', '', '2022-01-14 14:28:05'); INSERT INTO `sys_job_log` VALUES (9299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 14:28:06'); INSERT INTO `sys_job_log` VALUES (9300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-14 14:28:15'); INSERT INTO `sys_job_log` VALUES (9301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 14:30:04'); INSERT INTO `sys_job_log` VALUES (9302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1212毫秒', '0', '', '2022-01-14 14:30:07'); INSERT INTO `sys_job_log` VALUES (9303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-14 14:30:14'); INSERT INTO `sys_job_log` VALUES (9304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-14 14:32:04'); INSERT INTO `sys_job_log` VALUES (9305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 14:32:06'); INSERT INTO `sys_job_log` VALUES (9306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-14 14:32:14'); INSERT INTO `sys_job_log` VALUES (9307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1187毫秒', '0', '', '2022-01-14 14:34:05'); INSERT INTO `sys_job_log` VALUES (9308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 14:34:06'); INSERT INTO `sys_job_log` VALUES (9309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1172毫秒', '0', '', '2022-01-14 14:34:15'); INSERT INTO `sys_job_log` VALUES (9310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-14 14:36:06'); INSERT INTO `sys_job_log` VALUES (9311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-14 14:36:06'); INSERT INTO `sys_job_log` VALUES (9312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-14 14:36:14'); INSERT INTO `sys_job_log` VALUES (9313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1114毫秒', '0', '', '2022-01-14 14:38:05'); INSERT INTO `sys_job_log` VALUES (9314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-14 14:38:06'); INSERT INTO `sys_job_log` VALUES (9315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-14 14:38:14'); INSERT INTO `sys_job_log` VALUES (9316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-14 14:40:05'); INSERT INTO `sys_job_log` VALUES (9317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 14:40:06'); INSERT INTO `sys_job_log` VALUES (9318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1095毫秒', '0', '', '2022-01-14 14:40:15'); INSERT INTO `sys_job_log` VALUES (9319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-14 14:42:04'); INSERT INTO `sys_job_log` VALUES (9320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-14 14:42:06'); INSERT INTO `sys_job_log` VALUES (9321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-14 14:42:15'); INSERT INTO `sys_job_log` VALUES (9322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-14 14:44:04'); INSERT INTO `sys_job_log` VALUES (9323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 14:44:06'); INSERT INTO `sys_job_log` VALUES (9324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-14 14:44:14'); INSERT INTO `sys_job_log` VALUES (9325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-14 14:46:05'); INSERT INTO `sys_job_log` VALUES (9326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-14 14:46:06'); INSERT INTO `sys_job_log` VALUES (9327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-14 14:46:14'); INSERT INTO `sys_job_log` VALUES (9328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-14 14:48:05'); INSERT INTO `sys_job_log` VALUES (9329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 14:48:06'); INSERT INTO `sys_job_log` VALUES (9330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1181毫秒', '0', '', '2022-01-14 14:48:15'); INSERT INTO `sys_job_log` VALUES (9331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-14 14:50:04'); INSERT INTO `sys_job_log` VALUES (9332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-14 14:50:06'); INSERT INTO `sys_job_log` VALUES (9333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-14 14:50:15'); INSERT INTO `sys_job_log` VALUES (9334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-14 14:52:04'); INSERT INTO `sys_job_log` VALUES (9335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 14:52:06'); INSERT INTO `sys_job_log` VALUES (9336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1116毫秒', '0', '', '2022-01-14 14:52:15'); INSERT INTO `sys_job_log` VALUES (9337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1087毫秒', '0', '', '2022-01-14 14:54:05'); INSERT INTO `sys_job_log` VALUES (9338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-14 14:54:06'); INSERT INTO `sys_job_log` VALUES (9339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-14 14:54:15'); INSERT INTO `sys_job_log` VALUES (9340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-14 14:56:04'); INSERT INTO `sys_job_log` VALUES (9341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-14 14:56:06'); INSERT INTO `sys_job_log` VALUES (9342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-14 14:56:14'); INSERT INTO `sys_job_log` VALUES (9343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-14 14:58:05'); INSERT INTO `sys_job_log` VALUES (9344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-14 14:58:06'); INSERT INTO `sys_job_log` VALUES (9345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-14 14:58:15'); INSERT INTO `sys_job_log` VALUES (9346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1204毫秒', '0', '', '2022-01-14 15:00:05'); INSERT INTO `sys_job_log` VALUES (9347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 15:00:06'); INSERT INTO `sys_job_log` VALUES (9348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-14 15:00:15'); INSERT INTO `sys_job_log` VALUES (9349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-14 15:02:04'); INSERT INTO `sys_job_log` VALUES (9350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 15:02:06'); INSERT INTO `sys_job_log` VALUES (9351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-14 15:02:14'); INSERT INTO `sys_job_log` VALUES (9352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1314毫秒', '0', '', '2022-01-14 15:04:05'); INSERT INTO `sys_job_log` VALUES (9353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-14 15:04:06'); INSERT INTO `sys_job_log` VALUES (9354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1124毫秒', '0', '', '2022-01-14 15:04:15'); INSERT INTO `sys_job_log` VALUES (9355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1249毫秒', '0', '', '2022-01-14 15:06:05'); INSERT INTO `sys_job_log` VALUES (9356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-14 15:06:06'); INSERT INTO `sys_job_log` VALUES (9357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1220毫秒', '0', '', '2022-01-14 15:06:15'); INSERT INTO `sys_job_log` VALUES (9358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-14 15:08:04'); INSERT INTO `sys_job_log` VALUES (9359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-14 15:08:06'); INSERT INTO `sys_job_log` VALUES (9360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-14 15:08:15'); INSERT INTO `sys_job_log` VALUES (9361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-14 15:10:04'); INSERT INTO `sys_job_log` VALUES (9362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:477毫秒', '0', '', '2022-01-14 15:10:06'); INSERT INTO `sys_job_log` VALUES (9363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-14 15:10:14'); INSERT INTO `sys_job_log` VALUES (9364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-14 15:12:04'); INSERT INTO `sys_job_log` VALUES (9365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 15:12:06'); INSERT INTO `sys_job_log` VALUES (9366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-14 15:12:15'); INSERT INTO `sys_job_log` VALUES (9367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-14 15:14:04'); INSERT INTO `sys_job_log` VALUES (9368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 15:14:06'); INSERT INTO `sys_job_log` VALUES (9369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-14 15:14:14'); INSERT INTO `sys_job_log` VALUES (9370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1222毫秒', '0', '', '2022-01-14 15:16:05'); INSERT INTO `sys_job_log` VALUES (9371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-14 15:16:06'); INSERT INTO `sys_job_log` VALUES (9372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1195毫秒', '0', '', '2022-01-14 15:16:15'); INSERT INTO `sys_job_log` VALUES (9373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1238毫秒', '0', '', '2022-01-14 15:18:05'); INSERT INTO `sys_job_log` VALUES (9374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 15:18:06'); INSERT INTO `sys_job_log` VALUES (9375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-14 15:18:16'); INSERT INTO `sys_job_log` VALUES (9376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-14 15:20:05'); INSERT INTO `sys_job_log` VALUES (9377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-14 15:20:06'); INSERT INTO `sys_job_log` VALUES (9378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 15:20:14'); INSERT INTO `sys_job_log` VALUES (9379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-14 15:22:04'); INSERT INTO `sys_job_log` VALUES (9380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 15:22:06'); INSERT INTO `sys_job_log` VALUES (9381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1127毫秒', '0', '', '2022-01-14 15:22:15'); INSERT INTO `sys_job_log` VALUES (9382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-14 15:24:05'); INSERT INTO `sys_job_log` VALUES (9383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 15:24:06'); INSERT INTO `sys_job_log` VALUES (9384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-14 15:24:16'); INSERT INTO `sys_job_log` VALUES (9385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1221毫秒', '0', '', '2022-01-14 15:26:05'); INSERT INTO `sys_job_log` VALUES (9386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 15:26:06'); INSERT INTO `sys_job_log` VALUES (9387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-14 15:26:15'); INSERT INTO `sys_job_log` VALUES (9388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1261毫秒', '0', '', '2022-01-14 15:28:05'); INSERT INTO `sys_job_log` VALUES (9389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-14 15:28:06'); INSERT INTO `sys_job_log` VALUES (9390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-14 15:28:15'); INSERT INTO `sys_job_log` VALUES (9391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-14 15:30:05'); INSERT INTO `sys_job_log` VALUES (9392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 15:30:06'); INSERT INTO `sys_job_log` VALUES (9393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-14 15:30:15'); INSERT INTO `sys_job_log` VALUES (9394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-14 15:32:04'); INSERT INTO `sys_job_log` VALUES (9395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-14 15:32:06'); INSERT INTO `sys_job_log` VALUES (9396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-14 15:32:14'); INSERT INTO `sys_job_log` VALUES (9397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-14 15:34:04'); INSERT INTO `sys_job_log` VALUES (9398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-14 15:34:07'); INSERT INTO `sys_job_log` VALUES (9399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 15:34:14'); INSERT INTO `sys_job_log` VALUES (9400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-14 15:36:05'); INSERT INTO `sys_job_log` VALUES (9401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-14 15:36:06'); INSERT INTO `sys_job_log` VALUES (9402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-14 15:36:14'); INSERT INTO `sys_job_log` VALUES (9403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1110毫秒', '0', '', '2022-01-14 15:38:05'); INSERT INTO `sys_job_log` VALUES (9404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-14 15:38:06'); INSERT INTO `sys_job_log` VALUES (9405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1183毫秒', '0', '', '2022-01-14 15:38:15'); INSERT INTO `sys_job_log` VALUES (9406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1191毫秒', '0', '', '2022-01-14 15:40:05'); INSERT INTO `sys_job_log` VALUES (9407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 15:40:06'); INSERT INTO `sys_job_log` VALUES (9408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-14 15:40:14'); INSERT INTO `sys_job_log` VALUES (9409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-14 15:42:04'); INSERT INTO `sys_job_log` VALUES (9410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-14 15:42:06'); INSERT INTO `sys_job_log` VALUES (9411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-14 15:42:14'); INSERT INTO `sys_job_log` VALUES (9412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-14 15:44:05'); INSERT INTO `sys_job_log` VALUES (9413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-14 15:44:06'); INSERT INTO `sys_job_log` VALUES (9414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1089毫秒', '0', '', '2022-01-14 15:44:15'); INSERT INTO `sys_job_log` VALUES (9415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-14 15:46:04'); INSERT INTO `sys_job_log` VALUES (9416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 15:46:06'); INSERT INTO `sys_job_log` VALUES (9417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-14 15:46:14'); INSERT INTO `sys_job_log` VALUES (9418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-14 15:48:05'); INSERT INTO `sys_job_log` VALUES (9419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-14 15:48:06'); INSERT INTO `sys_job_log` VALUES (9420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1222毫秒', '0', '', '2022-01-14 15:48:15'); INSERT INTO `sys_job_log` VALUES (9421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-14 15:50:06'); INSERT INTO `sys_job_log` VALUES (9422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-14 15:50:06'); INSERT INTO `sys_job_log` VALUES (9423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-14 15:50:14'); INSERT INTO `sys_job_log` VALUES (9424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-14 15:52:04'); INSERT INTO `sys_job_log` VALUES (9425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-14 15:52:06'); INSERT INTO `sys_job_log` VALUES (9426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-14 15:52:14'); INSERT INTO `sys_job_log` VALUES (9427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-14 15:54:04'); INSERT INTO `sys_job_log` VALUES (9428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-14 15:54:06'); INSERT INTO `sys_job_log` VALUES (9429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-14 15:54:15'); INSERT INTO `sys_job_log` VALUES (9430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-14 15:56:05'); INSERT INTO `sys_job_log` VALUES (9431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 15:56:06'); INSERT INTO `sys_job_log` VALUES (9432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-14 15:56:16'); INSERT INTO `sys_job_log` VALUES (9433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-14 15:58:04'); INSERT INTO `sys_job_log` VALUES (9434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-14 15:58:06'); INSERT INTO `sys_job_log` VALUES (9435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1233毫秒', '0', '', '2022-01-14 15:58:15'); INSERT INTO `sys_job_log` VALUES (9436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-14 16:00:05'); INSERT INTO `sys_job_log` VALUES (9437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-14 16:00:06'); INSERT INTO `sys_job_log` VALUES (9438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-14 16:00:15'); INSERT INTO `sys_job_log` VALUES (9439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 16:02:04'); INSERT INTO `sys_job_log` VALUES (9440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-14 16:02:06'); INSERT INTO `sys_job_log` VALUES (9441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-14 16:02:14'); INSERT INTO `sys_job_log` VALUES (9442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-14 16:04:04'); INSERT INTO `sys_job_log` VALUES (9443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-14 16:04:06'); INSERT INTO `sys_job_log` VALUES (9444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-14 16:04:14'); INSERT INTO `sys_job_log` VALUES (9445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-14 16:06:05'); INSERT INTO `sys_job_log` VALUES (9446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-14 16:06:06'); INSERT INTO `sys_job_log` VALUES (9447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1218毫秒', '0', '', '2022-01-14 16:06:15'); INSERT INTO `sys_job_log` VALUES (9448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-14 16:08:04'); INSERT INTO `sys_job_log` VALUES (9449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 16:08:06'); INSERT INTO `sys_job_log` VALUES (9450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-14 16:08:14'); INSERT INTO `sys_job_log` VALUES (9451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-14 16:10:05'); INSERT INTO `sys_job_log` VALUES (9452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-14 16:10:06'); INSERT INTO `sys_job_log` VALUES (9453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-14 16:10:14'); INSERT INTO `sys_job_log` VALUES (9454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1094毫秒', '0', '', '2022-01-14 16:12:05'); INSERT INTO `sys_job_log` VALUES (9455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-14 16:12:06'); INSERT INTO `sys_job_log` VALUES (9456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1122毫秒', '0', '', '2022-01-14 16:12:15'); INSERT INTO `sys_job_log` VALUES (9457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 16:14:04'); INSERT INTO `sys_job_log` VALUES (9458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1203毫秒', '0', '', '2022-01-14 16:14:07'); INSERT INTO `sys_job_log` VALUES (9459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 16:14:14'); INSERT INTO `sys_job_log` VALUES (9460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-14 16:16:04'); INSERT INTO `sys_job_log` VALUES (9461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-14 16:16:06'); INSERT INTO `sys_job_log` VALUES (9462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 16:16:14'); INSERT INTO `sys_job_log` VALUES (9463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1205毫秒', '0', '', '2022-01-14 16:18:05'); INSERT INTO `sys_job_log` VALUES (9464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 16:18:06'); INSERT INTO `sys_job_log` VALUES (9465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1214毫秒', '0', '', '2022-01-14 16:18:15'); INSERT INTO `sys_job_log` VALUES (9466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 16:20:04'); INSERT INTO `sys_job_log` VALUES (9467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-14 16:20:06'); INSERT INTO `sys_job_log` VALUES (9468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-14 16:20:14'); INSERT INTO `sys_job_log` VALUES (9469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-14 16:22:04'); INSERT INTO `sys_job_log` VALUES (9470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 16:22:06'); INSERT INTO `sys_job_log` VALUES (9471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1190毫秒', '0', '', '2022-01-14 16:22:15'); INSERT INTO `sys_job_log` VALUES (9472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1197毫秒', '0', '', '2022-01-14 16:24:05'); INSERT INTO `sys_job_log` VALUES (9473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-14 16:24:06'); INSERT INTO `sys_job_log` VALUES (9474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 16:24:14'); INSERT INTO `sys_job_log` VALUES (9475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-14 16:26:04'); INSERT INTO `sys_job_log` VALUES (9476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 16:26:06'); INSERT INTO `sys_job_log` VALUES (9477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2006毫秒', '0', '', '2022-01-14 16:26:16'); INSERT INTO `sys_job_log` VALUES (9478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2006毫秒', '0', '', '2022-01-14 16:28:06'); INSERT INTO `sys_job_log` VALUES (9479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-14 16:28:06'); INSERT INTO `sys_job_log` VALUES (9480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1237毫秒', '0', '', '2022-01-14 16:28:15'); INSERT INTO `sys_job_log` VALUES (9481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1242毫秒', '0', '', '2022-01-14 16:30:05'); INSERT INTO `sys_job_log` VALUES (9482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-14 16:30:06'); INSERT INTO `sys_job_log` VALUES (9483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1129毫秒', '0', '', '2022-01-14 16:30:15'); INSERT INTO `sys_job_log` VALUES (9484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-14 16:32:04'); INSERT INTO `sys_job_log` VALUES (9485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:275毫秒', '0', '', '2022-01-14 16:32:06'); INSERT INTO `sys_job_log` VALUES (9486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-14 16:32:14'); INSERT INTO `sys_job_log` VALUES (9487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-14 16:34:04'); INSERT INTO `sys_job_log` VALUES (9488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-14 16:34:06'); INSERT INTO `sys_job_log` VALUES (9489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-14 16:34:14'); INSERT INTO `sys_job_log` VALUES (9490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-14 16:36:04'); INSERT INTO `sys_job_log` VALUES (9491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-14 16:36:06'); INSERT INTO `sys_job_log` VALUES (9492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1123毫秒', '0', '', '2022-01-14 16:36:15'); INSERT INTO `sys_job_log` VALUES (9493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-14 16:38:04'); INSERT INTO `sys_job_log` VALUES (9494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-14 16:38:06'); INSERT INTO `sys_job_log` VALUES (9495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1185毫秒', '0', '', '2022-01-14 16:38:15'); INSERT INTO `sys_job_log` VALUES (9496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1236毫秒', '0', '', '2022-01-14 16:40:05'); INSERT INTO `sys_job_log` VALUES (9497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-14 16:40:06'); INSERT INTO `sys_job_log` VALUES (9498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-14 16:40:14'); INSERT INTO `sys_job_log` VALUES (9499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2013毫秒', '0', '', '2022-01-14 16:42:06'); INSERT INTO `sys_job_log` VALUES (9500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2017毫秒', '0', '', '2022-01-14 16:42:08'); INSERT INTO `sys_job_log` VALUES (9501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-14 16:42:16'); INSERT INTO `sys_job_log` VALUES (9502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:312毫秒', '0', '', '2022-01-14 16:44:04'); INSERT INTO `sys_job_log` VALUES (9503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-14 16:44:06'); INSERT INTO `sys_job_log` VALUES (9504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-14 16:44:14'); INSERT INTO `sys_job_log` VALUES (9505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1243毫秒', '0', '', '2022-01-14 16:46:05'); INSERT INTO `sys_job_log` VALUES (9506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-14 16:46:06'); INSERT INTO `sys_job_log` VALUES (9507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1302毫秒', '0', '', '2022-01-14 16:46:15'); INSERT INTO `sys_job_log` VALUES (9508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-14 16:48:04'); INSERT INTO `sys_job_log` VALUES (9509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-14 16:48:06'); INSERT INTO `sys_job_log` VALUES (9510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1234毫秒', '0', '', '2022-01-14 16:48:15'); INSERT INTO `sys_job_log` VALUES (9511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-14 16:50:05'); INSERT INTO `sys_job_log` VALUES (9512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-14 16:50:06'); INSERT INTO `sys_job_log` VALUES (9513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-14 16:50:14'); INSERT INTO `sys_job_log` VALUES (9514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-14 16:52:05'); INSERT INTO `sys_job_log` VALUES (9515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-14 16:52:06'); INSERT INTO `sys_job_log` VALUES (9516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-14 16:52:15'); INSERT INTO `sys_job_log` VALUES (9517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-14 16:54:04'); INSERT INTO `sys_job_log` VALUES (9518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 16:54:06'); INSERT INTO `sys_job_log` VALUES (9519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-14 16:54:14'); INSERT INTO `sys_job_log` VALUES (9520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-14 16:56:05'); INSERT INTO `sys_job_log` VALUES (9521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-14 16:56:06'); INSERT INTO `sys_job_log` VALUES (9522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-14 16:56:14'); INSERT INTO `sys_job_log` VALUES (9523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-14 16:58:04'); INSERT INTO `sys_job_log` VALUES (9524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 16:58:06'); INSERT INTO `sys_job_log` VALUES (9525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-14 16:58:14'); INSERT INTO `sys_job_log` VALUES (9526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2233毫秒', '0', '', '2022-01-14 17:06:06'); INSERT INTO `sys_job_log` VALUES (9527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:738毫秒', '0', '', '2022-01-14 17:06:07'); INSERT INTO `sys_job_log` VALUES (9528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1150毫秒', '0', '', '2022-01-14 17:06:15'); INSERT INTO `sys_job_log` VALUES (9529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-14 17:08:04'); INSERT INTO `sys_job_log` VALUES (9530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1231毫秒', '0', '', '2022-01-14 17:08:07'); INSERT INTO `sys_job_log` VALUES (9531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1238毫秒', '0', '', '2022-01-14 17:08:15'); INSERT INTO `sys_job_log` VALUES (9532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-14 17:10:04'); INSERT INTO `sys_job_log` VALUES (9533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-14 17:10:06'); INSERT INTO `sys_job_log` VALUES (9534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-14 17:10:15'); INSERT INTO `sys_job_log` VALUES (9535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-14 17:12:04'); INSERT INTO `sys_job_log` VALUES (9536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 17:12:06'); INSERT INTO `sys_job_log` VALUES (9537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-14 17:12:14'); INSERT INTO `sys_job_log` VALUES (9538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-14 17:14:04'); INSERT INTO `sys_job_log` VALUES (9539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1116毫秒', '0', '', '2022-01-14 17:14:07'); INSERT INTO `sys_job_log` VALUES (9540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-14 17:14:14'); INSERT INTO `sys_job_log` VALUES (9541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1267毫秒', '0', '', '2022-01-14 17:16:05'); INSERT INTO `sys_job_log` VALUES (9542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-14 17:16:06'); INSERT INTO `sys_job_log` VALUES (9543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-14 17:16:14'); INSERT INTO `sys_job_log` VALUES (9544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1247毫秒', '0', '', '2022-01-14 17:18:05'); INSERT INTO `sys_job_log` VALUES (9545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-14 17:18:06'); INSERT INTO `sys_job_log` VALUES (9546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-14 17:18:14'); INSERT INTO `sys_job_log` VALUES (9547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-14 17:20:04'); INSERT INTO `sys_job_log` VALUES (9548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-14 17:20:06'); INSERT INTO `sys_job_log` VALUES (9549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-14 17:20:14'); INSERT INTO `sys_job_log` VALUES (9550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-14 17:22:04'); INSERT INTO `sys_job_log` VALUES (9551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-14 17:22:06'); INSERT INTO `sys_job_log` VALUES (9552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-14 17:22:15'); INSERT INTO `sys_job_log` VALUES (9553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-14 17:24:04'); INSERT INTO `sys_job_log` VALUES (9554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1252毫秒', '0', '', '2022-01-14 17:24:07'); INSERT INTO `sys_job_log` VALUES (9555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1225毫秒', '0', '', '2022-01-14 17:24:15'); INSERT INTO `sys_job_log` VALUES (9556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-14 17:26:04'); INSERT INTO `sys_job_log` VALUES (9557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 17:26:06'); INSERT INTO `sys_job_log` VALUES (9558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-14 17:26:14'); INSERT INTO `sys_job_log` VALUES (9559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-14 17:28:04'); INSERT INTO `sys_job_log` VALUES (9560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 17:28:06'); INSERT INTO `sys_job_log` VALUES (9561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1207毫秒', '0', '', '2022-01-14 17:28:15'); INSERT INTO `sys_job_log` VALUES (9562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1246毫秒', '0', '', '2022-01-14 17:30:05'); INSERT INTO `sys_job_log` VALUES (9563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-14 17:30:06'); INSERT INTO `sys_job_log` VALUES (9564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1234毫秒', '0', '', '2022-01-14 17:30:15'); INSERT INTO `sys_job_log` VALUES (9565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2237毫秒', '0', '', '2022-01-14 18:24:06'); INSERT INTO `sys_job_log` VALUES (9566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:771毫秒', '0', '', '2022-01-14 18:24:07'); INSERT INTO `sys_job_log` VALUES (9567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:414毫秒', '0', '', '2022-01-14 18:24:14'); INSERT INTO `sys_job_log` VALUES (9568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-14 18:26:04'); INSERT INTO `sys_job_log` VALUES (9569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:290毫秒', '0', '', '2022-01-14 18:26:06'); INSERT INTO `sys_job_log` VALUES (9570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-14 18:26:14'); INSERT INTO `sys_job_log` VALUES (9571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:265毫秒', '0', '', '2022-01-14 18:28:04'); INSERT INTO `sys_job_log` VALUES (9572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-14 18:28:06'); INSERT INTO `sys_job_log` VALUES (9573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-14 18:28:14'); INSERT INTO `sys_job_log` VALUES (9574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-14 18:30:04'); INSERT INTO `sys_job_log` VALUES (9575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-14 18:30:06'); INSERT INTO `sys_job_log` VALUES (9576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-14 18:30:14'); INSERT INTO `sys_job_log` VALUES (9577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-14 18:32:04'); INSERT INTO `sys_job_log` VALUES (9578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-14 18:32:06'); INSERT INTO `sys_job_log` VALUES (9579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-14 18:32:14'); INSERT INTO `sys_job_log` VALUES (9580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-14 18:34:04'); INSERT INTO `sys_job_log` VALUES (9581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:280毫秒', '0', '', '2022-01-14 18:34:06'); INSERT INTO `sys_job_log` VALUES (9582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-14 18:34:14'); INSERT INTO `sys_job_log` VALUES (9583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-14 18:36:04'); INSERT INTO `sys_job_log` VALUES (9584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-14 18:36:06'); INSERT INTO `sys_job_log` VALUES (9585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-14 18:36:14'); INSERT INTO `sys_job_log` VALUES (9586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-14 18:38:04'); INSERT INTO `sys_job_log` VALUES (9587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-14 18:38:06'); INSERT INTO `sys_job_log` VALUES (9588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-14 18:38:14'); INSERT INTO `sys_job_log` VALUES (9589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-14 18:40:04'); INSERT INTO `sys_job_log` VALUES (9590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-14 18:40:06'); INSERT INTO `sys_job_log` VALUES (9591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-14 18:40:14'); INSERT INTO `sys_job_log` VALUES (9592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-14 18:42:04'); INSERT INTO `sys_job_log` VALUES (9593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-14 18:42:06'); INSERT INTO `sys_job_log` VALUES (9594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-14 18:42:14'); INSERT INTO `sys_job_log` VALUES (9595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-14 18:44:04'); INSERT INTO `sys_job_log` VALUES (9596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 18:44:06'); INSERT INTO `sys_job_log` VALUES (9597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-14 18:44:14'); INSERT INTO `sys_job_log` VALUES (9598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-14 18:46:04'); INSERT INTO `sys_job_log` VALUES (9599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-14 18:46:06'); INSERT INTO `sys_job_log` VALUES (9600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-14 18:46:14'); INSERT INTO `sys_job_log` VALUES (9601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-14 18:48:04'); INSERT INTO `sys_job_log` VALUES (9602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-14 18:48:06'); INSERT INTO `sys_job_log` VALUES (9603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-14 18:48:14'); INSERT INTO `sys_job_log` VALUES (9604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1255毫秒', '0', '', '2022-01-14 18:50:05'); INSERT INTO `sys_job_log` VALUES (9605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-14 18:50:06'); INSERT INTO `sys_job_log` VALUES (9606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-14 18:50:14'); INSERT INTO `sys_job_log` VALUES (9607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-14 18:52:04'); INSERT INTO `sys_job_log` VALUES (9608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-14 18:52:06'); INSERT INTO `sys_job_log` VALUES (9609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-14 18:52:14'); INSERT INTO `sys_job_log` VALUES (9610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:284毫秒', '0', '', '2022-01-14 18:54:04'); INSERT INTO `sys_job_log` VALUES (9611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 18:54:06'); INSERT INTO `sys_job_log` VALUES (9612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-14 18:54:14'); INSERT INTO `sys_job_log` VALUES (9613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-14 18:56:04'); INSERT INTO `sys_job_log` VALUES (9614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-14 18:56:06'); INSERT INTO `sys_job_log` VALUES (9615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-14 18:56:14'); INSERT INTO `sys_job_log` VALUES (9616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-14 18:58:04'); INSERT INTO `sys_job_log` VALUES (9617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 18:58:06'); INSERT INTO `sys_job_log` VALUES (9618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-14 18:58:14'); INSERT INTO `sys_job_log` VALUES (9619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-14 19:00:04'); INSERT INTO `sys_job_log` VALUES (9620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 19:00:06'); INSERT INTO `sys_job_log` VALUES (9621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-14 19:00:14'); INSERT INTO `sys_job_log` VALUES (9622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-14 19:02:04'); INSERT INTO `sys_job_log` VALUES (9623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-14 19:02:06'); INSERT INTO `sys_job_log` VALUES (9624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-14 19:02:14'); INSERT INTO `sys_job_log` VALUES (9625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-14 19:04:04'); INSERT INTO `sys_job_log` VALUES (9626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 19:04:06'); INSERT INTO `sys_job_log` VALUES (9627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-14 19:04:14'); INSERT INTO `sys_job_log` VALUES (9628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-14 19:06:04'); INSERT INTO `sys_job_log` VALUES (9629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-14 19:06:06'); INSERT INTO `sys_job_log` VALUES (9630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-14 19:06:14'); INSERT INTO `sys_job_log` VALUES (9631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-14 19:08:04'); INSERT INTO `sys_job_log` VALUES (9632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-14 19:08:06'); INSERT INTO `sys_job_log` VALUES (9633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-14 19:08:14'); INSERT INTO `sys_job_log` VALUES (9634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-14 19:10:04'); INSERT INTO `sys_job_log` VALUES (9635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-14 19:10:06'); INSERT INTO `sys_job_log` VALUES (9636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-14 19:10:14'); INSERT INTO `sys_job_log` VALUES (9637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-14 19:12:04'); INSERT INTO `sys_job_log` VALUES (9638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-14 19:12:06'); INSERT INTO `sys_job_log` VALUES (9639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-14 19:12:14'); INSERT INTO `sys_job_log` VALUES (9640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-14 19:14:04'); INSERT INTO `sys_job_log` VALUES (9641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-14 19:14:06'); INSERT INTO `sys_job_log` VALUES (9642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-14 19:14:14'); INSERT INTO `sys_job_log` VALUES (9643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-14 19:16:04'); INSERT INTO `sys_job_log` VALUES (9644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-14 19:16:06'); INSERT INTO `sys_job_log` VALUES (9645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-14 19:16:14'); INSERT INTO `sys_job_log` VALUES (9646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-14 20:12:07'); INSERT INTO `sys_job_log` VALUES (9647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 20:12:07'); INSERT INTO `sys_job_log` VALUES (9648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 20:12:07'); INSERT INTO `sys_job_log` VALUES (9649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 20:12:07'); INSERT INTO `sys_job_log` VALUES (9650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-14 20:12:08'); INSERT INTO `sys_job_log` VALUES (9651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-14 20:12:08'); INSERT INTO `sys_job_log` VALUES (9652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-14 20:12:08'); INSERT INTO `sys_job_log` VALUES (9653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-14 20:12:08'); INSERT INTO `sys_job_log` VALUES (9654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-14 20:12:08'); INSERT INTO `sys_job_log` VALUES (9655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 20:12:08'); INSERT INTO `sys_job_log` VALUES (9656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 20:12:08'); INSERT INTO `sys_job_log` VALUES (9657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 20:12:08'); INSERT INTO `sys_job_log` VALUES (9658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-14 20:12:08'); INSERT INTO `sys_job_log` VALUES (9659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-14 20:12:08'); INSERT INTO `sys_job_log` VALUES (9660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-14 20:12:09'); INSERT INTO `sys_job_log` VALUES (9661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-14 20:12:09'); INSERT INTO `sys_job_log` VALUES (9662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-14 20:12:09'); INSERT INTO `sys_job_log` VALUES (9663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-14 20:12:09'); INSERT INTO `sys_job_log` VALUES (9664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 20:12:09'); INSERT INTO `sys_job_log` VALUES (9665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-14 20:12:09'); INSERT INTO `sys_job_log` VALUES (9666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 20:12:09'); INSERT INTO `sys_job_log` VALUES (9667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 20:12:09'); INSERT INTO `sys_job_log` VALUES (9668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-14 20:12:09'); INSERT INTO `sys_job_log` VALUES (9669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-14 20:12:09'); INSERT INTO `sys_job_log` VALUES (9670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 20:12:10'); INSERT INTO `sys_job_log` VALUES (9671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-14 20:12:10'); INSERT INTO `sys_job_log` VALUES (9672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 20:12:10'); INSERT INTO `sys_job_log` VALUES (9673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 20:12:10'); INSERT INTO `sys_job_log` VALUES (9674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 20:12:10'); INSERT INTO `sys_job_log` VALUES (9675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 20:12:10'); INSERT INTO `sys_job_log` VALUES (9676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-14 20:12:10'); INSERT INTO `sys_job_log` VALUES (9677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 20:12:10'); INSERT INTO `sys_job_log` VALUES (9678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 20:12:10'); INSERT INTO `sys_job_log` VALUES (9679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 20:12:10'); INSERT INTO `sys_job_log` VALUES (9680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 20:12:11'); INSERT INTO `sys_job_log` VALUES (9681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-14 20:12:11'); INSERT INTO `sys_job_log` VALUES (9682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-14 20:12:11'); INSERT INTO `sys_job_log` VALUES (9683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-14 20:12:11'); INSERT INTO `sys_job_log` VALUES (9684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 20:12:11'); INSERT INTO `sys_job_log` VALUES (9685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-14 20:12:11'); INSERT INTO `sys_job_log` VALUES (9686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 20:12:11'); INSERT INTO `sys_job_log` VALUES (9687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 20:12:11'); INSERT INTO `sys_job_log` VALUES (9688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-14 20:12:11'); INSERT INTO `sys_job_log` VALUES (9689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 20:12:11'); INSERT INTO `sys_job_log` VALUES (9690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 20:12:12'); INSERT INTO `sys_job_log` VALUES (9691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 20:12:12'); INSERT INTO `sys_job_log` VALUES (9692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-14 20:12:12'); INSERT INTO `sys_job_log` VALUES (9693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 20:12:12'); INSERT INTO `sys_job_log` VALUES (9694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 20:12:12'); INSERT INTO `sys_job_log` VALUES (9695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-14 20:12:12'); INSERT INTO `sys_job_log` VALUES (9696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-14 20:12:12'); INSERT INTO `sys_job_log` VALUES (9697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-14 20:12:12'); INSERT INTO `sys_job_log` VALUES (9698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 20:12:12'); INSERT INTO `sys_job_log` VALUES (9699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 20:12:13'); INSERT INTO `sys_job_log` VALUES (9710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-14 20:12:14'); INSERT INTO `sys_job_log` VALUES (9711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-14 20:12:14'); INSERT INTO `sys_job_log` VALUES (9712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-14 20:12:14'); INSERT INTO `sys_job_log` VALUES (9713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-14 20:12:14'); INSERT INTO `sys_job_log` VALUES (9714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:68毫秒', '0', '', '2022-01-14 20:12:14'); INSERT INTO `sys_job_log` VALUES (9715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-14 20:12:14'); INSERT INTO `sys_job_log` VALUES (9716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-14 20:12:14'); INSERT INTO `sys_job_log` VALUES (9717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 20:12:14'); INSERT INTO `sys_job_log` VALUES (9718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-14 20:12:14'); INSERT INTO `sys_job_log` VALUES (9719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-14 20:12:14'); INSERT INTO `sys_job_log` VALUES (9720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 20:12:15'); INSERT INTO `sys_job_log` VALUES (9721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-14 20:12:15'); INSERT INTO `sys_job_log` VALUES (9722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-14 20:12:15'); INSERT INTO `sys_job_log` VALUES (9723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-14 20:12:15'); INSERT INTO `sys_job_log` VALUES (9724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 20:12:15'); INSERT INTO `sys_job_log` VALUES (9725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 20:12:15'); INSERT INTO `sys_job_log` VALUES (9726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-14 20:12:15'); INSERT INTO `sys_job_log` VALUES (9727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-14 20:12:15'); INSERT INTO `sys_job_log` VALUES (9728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-14 20:12:15'); INSERT INTO `sys_job_log` VALUES (9729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-14 20:12:15'); INSERT INTO `sys_job_log` VALUES (9730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-14 20:14:04'); INSERT INTO `sys_job_log` VALUES (9731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-14 20:14:06'); INSERT INTO `sys_job_log` VALUES (9732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-14 20:14:14'); INSERT INTO `sys_job_log` VALUES (9733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-14 20:16:04'); INSERT INTO `sys_job_log` VALUES (9734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 20:16:06'); INSERT INTO `sys_job_log` VALUES (9735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-14 20:16:14'); INSERT INTO `sys_job_log` VALUES (9736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-14 20:18:04'); INSERT INTO `sys_job_log` VALUES (9737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 20:18:06'); INSERT INTO `sys_job_log` VALUES (9738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-14 20:18:14'); INSERT INTO `sys_job_log` VALUES (9739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-14 20:20:04'); INSERT INTO `sys_job_log` VALUES (9740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-14 20:20:06'); INSERT INTO `sys_job_log` VALUES (9741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:608毫秒', '0', '', '2022-01-14 20:20:14'); INSERT INTO `sys_job_log` VALUES (9742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-14 20:22:04'); INSERT INTO `sys_job_log` VALUES (9743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-14 20:22:06'); INSERT INTO `sys_job_log` VALUES (9744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-14 20:22:14'); INSERT INTO `sys_job_log` VALUES (9745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:385毫秒', '0', '', '2022-01-14 20:24:04'); INSERT INTO `sys_job_log` VALUES (9746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-14 20:24:06'); INSERT INTO `sys_job_log` VALUES (9747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:375毫秒', '0', '', '2022-01-14 20:24:14'); INSERT INTO `sys_job_log` VALUES (9748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-14 20:26:04'); INSERT INTO `sys_job_log` VALUES (9749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 20:26:06'); INSERT INTO `sys_job_log` VALUES (9750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-14 20:26:14'); INSERT INTO `sys_job_log` VALUES (9751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-14 20:28:04'); INSERT INTO `sys_job_log` VALUES (9752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-14 20:28:06'); INSERT INTO `sys_job_log` VALUES (9753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-14 20:28:14'); INSERT INTO `sys_job_log` VALUES (9754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-14 20:30:04'); INSERT INTO `sys_job_log` VALUES (9755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-14 20:30:06'); INSERT INTO `sys_job_log` VALUES (9756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-14 20:30:14'); INSERT INTO `sys_job_log` VALUES (9757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-14 20:32:04'); INSERT INTO `sys_job_log` VALUES (9758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-14 20:32:06'); INSERT INTO `sys_job_log` VALUES (9759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-14 20:32:14'); INSERT INTO `sys_job_log` VALUES (9760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-14 20:34:04'); INSERT INTO `sys_job_log` VALUES (9761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-14 20:34:06'); INSERT INTO `sys_job_log` VALUES (9762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-14 20:34:14'); INSERT INTO `sys_job_log` VALUES (9763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-14 20:36:04'); INSERT INTO `sys_job_log` VALUES (9764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 20:36:06'); INSERT INTO `sys_job_log` VALUES (9765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-14 20:36:14'); INSERT INTO `sys_job_log` VALUES (9766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-14 20:38:04'); INSERT INTO `sys_job_log` VALUES (9767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-14 20:38:06'); INSERT INTO `sys_job_log` VALUES (9768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-14 20:38:14'); INSERT INTO `sys_job_log` VALUES (9769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-14 20:40:04'); INSERT INTO `sys_job_log` VALUES (9770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-14 20:40:06'); INSERT INTO `sys_job_log` VALUES (9771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-14 20:40:14'); INSERT INTO `sys_job_log` VALUES (9772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-14 20:42:04'); INSERT INTO `sys_job_log` VALUES (9773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 20:42:06'); INSERT INTO `sys_job_log` VALUES (9774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-14 20:42:14'); INSERT INTO `sys_job_log` VALUES (9775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-14 20:44:04'); INSERT INTO `sys_job_log` VALUES (9776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-14 20:44:06'); INSERT INTO `sys_job_log` VALUES (9777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-14 20:44:14'); INSERT INTO `sys_job_log` VALUES (9778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-14 20:46:04'); INSERT INTO `sys_job_log` VALUES (9779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-14 20:46:06'); INSERT INTO `sys_job_log` VALUES (9780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-14 20:46:14'); INSERT INTO `sys_job_log` VALUES (9781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 20:48:04'); INSERT INTO `sys_job_log` VALUES (9782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 20:48:06'); INSERT INTO `sys_job_log` VALUES (9783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-14 20:48:14'); INSERT INTO `sys_job_log` VALUES (9784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-14 20:50:04'); INSERT INTO `sys_job_log` VALUES (9785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-14 20:50:06'); INSERT INTO `sys_job_log` VALUES (9786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-14 20:50:14'); INSERT INTO `sys_job_log` VALUES (9787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-14 20:52:04'); INSERT INTO `sys_job_log` VALUES (9788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-14 20:52:06'); INSERT INTO `sys_job_log` VALUES (9789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-14 20:52:14'); INSERT INTO `sys_job_log` VALUES (9790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-14 20:54:04'); INSERT INTO `sys_job_log` VALUES (9791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-14 20:54:06'); INSERT INTO `sys_job_log` VALUES (9792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-14 20:54:14'); INSERT INTO `sys_job_log` VALUES (9793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:285毫秒', '0', '', '2022-01-14 20:56:04'); INSERT INTO `sys_job_log` VALUES (9794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 20:56:06'); INSERT INTO `sys_job_log` VALUES (9795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-14 20:56:14'); INSERT INTO `sys_job_log` VALUES (9796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-14 20:58:04'); INSERT INTO `sys_job_log` VALUES (9797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 20:58:06'); INSERT INTO `sys_job_log` VALUES (9798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-14 20:58:14'); INSERT INTO `sys_job_log` VALUES (9799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-14 21:00:04'); INSERT INTO `sys_job_log` VALUES (9800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-14 21:00:06'); INSERT INTO `sys_job_log` VALUES (9801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-14 21:00:14'); INSERT INTO `sys_job_log` VALUES (9802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-14 21:02:04'); INSERT INTO `sys_job_log` VALUES (9803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 21:02:06'); INSERT INTO `sys_job_log` VALUES (9804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-14 21:02:14'); INSERT INTO `sys_job_log` VALUES (9805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-14 21:04:04'); INSERT INTO `sys_job_log` VALUES (9806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:386毫秒', '0', '', '2022-01-14 21:04:06'); INSERT INTO `sys_job_log` VALUES (9807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-14 21:04:14'); INSERT INTO `sys_job_log` VALUES (9808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-14 21:06:04'); INSERT INTO `sys_job_log` VALUES (9809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 21:06:06'); INSERT INTO `sys_job_log` VALUES (9810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-14 21:06:14'); INSERT INTO `sys_job_log` VALUES (9811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-14 21:08:04'); INSERT INTO `sys_job_log` VALUES (9812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-14 21:08:06'); INSERT INTO `sys_job_log` VALUES (9813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-14 21:08:14'); INSERT INTO `sys_job_log` VALUES (9814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-14 21:10:04'); INSERT INTO `sys_job_log` VALUES (9815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-14 21:10:06'); INSERT INTO `sys_job_log` VALUES (9816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-14 21:10:14'); INSERT INTO `sys_job_log` VALUES (9817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-14 21:12:04'); INSERT INTO `sys_job_log` VALUES (9818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 21:12:06'); INSERT INTO `sys_job_log` VALUES (9819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-14 21:12:14'); INSERT INTO `sys_job_log` VALUES (9820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-14 21:14:04'); INSERT INTO `sys_job_log` VALUES (9821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-14 21:14:06'); INSERT INTO `sys_job_log` VALUES (9822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-14 21:14:14'); INSERT INTO `sys_job_log` VALUES (9823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-14 21:16:04'); INSERT INTO `sys_job_log` VALUES (9824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-14 21:16:06'); INSERT INTO `sys_job_log` VALUES (9825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 21:16:14'); INSERT INTO `sys_job_log` VALUES (9826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-14 21:18:04'); INSERT INTO `sys_job_log` VALUES (9827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-14 21:18:06'); INSERT INTO `sys_job_log` VALUES (9828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-14 21:18:14'); INSERT INTO `sys_job_log` VALUES (9829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:394毫秒', '0', '', '2022-01-14 21:20:04'); INSERT INTO `sys_job_log` VALUES (9830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-14 21:20:06'); INSERT INTO `sys_job_log` VALUES (9831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-14 21:20:14'); INSERT INTO `sys_job_log` VALUES (9832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-14 21:22:04'); INSERT INTO `sys_job_log` VALUES (9833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-14 21:22:06'); INSERT INTO `sys_job_log` VALUES (9834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-14 21:22:14'); INSERT INTO `sys_job_log` VALUES (9835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-14 21:24:04'); INSERT INTO `sys_job_log` VALUES (9836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 21:24:06'); INSERT INTO `sys_job_log` VALUES (9837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-14 21:24:14'); INSERT INTO `sys_job_log` VALUES (9838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-14 21:26:04'); INSERT INTO `sys_job_log` VALUES (9839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-14 21:26:06'); INSERT INTO `sys_job_log` VALUES (9840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-14 21:26:14'); INSERT INTO `sys_job_log` VALUES (9841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-14 21:28:04'); INSERT INTO `sys_job_log` VALUES (9842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-14 21:28:06'); INSERT INTO `sys_job_log` VALUES (9843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-14 21:28:14'); INSERT INTO `sys_job_log` VALUES (9844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-14 21:30:04'); INSERT INTO `sys_job_log` VALUES (9845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-14 21:30:06'); INSERT INTO `sys_job_log` VALUES (9846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-14 21:30:14'); INSERT INTO `sys_job_log` VALUES (9847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-14 21:32:04'); INSERT INTO `sys_job_log` VALUES (9848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 21:32:06'); INSERT INTO `sys_job_log` VALUES (9849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-14 21:32:14'); INSERT INTO `sys_job_log` VALUES (9850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1055毫秒', '0', '', '2022-01-14 21:34:05'); INSERT INTO `sys_job_log` VALUES (9851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-14 21:34:06'); INSERT INTO `sys_job_log` VALUES (9852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-14 21:34:14'); INSERT INTO `sys_job_log` VALUES (9853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-14 21:36:04'); INSERT INTO `sys_job_log` VALUES (9854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-14 21:36:06'); INSERT INTO `sys_job_log` VALUES (9855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-14 21:36:14'); INSERT INTO `sys_job_log` VALUES (9856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-14 21:38:04'); INSERT INTO `sys_job_log` VALUES (9857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 21:38:06'); INSERT INTO `sys_job_log` VALUES (9858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-14 21:38:14'); INSERT INTO `sys_job_log` VALUES (9859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-14 21:40:04'); INSERT INTO `sys_job_log` VALUES (9860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 21:40:06'); INSERT INTO `sys_job_log` VALUES (9861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-14 21:40:14'); INSERT INTO `sys_job_log` VALUES (9862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-14 21:42:04'); INSERT INTO `sys_job_log` VALUES (9863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-14 21:42:06'); INSERT INTO `sys_job_log` VALUES (9864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-14 21:42:14'); INSERT INTO `sys_job_log` VALUES (9865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-14 21:44:04'); INSERT INTO `sys_job_log` VALUES (9866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-14 21:44:06'); INSERT INTO `sys_job_log` VALUES (9867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-14 21:44:14'); INSERT INTO `sys_job_log` VALUES (9868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-14 21:46:04'); INSERT INTO `sys_job_log` VALUES (9869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 21:46:06'); INSERT INTO `sys_job_log` VALUES (9870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-14 21:46:14'); INSERT INTO `sys_job_log` VALUES (9871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-14 21:48:04'); INSERT INTO `sys_job_log` VALUES (9872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-14 21:48:06'); INSERT INTO `sys_job_log` VALUES (9873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-14 21:48:14'); INSERT INTO `sys_job_log` VALUES (9874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-14 21:50:04'); INSERT INTO `sys_job_log` VALUES (9875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-14 21:50:06'); INSERT INTO `sys_job_log` VALUES (9876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-14 21:50:14'); INSERT INTO `sys_job_log` VALUES (9877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-14 21:52:04'); INSERT INTO `sys_job_log` VALUES (9878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-14 21:52:06'); INSERT INTO `sys_job_log` VALUES (9879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-14 21:52:14'); INSERT INTO `sys_job_log` VALUES (9880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-14 21:54:04'); INSERT INTO `sys_job_log` VALUES (9881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-14 21:54:06'); INSERT INTO `sys_job_log` VALUES (9882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-14 21:54:14'); INSERT INTO `sys_job_log` VALUES (9883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-14 21:56:04'); INSERT INTO `sys_job_log` VALUES (9884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-14 21:56:06'); INSERT INTO `sys_job_log` VALUES (9885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-14 21:56:14'); INSERT INTO `sys_job_log` VALUES (9886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-14 21:58:04'); INSERT INTO `sys_job_log` VALUES (9887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-14 21:58:06'); INSERT INTO `sys_job_log` VALUES (9888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-14 21:58:14'); INSERT INTO `sys_job_log` VALUES (9889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-14 22:00:04'); INSERT INTO `sys_job_log` VALUES (9890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-14 22:00:06'); INSERT INTO `sys_job_log` VALUES (9891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-14 22:00:14'); INSERT INTO `sys_job_log` VALUES (9892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-14 22:02:04'); INSERT INTO `sys_job_log` VALUES (9893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-14 22:02:06'); INSERT INTO `sys_job_log` VALUES (9894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-14 22:02:14'); INSERT INTO `sys_job_log` VALUES (9895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-14 22:04:04'); INSERT INTO `sys_job_log` VALUES (9896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-14 22:04:06'); INSERT INTO `sys_job_log` VALUES (9897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-14 22:04:14'); INSERT INTO `sys_job_log` VALUES (9898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-14 22:06:04'); INSERT INTO `sys_job_log` VALUES (9899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-14 22:06:06'); INSERT INTO `sys_job_log` VALUES (9900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-14 22:06:14'); INSERT INTO `sys_job_log` VALUES (9901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-14 22:08:04'); INSERT INTO `sys_job_log` VALUES (9902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-14 22:08:06'); INSERT INTO `sys_job_log` VALUES (9903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-14 22:08:14'); INSERT INTO `sys_job_log` VALUES (9904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-14 22:10:04'); INSERT INTO `sys_job_log` VALUES (9905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-14 22:10:06'); INSERT INTO `sys_job_log` VALUES (9906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-14 22:10:14'); INSERT INTO `sys_job_log` VALUES (9907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-14 22:12:04'); INSERT INTO `sys_job_log` VALUES (9908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-14 22:12:06'); INSERT INTO `sys_job_log` VALUES (9909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-14 22:12:14'); INSERT INTO `sys_job_log` VALUES (9910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-14 22:14:04'); INSERT INTO `sys_job_log` VALUES (9911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-14 22:14:06'); INSERT INTO `sys_job_log` VALUES (9912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-14 22:14:14'); INSERT INTO `sys_job_log` VALUES (9913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-14 22:16:04'); INSERT INTO `sys_job_log` VALUES (9914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 22:16:06'); INSERT INTO `sys_job_log` VALUES (9915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-14 22:16:14'); INSERT INTO `sys_job_log` VALUES (9916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:507毫秒', '0', '', '2022-01-14 22:18:04'); INSERT INTO `sys_job_log` VALUES (9917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 22:18:06'); INSERT INTO `sys_job_log` VALUES (9918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:775毫秒', '0', '', '2022-01-14 22:18:14'); INSERT INTO `sys_job_log` VALUES (9919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2371毫秒', '0', '', '2022-01-14 22:20:06'); INSERT INTO `sys_job_log` VALUES (9920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1400毫秒', '0', '', '2022-01-14 22:20:07'); INSERT INTO `sys_job_log` VALUES (9921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:289毫秒', '0', '', '2022-01-14 22:20:14'); INSERT INTO `sys_job_log` VALUES (9922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-14 22:22:04'); INSERT INTO `sys_job_log` VALUES (9923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-14 22:22:06'); INSERT INTO `sys_job_log` VALUES (9924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-14 22:22:14'); INSERT INTO `sys_job_log` VALUES (9925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-14 22:24:04'); INSERT INTO `sys_job_log` VALUES (9926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:284毫秒', '0', '', '2022-01-14 22:24:06'); INSERT INTO `sys_job_log` VALUES (9927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-14 22:24:14'); INSERT INTO `sys_job_log` VALUES (9928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-14 22:26:04'); INSERT INTO `sys_job_log` VALUES (9929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-14 22:26:06'); INSERT INTO `sys_job_log` VALUES (9930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-14 22:26:14'); INSERT INTO `sys_job_log` VALUES (9931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:265毫秒', '0', '', '2022-01-14 22:28:04'); INSERT INTO `sys_job_log` VALUES (9932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-14 22:28:06'); INSERT INTO `sys_job_log` VALUES (9933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-14 22:28:14'); INSERT INTO `sys_job_log` VALUES (9934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-14 22:30:04'); INSERT INTO `sys_job_log` VALUES (9935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:343毫秒', '0', '', '2022-01-14 22:30:06'); INSERT INTO `sys_job_log` VALUES (9936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-14 22:30:14'); INSERT INTO `sys_job_log` VALUES (9937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-14 22:32:04'); INSERT INTO `sys_job_log` VALUES (9938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-14 22:32:06'); INSERT INTO `sys_job_log` VALUES (9939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-14 22:32:14'); INSERT INTO `sys_job_log` VALUES (9940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-14 22:34:04'); INSERT INTO `sys_job_log` VALUES (9941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 22:34:06'); INSERT INTO `sys_job_log` VALUES (9942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-14 22:34:14'); INSERT INTO `sys_job_log` VALUES (9943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-14 22:36:04'); INSERT INTO `sys_job_log` VALUES (9944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:358毫秒', '0', '', '2022-01-14 22:36:06'); INSERT INTO `sys_job_log` VALUES (9945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-14 22:36:14'); INSERT INTO `sys_job_log` VALUES (9946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-14 22:38:04'); INSERT INTO `sys_job_log` VALUES (9947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-14 22:38:06'); INSERT INTO `sys_job_log` VALUES (9948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-14 22:38:14'); INSERT INTO `sys_job_log` VALUES (9949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-14 22:40:04'); INSERT INTO `sys_job_log` VALUES (9950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-14 22:40:06'); INSERT INTO `sys_job_log` VALUES (9951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-14 22:40:14'); INSERT INTO `sys_job_log` VALUES (9952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-14 22:42:04'); INSERT INTO `sys_job_log` VALUES (9953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-14 22:42:06'); INSERT INTO `sys_job_log` VALUES (9954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-14 22:42:14'); INSERT INTO `sys_job_log` VALUES (9955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-14 22:44:04'); INSERT INTO `sys_job_log` VALUES (9956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 22:44:06'); INSERT INTO `sys_job_log` VALUES (9957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:443毫秒', '0', '', '2022-01-14 22:44:14'); INSERT INTO `sys_job_log` VALUES (9958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-14 22:46:04'); INSERT INTO `sys_job_log` VALUES (9959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-14 22:46:06'); INSERT INTO `sys_job_log` VALUES (9960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-14 22:46:14'); INSERT INTO `sys_job_log` VALUES (9961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-14 22:48:04'); INSERT INTO `sys_job_log` VALUES (9962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-14 22:48:06'); INSERT INTO `sys_job_log` VALUES (9963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-14 22:48:14'); INSERT INTO `sys_job_log` VALUES (9964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-14 22:50:04'); INSERT INTO `sys_job_log` VALUES (9965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-14 22:50:06'); INSERT INTO `sys_job_log` VALUES (9966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-14 22:50:14'); INSERT INTO `sys_job_log` VALUES (9967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-14 22:52:04'); INSERT INTO `sys_job_log` VALUES (9968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-14 22:52:06'); INSERT INTO `sys_job_log` VALUES (9969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-14 22:52:14'); INSERT INTO `sys_job_log` VALUES (9970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-14 22:54:04'); INSERT INTO `sys_job_log` VALUES (9971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-14 22:54:06'); INSERT INTO `sys_job_log` VALUES (9972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-14 22:54:14'); INSERT INTO `sys_job_log` VALUES (9973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-14 22:56:04'); INSERT INTO `sys_job_log` VALUES (9974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-14 22:56:06'); INSERT INTO `sys_job_log` VALUES (9975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-14 22:56:14'); INSERT INTO `sys_job_log` VALUES (9976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-14 22:58:04'); INSERT INTO `sys_job_log` VALUES (9977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-14 22:58:06'); INSERT INTO `sys_job_log` VALUES (9978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-14 22:58:14'); INSERT INTO `sys_job_log` VALUES (9979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-14 23:00:04'); INSERT INTO `sys_job_log` VALUES (9980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-14 23:00:06'); INSERT INTO `sys_job_log` VALUES (9981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-14 23:00:14'); INSERT INTO `sys_job_log` VALUES (9982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-14 23:02:04'); INSERT INTO `sys_job_log` VALUES (9983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-14 23:02:06'); INSERT INTO `sys_job_log` VALUES (9984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-14 23:02:14'); INSERT INTO `sys_job_log` VALUES (9985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-14 23:04:04'); INSERT INTO `sys_job_log` VALUES (9986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-14 23:04:06'); INSERT INTO `sys_job_log` VALUES (9987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-14 23:04:14'); INSERT INTO `sys_job_log` VALUES (9988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-14 23:06:04'); INSERT INTO `sys_job_log` VALUES (9989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-14 23:06:06'); INSERT INTO `sys_job_log` VALUES (9990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-14 23:06:14'); INSERT INTO `sys_job_log` VALUES (9991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-14 23:08:04'); INSERT INTO `sys_job_log` VALUES (9992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-14 23:08:06'); INSERT INTO `sys_job_log` VALUES (9993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-14 23:08:14'); INSERT INTO `sys_job_log` VALUES (9994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-14 23:10:04'); INSERT INTO `sys_job_log` VALUES (9995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-14 23:10:06'); INSERT INTO `sys_job_log` VALUES (9996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-14 23:10:14'); INSERT INTO `sys_job_log` VALUES (9997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-14 23:12:04'); INSERT INTO `sys_job_log` VALUES (9998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-14 23:12:06'); INSERT INTO `sys_job_log` VALUES (9999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-14 23:12:14'); INSERT INTO `sys_job_log` VALUES (10000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-14 23:14:04'); INSERT INTO `sys_job_log` VALUES (10001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-14 23:14:06'); INSERT INTO `sys_job_log` VALUES (10002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-14 23:14:14'); INSERT INTO `sys_job_log` VALUES (10003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-14 23:16:04'); INSERT INTO `sys_job_log` VALUES (10004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-14 23:16:06'); INSERT INTO `sys_job_log` VALUES (10005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 23:16:14'); INSERT INTO `sys_job_log` VALUES (10006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-14 23:18:04'); INSERT INTO `sys_job_log` VALUES (10007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-14 23:18:06'); INSERT INTO `sys_job_log` VALUES (10008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-14 23:18:14'); INSERT INTO `sys_job_log` VALUES (10009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-14 23:20:04'); INSERT INTO `sys_job_log` VALUES (10010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-14 23:20:06'); INSERT INTO `sys_job_log` VALUES (10011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-14 23:20:14'); INSERT INTO `sys_job_log` VALUES (10012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-14 23:22:04'); INSERT INTO `sys_job_log` VALUES (10013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:305毫秒', '0', '', '2022-01-14 23:22:06'); INSERT INTO `sys_job_log` VALUES (10014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-14 23:22:14'); INSERT INTO `sys_job_log` VALUES (10015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-14 23:24:04'); INSERT INTO `sys_job_log` VALUES (10016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-14 23:24:06'); INSERT INTO `sys_job_log` VALUES (10017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-14 23:24:14'); INSERT INTO `sys_job_log` VALUES (10018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-14 23:26:04'); INSERT INTO `sys_job_log` VALUES (10019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 23:26:06'); INSERT INTO `sys_job_log` VALUES (10020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-14 23:26:14'); INSERT INTO `sys_job_log` VALUES (10021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-14 23:28:04'); INSERT INTO `sys_job_log` VALUES (10022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-14 23:28:06'); INSERT INTO `sys_job_log` VALUES (10023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-14 23:28:14'); INSERT INTO `sys_job_log` VALUES (10024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-14 23:30:04'); INSERT INTO `sys_job_log` VALUES (10025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-14 23:30:06'); INSERT INTO `sys_job_log` VALUES (10026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-14 23:30:14'); INSERT INTO `sys_job_log` VALUES (10027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-14 23:32:04'); INSERT INTO `sys_job_log` VALUES (10028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-14 23:32:06'); INSERT INTO `sys_job_log` VALUES (10029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-14 23:32:14'); INSERT INTO `sys_job_log` VALUES (10030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-14 23:34:04'); INSERT INTO `sys_job_log` VALUES (10031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 23:34:06'); INSERT INTO `sys_job_log` VALUES (10032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-14 23:34:14'); INSERT INTO `sys_job_log` VALUES (10033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-14 23:36:04'); INSERT INTO `sys_job_log` VALUES (10034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:412毫秒', '0', '', '2022-01-14 23:36:06'); INSERT INTO `sys_job_log` VALUES (10035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-14 23:36:14'); INSERT INTO `sys_job_log` VALUES (10036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-14 23:38:04'); INSERT INTO `sys_job_log` VALUES (10037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-14 23:38:06'); INSERT INTO `sys_job_log` VALUES (10038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-14 23:38:14'); INSERT INTO `sys_job_log` VALUES (10039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-14 23:40:04'); INSERT INTO `sys_job_log` VALUES (10040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 23:40:06'); INSERT INTO `sys_job_log` VALUES (10041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-14 23:40:14'); INSERT INTO `sys_job_log` VALUES (10042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-14 23:42:04'); INSERT INTO `sys_job_log` VALUES (10043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-14 23:42:06'); INSERT INTO `sys_job_log` VALUES (10044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-14 23:42:14'); INSERT INTO `sys_job_log` VALUES (10045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:325毫秒', '0', '', '2022-01-14 23:44:04'); INSERT INTO `sys_job_log` VALUES (10046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:265毫秒', '0', '', '2022-01-14 23:44:06'); INSERT INTO `sys_job_log` VALUES (10047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-14 23:44:14'); INSERT INTO `sys_job_log` VALUES (10048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-14 23:46:04'); INSERT INTO `sys_job_log` VALUES (10049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-14 23:46:06'); INSERT INTO `sys_job_log` VALUES (10050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-14 23:46:14'); INSERT INTO `sys_job_log` VALUES (10051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-14 23:48:04'); INSERT INTO `sys_job_log` VALUES (10052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 23:48:06'); INSERT INTO `sys_job_log` VALUES (10053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-14 23:48:14'); INSERT INTO `sys_job_log` VALUES (10054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-14 23:50:04'); INSERT INTO `sys_job_log` VALUES (10055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-14 23:50:06'); INSERT INTO `sys_job_log` VALUES (10056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-14 23:50:14'); INSERT INTO `sys_job_log` VALUES (10057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-14 23:52:04'); INSERT INTO `sys_job_log` VALUES (10058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-14 23:52:06'); INSERT INTO `sys_job_log` VALUES (10059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-14 23:52:14'); INSERT INTO `sys_job_log` VALUES (10060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-14 23:54:04'); INSERT INTO `sys_job_log` VALUES (10061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-14 23:54:06'); INSERT INTO `sys_job_log` VALUES (10062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-14 23:54:14'); INSERT INTO `sys_job_log` VALUES (10063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-14 23:56:04'); INSERT INTO `sys_job_log` VALUES (10064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-14 23:56:06'); INSERT INTO `sys_job_log` VALUES (10065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-14 23:56:14'); INSERT INTO `sys_job_log` VALUES (10066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:442毫秒', '0', '', '2022-01-14 23:58:04'); INSERT INTO `sys_job_log` VALUES (10067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:360毫秒', '0', '', '2022-01-14 23:58:06'); INSERT INTO `sys_job_log` VALUES (10068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-14 23:58:14'); INSERT INTO `sys_job_log` VALUES (10069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-15 00:00:04'); INSERT INTO `sys_job_log` VALUES (10070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-15 00:00:06'); INSERT INTO `sys_job_log` VALUES (10071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-15 00:00:14'); INSERT INTO `sys_job_log` VALUES (10072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-15 00:02:04'); INSERT INTO `sys_job_log` VALUES (10073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 00:02:06'); INSERT INTO `sys_job_log` VALUES (10074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-15 00:02:14'); INSERT INTO `sys_job_log` VALUES (10075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-15 00:04:04'); INSERT INTO `sys_job_log` VALUES (10076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 00:04:06'); INSERT INTO `sys_job_log` VALUES (10077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-15 00:04:14'); INSERT INTO `sys_job_log` VALUES (10078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-15 00:06:04'); INSERT INTO `sys_job_log` VALUES (10079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 00:06:06'); INSERT INTO `sys_job_log` VALUES (10080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-15 00:06:14'); INSERT INTO `sys_job_log` VALUES (10081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:299毫秒', '0', '', '2022-01-15 00:08:04'); INSERT INTO `sys_job_log` VALUES (10082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-15 00:08:06'); INSERT INTO `sys_job_log` VALUES (10083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-15 00:08:14'); INSERT INTO `sys_job_log` VALUES (10084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-15 00:10:04'); INSERT INTO `sys_job_log` VALUES (10085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-15 00:10:06'); INSERT INTO `sys_job_log` VALUES (10086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 00:10:14'); INSERT INTO `sys_job_log` VALUES (10087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-15 00:12:04'); INSERT INTO `sys_job_log` VALUES (10088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 00:12:06'); INSERT INTO `sys_job_log` VALUES (10089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-15 00:12:14'); INSERT INTO `sys_job_log` VALUES (10090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-15 00:14:04'); INSERT INTO `sys_job_log` VALUES (10091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-15 00:14:06'); INSERT INTO `sys_job_log` VALUES (10092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-15 00:14:14'); INSERT INTO `sys_job_log` VALUES (10093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:302毫秒', '0', '', '2022-01-15 00:16:04'); INSERT INTO `sys_job_log` VALUES (10094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-15 00:16:06'); INSERT INTO `sys_job_log` VALUES (10095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-15 00:16:14'); INSERT INTO `sys_job_log` VALUES (10096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-15 00:18:04'); INSERT INTO `sys_job_log` VALUES (10097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-15 00:18:06'); INSERT INTO `sys_job_log` VALUES (10098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-15 00:18:14'); INSERT INTO `sys_job_log` VALUES (10099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-15 00:20:04'); INSERT INTO `sys_job_log` VALUES (10100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-15 00:20:06'); INSERT INTO `sys_job_log` VALUES (10101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-15 00:20:14'); INSERT INTO `sys_job_log` VALUES (10102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-15 00:22:04'); INSERT INTO `sys_job_log` VALUES (10103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 00:22:06'); INSERT INTO `sys_job_log` VALUES (10104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:398毫秒', '0', '', '2022-01-15 00:22:14'); INSERT INTO `sys_job_log` VALUES (10105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-15 00:24:04'); INSERT INTO `sys_job_log` VALUES (10106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-15 00:24:06'); INSERT INTO `sys_job_log` VALUES (10107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-15 00:24:14'); INSERT INTO `sys_job_log` VALUES (10108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-15 00:26:04'); INSERT INTO `sys_job_log` VALUES (10109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-15 00:26:06'); INSERT INTO `sys_job_log` VALUES (10110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-15 00:26:14'); INSERT INTO `sys_job_log` VALUES (10111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-15 00:28:04'); INSERT INTO `sys_job_log` VALUES (10112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-15 00:28:06'); INSERT INTO `sys_job_log` VALUES (10113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-15 00:28:14'); INSERT INTO `sys_job_log` VALUES (10114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-15 00:30:04'); INSERT INTO `sys_job_log` VALUES (10115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-15 00:30:06'); INSERT INTO `sys_job_log` VALUES (10116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-15 00:30:14'); INSERT INTO `sys_job_log` VALUES (10117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-15 00:32:04'); INSERT INTO `sys_job_log` VALUES (10118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-15 00:32:06'); INSERT INTO `sys_job_log` VALUES (10119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-15 00:32:14'); INSERT INTO `sys_job_log` VALUES (10120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-15 00:34:04'); INSERT INTO `sys_job_log` VALUES (10121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-15 00:34:06'); INSERT INTO `sys_job_log` VALUES (10122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-15 00:34:14'); INSERT INTO `sys_job_log` VALUES (10123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-15 00:36:04'); INSERT INTO `sys_job_log` VALUES (10124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:598毫秒', '0', '', '2022-01-15 00:36:06'); INSERT INTO `sys_job_log` VALUES (10125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-15 00:36:14'); INSERT INTO `sys_job_log` VALUES (10126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-15 00:38:04'); INSERT INTO `sys_job_log` VALUES (10127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 00:38:06'); INSERT INTO `sys_job_log` VALUES (10128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-15 00:38:14'); INSERT INTO `sys_job_log` VALUES (10129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-15 00:40:04'); INSERT INTO `sys_job_log` VALUES (10130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-15 00:40:06'); INSERT INTO `sys_job_log` VALUES (10131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-15 00:40:14'); INSERT INTO `sys_job_log` VALUES (10132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-15 00:42:04'); INSERT INTO `sys_job_log` VALUES (10133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-15 00:42:06'); INSERT INTO `sys_job_log` VALUES (10134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-15 00:42:14'); INSERT INTO `sys_job_log` VALUES (10135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:303毫秒', '0', '', '2022-01-15 00:44:04'); INSERT INTO `sys_job_log` VALUES (10136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-15 00:44:06'); INSERT INTO `sys_job_log` VALUES (10137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-15 00:44:14'); INSERT INTO `sys_job_log` VALUES (10138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-15 00:46:04'); INSERT INTO `sys_job_log` VALUES (10139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-15 00:46:06'); INSERT INTO `sys_job_log` VALUES (10140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:413毫秒', '0', '', '2022-01-15 00:46:14'); INSERT INTO `sys_job_log` VALUES (10141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-15 00:48:04'); INSERT INTO `sys_job_log` VALUES (10142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-15 00:48:06'); INSERT INTO `sys_job_log` VALUES (10143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-15 00:48:14'); INSERT INTO `sys_job_log` VALUES (10144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:280毫秒', '0', '', '2022-01-15 00:50:04'); INSERT INTO `sys_job_log` VALUES (10145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 00:50:06'); INSERT INTO `sys_job_log` VALUES (10146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-15 00:50:14'); INSERT INTO `sys_job_log` VALUES (10147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2481毫秒', '0', '', '2022-01-15 09:50:06'); INSERT INTO `sys_job_log` VALUES (10148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2001毫秒', '0', '', '2022-01-15 09:50:08'); INSERT INTO `sys_job_log` VALUES (10149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-15 09:50:14'); INSERT INTO `sys_job_log` VALUES (10150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:415毫秒', '0', '', '2022-01-15 09:52:04'); INSERT INTO `sys_job_log` VALUES (10151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-15 09:52:06'); INSERT INTO `sys_job_log` VALUES (10152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-15 09:52:14'); INSERT INTO `sys_job_log` VALUES (10153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-15 09:54:04'); INSERT INTO `sys_job_log` VALUES (10154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 09:54:06'); INSERT INTO `sys_job_log` VALUES (10155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-15 09:54:14'); INSERT INTO `sys_job_log` VALUES (10156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-15 09:56:04'); INSERT INTO `sys_job_log` VALUES (10157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-15 09:56:06'); INSERT INTO `sys_job_log` VALUES (10158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-15 09:56:14'); INSERT INTO `sys_job_log` VALUES (10159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:291毫秒', '0', '', '2022-01-15 09:58:04'); INSERT INTO `sys_job_log` VALUES (10160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-15 09:58:06'); INSERT INTO `sys_job_log` VALUES (10161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-15 09:58:14'); INSERT INTO `sys_job_log` VALUES (10162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-15 10:00:04'); INSERT INTO `sys_job_log` VALUES (10163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-15 10:00:06'); INSERT INTO `sys_job_log` VALUES (10164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-15 10:00:14'); INSERT INTO `sys_job_log` VALUES (10165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:293毫秒', '0', '', '2022-01-15 10:02:04'); INSERT INTO `sys_job_log` VALUES (10166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-15 10:02:06'); INSERT INTO `sys_job_log` VALUES (10167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-15 10:02:14'); INSERT INTO `sys_job_log` VALUES (10168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:672毫秒', '0', '', '2022-01-15 10:04:04'); INSERT INTO `sys_job_log` VALUES (10169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-15 10:04:06'); INSERT INTO `sys_job_log` VALUES (10170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 10:04:14'); INSERT INTO `sys_job_log` VALUES (10171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:292毫秒', '0', '', '2022-01-15 10:06:04'); INSERT INTO `sys_job_log` VALUES (10172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-15 10:06:06'); INSERT INTO `sys_job_log` VALUES (10173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-15 10:06:14'); INSERT INTO `sys_job_log` VALUES (10174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-15 10:08:04'); INSERT INTO `sys_job_log` VALUES (10175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-15 10:08:06'); INSERT INTO `sys_job_log` VALUES (10176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-15 10:08:14'); INSERT INTO `sys_job_log` VALUES (10177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-15 10:10:04'); INSERT INTO `sys_job_log` VALUES (10178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 10:10:06'); INSERT INTO `sys_job_log` VALUES (10179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-15 10:10:14'); INSERT INTO `sys_job_log` VALUES (10180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:349毫秒', '0', '', '2022-01-15 10:12:04'); INSERT INTO `sys_job_log` VALUES (10181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-15 10:12:06'); INSERT INTO `sys_job_log` VALUES (10182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-15 10:12:14'); INSERT INTO `sys_job_log` VALUES (10183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-15 10:14:04'); INSERT INTO `sys_job_log` VALUES (10184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:292毫秒', '0', '', '2022-01-15 10:14:06'); INSERT INTO `sys_job_log` VALUES (10185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-15 10:14:14'); INSERT INTO `sys_job_log` VALUES (10186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-15 10:16:04'); INSERT INTO `sys_job_log` VALUES (10187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 10:16:06'); INSERT INTO `sys_job_log` VALUES (10188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-15 10:16:14'); INSERT INTO `sys_job_log` VALUES (10189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:289毫秒', '0', '', '2022-01-15 10:18:04'); INSERT INTO `sys_job_log` VALUES (10190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-15 10:18:06'); INSERT INTO `sys_job_log` VALUES (10191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1583毫秒', '0', '', '2022-01-15 10:18:15'); INSERT INTO `sys_job_log` VALUES (10192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-15 10:20:04'); INSERT INTO `sys_job_log` VALUES (10193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-15 10:20:06'); INSERT INTO `sys_job_log` VALUES (10194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-15 10:20:14'); INSERT INTO `sys_job_log` VALUES (10195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1338毫秒', '0', '', '2022-01-15 10:22:05'); INSERT INTO `sys_job_log` VALUES (10196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-15 10:22:06'); INSERT INTO `sys_job_log` VALUES (10197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-15 10:22:14'); INSERT INTO `sys_job_log` VALUES (10198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:281毫秒', '0', '', '2022-01-15 10:24:04'); INSERT INTO `sys_job_log` VALUES (10199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-15 10:24:06'); INSERT INTO `sys_job_log` VALUES (10200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:349毫秒', '0', '', '2022-01-15 10:24:14'); INSERT INTO `sys_job_log` VALUES (10201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-15 10:26:04'); INSERT INTO `sys_job_log` VALUES (10202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-15 10:26:06'); INSERT INTO `sys_job_log` VALUES (10203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-15 10:26:14'); INSERT INTO `sys_job_log` VALUES (10204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:659毫秒', '0', '', '2022-01-15 10:28:04'); INSERT INTO `sys_job_log` VALUES (10205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-15 10:28:06'); INSERT INTO `sys_job_log` VALUES (10206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-15 10:28:14'); INSERT INTO `sys_job_log` VALUES (10207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:709毫秒', '0', '', '2022-01-15 10:30:04'); INSERT INTO `sys_job_log` VALUES (10208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:14毫秒', '0', '', '2022-01-15 10:30:06'); INSERT INTO `sys_job_log` VALUES (10209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2022-01-15 10:30:14'); INSERT INTO `sys_job_log` VALUES (10210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:14毫秒', '0', '', '2022-01-15 10:32:04'); INSERT INTO `sys_job_log` VALUES (10211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2022-01-15 10:32:06'); INSERT INTO `sys_job_log` VALUES (10212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:5毫秒', '0', '', '2022-01-15 10:32:14'); INSERT INTO `sys_job_log` VALUES (10213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:5毫秒', '0', '', '2022-01-15 10:34:04'); INSERT INTO `sys_job_log` VALUES (10214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:5毫秒', '0', '', '2022-01-15 10:34:06'); INSERT INTO `sys_job_log` VALUES (10215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:8毫秒', '0', '', '2022-01-15 10:34:14'); INSERT INTO `sys_job_log` VALUES (10216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:8毫秒', '0', '', '2022-01-15 10:36:04'); INSERT INTO `sys_job_log` VALUES (10217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2022-01-15 10:36:06'); INSERT INTO `sys_job_log` VALUES (10218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:7毫秒', '0', '', '2022-01-15 10:36:14'); INSERT INTO `sys_job_log` VALUES (10219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:7毫秒', '0', '', '2022-01-15 10:38:04'); INSERT INTO `sys_job_log` VALUES (10220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:8毫秒', '0', '', '2022-01-15 10:38:06'); INSERT INTO `sys_job_log` VALUES (10221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2022-01-15 10:38:14'); INSERT INTO `sys_job_log` VALUES (10222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:9毫秒', '0', '', '2022-01-15 10:40:04'); INSERT INTO `sys_job_log` VALUES (10223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-15 10:40:06'); INSERT INTO `sys_job_log` VALUES (10224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:8毫秒', '0', '', '2022-01-15 10:40:14'); INSERT INTO `sys_job_log` VALUES (10225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:9毫秒', '0', '', '2022-01-15 10:42:04'); INSERT INTO `sys_job_log` VALUES (10226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2022-01-15 10:42:06'); INSERT INTO `sys_job_log` VALUES (10227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:5毫秒', '0', '', '2022-01-15 10:42:14'); INSERT INTO `sys_job_log` VALUES (10228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:9毫秒', '0', '', '2022-01-15 10:44:04'); INSERT INTO `sys_job_log` VALUES (10229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:5毫秒', '0', '', '2022-01-15 10:44:06'); INSERT INTO `sys_job_log` VALUES (10230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:8毫秒', '0', '', '2022-01-15 10:44:14'); INSERT INTO `sys_job_log` VALUES (10231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:9毫秒', '0', '', '2022-01-15 10:46:04'); INSERT INTO `sys_job_log` VALUES (10232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2022-01-15 10:46:06'); INSERT INTO `sys_job_log` VALUES (10233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:5毫秒', '0', '', '2022-01-15 10:46:14'); INSERT INTO `sys_job_log` VALUES (10234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:9毫秒', '0', '', '2022-01-15 10:48:04'); INSERT INTO `sys_job_log` VALUES (10235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:5毫秒', '0', '', '2022-01-15 10:48:06'); INSERT INTO `sys_job_log` VALUES (10236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:5毫秒', '0', '', '2022-01-15 10:48:14'); INSERT INTO `sys_job_log` VALUES (10237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:9毫秒', '0', '', '2022-01-15 10:50:04'); INSERT INTO `sys_job_log` VALUES (10238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2022-01-15 10:50:06'); INSERT INTO `sys_job_log` VALUES (10239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:5毫秒', '0', '', '2022-01-15 10:50:14'); INSERT INTO `sys_job_log` VALUES (10240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:8毫秒', '0', '', '2022-01-15 10:52:04'); INSERT INTO `sys_job_log` VALUES (10241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2022-01-15 10:52:06'); INSERT INTO `sys_job_log` VALUES (10242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:5毫秒', '0', '', '2022-01-15 10:52:14'); INSERT INTO `sys_job_log` VALUES (10243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:8毫秒', '0', '', '2022-01-15 10:54:04'); INSERT INTO `sys_job_log` VALUES (10244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:7毫秒', '0', '', '2022-01-15 10:54:06'); INSERT INTO `sys_job_log` VALUES (10245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:6毫秒', '0', '', '2022-01-15 10:54:14'); INSERT INTO `sys_job_log` VALUES (10246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2246毫秒', '0', '', '2022-01-15 10:56:06'); INSERT INTO `sys_job_log` VALUES (10247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-15 10:56:06'); INSERT INTO `sys_job_log` VALUES (10248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-15 10:56:14'); INSERT INTO `sys_job_log` VALUES (10249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:406毫秒', '0', '', '2022-01-15 10:58:04'); INSERT INTO `sys_job_log` VALUES (10250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 10:58:06'); INSERT INTO `sys_job_log` VALUES (10251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-15 10:58:14'); INSERT INTO `sys_job_log` VALUES (10252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-15 11:00:04'); INSERT INTO `sys_job_log` VALUES (10253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:283毫秒', '0', '', '2022-01-15 11:00:06'); INSERT INTO `sys_job_log` VALUES (10254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-15 11:00:14'); INSERT INTO `sys_job_log` VALUES (10255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-15 11:02:04'); INSERT INTO `sys_job_log` VALUES (10256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-15 11:02:06'); INSERT INTO `sys_job_log` VALUES (10257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-15 11:02:14'); INSERT INTO `sys_job_log` VALUES (10258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-15 11:04:04'); INSERT INTO `sys_job_log` VALUES (10259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-15 11:04:06'); INSERT INTO `sys_job_log` VALUES (10260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-15 11:04:14'); INSERT INTO `sys_job_log` VALUES (10261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:389毫秒', '0', '', '2022-01-15 11:06:04'); INSERT INTO `sys_job_log` VALUES (10262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:360毫秒', '0', '', '2022-01-15 11:06:06'); INSERT INTO `sys_job_log` VALUES (10263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-15 11:06:14'); INSERT INTO `sys_job_log` VALUES (10264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2007毫秒', '0', '', '2022-01-15 11:08:06'); INSERT INTO `sys_job_log` VALUES (10265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-15 11:08:06'); INSERT INTO `sys_job_log` VALUES (10266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-15 11:08:14'); INSERT INTO `sys_job_log` VALUES (10267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-15 11:10:04'); INSERT INTO `sys_job_log` VALUES (10268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-15 11:10:06'); INSERT INTO `sys_job_log` VALUES (10269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-15 11:10:14'); INSERT INTO `sys_job_log` VALUES (10270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:317毫秒', '0', '', '2022-01-15 11:12:04'); INSERT INTO `sys_job_log` VALUES (10271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-15 11:12:06'); INSERT INTO `sys_job_log` VALUES (10272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-15 11:12:14'); INSERT INTO `sys_job_log` VALUES (10273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-15 11:14:04'); INSERT INTO `sys_job_log` VALUES (10274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:526毫秒', '0', '', '2022-01-15 11:14:06'); INSERT INTO `sys_job_log` VALUES (10275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-15 11:14:14'); INSERT INTO `sys_job_log` VALUES (10276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-15 11:16:04'); INSERT INTO `sys_job_log` VALUES (10277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-15 11:16:06'); INSERT INTO `sys_job_log` VALUES (10278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-15 11:16:14'); INSERT INTO `sys_job_log` VALUES (10279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:285毫秒', '0', '', '2022-01-15 11:18:04'); INSERT INTO `sys_job_log` VALUES (10280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-15 11:18:06'); INSERT INTO `sys_job_log` VALUES (10281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-15 11:18:14'); INSERT INTO `sys_job_log` VALUES (10282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-15 11:20:04'); INSERT INTO `sys_job_log` VALUES (10283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-15 11:20:06'); INSERT INTO `sys_job_log` VALUES (10284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-15 11:20:14'); INSERT INTO `sys_job_log` VALUES (10285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-15 11:22:04'); INSERT INTO `sys_job_log` VALUES (10286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-15 11:22:06'); INSERT INTO `sys_job_log` VALUES (10287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-15 11:22:14'); INSERT INTO `sys_job_log` VALUES (10288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-15 11:24:06'); INSERT INTO `sys_job_log` VALUES (10289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:545毫秒', '0', '', '2022-01-15 11:24:06'); INSERT INTO `sys_job_log` VALUES (10290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 11:24:14'); INSERT INTO `sys_job_log` VALUES (10291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-15 11:26:04'); INSERT INTO `sys_job_log` VALUES (10292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:302毫秒', '0', '', '2022-01-15 11:26:06'); INSERT INTO `sys_job_log` VALUES (10293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:362毫秒', '0', '', '2022-01-15 11:26:14'); INSERT INTO `sys_job_log` VALUES (10294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 11:28:06'); INSERT INTO `sys_job_log` VALUES (10295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:899毫秒', '0', '', '2022-01-15 11:28:06'); INSERT INTO `sys_job_log` VALUES (10296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-15 11:28:14'); INSERT INTO `sys_job_log` VALUES (10297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-15 11:30:04'); INSERT INTO `sys_job_log` VALUES (10298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-15 11:30:06'); INSERT INTO `sys_job_log` VALUES (10299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:518毫秒', '0', '', '2022-01-15 11:30:14'); INSERT INTO `sys_job_log` VALUES (10300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-15 11:32:04'); INSERT INTO `sys_job_log` VALUES (10301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 11:32:06'); INSERT INTO `sys_job_log` VALUES (10302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-15 11:32:14'); INSERT INTO `sys_job_log` VALUES (10303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:284毫秒', '0', '', '2022-01-15 11:34:04'); INSERT INTO `sys_job_log` VALUES (10304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:339毫秒', '0', '', '2022-01-15 11:34:06'); INSERT INTO `sys_job_log` VALUES (10305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-15 11:34:14'); INSERT INTO `sys_job_log` VALUES (10306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-15 11:36:04'); INSERT INTO `sys_job_log` VALUES (10307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-15 11:36:06'); INSERT INTO `sys_job_log` VALUES (10308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-15 11:36:14'); INSERT INTO `sys_job_log` VALUES (10309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:403毫秒', '0', '', '2022-01-15 11:38:04'); INSERT INTO `sys_job_log` VALUES (10310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-15 11:38:06'); INSERT INTO `sys_job_log` VALUES (10311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-15 11:38:14'); INSERT INTO `sys_job_log` VALUES (10312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:764毫秒', '0', '', '2022-01-15 11:40:04'); INSERT INTO `sys_job_log` VALUES (10313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-15 11:40:06'); INSERT INTO `sys_job_log` VALUES (10314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-15 11:40:14'); INSERT INTO `sys_job_log` VALUES (10315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-15 11:42:04'); INSERT INTO `sys_job_log` VALUES (10316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-15 11:42:06'); INSERT INTO `sys_job_log` VALUES (10317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-15 11:42:14'); INSERT INTO `sys_job_log` VALUES (10318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-15 11:44:04'); INSERT INTO `sys_job_log` VALUES (10319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 11:44:06'); INSERT INTO `sys_job_log` VALUES (10320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-15 11:44:14'); INSERT INTO `sys_job_log` VALUES (10321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:277毫秒', '0', '', '2022-01-15 11:46:04'); INSERT INTO `sys_job_log` VALUES (10322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-15 11:46:06'); INSERT INTO `sys_job_log` VALUES (10323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 11:46:14'); INSERT INTO `sys_job_log` VALUES (10324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:944毫秒', '0', '', '2022-01-15 11:48:04'); INSERT INTO `sys_job_log` VALUES (10325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-15 11:48:06'); INSERT INTO `sys_job_log` VALUES (10326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-15 11:48:14'); INSERT INTO `sys_job_log` VALUES (10327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:445毫秒', '0', '', '2022-01-15 11:50:04'); INSERT INTO `sys_job_log` VALUES (10328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-15 11:50:06'); INSERT INTO `sys_job_log` VALUES (10329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-15 11:50:14'); INSERT INTO `sys_job_log` VALUES (10330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:402毫秒', '0', '', '2022-01-15 11:52:04'); INSERT INTO `sys_job_log` VALUES (10331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-15 11:52:06'); INSERT INTO `sys_job_log` VALUES (10332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 11:52:14'); INSERT INTO `sys_job_log` VALUES (10333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:291毫秒', '0', '', '2022-01-15 11:54:04'); INSERT INTO `sys_job_log` VALUES (10334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-15 11:54:06'); INSERT INTO `sys_job_log` VALUES (10335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-15 11:54:14'); INSERT INTO `sys_job_log` VALUES (10336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:475毫秒', '0', '', '2022-01-15 11:56:04'); INSERT INTO `sys_job_log` VALUES (10337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-15 11:56:06'); INSERT INTO `sys_job_log` VALUES (10338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-15 11:56:14'); INSERT INTO `sys_job_log` VALUES (10339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-15 11:58:04'); INSERT INTO `sys_job_log` VALUES (10340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-15 11:58:06'); INSERT INTO `sys_job_log` VALUES (10341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-15 11:58:14'); INSERT INTO `sys_job_log` VALUES (10342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-15 12:00:04'); INSERT INTO `sys_job_log` VALUES (10343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-15 12:00:06'); INSERT INTO `sys_job_log` VALUES (10344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:290毫秒', '0', '', '2022-01-15 12:00:14'); INSERT INTO `sys_job_log` VALUES (10345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:488毫秒', '0', '', '2022-01-15 12:02:04'); INSERT INTO `sys_job_log` VALUES (10346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-15 12:02:06'); INSERT INTO `sys_job_log` VALUES (10347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-15 12:02:14'); INSERT INTO `sys_job_log` VALUES (10348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:802毫秒', '0', '', '2022-01-15 12:04:04'); INSERT INTO `sys_job_log` VALUES (10349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-15 12:04:06'); INSERT INTO `sys_job_log` VALUES (10350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-15 12:04:14'); INSERT INTO `sys_job_log` VALUES (10351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:850毫秒', '0', '', '2022-01-15 12:06:04'); INSERT INTO `sys_job_log` VALUES (10352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-15 12:06:06'); INSERT INTO `sys_job_log` VALUES (10353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-15 12:06:14'); INSERT INTO `sys_job_log` VALUES (10354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-15 12:08:04'); INSERT INTO `sys_job_log` VALUES (10355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:347毫秒', '0', '', '2022-01-15 12:08:06'); INSERT INTO `sys_job_log` VALUES (10356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-15 12:08:14'); INSERT INTO `sys_job_log` VALUES (10357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:795毫秒', '0', '', '2022-01-15 12:10:04'); INSERT INTO `sys_job_log` VALUES (10358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-15 12:10:06'); INSERT INTO `sys_job_log` VALUES (10359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-15 12:10:14'); INSERT INTO `sys_job_log` VALUES (10360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-15 12:12:04'); INSERT INTO `sys_job_log` VALUES (10361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-15 12:12:06'); INSERT INTO `sys_job_log` VALUES (10362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-15 12:12:14'); INSERT INTO `sys_job_log` VALUES (10363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1081毫秒', '0', '', '2022-01-15 12:14:05'); INSERT INTO `sys_job_log` VALUES (10364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-15 12:14:06'); INSERT INTO `sys_job_log` VALUES (10365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-15 12:14:14'); INSERT INTO `sys_job_log` VALUES (10366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:491毫秒', '0', '', '2022-01-15 12:16:04'); INSERT INTO `sys_job_log` VALUES (10367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-15 12:16:06'); INSERT INTO `sys_job_log` VALUES (10368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-15 12:16:14'); INSERT INTO `sys_job_log` VALUES (10369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:402毫秒', '0', '', '2022-01-15 12:18:04'); INSERT INTO `sys_job_log` VALUES (10370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-15 12:18:06'); INSERT INTO `sys_job_log` VALUES (10371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-15 12:18:14'); INSERT INTO `sys_job_log` VALUES (10372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-15 12:20:04'); INSERT INTO `sys_job_log` VALUES (10373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-15 12:20:06'); INSERT INTO `sys_job_log` VALUES (10374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-15 12:20:14'); INSERT INTO `sys_job_log` VALUES (10375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-15 12:22:04'); INSERT INTO `sys_job_log` VALUES (10376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-15 12:22:06'); INSERT INTO `sys_job_log` VALUES (10377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-15 12:22:14'); INSERT INTO `sys_job_log` VALUES (10378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-15 12:24:04'); INSERT INTO `sys_job_log` VALUES (10379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-15 12:24:06'); INSERT INTO `sys_job_log` VALUES (10380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-15 12:24:14'); INSERT INTO `sys_job_log` VALUES (10381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-15 12:26:04'); INSERT INTO `sys_job_log` VALUES (10382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-15 12:26:06'); INSERT INTO `sys_job_log` VALUES (10383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-15 12:26:14'); INSERT INTO `sys_job_log` VALUES (10384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-15 12:28:04'); INSERT INTO `sys_job_log` VALUES (10385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:339毫秒', '0', '', '2022-01-15 12:28:06'); INSERT INTO `sys_job_log` VALUES (10386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-15 12:28:14'); INSERT INTO `sys_job_log` VALUES (10387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-15 12:30:04'); INSERT INTO `sys_job_log` VALUES (10388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-15 12:30:06'); INSERT INTO `sys_job_log` VALUES (10389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:514毫秒', '0', '', '2022-01-15 12:30:14'); INSERT INTO `sys_job_log` VALUES (10390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1235毫秒', '0', '', '2022-01-15 12:32:05'); INSERT INTO `sys_job_log` VALUES (10391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1359毫秒', '0', '', '2022-01-15 12:32:07'); INSERT INTO `sys_job_log` VALUES (10392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 12:32:14'); INSERT INTO `sys_job_log` VALUES (10393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:265毫秒', '0', '', '2022-01-15 12:34:04'); INSERT INTO `sys_job_log` VALUES (10394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-15 12:34:06'); INSERT INTO `sys_job_log` VALUES (10395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:170毫秒', '0', '', '2022-01-15 12:34:14'); INSERT INTO `sys_job_log` VALUES (10396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-15 12:36:04'); INSERT INTO `sys_job_log` VALUES (10397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-15 12:36:06'); INSERT INTO `sys_job_log` VALUES (10398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-15 12:36:14'); INSERT INTO `sys_job_log` VALUES (10399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:388毫秒', '0', '', '2022-01-15 12:38:04'); INSERT INTO `sys_job_log` VALUES (10400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-15 12:38:06'); INSERT INTO `sys_job_log` VALUES (10401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-15 12:38:14'); INSERT INTO `sys_job_log` VALUES (10402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:295毫秒', '0', '', '2022-01-15 12:40:04'); INSERT INTO `sys_job_log` VALUES (10403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-15 12:40:06'); INSERT INTO `sys_job_log` VALUES (10404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-15 12:40:14'); INSERT INTO `sys_job_log` VALUES (10405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 12:42:04'); INSERT INTO `sys_job_log` VALUES (10406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-15 12:42:06'); INSERT INTO `sys_job_log` VALUES (10407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:316毫秒', '0', '', '2022-01-15 12:42:14'); INSERT INTO `sys_job_log` VALUES (10408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-15 12:44:04'); INSERT INTO `sys_job_log` VALUES (10409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-15 12:44:06'); INSERT INTO `sys_job_log` VALUES (10410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-15 12:44:14'); INSERT INTO `sys_job_log` VALUES (10411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:284毫秒', '0', '', '2022-01-15 12:46:04'); INSERT INTO `sys_job_log` VALUES (10412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-15 12:46:06'); INSERT INTO `sys_job_log` VALUES (10413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-15 12:46:14'); INSERT INTO `sys_job_log` VALUES (10414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-15 12:48:04'); INSERT INTO `sys_job_log` VALUES (10415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-15 12:48:06'); INSERT INTO `sys_job_log` VALUES (10416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-15 12:48:14'); INSERT INTO `sys_job_log` VALUES (10417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:293毫秒', '0', '', '2022-01-15 12:50:04'); INSERT INTO `sys_job_log` VALUES (10418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-15 12:50:06'); INSERT INTO `sys_job_log` VALUES (10419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-15 12:50:14'); INSERT INTO `sys_job_log` VALUES (10420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 12:52:04'); INSERT INTO `sys_job_log` VALUES (10421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-15 12:52:06'); INSERT INTO `sys_job_log` VALUES (10422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-15 12:52:14'); INSERT INTO `sys_job_log` VALUES (10423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-15 12:54:04'); INSERT INTO `sys_job_log` VALUES (10424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-15 12:54:06'); INSERT INTO `sys_job_log` VALUES (10425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-15 12:54:14'); INSERT INTO `sys_job_log` VALUES (10426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-15 12:56:04'); INSERT INTO `sys_job_log` VALUES (10427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 12:56:06'); INSERT INTO `sys_job_log` VALUES (10428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-15 12:56:14'); INSERT INTO `sys_job_log` VALUES (10429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-15 12:58:04'); INSERT INTO `sys_job_log` VALUES (10430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 12:58:06'); INSERT INTO `sys_job_log` VALUES (10431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:305毫秒', '0', '', '2022-01-15 12:58:14'); INSERT INTO `sys_job_log` VALUES (10432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-15 13:00:04'); INSERT INTO `sys_job_log` VALUES (10433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 13:00:06'); INSERT INTO `sys_job_log` VALUES (10434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 13:00:14'); INSERT INTO `sys_job_log` VALUES (10435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-15 13:02:04'); INSERT INTO `sys_job_log` VALUES (10436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-15 13:02:06'); INSERT INTO `sys_job_log` VALUES (10437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-15 13:02:14'); INSERT INTO `sys_job_log` VALUES (10438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-15 13:04:04'); INSERT INTO `sys_job_log` VALUES (10439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-15 13:04:06'); INSERT INTO `sys_job_log` VALUES (10440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-15 13:04:14'); INSERT INTO `sys_job_log` VALUES (10441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-15 13:06:04'); INSERT INTO `sys_job_log` VALUES (10442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-15 13:06:06'); INSERT INTO `sys_job_log` VALUES (10443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 13:06:14'); INSERT INTO `sys_job_log` VALUES (10444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-15 13:08:04'); INSERT INTO `sys_job_log` VALUES (10445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-15 13:08:06'); INSERT INTO `sys_job_log` VALUES (10446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-15 13:08:14'); INSERT INTO `sys_job_log` VALUES (10447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-15 13:10:04'); INSERT INTO `sys_job_log` VALUES (10448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-15 13:10:06'); INSERT INTO `sys_job_log` VALUES (10449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-15 13:10:14'); INSERT INTO `sys_job_log` VALUES (10450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-15 13:12:04'); INSERT INTO `sys_job_log` VALUES (10451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 13:12:06'); INSERT INTO `sys_job_log` VALUES (10452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-15 13:12:14'); INSERT INTO `sys_job_log` VALUES (10453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-15 13:14:04'); INSERT INTO `sys_job_log` VALUES (10454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:344毫秒', '0', '', '2022-01-15 13:14:06'); INSERT INTO `sys_job_log` VALUES (10455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-15 13:14:14'); INSERT INTO `sys_job_log` VALUES (10456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-15 13:16:04'); INSERT INTO `sys_job_log` VALUES (10457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-15 13:16:06'); INSERT INTO `sys_job_log` VALUES (10458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 13:16:14'); INSERT INTO `sys_job_log` VALUES (10459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-15 13:18:04'); INSERT INTO `sys_job_log` VALUES (10460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-15 13:18:06'); INSERT INTO `sys_job_log` VALUES (10461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-15 13:18:14'); INSERT INTO `sys_job_log` VALUES (10462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-15 13:20:04'); INSERT INTO `sys_job_log` VALUES (10463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 13:20:06'); INSERT INTO `sys_job_log` VALUES (10464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-15 13:20:14'); INSERT INTO `sys_job_log` VALUES (10465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-15 13:22:04'); INSERT INTO `sys_job_log` VALUES (10466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 13:22:06'); INSERT INTO `sys_job_log` VALUES (10467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-15 13:22:14'); INSERT INTO `sys_job_log` VALUES (10468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-15 13:24:04'); INSERT INTO `sys_job_log` VALUES (10469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 13:24:06'); INSERT INTO `sys_job_log` VALUES (10470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-15 13:24:14'); INSERT INTO `sys_job_log` VALUES (10471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-15 13:26:04'); INSERT INTO `sys_job_log` VALUES (10472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 13:26:06'); INSERT INTO `sys_job_log` VALUES (10473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-15 13:26:14'); INSERT INTO `sys_job_log` VALUES (10474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-15 13:28:04'); INSERT INTO `sys_job_log` VALUES (10475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-15 13:28:06'); INSERT INTO `sys_job_log` VALUES (10476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-15 13:28:14'); INSERT INTO `sys_job_log` VALUES (10477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-15 13:30:04'); INSERT INTO `sys_job_log` VALUES (10478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-15 13:30:06'); INSERT INTO `sys_job_log` VALUES (10479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:431毫秒', '0', '', '2022-01-15 13:30:14'); INSERT INTO `sys_job_log` VALUES (10480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:352毫秒', '0', '', '2022-01-15 13:32:04'); INSERT INTO `sys_job_log` VALUES (10481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-15 13:32:06'); INSERT INTO `sys_job_log` VALUES (10482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-15 13:32:14'); INSERT INTO `sys_job_log` VALUES (10483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-15 13:34:04'); INSERT INTO `sys_job_log` VALUES (10484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-15 13:34:06'); INSERT INTO `sys_job_log` VALUES (10485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-15 13:34:14'); INSERT INTO `sys_job_log` VALUES (10486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:448毫秒', '0', '', '2022-01-15 13:36:04'); INSERT INTO `sys_job_log` VALUES (10487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-15 13:36:06'); INSERT INTO `sys_job_log` VALUES (10488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-15 13:36:14'); INSERT INTO `sys_job_log` VALUES (10489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-15 13:38:04'); INSERT INTO `sys_job_log` VALUES (10490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-15 13:38:06'); INSERT INTO `sys_job_log` VALUES (10491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 13:38:14'); INSERT INTO `sys_job_log` VALUES (10492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:433毫秒', '0', '', '2022-01-15 13:40:04'); INSERT INTO `sys_job_log` VALUES (10493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 13:40:06'); INSERT INTO `sys_job_log` VALUES (10494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-15 13:40:14'); INSERT INTO `sys_job_log` VALUES (10495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-15 13:42:04'); INSERT INTO `sys_job_log` VALUES (10496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-15 13:42:06'); INSERT INTO `sys_job_log` VALUES (10497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-15 13:42:14'); INSERT INTO `sys_job_log` VALUES (10498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:654毫秒', '0', '', '2022-01-15 13:44:04'); INSERT INTO `sys_job_log` VALUES (10499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-15 13:44:06'); INSERT INTO `sys_job_log` VALUES (10500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-15 13:44:14'); INSERT INTO `sys_job_log` VALUES (10501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:477毫秒', '0', '', '2022-01-15 13:46:04'); INSERT INTO `sys_job_log` VALUES (10502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 13:46:06'); INSERT INTO `sys_job_log` VALUES (10503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-15 13:46:14'); INSERT INTO `sys_job_log` VALUES (10504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-15 13:48:04'); INSERT INTO `sys_job_log` VALUES (10505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:72毫秒', '0', '', '2022-01-15 13:48:06'); INSERT INTO `sys_job_log` VALUES (10506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-15 13:48:14'); INSERT INTO `sys_job_log` VALUES (10507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-15 13:50:04'); INSERT INTO `sys_job_log` VALUES (10508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-15 13:50:06'); INSERT INTO `sys_job_log` VALUES (10509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-15 13:50:14'); INSERT INTO `sys_job_log` VALUES (10510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-15 13:52:04'); INSERT INTO `sys_job_log` VALUES (10511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-15 13:52:06'); INSERT INTO `sys_job_log` VALUES (10512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-15 13:52:14'); INSERT INTO `sys_job_log` VALUES (10513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-15 13:54:04'); INSERT INTO `sys_job_log` VALUES (10514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-15 13:54:06'); INSERT INTO `sys_job_log` VALUES (10515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-15 13:54:14'); INSERT INTO `sys_job_log` VALUES (10516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-15 13:56:04'); INSERT INTO `sys_job_log` VALUES (10517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-15 13:56:06'); INSERT INTO `sys_job_log` VALUES (10518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-15 13:56:14'); INSERT INTO `sys_job_log` VALUES (10519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-15 13:58:04'); INSERT INTO `sys_job_log` VALUES (10520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-15 13:58:06'); INSERT INTO `sys_job_log` VALUES (10521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-15 13:58:14'); INSERT INTO `sys_job_log` VALUES (10522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-15 14:00:04'); INSERT INTO `sys_job_log` VALUES (10523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-15 14:00:06'); INSERT INTO `sys_job_log` VALUES (10524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 14:00:14'); INSERT INTO `sys_job_log` VALUES (10525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-15 14:02:04'); INSERT INTO `sys_job_log` VALUES (10526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-15 14:02:06'); INSERT INTO `sys_job_log` VALUES (10527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 14:02:14'); INSERT INTO `sys_job_log` VALUES (10528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-15 14:04:04'); INSERT INTO `sys_job_log` VALUES (10529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-15 14:04:06'); INSERT INTO `sys_job_log` VALUES (10530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 14:04:14'); INSERT INTO `sys_job_log` VALUES (10531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:384毫秒', '0', '', '2022-01-15 14:06:04'); INSERT INTO `sys_job_log` VALUES (10532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-15 14:06:06'); INSERT INTO `sys_job_log` VALUES (10533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-15 14:06:14'); INSERT INTO `sys_job_log` VALUES (10534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-15 14:08:04'); INSERT INTO `sys_job_log` VALUES (10535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 14:08:06'); INSERT INTO `sys_job_log` VALUES (10536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-15 14:08:14'); INSERT INTO `sys_job_log` VALUES (10537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-15 14:10:04'); INSERT INTO `sys_job_log` VALUES (10538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 14:10:06'); INSERT INTO `sys_job_log` VALUES (10539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-15 14:10:14'); INSERT INTO `sys_job_log` VALUES (10540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-15 14:12:04'); INSERT INTO `sys_job_log` VALUES (10541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-15 14:12:06'); INSERT INTO `sys_job_log` VALUES (10542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-15 14:12:14'); INSERT INTO `sys_job_log` VALUES (10543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-15 14:14:04'); INSERT INTO `sys_job_log` VALUES (10544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-15 14:14:06'); INSERT INTO `sys_job_log` VALUES (10545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-15 14:14:14'); INSERT INTO `sys_job_log` VALUES (10546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:458毫秒', '0', '', '2022-01-15 14:16:04'); INSERT INTO `sys_job_log` VALUES (10547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 14:16:06'); INSERT INTO `sys_job_log` VALUES (10548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-15 14:16:14'); INSERT INTO `sys_job_log` VALUES (10549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-15 14:18:04'); INSERT INTO `sys_job_log` VALUES (10550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-15 14:18:06'); INSERT INTO `sys_job_log` VALUES (10551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 14:18:14'); INSERT INTO `sys_job_log` VALUES (10552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-15 14:20:04'); INSERT INTO `sys_job_log` VALUES (10553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-15 14:20:06'); INSERT INTO `sys_job_log` VALUES (10554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-15 14:20:14'); INSERT INTO `sys_job_log` VALUES (10555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:285毫秒', '0', '', '2022-01-15 14:22:04'); INSERT INTO `sys_job_log` VALUES (10556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 14:22:06'); INSERT INTO `sys_job_log` VALUES (10557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-15 14:22:14'); INSERT INTO `sys_job_log` VALUES (10558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-15 14:24:04'); INSERT INTO `sys_job_log` VALUES (10559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-15 14:24:06'); INSERT INTO `sys_job_log` VALUES (10560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-15 14:24:14'); INSERT INTO `sys_job_log` VALUES (10561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:477毫秒', '0', '', '2022-01-15 14:26:04'); INSERT INTO `sys_job_log` VALUES (10562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 14:26:06'); INSERT INTO `sys_job_log` VALUES (10563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-15 14:26:14'); INSERT INTO `sys_job_log` VALUES (10564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-15 14:28:04'); INSERT INTO `sys_job_log` VALUES (10565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 14:28:06'); INSERT INTO `sys_job_log` VALUES (10566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-15 14:28:14'); INSERT INTO `sys_job_log` VALUES (10567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 14:30:04'); INSERT INTO `sys_job_log` VALUES (10568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 14:30:06'); INSERT INTO `sys_job_log` VALUES (10569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-15 14:30:14'); INSERT INTO `sys_job_log` VALUES (10570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-15 14:32:04'); INSERT INTO `sys_job_log` VALUES (10571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 14:32:06'); INSERT INTO `sys_job_log` VALUES (10572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-15 14:32:14'); INSERT INTO `sys_job_log` VALUES (10573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:287毫秒', '0', '', '2022-01-15 14:34:04'); INSERT INTO `sys_job_log` VALUES (10574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-15 14:34:06'); INSERT INTO `sys_job_log` VALUES (10575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-15 14:34:14'); INSERT INTO `sys_job_log` VALUES (10576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:481毫秒', '0', '', '2022-01-15 14:36:04'); INSERT INTO `sys_job_log` VALUES (10577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-15 14:36:06'); INSERT INTO `sys_job_log` VALUES (10578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-15 14:36:14'); INSERT INTO `sys_job_log` VALUES (10579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-15 14:38:04'); INSERT INTO `sys_job_log` VALUES (10580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-15 14:38:06'); INSERT INTO `sys_job_log` VALUES (10581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-15 14:38:14'); INSERT INTO `sys_job_log` VALUES (10582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-15 14:40:04'); INSERT INTO `sys_job_log` VALUES (10583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-15 14:40:06'); INSERT INTO `sys_job_log` VALUES (10584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-15 14:40:14'); INSERT INTO `sys_job_log` VALUES (10585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-15 14:42:04'); INSERT INTO `sys_job_log` VALUES (10586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 14:42:06'); INSERT INTO `sys_job_log` VALUES (10587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-15 14:42:14'); INSERT INTO `sys_job_log` VALUES (10588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-15 14:44:04'); INSERT INTO `sys_job_log` VALUES (10589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-15 14:44:06'); INSERT INTO `sys_job_log` VALUES (10590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-15 14:44:14'); INSERT INTO `sys_job_log` VALUES (10591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:383毫秒', '0', '', '2022-01-15 14:46:04'); INSERT INTO `sys_job_log` VALUES (10592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-15 14:46:06'); INSERT INTO `sys_job_log` VALUES (10593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 14:46:14'); INSERT INTO `sys_job_log` VALUES (10594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-15 14:48:04'); INSERT INTO `sys_job_log` VALUES (10595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-15 14:48:06'); INSERT INTO `sys_job_log` VALUES (10596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-15 14:48:14'); INSERT INTO `sys_job_log` VALUES (10597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-15 14:50:04'); INSERT INTO `sys_job_log` VALUES (10598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-15 14:50:06'); INSERT INTO `sys_job_log` VALUES (10599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-15 14:50:14'); INSERT INTO `sys_job_log` VALUES (10600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-15 14:52:04'); INSERT INTO `sys_job_log` VALUES (10601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-15 14:52:06'); INSERT INTO `sys_job_log` VALUES (10602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-15 14:52:14'); INSERT INTO `sys_job_log` VALUES (10603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-15 14:54:04'); INSERT INTO `sys_job_log` VALUES (10604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-15 14:54:06'); INSERT INTO `sys_job_log` VALUES (10605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-15 14:54:14'); INSERT INTO `sys_job_log` VALUES (10606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:475毫秒', '0', '', '2022-01-15 14:56:04'); INSERT INTO `sys_job_log` VALUES (10607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-15 14:56:06'); INSERT INTO `sys_job_log` VALUES (10608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-15 14:56:14'); INSERT INTO `sys_job_log` VALUES (10609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-15 14:58:04'); INSERT INTO `sys_job_log` VALUES (10610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-15 14:58:06'); INSERT INTO `sys_job_log` VALUES (10611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-15 14:58:14'); INSERT INTO `sys_job_log` VALUES (10612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-15 15:00:04'); INSERT INTO `sys_job_log` VALUES (10613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 15:00:06'); INSERT INTO `sys_job_log` VALUES (10614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 15:00:14'); INSERT INTO `sys_job_log` VALUES (10615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-15 15:02:04'); INSERT INTO `sys_job_log` VALUES (10616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-15 15:02:06'); INSERT INTO `sys_job_log` VALUES (10617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-15 15:02:14'); INSERT INTO `sys_job_log` VALUES (10618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-15 15:04:04'); INSERT INTO `sys_job_log` VALUES (10619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 15:04:06'); INSERT INTO `sys_job_log` VALUES (10620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-15 15:04:14'); INSERT INTO `sys_job_log` VALUES (10621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:369毫秒', '0', '', '2022-01-15 15:06:04'); INSERT INTO `sys_job_log` VALUES (10622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-15 15:06:06'); INSERT INTO `sys_job_log` VALUES (10623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-15 15:06:14'); INSERT INTO `sys_job_log` VALUES (10624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-15 15:08:04'); INSERT INTO `sys_job_log` VALUES (10625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-15 15:08:06'); INSERT INTO `sys_job_log` VALUES (10626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-15 15:08:14'); INSERT INTO `sys_job_log` VALUES (10627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-15 15:10:04'); INSERT INTO `sys_job_log` VALUES (10628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-15 15:10:06'); INSERT INTO `sys_job_log` VALUES (10629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-15 15:10:14'); INSERT INTO `sys_job_log` VALUES (10630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-15 15:12:04'); INSERT INTO `sys_job_log` VALUES (10631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 15:12:06'); INSERT INTO `sys_job_log` VALUES (10632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-15 15:12:14'); INSERT INTO `sys_job_log` VALUES (10633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-15 15:14:04'); INSERT INTO `sys_job_log` VALUES (10634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 15:14:06'); INSERT INTO `sys_job_log` VALUES (10635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-15 15:14:14'); INSERT INTO `sys_job_log` VALUES (10636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:304毫秒', '0', '', '2022-01-15 15:16:04'); INSERT INTO `sys_job_log` VALUES (10637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-15 15:16:06'); INSERT INTO `sys_job_log` VALUES (10638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-15 15:16:14'); INSERT INTO `sys_job_log` VALUES (10639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-15 15:18:04'); INSERT INTO `sys_job_log` VALUES (10640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 15:18:06'); INSERT INTO `sys_job_log` VALUES (10641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-15 15:18:14'); INSERT INTO `sys_job_log` VALUES (10642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-15 15:20:04'); INSERT INTO `sys_job_log` VALUES (10643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 15:20:06'); INSERT INTO `sys_job_log` VALUES (10644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-15 15:20:14'); INSERT INTO `sys_job_log` VALUES (10645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-15 15:22:04'); INSERT INTO `sys_job_log` VALUES (10646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-15 15:22:06'); INSERT INTO `sys_job_log` VALUES (10647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-15 15:22:14'); INSERT INTO `sys_job_log` VALUES (10648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-15 15:24:04'); INSERT INTO `sys_job_log` VALUES (10649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-15 15:24:06'); INSERT INTO `sys_job_log` VALUES (10650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-15 15:24:14'); INSERT INTO `sys_job_log` VALUES (10651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:522毫秒', '0', '', '2022-01-15 15:26:04'); INSERT INTO `sys_job_log` VALUES (10652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-15 15:26:06'); INSERT INTO `sys_job_log` VALUES (10653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-15 15:26:14'); INSERT INTO `sys_job_log` VALUES (10654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-15 15:28:04'); INSERT INTO `sys_job_log` VALUES (10655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-15 15:28:06'); INSERT INTO `sys_job_log` VALUES (10656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-15 15:28:14'); INSERT INTO `sys_job_log` VALUES (10657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 15:30:04'); INSERT INTO `sys_job_log` VALUES (10658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 15:30:06'); INSERT INTO `sys_job_log` VALUES (10659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 15:30:14'); INSERT INTO `sys_job_log` VALUES (10660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-15 15:32:04'); INSERT INTO `sys_job_log` VALUES (10661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-15 15:32:06'); INSERT INTO `sys_job_log` VALUES (10662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-15 15:32:14'); INSERT INTO `sys_job_log` VALUES (10663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-15 15:34:04'); INSERT INTO `sys_job_log` VALUES (10664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-15 15:34:06'); INSERT INTO `sys_job_log` VALUES (10665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:308毫秒', '0', '', '2022-01-15 15:34:14'); INSERT INTO `sys_job_log` VALUES (10666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:501毫秒', '0', '', '2022-01-15 15:36:04'); INSERT INTO `sys_job_log` VALUES (10667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-15 15:36:06'); INSERT INTO `sys_job_log` VALUES (10668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-15 15:36:14'); INSERT INTO `sys_job_log` VALUES (10669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-15 15:38:04'); INSERT INTO `sys_job_log` VALUES (10670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-15 15:38:06'); INSERT INTO `sys_job_log` VALUES (10671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-15 15:38:14'); INSERT INTO `sys_job_log` VALUES (10672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:280毫秒', '0', '', '2022-01-15 15:40:04'); INSERT INTO `sys_job_log` VALUES (10673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 15:40:06'); INSERT INTO `sys_job_log` VALUES (10674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:177毫秒', '0', '', '2022-01-15 15:40:14'); INSERT INTO `sys_job_log` VALUES (10675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 15:42:06'); INSERT INTO `sys_job_log` VALUES (10676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-15 15:42:08'); INSERT INTO `sys_job_log` VALUES (10677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-15 15:42:14'); INSERT INTO `sys_job_log` VALUES (10678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-15 15:44:04'); INSERT INTO `sys_job_log` VALUES (10679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-15 15:44:06'); INSERT INTO `sys_job_log` VALUES (10680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-15 15:44:14'); INSERT INTO `sys_job_log` VALUES (10681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:473毫秒', '0', '', '2022-01-15 15:46:04'); INSERT INTO `sys_job_log` VALUES (10682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-15 15:46:06'); INSERT INTO `sys_job_log` VALUES (10683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 15:46:14'); INSERT INTO `sys_job_log` VALUES (10684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:272毫秒', '0', '', '2022-01-15 15:48:04'); INSERT INTO `sys_job_log` VALUES (10685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-15 15:48:06'); INSERT INTO `sys_job_log` VALUES (10686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 15:48:14'); INSERT INTO `sys_job_log` VALUES (10687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-15 15:50:04'); INSERT INTO `sys_job_log` VALUES (10688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-15 15:50:06'); INSERT INTO `sys_job_log` VALUES (10689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-15 15:50:14'); INSERT INTO `sys_job_log` VALUES (10690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-15 15:52:04'); INSERT INTO `sys_job_log` VALUES (10691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 15:52:06'); INSERT INTO `sys_job_log` VALUES (10692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-15 15:52:14'); INSERT INTO `sys_job_log` VALUES (10693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1143毫秒', '0', '', '2022-01-15 15:54:05'); INSERT INTO `sys_job_log` VALUES (10694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-15 15:54:06'); INSERT INTO `sys_job_log` VALUES (10695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-15 15:54:14'); INSERT INTO `sys_job_log` VALUES (10696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:478毫秒', '0', '', '2022-01-15 15:56:04'); INSERT INTO `sys_job_log` VALUES (10697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-15 15:56:06'); INSERT INTO `sys_job_log` VALUES (10698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1165毫秒', '0', '', '2022-01-15 15:56:15'); INSERT INTO `sys_job_log` VALUES (10699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-15 15:58:04'); INSERT INTO `sys_job_log` VALUES (10700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-15 15:58:06'); INSERT INTO `sys_job_log` VALUES (10701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-15 15:58:14'); INSERT INTO `sys_job_log` VALUES (10702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-15 16:00:04'); INSERT INTO `sys_job_log` VALUES (10703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-15 16:00:06'); INSERT INTO `sys_job_log` VALUES (10704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-15 16:00:14'); INSERT INTO `sys_job_log` VALUES (10705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:288毫秒', '0', '', '2022-01-15 16:02:04'); INSERT INTO `sys_job_log` VALUES (10706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-15 16:02:06'); INSERT INTO `sys_job_log` VALUES (10707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-15 16:02:14'); INSERT INTO `sys_job_log` VALUES (10708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 16:04:06'); INSERT INTO `sys_job_log` VALUES (10709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-15 16:04:06'); INSERT INTO `sys_job_log` VALUES (10710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-15 16:04:14'); INSERT INTO `sys_job_log` VALUES (10711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:388毫秒', '0', '', '2022-01-15 16:06:04'); INSERT INTO `sys_job_log` VALUES (10712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-15 16:06:06'); INSERT INTO `sys_job_log` VALUES (10713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-15 16:06:14'); INSERT INTO `sys_job_log` VALUES (10714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-15 16:08:04'); INSERT INTO `sys_job_log` VALUES (10715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 16:08:06'); INSERT INTO `sys_job_log` VALUES (10716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-15 16:08:14'); INSERT INTO `sys_job_log` VALUES (10717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-15 16:10:04'); INSERT INTO `sys_job_log` VALUES (10718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-15 16:10:06'); INSERT INTO `sys_job_log` VALUES (10719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 16:10:14'); INSERT INTO `sys_job_log` VALUES (10720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-15 16:12:04'); INSERT INTO `sys_job_log` VALUES (10721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-15 16:12:06'); INSERT INTO `sys_job_log` VALUES (10722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-15 16:12:14'); INSERT INTO `sys_job_log` VALUES (10723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-15 16:14:04'); INSERT INTO `sys_job_log` VALUES (10724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-15 16:14:06'); INSERT INTO `sys_job_log` VALUES (10725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-15 16:14:14'); INSERT INTO `sys_job_log` VALUES (10726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:469毫秒', '0', '', '2022-01-15 16:16:04'); INSERT INTO `sys_job_log` VALUES (10727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-15 16:16:06'); INSERT INTO `sys_job_log` VALUES (10728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-15 16:16:14'); INSERT INTO `sys_job_log` VALUES (10729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-15 16:18:04'); INSERT INTO `sys_job_log` VALUES (10730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-15 16:18:06'); INSERT INTO `sys_job_log` VALUES (10731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-15 16:18:14'); INSERT INTO `sys_job_log` VALUES (10732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-15 16:20:04'); INSERT INTO `sys_job_log` VALUES (10733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 16:20:06'); INSERT INTO `sys_job_log` VALUES (10734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-15 16:20:14'); INSERT INTO `sys_job_log` VALUES (10735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-15 16:22:04'); INSERT INTO `sys_job_log` VALUES (10736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-15 16:22:06'); INSERT INTO `sys_job_log` VALUES (10737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-15 16:22:14'); INSERT INTO `sys_job_log` VALUES (10738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:277毫秒', '0', '', '2022-01-15 16:24:04'); INSERT INTO `sys_job_log` VALUES (10739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-15 16:24:06'); INSERT INTO `sys_job_log` VALUES (10740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-15 16:24:14'); INSERT INTO `sys_job_log` VALUES (10741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:356毫秒', '0', '', '2022-01-15 16:26:04'); INSERT INTO `sys_job_log` VALUES (10742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-15 16:26:06'); INSERT INTO `sys_job_log` VALUES (10743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-15 16:26:14'); INSERT INTO `sys_job_log` VALUES (10744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-15 16:28:04'); INSERT INTO `sys_job_log` VALUES (10745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-15 16:28:06'); INSERT INTO `sys_job_log` VALUES (10746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-15 16:28:14'); INSERT INTO `sys_job_log` VALUES (10747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-15 16:30:04'); INSERT INTO `sys_job_log` VALUES (10748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-15 16:30:06'); INSERT INTO `sys_job_log` VALUES (10749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-15 16:30:14'); INSERT INTO `sys_job_log` VALUES (10750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-15 16:32:04'); INSERT INTO `sys_job_log` VALUES (10751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-15 16:32:06'); INSERT INTO `sys_job_log` VALUES (10752, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-15 16:32:14'); INSERT INTO `sys_job_log` VALUES (10753, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-15 16:34:04'); INSERT INTO `sys_job_log` VALUES (10754, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 16:34:06'); INSERT INTO `sys_job_log` VALUES (10755, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-15 16:34:14'); INSERT INTO `sys_job_log` VALUES (10756, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:521毫秒', '0', '', '2022-01-15 16:36:04'); INSERT INTO `sys_job_log` VALUES (10757, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 16:36:06'); INSERT INTO `sys_job_log` VALUES (10758, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-15 16:36:14'); INSERT INTO `sys_job_log` VALUES (10759, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-15 16:38:04'); INSERT INTO `sys_job_log` VALUES (10760, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-15 16:38:06'); INSERT INTO `sys_job_log` VALUES (10761, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-15 16:38:14'); INSERT INTO `sys_job_log` VALUES (10762, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-15 16:40:04'); INSERT INTO `sys_job_log` VALUES (10763, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:367毫秒', '0', '', '2022-01-15 16:40:06'); INSERT INTO `sys_job_log` VALUES (10764, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-15 16:40:14'); INSERT INTO `sys_job_log` VALUES (10765, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-15 16:42:06'); INSERT INTO `sys_job_log` VALUES (10766, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 16:42:08'); INSERT INTO `sys_job_log` VALUES (10767, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 16:42:16'); INSERT INTO `sys_job_log` VALUES (10768, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-15 16:44:04'); INSERT INTO `sys_job_log` VALUES (10769, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 16:44:06'); INSERT INTO `sys_job_log` VALUES (10770, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 16:44:14'); INSERT INTO `sys_job_log` VALUES (10771, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:319毫秒', '0', '', '2022-01-15 16:46:04'); INSERT INTO `sys_job_log` VALUES (10772, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 16:46:08'); INSERT INTO `sys_job_log` VALUES (10773, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-15 16:46:16'); INSERT INTO `sys_job_log` VALUES (10774, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-15 16:48:04'); INSERT INTO `sys_job_log` VALUES (10775, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:293毫秒', '0', '', '2022-01-15 16:48:06'); INSERT INTO `sys_job_log` VALUES (10776, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-15 16:48:14'); INSERT INTO `sys_job_log` VALUES (10777, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1290毫秒', '0', '', '2022-01-15 16:50:05'); INSERT INTO `sys_job_log` VALUES (10778, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-15 16:50:06'); INSERT INTO `sys_job_log` VALUES (10779, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-15 16:50:14'); INSERT INTO `sys_job_log` VALUES (10780, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-15 16:52:04'); INSERT INTO `sys_job_log` VALUES (10781, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-15 16:52:06'); INSERT INTO `sys_job_log` VALUES (10782, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-15 16:52:14'); INSERT INTO `sys_job_log` VALUES (10783, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1270毫秒', '0', '', '2022-01-15 16:54:05'); INSERT INTO `sys_job_log` VALUES (10784, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1125毫秒', '0', '', '2022-01-15 16:54:07'); INSERT INTO `sys_job_log` VALUES (10785, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 16:54:14'); INSERT INTO `sys_job_log` VALUES (10786, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:396毫秒', '0', '', '2022-01-15 16:56:04'); INSERT INTO `sys_job_log` VALUES (10787, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:311毫秒', '0', '', '2022-01-15 16:56:06'); INSERT INTO `sys_job_log` VALUES (10788, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-15 16:56:14'); INSERT INTO `sys_job_log` VALUES (10789, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-15 16:58:04'); INSERT INTO `sys_job_log` VALUES (10790, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:376毫秒', '0', '', '2022-01-15 16:58:06'); INSERT INTO `sys_job_log` VALUES (10791, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-15 16:58:14'); INSERT INTO `sys_job_log` VALUES (10792, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:293毫秒', '0', '', '2022-01-15 17:00:04'); INSERT INTO `sys_job_log` VALUES (10793, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 17:00:06'); INSERT INTO `sys_job_log` VALUES (10794, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-15 17:00:14'); INSERT INTO `sys_job_log` VALUES (10795, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-15 17:02:04'); INSERT INTO `sys_job_log` VALUES (10796, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-15 17:02:06'); INSERT INTO `sys_job_log` VALUES (10797, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-15 17:02:14'); INSERT INTO `sys_job_log` VALUES (10798, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:266毫秒', '0', '', '2022-01-15 17:04:04'); INSERT INTO `sys_job_log` VALUES (10799, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-15 17:04:06'); INSERT INTO `sys_job_log` VALUES (10800, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-15 17:04:14'); INSERT INTO `sys_job_log` VALUES (10801, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:492毫秒', '0', '', '2022-01-15 17:06:04'); INSERT INTO `sys_job_log` VALUES (10802, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-15 17:06:06'); INSERT INTO `sys_job_log` VALUES (10803, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-15 17:06:14'); INSERT INTO `sys_job_log` VALUES (10804, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-15 17:08:06'); INSERT INTO `sys_job_log` VALUES (10805, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-15 17:08:06'); INSERT INTO `sys_job_log` VALUES (10806, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-15 17:08:14'); INSERT INTO `sys_job_log` VALUES (10807, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:288毫秒', '0', '', '2022-01-15 17:10:04'); INSERT INTO `sys_job_log` VALUES (10808, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 17:10:06'); INSERT INTO `sys_job_log` VALUES (10809, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-15 17:10:14'); INSERT INTO `sys_job_log` VALUES (10810, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-15 17:12:04'); INSERT INTO `sys_job_log` VALUES (10811, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1138毫秒', '0', '', '2022-01-15 17:12:07'); INSERT INTO `sys_job_log` VALUES (10812, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-15 17:12:14'); INSERT INTO `sys_job_log` VALUES (10813, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-15 17:14:04'); INSERT INTO `sys_job_log` VALUES (10814, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 17:14:06'); INSERT INTO `sys_job_log` VALUES (10815, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-15 17:14:14'); INSERT INTO `sys_job_log` VALUES (10816, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-15 17:16:06'); INSERT INTO `sys_job_log` VALUES (10817, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 17:16:08'); INSERT INTO `sys_job_log` VALUES (10818, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-15 17:16:14'); INSERT INTO `sys_job_log` VALUES (10819, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:266毫秒', '0', '', '2022-01-15 17:18:04'); INSERT INTO `sys_job_log` VALUES (10820, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 17:18:06'); INSERT INTO `sys_job_log` VALUES (10821, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-15 17:18:14'); INSERT INTO `sys_job_log` VALUES (10822, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1159毫秒', '0', '', '2022-01-15 17:20:05'); INSERT INTO `sys_job_log` VALUES (10823, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 17:20:06'); INSERT INTO `sys_job_log` VALUES (10824, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-15 17:20:14'); INSERT INTO `sys_job_log` VALUES (10825, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-15 17:22:04'); INSERT INTO `sys_job_log` VALUES (10826, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-15 17:22:06'); INSERT INTO `sys_job_log` VALUES (10827, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-15 17:22:14'); INSERT INTO `sys_job_log` VALUES (10828, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-15 17:24:04'); INSERT INTO `sys_job_log` VALUES (10829, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-15 17:24:06'); INSERT INTO `sys_job_log` VALUES (10830, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:272毫秒', '0', '', '2022-01-15 17:24:14'); INSERT INTO `sys_job_log` VALUES (10831, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:372毫秒', '0', '', '2022-01-15 17:26:04'); INSERT INTO `sys_job_log` VALUES (10832, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-15 17:26:06'); INSERT INTO `sys_job_log` VALUES (10833, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 17:26:14'); INSERT INTO `sys_job_log` VALUES (10834, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-15 17:28:04'); INSERT INTO `sys_job_log` VALUES (10835, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-15 17:28:06'); INSERT INTO `sys_job_log` VALUES (10836, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-15 17:28:14'); INSERT INTO `sys_job_log` VALUES (10837, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:280毫秒', '0', '', '2022-01-15 17:30:04'); INSERT INTO `sys_job_log` VALUES (10838, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-15 17:30:06'); INSERT INTO `sys_job_log` VALUES (10839, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-15 17:30:14'); INSERT INTO `sys_job_log` VALUES (10840, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-15 17:32:04'); INSERT INTO `sys_job_log` VALUES (10841, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-15 17:32:06'); INSERT INTO `sys_job_log` VALUES (10842, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-15 17:32:14'); INSERT INTO `sys_job_log` VALUES (10843, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:265毫秒', '0', '', '2022-01-15 17:34:04'); INSERT INTO `sys_job_log` VALUES (10844, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-15 17:34:06'); INSERT INTO `sys_job_log` VALUES (10845, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-15 17:34:14'); INSERT INTO `sys_job_log` VALUES (10846, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-15 17:36:04'); INSERT INTO `sys_job_log` VALUES (10847, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-15 17:36:06'); INSERT INTO `sys_job_log` VALUES (10848, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-15 17:36:14'); INSERT INTO `sys_job_log` VALUES (10849, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-15 17:38:04'); INSERT INTO `sys_job_log` VALUES (10850, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:293毫秒', '0', '', '2022-01-15 17:38:06'); INSERT INTO `sys_job_log` VALUES (10851, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 17:38:14'); INSERT INTO `sys_job_log` VALUES (10852, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-15 17:40:04'); INSERT INTO `sys_job_log` VALUES (10853, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 17:40:06'); INSERT INTO `sys_job_log` VALUES (10854, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-15 17:40:14'); INSERT INTO `sys_job_log` VALUES (10855, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 17:42:04'); INSERT INTO `sys_job_log` VALUES (10856, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-15 17:42:06'); INSERT INTO `sys_job_log` VALUES (10857, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-15 17:42:14'); INSERT INTO `sys_job_log` VALUES (10858, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-15 17:44:04'); INSERT INTO `sys_job_log` VALUES (10859, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 17:44:06'); INSERT INTO `sys_job_log` VALUES (10860, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1462毫秒', '0', '', '2022-01-15 17:44:15'); INSERT INTO `sys_job_log` VALUES (10861, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:373毫秒', '0', '', '2022-01-15 17:46:04'); INSERT INTO `sys_job_log` VALUES (10862, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-15 17:46:06'); INSERT INTO `sys_job_log` VALUES (10863, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-15 17:46:14'); INSERT INTO `sys_job_log` VALUES (10864, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-15 17:48:04'); INSERT INTO `sys_job_log` VALUES (10865, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-15 17:48:06'); INSERT INTO `sys_job_log` VALUES (10866, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-15 17:48:14'); INSERT INTO `sys_job_log` VALUES (10867, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-15 17:50:04'); INSERT INTO `sys_job_log` VALUES (10868, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-15 17:50:06'); INSERT INTO `sys_job_log` VALUES (10869, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-15 17:50:14'); INSERT INTO `sys_job_log` VALUES (10870, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 17:52:04'); INSERT INTO `sys_job_log` VALUES (10871, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-15 17:52:06'); INSERT INTO `sys_job_log` VALUES (10872, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-15 17:52:14'); INSERT INTO `sys_job_log` VALUES (10873, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-15 17:54:04'); INSERT INTO `sys_job_log` VALUES (10874, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-15 17:54:06'); INSERT INTO `sys_job_log` VALUES (10875, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 17:54:14'); INSERT INTO `sys_job_log` VALUES (10876, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:482毫秒', '0', '', '2022-01-15 17:56:04'); INSERT INTO `sys_job_log` VALUES (10877, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-15 17:56:06'); INSERT INTO `sys_job_log` VALUES (10878, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-15 17:56:14'); INSERT INTO `sys_job_log` VALUES (10879, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:335毫秒', '0', '', '2022-01-15 17:58:04'); INSERT INTO `sys_job_log` VALUES (10880, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-15 17:58:06'); INSERT INTO `sys_job_log` VALUES (10881, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:329毫秒', '0', '', '2022-01-15 17:58:14'); INSERT INTO `sys_job_log` VALUES (10882, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:462毫秒', '0', '', '2022-01-15 18:00:04'); INSERT INTO `sys_job_log` VALUES (10883, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-15 18:00:06'); INSERT INTO `sys_job_log` VALUES (10884, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 18:00:16'); INSERT INTO `sys_job_log` VALUES (10885, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-15 18:02:04'); INSERT INTO `sys_job_log` VALUES (10886, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:292毫秒', '0', '', '2022-01-15 18:02:06'); INSERT INTO `sys_job_log` VALUES (10887, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-15 18:02:14'); INSERT INTO `sys_job_log` VALUES (10888, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-15 18:04:04'); INSERT INTO `sys_job_log` VALUES (10889, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-15 18:04:06'); INSERT INTO `sys_job_log` VALUES (10890, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-15 18:04:14'); INSERT INTO `sys_job_log` VALUES (10891, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:473毫秒', '0', '', '2022-01-15 18:06:04'); INSERT INTO `sys_job_log` VALUES (10892, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-15 18:06:06'); INSERT INTO `sys_job_log` VALUES (10893, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-15 18:06:14'); INSERT INTO `sys_job_log` VALUES (10894, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-15 18:08:04'); INSERT INTO `sys_job_log` VALUES (10895, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 18:08:06'); INSERT INTO `sys_job_log` VALUES (10896, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-15 18:08:14'); INSERT INTO `sys_job_log` VALUES (10897, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-15 18:10:04'); INSERT INTO `sys_job_log` VALUES (10898, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 18:10:06'); INSERT INTO `sys_job_log` VALUES (10899, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-15 18:10:14'); INSERT INTO `sys_job_log` VALUES (10900, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1239毫秒', '0', '', '2022-01-15 18:12:05'); INSERT INTO `sys_job_log` VALUES (10901, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-15 18:12:06'); INSERT INTO `sys_job_log` VALUES (10902, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1156毫秒', '0', '', '2022-01-15 18:12:15'); INSERT INTO `sys_job_log` VALUES (10903, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 18:14:04'); INSERT INTO `sys_job_log` VALUES (10904, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-15 18:14:06'); INSERT INTO `sys_job_log` VALUES (10905, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-15 18:14:14'); INSERT INTO `sys_job_log` VALUES (10906, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:286毫秒', '0', '', '2022-01-15 18:16:04'); INSERT INTO `sys_job_log` VALUES (10907, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-15 18:16:07'); INSERT INTO `sys_job_log` VALUES (10908, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-15 18:16:14'); INSERT INTO `sys_job_log` VALUES (10909, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-15 18:18:04'); INSERT INTO `sys_job_log` VALUES (10910, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-15 18:18:06'); INSERT INTO `sys_job_log` VALUES (10911, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-15 18:18:14'); INSERT INTO `sys_job_log` VALUES (10912, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-15 18:20:04'); INSERT INTO `sys_job_log` VALUES (10913, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-15 18:20:06'); INSERT INTO `sys_job_log` VALUES (10914, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-15 18:20:14'); INSERT INTO `sys_job_log` VALUES (10915, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 18:22:04'); INSERT INTO `sys_job_log` VALUES (10916, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-15 18:22:06'); INSERT INTO `sys_job_log` VALUES (10917, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-15 18:22:14'); INSERT INTO `sys_job_log` VALUES (10918, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-15 18:24:04'); INSERT INTO `sys_job_log` VALUES (10919, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-15 18:24:06'); INSERT INTO `sys_job_log` VALUES (10920, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-15 18:24:14'); INSERT INTO `sys_job_log` VALUES (10921, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:450毫秒', '0', '', '2022-01-15 18:26:04'); INSERT INTO `sys_job_log` VALUES (10922, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-15 18:26:06'); INSERT INTO `sys_job_log` VALUES (10923, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-15 18:26:14'); INSERT INTO `sys_job_log` VALUES (10924, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-15 18:28:04'); INSERT INTO `sys_job_log` VALUES (10925, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:275毫秒', '0', '', '2022-01-15 18:28:06'); INSERT INTO `sys_job_log` VALUES (10926, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-15 18:28:14'); INSERT INTO `sys_job_log` VALUES (10927, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-15 18:30:04'); INSERT INTO `sys_job_log` VALUES (10928, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-15 18:30:06'); INSERT INTO `sys_job_log` VALUES (10929, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:83毫秒', '0', '', '2022-01-15 18:30:14'); INSERT INTO `sys_job_log` VALUES (10930, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 18:32:04'); INSERT INTO `sys_job_log` VALUES (10931, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-15 18:32:06'); INSERT INTO `sys_job_log` VALUES (10932, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 18:32:14'); INSERT INTO `sys_job_log` VALUES (10933, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-15 18:34:04'); INSERT INTO `sys_job_log` VALUES (10934, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-15 18:34:06'); INSERT INTO `sys_job_log` VALUES (10935, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-15 18:34:14'); INSERT INTO `sys_job_log` VALUES (10936, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-15 18:36:06'); INSERT INTO `sys_job_log` VALUES (10937, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-15 18:36:08'); INSERT INTO `sys_job_log` VALUES (10938, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-15 18:36:14'); INSERT INTO `sys_job_log` VALUES (10939, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-15 18:38:04'); INSERT INTO `sys_job_log` VALUES (10940, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-15 18:38:06'); INSERT INTO `sys_job_log` VALUES (10941, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-15 18:38:14'); INSERT INTO `sys_job_log` VALUES (10942, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-15 18:40:04'); INSERT INTO `sys_job_log` VALUES (10943, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-15 18:40:06'); INSERT INTO `sys_job_log` VALUES (10944, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 18:40:14'); INSERT INTO `sys_job_log` VALUES (10945, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-15 18:42:04'); INSERT INTO `sys_job_log` VALUES (10946, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 18:42:08'); INSERT INTO `sys_job_log` VALUES (10947, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1196毫秒', '0', '', '2022-01-15 18:42:15'); INSERT INTO `sys_job_log` VALUES (10948, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-15 18:44:04'); INSERT INTO `sys_job_log` VALUES (10949, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 18:44:06'); INSERT INTO `sys_job_log` VALUES (10950, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-15 18:44:14'); INSERT INTO `sys_job_log` VALUES (10951, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1478毫秒', '0', '', '2022-01-15 18:46:05'); INSERT INTO `sys_job_log` VALUES (10952, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-15 18:46:06'); INSERT INTO `sys_job_log` VALUES (10953, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-15 18:46:14'); INSERT INTO `sys_job_log` VALUES (10954, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:344毫秒', '0', '', '2022-01-15 18:48:04'); INSERT INTO `sys_job_log` VALUES (10955, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 18:48:06'); INSERT INTO `sys_job_log` VALUES (10956, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 18:48:14'); INSERT INTO `sys_job_log` VALUES (10957, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1146毫秒', '0', '', '2022-01-15 18:50:05'); INSERT INTO `sys_job_log` VALUES (10958, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1242毫秒', '0', '', '2022-01-15 18:50:07'); INSERT INTO `sys_job_log` VALUES (10959, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-15 18:50:14'); INSERT INTO `sys_job_log` VALUES (10960, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-15 18:52:04'); INSERT INTO `sys_job_log` VALUES (10961, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-15 18:52:06'); INSERT INTO `sys_job_log` VALUES (10962, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 18:52:14'); INSERT INTO `sys_job_log` VALUES (10963, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-15 18:54:04'); INSERT INTO `sys_job_log` VALUES (10964, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-15 18:54:06'); INSERT INTO `sys_job_log` VALUES (10965, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-15 18:54:14'); INSERT INTO `sys_job_log` VALUES (10966, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:322毫秒', '0', '', '2022-01-15 18:56:04'); INSERT INTO `sys_job_log` VALUES (10967, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:275毫秒', '0', '', '2022-01-15 18:56:06'); INSERT INTO `sys_job_log` VALUES (10968, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-15 18:56:14'); INSERT INTO `sys_job_log` VALUES (10969, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1144毫秒', '0', '', '2022-01-15 18:58:05'); INSERT INTO `sys_job_log` VALUES (10970, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-15 18:58:06'); INSERT INTO `sys_job_log` VALUES (10971, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 18:58:14'); INSERT INTO `sys_job_log` VALUES (10972, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-15 19:00:04'); INSERT INTO `sys_job_log` VALUES (10973, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-15 19:00:06'); INSERT INTO `sys_job_log` VALUES (10974, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 19:00:14'); INSERT INTO `sys_job_log` VALUES (10975, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-15 19:02:04'); INSERT INTO `sys_job_log` VALUES (10976, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:265毫秒', '0', '', '2022-01-15 19:02:06'); INSERT INTO `sys_job_log` VALUES (10977, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 19:02:14'); INSERT INTO `sys_job_log` VALUES (10978, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-15 19:04:04'); INSERT INTO `sys_job_log` VALUES (10979, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-15 19:04:06'); INSERT INTO `sys_job_log` VALUES (10980, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:265毫秒', '0', '', '2022-01-15 19:04:14'); INSERT INTO `sys_job_log` VALUES (10981, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1487毫秒', '0', '', '2022-01-15 19:06:05'); INSERT INTO `sys_job_log` VALUES (10982, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 19:06:06'); INSERT INTO `sys_job_log` VALUES (10983, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-15 19:06:14'); INSERT INTO `sys_job_log` VALUES (10984, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-15 19:08:04'); INSERT INTO `sys_job_log` VALUES (10985, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-15 19:08:06'); INSERT INTO `sys_job_log` VALUES (10986, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-15 19:08:14'); INSERT INTO `sys_job_log` VALUES (10987, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-15 19:10:04'); INSERT INTO `sys_job_log` VALUES (10988, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-15 19:10:06'); INSERT INTO `sys_job_log` VALUES (10989, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-15 19:10:14'); INSERT INTO `sys_job_log` VALUES (10990, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-15 19:12:04'); INSERT INTO `sys_job_log` VALUES (10991, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-15 19:12:06'); INSERT INTO `sys_job_log` VALUES (10992, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-15 19:12:14'); INSERT INTO `sys_job_log` VALUES (10993, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1126毫秒', '0', '', '2022-01-15 19:14:05'); INSERT INTO `sys_job_log` VALUES (10994, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:73毫秒', '0', '', '2022-01-15 19:14:06'); INSERT INTO `sys_job_log` VALUES (10995, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-15 19:14:14'); INSERT INTO `sys_job_log` VALUES (10996, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:500毫秒', '0', '', '2022-01-15 19:16:04'); INSERT INTO `sys_job_log` VALUES (10997, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 19:16:06'); INSERT INTO `sys_job_log` VALUES (10998, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-15 19:16:14'); INSERT INTO `sys_job_log` VALUES (10999, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-15 19:18:04'); INSERT INTO `sys_job_log` VALUES (11000, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 19:18:06'); INSERT INTO `sys_job_log` VALUES (11001, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-15 19:18:14'); INSERT INTO `sys_job_log` VALUES (11002, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-15 19:20:04'); INSERT INTO `sys_job_log` VALUES (11003, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-15 19:20:06'); INSERT INTO `sys_job_log` VALUES (11004, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-15 19:20:14'); INSERT INTO `sys_job_log` VALUES (11005, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-15 19:22:04'); INSERT INTO `sys_job_log` VALUES (11006, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 19:22:06'); INSERT INTO `sys_job_log` VALUES (11007, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-15 19:22:14'); INSERT INTO `sys_job_log` VALUES (11008, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-15 19:24:04'); INSERT INTO `sys_job_log` VALUES (11009, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 19:24:06'); INSERT INTO `sys_job_log` VALUES (11010, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-15 19:24:14'); INSERT INTO `sys_job_log` VALUES (11011, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:523毫秒', '0', '', '2022-01-15 19:26:04'); INSERT INTO `sys_job_log` VALUES (11012, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-15 19:26:06'); INSERT INTO `sys_job_log` VALUES (11013, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-15 19:26:14'); INSERT INTO `sys_job_log` VALUES (11014, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:301毫秒', '0', '', '2022-01-15 19:28:04'); INSERT INTO `sys_job_log` VALUES (11015, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-15 19:28:06'); INSERT INTO `sys_job_log` VALUES (11016, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-15 19:28:14'); INSERT INTO `sys_job_log` VALUES (11017, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:327毫秒', '0', '', '2022-01-15 19:30:04'); INSERT INTO `sys_job_log` VALUES (11018, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-15 19:30:06'); INSERT INTO `sys_job_log` VALUES (11019, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-15 19:30:14'); INSERT INTO `sys_job_log` VALUES (11020, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-15 19:32:04'); INSERT INTO `sys_job_log` VALUES (11021, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-15 19:32:06'); INSERT INTO `sys_job_log` VALUES (11022, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-15 19:32:14'); INSERT INTO `sys_job_log` VALUES (11023, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-15 19:34:04'); INSERT INTO `sys_job_log` VALUES (11024, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 19:34:06'); INSERT INTO `sys_job_log` VALUES (11025, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-15 19:34:14'); INSERT INTO `sys_job_log` VALUES (11026, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:356毫秒', '0', '', '2022-01-15 19:36:04'); INSERT INTO `sys_job_log` VALUES (11027, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-15 19:36:06'); INSERT INTO `sys_job_log` VALUES (11028, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-15 19:36:14'); INSERT INTO `sys_job_log` VALUES (11029, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-15 19:38:04'); INSERT INTO `sys_job_log` VALUES (11030, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 19:38:06'); INSERT INTO `sys_job_log` VALUES (11031, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-15 19:38:14'); INSERT INTO `sys_job_log` VALUES (11032, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:277毫秒', '0', '', '2022-01-15 19:40:04'); INSERT INTO `sys_job_log` VALUES (11033, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-15 19:40:06'); INSERT INTO `sys_job_log` VALUES (11034, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-15 19:40:14'); INSERT INTO `sys_job_log` VALUES (11035, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:534毫秒', '0', '', '2022-01-15 19:42:04'); INSERT INTO `sys_job_log` VALUES (11036, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-15 19:42:06'); INSERT INTO `sys_job_log` VALUES (11037, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-15 19:42:14'); INSERT INTO `sys_job_log` VALUES (11038, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:291毫秒', '0', '', '2022-01-15 19:44:04'); INSERT INTO `sys_job_log` VALUES (11039, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-15 19:44:06'); INSERT INTO `sys_job_log` VALUES (11040, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-15 19:44:14'); INSERT INTO `sys_job_log` VALUES (11041, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:432毫秒', '0', '', '2022-01-15 19:46:04'); INSERT INTO `sys_job_log` VALUES (11042, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-15 19:46:06'); INSERT INTO `sys_job_log` VALUES (11043, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-15 19:46:14'); INSERT INTO `sys_job_log` VALUES (11044, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 19:48:04'); INSERT INTO `sys_job_log` VALUES (11045, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-15 19:48:06'); INSERT INTO `sys_job_log` VALUES (11046, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-15 19:48:14'); INSERT INTO `sys_job_log` VALUES (11047, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:286毫秒', '0', '', '2022-01-15 19:50:04'); INSERT INTO `sys_job_log` VALUES (11048, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-15 19:50:06'); INSERT INTO `sys_job_log` VALUES (11049, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-15 19:50:14'); INSERT INTO `sys_job_log` VALUES (11050, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-15 19:52:06'); INSERT INTO `sys_job_log` VALUES (11051, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-15 19:52:08'); INSERT INTO `sys_job_log` VALUES (11052, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-15 19:52:16'); INSERT INTO `sys_job_log` VALUES (11053, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-15 19:54:04'); INSERT INTO `sys_job_log` VALUES (11054, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-15 19:54:06'); INSERT INTO `sys_job_log` VALUES (11055, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-15 19:54:14'); INSERT INTO `sys_job_log` VALUES (11056, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 19:56:06'); INSERT INTO `sys_job_log` VALUES (11057, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 19:56:08'); INSERT INTO `sys_job_log` VALUES (11058, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 19:56:16'); INSERT INTO `sys_job_log` VALUES (11059, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-15 19:58:04'); INSERT INTO `sys_job_log` VALUES (11060, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-15 19:58:06'); INSERT INTO `sys_job_log` VALUES (11061, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-15 19:58:14'); INSERT INTO `sys_job_log` VALUES (11062, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-15 20:00:04'); INSERT INTO `sys_job_log` VALUES (11063, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-15 20:00:08'); INSERT INTO `sys_job_log` VALUES (11064, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1126毫秒', '0', '', '2022-01-15 20:00:15'); INSERT INTO `sys_job_log` VALUES (11065, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-15 20:02:04'); INSERT INTO `sys_job_log` VALUES (11066, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:292毫秒', '0', '', '2022-01-15 20:02:06'); INSERT INTO `sys_job_log` VALUES (11067, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-15 20:02:14'); INSERT INTO `sys_job_log` VALUES (11068, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-15 20:04:04'); INSERT INTO `sys_job_log` VALUES (11069, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-15 20:04:06'); INSERT INTO `sys_job_log` VALUES (11070, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-15 20:04:16'); INSERT INTO `sys_job_log` VALUES (11071, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:515毫秒', '0', '', '2022-01-15 20:06:04'); INSERT INTO `sys_job_log` VALUES (11072, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:302毫秒', '0', '', '2022-01-15 20:06:06'); INSERT INTO `sys_job_log` VALUES (11073, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-15 20:06:14'); INSERT INTO `sys_job_log` VALUES (11074, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-15 20:08:04'); INSERT INTO `sys_job_log` VALUES (11075, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-15 20:08:06'); INSERT INTO `sys_job_log` VALUES (11076, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-15 20:08:15'); INSERT INTO `sys_job_log` VALUES (11077, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-15 20:10:04'); INSERT INTO `sys_job_log` VALUES (11078, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-15 20:10:06'); INSERT INTO `sys_job_log` VALUES (11079, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-15 20:10:14'); INSERT INTO `sys_job_log` VALUES (11080, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:285毫秒', '0', '', '2022-01-15 20:12:04'); INSERT INTO `sys_job_log` VALUES (11081, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-15 20:12:06'); INSERT INTO `sys_job_log` VALUES (11082, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-15 20:12:14'); INSERT INTO `sys_job_log` VALUES (11083, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-15 20:14:04'); INSERT INTO `sys_job_log` VALUES (11084, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-15 20:14:06'); INSERT INTO `sys_job_log` VALUES (11085, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-15 20:14:14'); INSERT INTO `sys_job_log` VALUES (11086, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-15 20:16:04'); INSERT INTO `sys_job_log` VALUES (11087, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-15 20:16:06'); INSERT INTO `sys_job_log` VALUES (11088, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 20:16:14'); INSERT INTO `sys_job_log` VALUES (11089, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-15 20:18:04'); INSERT INTO `sys_job_log` VALUES (11090, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-15 20:18:06'); INSERT INTO `sys_job_log` VALUES (11091, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-15 20:18:14'); INSERT INTO `sys_job_log` VALUES (11092, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-15 20:20:06'); INSERT INTO `sys_job_log` VALUES (11093, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 20:20:08'); INSERT INTO `sys_job_log` VALUES (11094, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-15 20:20:14'); INSERT INTO `sys_job_log` VALUES (11095, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-15 20:22:04'); INSERT INTO `sys_job_log` VALUES (11096, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-15 20:22:08'); INSERT INTO `sys_job_log` VALUES (11097, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-15 20:22:14'); INSERT INTO `sys_job_log` VALUES (11098, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-15 20:24:04'); INSERT INTO `sys_job_log` VALUES (11099, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-15 20:24:06'); INSERT INTO `sys_job_log` VALUES (11100, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-15 20:24:14'); INSERT INTO `sys_job_log` VALUES (11101, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:275毫秒', '0', '', '2022-01-15 20:26:04'); INSERT INTO `sys_job_log` VALUES (11102, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-15 20:26:06'); INSERT INTO `sys_job_log` VALUES (11103, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1176毫秒', '0', '', '2022-01-15 20:26:15'); INSERT INTO `sys_job_log` VALUES (11104, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-15 20:28:04'); INSERT INTO `sys_job_log` VALUES (11105, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 20:28:06'); INSERT INTO `sys_job_log` VALUES (11106, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-15 20:28:14'); INSERT INTO `sys_job_log` VALUES (11107, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-15 20:30:04'); INSERT INTO `sys_job_log` VALUES (11108, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-15 20:30:06'); INSERT INTO `sys_job_log` VALUES (11109, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-15 20:30:14'); INSERT INTO `sys_job_log` VALUES (11110, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-15 20:32:04'); INSERT INTO `sys_job_log` VALUES (11111, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-15 20:32:06'); INSERT INTO `sys_job_log` VALUES (11112, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-15 20:32:14'); INSERT INTO `sys_job_log` VALUES (11113, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-15 20:34:06'); INSERT INTO `sys_job_log` VALUES (11114, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 20:34:08'); INSERT INTO `sys_job_log` VALUES (11115, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-15 20:34:14'); INSERT INTO `sys_job_log` VALUES (11116, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-15 20:36:04'); INSERT INTO `sys_job_log` VALUES (11117, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-15 20:36:06'); INSERT INTO `sys_job_log` VALUES (11118, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-15 20:36:14'); INSERT INTO `sys_job_log` VALUES (11119, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:342毫秒', '0', '', '2022-01-15 20:38:04'); INSERT INTO `sys_job_log` VALUES (11120, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:426毫秒', '0', '', '2022-01-15 20:38:06'); INSERT INTO `sys_job_log` VALUES (11121, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1210毫秒', '0', '', '2022-01-15 20:38:15'); INSERT INTO `sys_job_log` VALUES (11122, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-15 20:40:04'); INSERT INTO `sys_job_log` VALUES (11123, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-15 20:40:06'); INSERT INTO `sys_job_log` VALUES (11124, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 20:40:14'); INSERT INTO `sys_job_log` VALUES (11125, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:365毫秒', '0', '', '2022-01-15 20:42:04'); INSERT INTO `sys_job_log` VALUES (11126, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 20:42:06'); INSERT INTO `sys_job_log` VALUES (11127, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-15 20:42:14'); INSERT INTO `sys_job_log` VALUES (11128, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-15 20:44:04'); INSERT INTO `sys_job_log` VALUES (11129, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 20:44:06'); INSERT INTO `sys_job_log` VALUES (11130, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-15 20:44:14'); INSERT INTO `sys_job_log` VALUES (11131, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-15 20:46:06'); INSERT INTO `sys_job_log` VALUES (11132, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 20:46:08'); INSERT INTO `sys_job_log` VALUES (11133, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-15 20:46:14'); INSERT INTO `sys_job_log` VALUES (11134, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-15 20:48:04'); INSERT INTO `sys_job_log` VALUES (11135, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-15 20:48:06'); INSERT INTO `sys_job_log` VALUES (11136, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-15 20:48:14'); INSERT INTO `sys_job_log` VALUES (11137, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-15 20:50:04'); INSERT INTO `sys_job_log` VALUES (11138, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:79毫秒', '0', '', '2022-01-15 20:50:06'); INSERT INTO `sys_job_log` VALUES (11139, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-15 20:50:14'); INSERT INTO `sys_job_log` VALUES (11140, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-15 20:52:04'); INSERT INTO `sys_job_log` VALUES (11141, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 20:52:06'); INSERT INTO `sys_job_log` VALUES (11142, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-15 20:52:14'); INSERT INTO `sys_job_log` VALUES (11143, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-15 20:54:04'); INSERT INTO `sys_job_log` VALUES (11144, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-15 20:54:06'); INSERT INTO `sys_job_log` VALUES (11145, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-15 20:54:14'); INSERT INTO `sys_job_log` VALUES (11146, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:357毫秒', '0', '', '2022-01-15 20:56:04'); INSERT INTO `sys_job_log` VALUES (11147, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-15 20:56:06'); INSERT INTO `sys_job_log` VALUES (11148, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-15 20:56:14'); INSERT INTO `sys_job_log` VALUES (11149, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-15 20:58:04'); INSERT INTO `sys_job_log` VALUES (11150, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-15 20:58:06'); INSERT INTO `sys_job_log` VALUES (11151, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-15 20:58:14'); INSERT INTO `sys_job_log` VALUES (11152, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-15 21:00:04'); INSERT INTO `sys_job_log` VALUES (11153, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-15 21:00:06'); INSERT INTO `sys_job_log` VALUES (11154, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-15 21:00:14'); INSERT INTO `sys_job_log` VALUES (11155, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-15 21:02:04'); INSERT INTO `sys_job_log` VALUES (11156, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-15 21:02:06'); INSERT INTO `sys_job_log` VALUES (11157, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 21:02:14'); INSERT INTO `sys_job_log` VALUES (11158, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-15 21:04:04'); INSERT INTO `sys_job_log` VALUES (11159, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-15 21:04:06'); INSERT INTO `sys_job_log` VALUES (11160, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-15 21:04:14'); INSERT INTO `sys_job_log` VALUES (11161, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:472毫秒', '0', '', '2022-01-15 21:06:04'); INSERT INTO `sys_job_log` VALUES (11162, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-15 21:06:06'); INSERT INTO `sys_job_log` VALUES (11163, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-15 21:06:14'); INSERT INTO `sys_job_log` VALUES (11164, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:131毫秒', '0', '', '2022-01-15 21:08:04'); INSERT INTO `sys_job_log` VALUES (11165, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-15 21:08:06'); INSERT INTO `sys_job_log` VALUES (11166, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-15 21:08:14'); INSERT INTO `sys_job_log` VALUES (11167, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-15 21:10:04'); INSERT INTO `sys_job_log` VALUES (11168, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-15 21:10:06'); INSERT INTO `sys_job_log` VALUES (11169, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-15 21:10:14'); INSERT INTO `sys_job_log` VALUES (11170, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-15 21:12:04'); INSERT INTO `sys_job_log` VALUES (11171, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-15 21:12:06'); INSERT INTO `sys_job_log` VALUES (11172, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-15 21:12:14'); INSERT INTO `sys_job_log` VALUES (11173, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-15 21:14:04'); INSERT INTO `sys_job_log` VALUES (11174, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-15 21:14:06'); INSERT INTO `sys_job_log` VALUES (11175, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-15 21:14:14'); INSERT INTO `sys_job_log` VALUES (11176, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:477毫秒', '0', '', '2022-01-15 21:16:04'); INSERT INTO `sys_job_log` VALUES (11177, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-15 21:16:06'); INSERT INTO `sys_job_log` VALUES (11178, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-15 21:16:14'); INSERT INTO `sys_job_log` VALUES (11179, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-15 21:18:04'); INSERT INTO `sys_job_log` VALUES (11180, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-15 21:18:06'); INSERT INTO `sys_job_log` VALUES (11181, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-15 21:18:14'); INSERT INTO `sys_job_log` VALUES (11182, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-15 21:20:04'); INSERT INTO `sys_job_log` VALUES (11183, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-15 21:20:06'); INSERT INTO `sys_job_log` VALUES (11184, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-15 21:20:14'); INSERT INTO `sys_job_log` VALUES (11185, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-15 21:22:04'); INSERT INTO `sys_job_log` VALUES (11186, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-15 21:22:06'); INSERT INTO `sys_job_log` VALUES (11187, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-15 21:22:14'); INSERT INTO `sys_job_log` VALUES (11188, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-15 21:24:04'); INSERT INTO `sys_job_log` VALUES (11189, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-15 21:24:06'); INSERT INTO `sys_job_log` VALUES (11190, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 21:24:14'); INSERT INTO `sys_job_log` VALUES (11191, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:354毫秒', '0', '', '2022-01-15 21:26:04'); INSERT INTO `sys_job_log` VALUES (11192, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:84毫秒', '0', '', '2022-01-15 21:26:06'); INSERT INTO `sys_job_log` VALUES (11193, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-15 21:26:14'); INSERT INTO `sys_job_log` VALUES (11194, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-15 21:28:04'); INSERT INTO `sys_job_log` VALUES (11195, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-15 21:28:06'); INSERT INTO `sys_job_log` VALUES (11196, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-15 21:28:14'); INSERT INTO `sys_job_log` VALUES (11197, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-15 21:30:04'); INSERT INTO `sys_job_log` VALUES (11198, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:97毫秒', '0', '', '2022-01-15 21:30:06'); INSERT INTO `sys_job_log` VALUES (11199, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-15 21:30:14'); INSERT INTO `sys_job_log` VALUES (11200, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-15 21:32:04'); INSERT INTO `sys_job_log` VALUES (11201, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-15 21:32:06'); INSERT INTO `sys_job_log` VALUES (11202, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-15 21:32:14'); INSERT INTO `sys_job_log` VALUES (11203, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-15 21:34:04'); INSERT INTO `sys_job_log` VALUES (11204, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-15 21:34:06'); INSERT INTO `sys_job_log` VALUES (11205, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-15 21:34:14'); INSERT INTO `sys_job_log` VALUES (11206, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:962毫秒', '0', '', '2022-01-15 21:36:04'); INSERT INTO `sys_job_log` VALUES (11207, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-15 21:36:06'); INSERT INTO `sys_job_log` VALUES (11208, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-15 21:36:14'); INSERT INTO `sys_job_log` VALUES (11209, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-15 21:38:04'); INSERT INTO `sys_job_log` VALUES (11210, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:331毫秒', '0', '', '2022-01-15 21:38:06'); INSERT INTO `sys_job_log` VALUES (11211, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-15 21:38:14'); INSERT INTO `sys_job_log` VALUES (11212, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-15 21:40:04'); INSERT INTO `sys_job_log` VALUES (11213, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-15 21:40:06'); INSERT INTO `sys_job_log` VALUES (11214, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-15 21:40:14'); INSERT INTO `sys_job_log` VALUES (11215, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-15 21:42:04'); INSERT INTO `sys_job_log` VALUES (11216, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-15 21:42:06'); INSERT INTO `sys_job_log` VALUES (11217, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-15 21:42:14'); INSERT INTO `sys_job_log` VALUES (11218, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-15 21:44:04'); INSERT INTO `sys_job_log` VALUES (11219, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 21:44:06'); INSERT INTO `sys_job_log` VALUES (11220, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-15 21:44:14'); INSERT INTO `sys_job_log` VALUES (11221, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:466毫秒', '0', '', '2022-01-15 21:46:04'); INSERT INTO `sys_job_log` VALUES (11222, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 21:46:06'); INSERT INTO `sys_job_log` VALUES (11223, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-15 21:46:14'); INSERT INTO `sys_job_log` VALUES (11224, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-15 21:48:04'); INSERT INTO `sys_job_log` VALUES (11225, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:299毫秒', '0', '', '2022-01-15 21:48:06'); INSERT INTO `sys_job_log` VALUES (11226, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-15 21:48:14'); INSERT INTO `sys_job_log` VALUES (11227, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-15 21:50:04'); INSERT INTO `sys_job_log` VALUES (11228, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-15 21:50:06'); INSERT INTO `sys_job_log` VALUES (11229, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-15 21:50:14'); INSERT INTO `sys_job_log` VALUES (11230, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-15 21:52:04'); INSERT INTO `sys_job_log` VALUES (11231, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 21:52:06'); INSERT INTO `sys_job_log` VALUES (11232, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-15 21:52:14'); INSERT INTO `sys_job_log` VALUES (11233, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:290毫秒', '0', '', '2022-01-15 21:54:04'); INSERT INTO `sys_job_log` VALUES (11234, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-15 21:54:06'); INSERT INTO `sys_job_log` VALUES (11235, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-15 21:54:14'); INSERT INTO `sys_job_log` VALUES (11236, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:359毫秒', '0', '', '2022-01-15 21:56:04'); INSERT INTO `sys_job_log` VALUES (11237, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-15 21:56:06'); INSERT INTO `sys_job_log` VALUES (11238, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-15 21:56:14'); INSERT INTO `sys_job_log` VALUES (11239, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-15 21:58:04'); INSERT INTO `sys_job_log` VALUES (11240, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 21:58:06'); INSERT INTO `sys_job_log` VALUES (11241, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-15 21:58:14'); INSERT INTO `sys_job_log` VALUES (11242, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:22毫秒', '0', '', '2022-01-15 22:00:04'); INSERT INTO `sys_job_log` VALUES (11243, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-15 22:00:06'); INSERT INTO `sys_job_log` VALUES (11244, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-15 22:00:14'); INSERT INTO `sys_job_log` VALUES (11245, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:535毫秒', '0', '', '2022-01-15 22:02:04'); INSERT INTO `sys_job_log` VALUES (11246, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-15 22:02:06'); INSERT INTO `sys_job_log` VALUES (11247, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-15 22:02:14'); INSERT INTO `sys_job_log` VALUES (11248, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:273毫秒', '0', '', '2022-01-15 22:04:04'); INSERT INTO `sys_job_log` VALUES (11249, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-15 22:04:06'); INSERT INTO `sys_job_log` VALUES (11250, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-15 22:04:14'); INSERT INTO `sys_job_log` VALUES (11251, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:535毫秒', '0', '', '2022-01-15 22:06:04'); INSERT INTO `sys_job_log` VALUES (11252, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-15 22:06:06'); INSERT INTO `sys_job_log` VALUES (11253, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-15 22:06:14'); INSERT INTO `sys_job_log` VALUES (11254, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-15 22:08:05'); INSERT INTO `sys_job_log` VALUES (11255, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 22:08:06'); INSERT INTO `sys_job_log` VALUES (11256, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-15 22:08:14'); INSERT INTO `sys_job_log` VALUES (11257, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:397毫秒', '0', '', '2022-01-15 22:10:04'); INSERT INTO `sys_job_log` VALUES (11258, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-15 22:10:06'); INSERT INTO `sys_job_log` VALUES (11259, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:200毫秒', '0', '', '2022-01-15 22:10:14'); INSERT INTO `sys_job_log` VALUES (11260, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-15 22:12:04'); INSERT INTO `sys_job_log` VALUES (11261, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-15 22:12:06'); INSERT INTO `sys_job_log` VALUES (11262, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-15 22:12:14'); INSERT INTO `sys_job_log` VALUES (11263, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:266毫秒', '0', '', '2022-01-15 22:14:04'); INSERT INTO `sys_job_log` VALUES (11264, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-15 22:14:06'); INSERT INTO `sys_job_log` VALUES (11265, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-15 22:14:14'); INSERT INTO `sys_job_log` VALUES (11266, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-15 22:16:04'); INSERT INTO `sys_job_log` VALUES (11267, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1毫秒', '0', '', '2022-01-15 22:16:06'); INSERT INTO `sys_job_log` VALUES (11268, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2毫秒', '0', '', '2022-01-15 22:16:14'); INSERT INTO `sys_job_log` VALUES (11269, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 22:18:06'); INSERT INTO `sys_job_log` VALUES (11270, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-15 22:18:08'); INSERT INTO `sys_job_log` VALUES (11271, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-15 22:18:14'); INSERT INTO `sys_job_log` VALUES (11272, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-15 22:20:04'); INSERT INTO `sys_job_log` VALUES (11273, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-15 22:20:06'); INSERT INTO `sys_job_log` VALUES (11274, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-15 22:20:14'); INSERT INTO `sys_job_log` VALUES (11275, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-15 22:22:04'); INSERT INTO `sys_job_log` VALUES (11276, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-15 22:22:06'); INSERT INTO `sys_job_log` VALUES (11277, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:406毫秒', '0', '', '2022-01-15 22:22:14'); INSERT INTO `sys_job_log` VALUES (11278, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-15 22:24:04'); INSERT INTO `sys_job_log` VALUES (11279, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 22:24:06'); INSERT INTO `sys_job_log` VALUES (11280, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-15 22:24:14'); INSERT INTO `sys_job_log` VALUES (11281, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:301毫秒', '0', '', '2022-01-15 22:26:04'); INSERT INTO `sys_job_log` VALUES (11282, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-15 22:26:06'); INSERT INTO `sys_job_log` VALUES (11283, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-15 22:26:14'); INSERT INTO `sys_job_log` VALUES (11284, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-15 22:28:04'); INSERT INTO `sys_job_log` VALUES (11285, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-15 22:28:06'); INSERT INTO `sys_job_log` VALUES (11286, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-15 22:28:14'); INSERT INTO `sys_job_log` VALUES (11287, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-15 22:30:04'); INSERT INTO `sys_job_log` VALUES (11288, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-15 22:30:06'); INSERT INTO `sys_job_log` VALUES (11289, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:679毫秒', '0', '', '2022-01-15 22:30:14'); INSERT INTO `sys_job_log` VALUES (11290, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:686毫秒', '0', '', '2022-01-15 22:32:04'); INSERT INTO `sys_job_log` VALUES (11291, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1592毫秒', '0', '', '2022-01-15 22:32:07'); INSERT INTO `sys_job_log` VALUES (11292, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-15 22:32:14'); INSERT INTO `sys_job_log` VALUES (11293, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-15 22:34:04'); INSERT INTO `sys_job_log` VALUES (11294, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:277毫秒', '0', '', '2022-01-15 22:34:06'); INSERT INTO `sys_job_log` VALUES (11295, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-15 22:34:14'); INSERT INTO `sys_job_log` VALUES (11296, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:455毫秒', '0', '', '2022-01-15 22:36:04'); INSERT INTO `sys_job_log` VALUES (11297, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-15 22:36:06'); INSERT INTO `sys_job_log` VALUES (11298, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-15 22:36:14'); INSERT INTO `sys_job_log` VALUES (11299, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-15 22:38:04'); INSERT INTO `sys_job_log` VALUES (11300, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-15 22:38:06'); INSERT INTO `sys_job_log` VALUES (11301, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-15 22:38:14'); INSERT INTO `sys_job_log` VALUES (11302, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-15 22:40:04'); INSERT INTO `sys_job_log` VALUES (11303, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-15 22:40:06'); INSERT INTO `sys_job_log` VALUES (11304, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-15 22:40:14'); INSERT INTO `sys_job_log` VALUES (11305, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-15 22:42:04'); INSERT INTO `sys_job_log` VALUES (11306, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-15 22:42:06'); INSERT INTO `sys_job_log` VALUES (11307, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-15 22:42:14'); INSERT INTO `sys_job_log` VALUES (11308, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-15 22:44:04'); INSERT INTO `sys_job_log` VALUES (11309, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-15 22:44:06'); INSERT INTO `sys_job_log` VALUES (11310, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-15 22:44:14'); INSERT INTO `sys_job_log` VALUES (11311, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:433毫秒', '0', '', '2022-01-15 22:46:04'); INSERT INTO `sys_job_log` VALUES (11312, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 22:46:06'); INSERT INTO `sys_job_log` VALUES (11313, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-15 22:46:14'); INSERT INTO `sys_job_log` VALUES (11314, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-15 22:48:04'); INSERT INTO `sys_job_log` VALUES (11315, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 22:48:06'); INSERT INTO `sys_job_log` VALUES (11316, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:915毫秒', '0', '', '2022-01-15 22:48:14'); INSERT INTO `sys_job_log` VALUES (11317, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-15 22:50:04'); INSERT INTO `sys_job_log` VALUES (11318, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-15 22:50:06'); INSERT INTO `sys_job_log` VALUES (11319, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:345毫秒', '0', '', '2022-01-15 22:50:14'); INSERT INTO `sys_job_log` VALUES (11320, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-15 22:52:04'); INSERT INTO `sys_job_log` VALUES (11321, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-15 22:52:06'); INSERT INTO `sys_job_log` VALUES (11322, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-15 22:52:14'); INSERT INTO `sys_job_log` VALUES (11323, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-15 22:54:04'); INSERT INTO `sys_job_log` VALUES (11324, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-15 22:54:06'); INSERT INTO `sys_job_log` VALUES (11325, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-15 22:54:14'); INSERT INTO `sys_job_log` VALUES (11326, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:361毫秒', '0', '', '2022-01-15 22:56:04'); INSERT INTO `sys_job_log` VALUES (11327, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-15 22:56:06'); INSERT INTO `sys_job_log` VALUES (11328, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:329毫秒', '0', '', '2022-01-15 22:56:14'); INSERT INTO `sys_job_log` VALUES (11329, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-15 22:58:04'); INSERT INTO `sys_job_log` VALUES (11330, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-15 22:58:06'); INSERT INTO `sys_job_log` VALUES (11331, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-15 22:58:14'); INSERT INTO `sys_job_log` VALUES (11332, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-15 23:00:04'); INSERT INTO `sys_job_log` VALUES (11333, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-15 23:00:06'); INSERT INTO `sys_job_log` VALUES (11334, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1199毫秒', '0', '', '2022-01-15 23:00:15'); INSERT INTO `sys_job_log` VALUES (11335, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:511毫秒', '0', '', '2022-01-15 23:02:04'); INSERT INTO `sys_job_log` VALUES (11336, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-15 23:02:06'); INSERT INTO `sys_job_log` VALUES (11337, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-15 23:02:14'); INSERT INTO `sys_job_log` VALUES (11338, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:293毫秒', '0', '', '2022-01-15 23:04:04'); INSERT INTO `sys_job_log` VALUES (11339, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 23:04:06'); INSERT INTO `sys_job_log` VALUES (11340, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:226毫秒', '0', '', '2022-01-15 23:04:14'); INSERT INTO `sys_job_log` VALUES (11341, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:338毫秒', '0', '', '2022-01-15 23:06:04'); INSERT INTO `sys_job_log` VALUES (11342, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-15 23:06:06'); INSERT INTO `sys_job_log` VALUES (11343, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-15 23:06:14'); INSERT INTO `sys_job_log` VALUES (11344, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-15 23:08:04'); INSERT INTO `sys_job_log` VALUES (11345, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-15 23:08:06'); INSERT INTO `sys_job_log` VALUES (11346, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-15 23:08:14'); INSERT INTO `sys_job_log` VALUES (11347, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-15 23:10:04'); INSERT INTO `sys_job_log` VALUES (11348, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:289毫秒', '0', '', '2022-01-15 23:10:06'); INSERT INTO `sys_job_log` VALUES (11349, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1060毫秒', '0', '', '2022-01-15 23:10:15'); INSERT INTO `sys_job_log` VALUES (11350, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-15 23:12:04'); INSERT INTO `sys_job_log` VALUES (11351, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-15 23:12:06'); INSERT INTO `sys_job_log` VALUES (11352, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-15 23:12:14'); INSERT INTO `sys_job_log` VALUES (11353, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:281毫秒', '0', '', '2022-01-15 23:14:04'); INSERT INTO `sys_job_log` VALUES (11354, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-15 23:14:06'); INSERT INTO `sys_job_log` VALUES (11355, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-15 23:14:14'); INSERT INTO `sys_job_log` VALUES (11356, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:288毫秒', '0', '', '2022-01-15 23:16:04'); INSERT INTO `sys_job_log` VALUES (11357, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-15 23:16:06'); INSERT INTO `sys_job_log` VALUES (11358, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1030毫秒', '0', '', '2022-01-15 23:16:15'); INSERT INTO `sys_job_log` VALUES (11359, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:504毫秒', '0', '', '2022-01-15 23:18:04'); INSERT INTO `sys_job_log` VALUES (11360, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-15 23:18:06'); INSERT INTO `sys_job_log` VALUES (11361, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-15 23:18:14'); INSERT INTO `sys_job_log` VALUES (11362, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:302毫秒', '0', '', '2022-01-15 23:20:04'); INSERT INTO `sys_job_log` VALUES (11363, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-15 23:20:06'); INSERT INTO `sys_job_log` VALUES (11364, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-15 23:20:14'); INSERT INTO `sys_job_log` VALUES (11365, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2261毫秒', '0', '', '2022-01-16 17:10:06'); INSERT INTO `sys_job_log` VALUES (11366, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2005毫秒', '0', '', '2022-01-16 17:10:08'); INSERT INTO `sys_job_log` VALUES (11367, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-16 17:10:16'); INSERT INTO `sys_job_log` VALUES (11368, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:438毫秒', '0', '', '2022-01-16 17:12:04'); INSERT INTO `sys_job_log` VALUES (11369, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-16 17:12:06'); INSERT INTO `sys_job_log` VALUES (11370, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-16 17:12:14'); INSERT INTO `sys_job_log` VALUES (11371, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-16 17:14:04'); INSERT INTO `sys_job_log` VALUES (11372, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-16 17:14:06'); INSERT INTO `sys_job_log` VALUES (11373, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-16 17:14:14'); INSERT INTO `sys_job_log` VALUES (11374, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-16 17:16:04'); INSERT INTO `sys_job_log` VALUES (11375, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-16 17:16:06'); INSERT INTO `sys_job_log` VALUES (11376, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-16 17:16:14'); INSERT INTO `sys_job_log` VALUES (11377, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-16 17:18:04'); INSERT INTO `sys_job_log` VALUES (11378, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-16 17:18:06'); INSERT INTO `sys_job_log` VALUES (11379, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-16 17:18:14'); INSERT INTO `sys_job_log` VALUES (11380, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-16 17:20:04'); INSERT INTO `sys_job_log` VALUES (11381, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-16 17:20:06'); INSERT INTO `sys_job_log` VALUES (11382, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1039毫秒', '0', '', '2022-01-16 17:20:15'); INSERT INTO `sys_job_log` VALUES (11383, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:259毫秒', '0', '', '2022-01-16 17:22:04'); INSERT INTO `sys_job_log` VALUES (11384, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-16 17:22:06'); INSERT INTO `sys_job_log` VALUES (11385, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-16 17:22:14'); INSERT INTO `sys_job_log` VALUES (11386, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-16 17:24:04'); INSERT INTO `sys_job_log` VALUES (11387, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-16 17:24:06'); INSERT INTO `sys_job_log` VALUES (11388, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-16 17:24:14'); INSERT INTO `sys_job_log` VALUES (11389, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-16 17:26:04'); INSERT INTO `sys_job_log` VALUES (11390, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:86毫秒', '0', '', '2022-01-16 17:26:06'); INSERT INTO `sys_job_log` VALUES (11391, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-16 17:26:14'); INSERT INTO `sys_job_log` VALUES (11392, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-16 17:28:04'); INSERT INTO `sys_job_log` VALUES (11393, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-16 17:28:06'); INSERT INTO `sys_job_log` VALUES (11394, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1151毫秒', '0', '', '2022-01-16 17:28:15'); INSERT INTO `sys_job_log` VALUES (11395, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-16 17:30:04'); INSERT INTO `sys_job_log` VALUES (11396, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-16 17:30:06'); INSERT INTO `sys_job_log` VALUES (11397, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1053毫秒', '0', '', '2022-01-16 17:30:15'); INSERT INTO `sys_job_log` VALUES (11398, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-16 17:32:04'); INSERT INTO `sys_job_log` VALUES (11399, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-16 17:32:06'); INSERT INTO `sys_job_log` VALUES (11400, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:190毫秒', '0', '', '2022-01-16 17:32:14'); INSERT INTO `sys_job_log` VALUES (11401, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-16 17:34:04'); INSERT INTO `sys_job_log` VALUES (11402, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-16 17:34:06'); INSERT INTO `sys_job_log` VALUES (11403, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-16 17:34:14'); INSERT INTO `sys_job_log` VALUES (11404, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:280毫秒', '0', '', '2022-01-16 17:36:04'); INSERT INTO `sys_job_log` VALUES (11405, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-16 17:36:06'); INSERT INTO `sys_job_log` VALUES (11406, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1434毫秒', '0', '', '2022-01-16 17:36:15'); INSERT INTO `sys_job_log` VALUES (11407, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-16 17:38:04'); INSERT INTO `sys_job_log` VALUES (11408, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1154毫秒', '0', '', '2022-01-16 17:38:07'); INSERT INTO `sys_job_log` VALUES (11409, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-16 17:38:14'); INSERT INTO `sys_job_log` VALUES (11410, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-16 17:40:04'); INSERT INTO `sys_job_log` VALUES (11411, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-16 17:40:06'); INSERT INTO `sys_job_log` VALUES (11412, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-16 17:40:14'); INSERT INTO `sys_job_log` VALUES (11413, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-16 17:42:04'); INSERT INTO `sys_job_log` VALUES (11414, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-16 17:42:06'); INSERT INTO `sys_job_log` VALUES (11415, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-16 17:42:14'); INSERT INTO `sys_job_log` VALUES (11416, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-16 17:44:04'); INSERT INTO `sys_job_log` VALUES (11417, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-16 17:44:06'); INSERT INTO `sys_job_log` VALUES (11418, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-16 17:44:14'); INSERT INTO `sys_job_log` VALUES (11419, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-16 17:46:04'); INSERT INTO `sys_job_log` VALUES (11420, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-16 17:46:06'); INSERT INTO `sys_job_log` VALUES (11421, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-16 17:46:14'); INSERT INTO `sys_job_log` VALUES (11422, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-16 17:48:06'); INSERT INTO `sys_job_log` VALUES (11423, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-16 17:48:08'); INSERT INTO `sys_job_log` VALUES (11424, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-16 17:48:16'); INSERT INTO `sys_job_log` VALUES (11425, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-16 17:50:04'); INSERT INTO `sys_job_log` VALUES (11426, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-16 17:50:06'); INSERT INTO `sys_job_log` VALUES (11427, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-16 17:50:14'); INSERT INTO `sys_job_log` VALUES (11428, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-16 17:52:04'); INSERT INTO `sys_job_log` VALUES (11429, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-16 17:52:06'); INSERT INTO `sys_job_log` VALUES (11430, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-16 17:52:14'); INSERT INTO `sys_job_log` VALUES (11431, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-16 17:54:04'); INSERT INTO `sys_job_log` VALUES (11432, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-16 17:54:06'); INSERT INTO `sys_job_log` VALUES (11433, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-16 17:54:14'); INSERT INTO `sys_job_log` VALUES (11434, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-16 17:56:04'); INSERT INTO `sys_job_log` VALUES (11435, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-16 17:56:06'); INSERT INTO `sys_job_log` VALUES (11436, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-16 17:56:14'); INSERT INTO `sys_job_log` VALUES (11437, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-16 17:58:04'); INSERT INTO `sys_job_log` VALUES (11438, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-16 17:58:06'); INSERT INTO `sys_job_log` VALUES (11439, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-16 17:58:14'); INSERT INTO `sys_job_log` VALUES (11440, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-16 18:00:04'); INSERT INTO `sys_job_log` VALUES (11441, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:257毫秒', '0', '', '2022-01-16 18:00:06'); INSERT INTO `sys_job_log` VALUES (11442, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-16 18:00:14'); INSERT INTO `sys_job_log` VALUES (11443, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:277毫秒', '0', '', '2022-01-16 18:02:04'); INSERT INTO `sys_job_log` VALUES (11444, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-16 18:02:06'); INSERT INTO `sys_job_log` VALUES (11445, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-16 18:02:14'); INSERT INTO `sys_job_log` VALUES (11446, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-16 18:04:04'); INSERT INTO `sys_job_log` VALUES (11447, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-16 18:04:06'); INSERT INTO `sys_job_log` VALUES (11448, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-16 18:04:14'); INSERT INTO `sys_job_log` VALUES (11449, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-16 18:06:04'); INSERT INTO `sys_job_log` VALUES (11450, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-16 18:06:06'); INSERT INTO `sys_job_log` VALUES (11451, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-16 18:06:14'); INSERT INTO `sys_job_log` VALUES (11452, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-16 18:08:04'); INSERT INTO `sys_job_log` VALUES (11453, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-16 18:08:06'); INSERT INTO `sys_job_log` VALUES (11454, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-16 18:08:14'); INSERT INTO `sys_job_log` VALUES (11455, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-16 18:10:04'); INSERT INTO `sys_job_log` VALUES (11456, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-16 18:10:06'); INSERT INTO `sys_job_log` VALUES (11457, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-16 18:10:14'); INSERT INTO `sys_job_log` VALUES (11458, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-16 18:12:04'); INSERT INTO `sys_job_log` VALUES (11459, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-16 18:12:06'); INSERT INTO `sys_job_log` VALUES (11460, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-16 18:12:14'); INSERT INTO `sys_job_log` VALUES (11461, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-16 18:14:04'); INSERT INTO `sys_job_log` VALUES (11462, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:260毫秒', '0', '', '2022-01-16 18:14:06'); INSERT INTO `sys_job_log` VALUES (11463, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-16 18:14:16'); INSERT INTO `sys_job_log` VALUES (11464, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:225毫秒', '0', '', '2022-01-16 18:16:04'); INSERT INTO `sys_job_log` VALUES (11465, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-16 18:16:06'); INSERT INTO `sys_job_log` VALUES (11466, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2011毫秒', '0', '', '2022-01-16 18:16:16'); INSERT INTO `sys_job_log` VALUES (11467, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-16 18:18:04'); INSERT INTO `sys_job_log` VALUES (11468, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-16 18:18:06'); INSERT INTO `sys_job_log` VALUES (11469, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-16 18:18:14'); INSERT INTO `sys_job_log` VALUES (11470, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-16 18:20:04'); INSERT INTO `sys_job_log` VALUES (11471, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-16 18:20:06'); INSERT INTO `sys_job_log` VALUES (11472, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:93毫秒', '0', '', '2022-01-16 18:20:14'); INSERT INTO `sys_job_log` VALUES (11473, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-16 18:22:04'); INSERT INTO `sys_job_log` VALUES (11474, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-16 18:22:06'); INSERT INTO `sys_job_log` VALUES (11475, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-16 18:22:14'); INSERT INTO `sys_job_log` VALUES (11476, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:261毫秒', '0', '', '2022-01-16 18:24:04'); INSERT INTO `sys_job_log` VALUES (11477, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-16 18:24:06'); INSERT INTO `sys_job_log` VALUES (11478, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-16 18:24:14'); INSERT INTO `sys_job_log` VALUES (11479, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:263毫秒', '0', '', '2022-01-16 18:26:04'); INSERT INTO `sys_job_log` VALUES (11480, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-16 18:26:06'); INSERT INTO `sys_job_log` VALUES (11481, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-16 18:26:14'); INSERT INTO `sys_job_log` VALUES (11482, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-16 18:28:04'); INSERT INTO `sys_job_log` VALUES (11483, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:340毫秒', '0', '', '2022-01-16 18:28:06'); INSERT INTO `sys_job_log` VALUES (11484, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-16 18:28:14'); INSERT INTO `sys_job_log` VALUES (11485, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-16 18:30:04'); INSERT INTO `sys_job_log` VALUES (11486, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-16 18:30:06'); INSERT INTO `sys_job_log` VALUES (11487, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-16 18:30:14'); INSERT INTO `sys_job_log` VALUES (11488, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-16 18:32:04'); INSERT INTO `sys_job_log` VALUES (11489, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:286毫秒', '0', '', '2022-01-16 18:32:06'); INSERT INTO `sys_job_log` VALUES (11490, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-16 18:32:14'); INSERT INTO `sys_job_log` VALUES (11491, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-16 18:34:04'); INSERT INTO `sys_job_log` VALUES (11492, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:87毫秒', '0', '', '2022-01-16 18:34:06'); INSERT INTO `sys_job_log` VALUES (11493, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-16 18:34:14'); INSERT INTO `sys_job_log` VALUES (11494, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:289毫秒', '0', '', '2022-01-16 18:36:04'); INSERT INTO `sys_job_log` VALUES (11495, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:88毫秒', '0', '', '2022-01-16 18:36:06'); INSERT INTO `sys_job_log` VALUES (11496, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-16 18:36:14'); INSERT INTO `sys_job_log` VALUES (11497, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-16 18:38:04'); INSERT INTO `sys_job_log` VALUES (11498, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-16 18:38:06'); INSERT INTO `sys_job_log` VALUES (11499, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-16 18:38:14'); INSERT INTO `sys_job_log` VALUES (11500, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:241毫秒', '0', '', '2022-01-16 18:40:04'); INSERT INTO `sys_job_log` VALUES (11501, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-16 18:40:06'); INSERT INTO `sys_job_log` VALUES (11502, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-16 18:40:14'); INSERT INTO `sys_job_log` VALUES (11503, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-16 18:42:04'); INSERT INTO `sys_job_log` VALUES (11504, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-16 18:42:06'); INSERT INTO `sys_job_log` VALUES (11505, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:272毫秒', '0', '', '2022-01-16 18:42:14'); INSERT INTO `sys_job_log` VALUES (11506, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:250毫秒', '0', '', '2022-01-16 18:44:04'); INSERT INTO `sys_job_log` VALUES (11507, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-16 18:44:06'); INSERT INTO `sys_job_log` VALUES (11508, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-16 18:44:14'); INSERT INTO `sys_job_log` VALUES (11509, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-16 18:46:04'); INSERT INTO `sys_job_log` VALUES (11510, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-16 18:46:06'); INSERT INTO `sys_job_log` VALUES (11511, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1047毫秒', '0', '', '2022-01-16 18:46:15'); INSERT INTO `sys_job_log` VALUES (11512, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-16 18:48:04'); INSERT INTO `sys_job_log` VALUES (11513, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-16 18:48:06'); INSERT INTO `sys_job_log` VALUES (11514, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:91毫秒', '0', '', '2022-01-16 18:48:14'); INSERT INTO `sys_job_log` VALUES (11515, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:299毫秒', '0', '', '2022-01-16 18:50:04'); INSERT INTO `sys_job_log` VALUES (11516, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-16 18:50:06'); INSERT INTO `sys_job_log` VALUES (11517, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-16 18:50:14'); INSERT INTO `sys_job_log` VALUES (11518, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-16 18:52:04'); INSERT INTO `sys_job_log` VALUES (11519, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-16 18:52:06'); INSERT INTO `sys_job_log` VALUES (11520, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-16 18:52:14'); INSERT INTO `sys_job_log` VALUES (11521, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-16 18:54:04'); INSERT INTO `sys_job_log` VALUES (11522, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-16 18:54:06'); INSERT INTO `sys_job_log` VALUES (11523, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-16 18:54:14'); INSERT INTO `sys_job_log` VALUES (11524, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-16 18:56:04'); INSERT INTO `sys_job_log` VALUES (11525, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:297毫秒', '0', '', '2022-01-16 18:56:06'); INSERT INTO `sys_job_log` VALUES (11526, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-16 18:56:14'); INSERT INTO `sys_job_log` VALUES (11527, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-16 18:58:04'); INSERT INTO `sys_job_log` VALUES (11528, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-16 18:58:06'); INSERT INTO `sys_job_log` VALUES (11529, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-16 18:58:14'); INSERT INTO `sys_job_log` VALUES (11530, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:285毫秒', '0', '', '2022-01-16 19:00:04'); INSERT INTO `sys_job_log` VALUES (11531, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-16 19:00:06'); INSERT INTO `sys_job_log` VALUES (11532, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-16 19:00:14'); INSERT INTO `sys_job_log` VALUES (11533, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-16 19:02:04'); INSERT INTO `sys_job_log` VALUES (11534, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-16 19:02:06'); INSERT INTO `sys_job_log` VALUES (11535, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-16 19:02:14'); INSERT INTO `sys_job_log` VALUES (11536, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-16 19:04:04'); INSERT INTO `sys_job_log` VALUES (11537, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:268毫秒', '0', '', '2022-01-16 19:04:06'); INSERT INTO `sys_job_log` VALUES (11538, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-16 19:04:14'); INSERT INTO `sys_job_log` VALUES (11539, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-16 19:06:04'); INSERT INTO `sys_job_log` VALUES (11540, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-16 19:06:06'); INSERT INTO `sys_job_log` VALUES (11541, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-16 19:06:14'); INSERT INTO `sys_job_log` VALUES (11542, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:254毫秒', '0', '', '2022-01-16 19:08:04'); INSERT INTO `sys_job_log` VALUES (11543, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-16 19:08:06'); INSERT INTO `sys_job_log` VALUES (11544, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-16 19:08:14'); INSERT INTO `sys_job_log` VALUES (11545, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-16 19:10:04'); INSERT INTO `sys_job_log` VALUES (11546, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-16 19:10:06'); INSERT INTO `sys_job_log` VALUES (11547, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:205毫秒', '0', '', '2022-01-16 19:10:14'); INSERT INTO `sys_job_log` VALUES (11548, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2006毫秒', '0', '', '2022-01-16 19:12:06'); INSERT INTO `sys_job_log` VALUES (11549, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2004毫秒', '0', '', '2022-01-16 19:12:08'); INSERT INTO `sys_job_log` VALUES (11550, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2002毫秒', '0', '', '2022-01-16 19:12:16'); INSERT INTO `sys_job_log` VALUES (11551, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-16 19:14:04'); INSERT INTO `sys_job_log` VALUES (11552, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-16 19:14:06'); INSERT INTO `sys_job_log` VALUES (11553, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:286毫秒', '0', '', '2022-01-16 19:14:14'); INSERT INTO `sys_job_log` VALUES (11554, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2011毫秒', '0', '', '2022-01-16 19:16:06'); INSERT INTO `sys_job_log` VALUES (11555, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1174毫秒', '0', '', '2022-01-16 19:16:07'); INSERT INTO `sys_job_log` VALUES (11556, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-16 19:16:14'); INSERT INTO `sys_job_log` VALUES (11557, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:275毫秒', '0', '', '2022-01-16 19:18:04'); INSERT INTO `sys_job_log` VALUES (11558, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-16 19:18:06'); INSERT INTO `sys_job_log` VALUES (11559, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:136毫秒', '0', '', '2022-01-16 19:18:14'); INSERT INTO `sys_job_log` VALUES (11560, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:248毫秒', '0', '', '2022-01-16 19:20:04'); INSERT INTO `sys_job_log` VALUES (11561, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-16 19:20:06'); INSERT INTO `sys_job_log` VALUES (11562, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-16 19:20:16'); INSERT INTO `sys_job_log` VALUES (11563, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-16 19:22:04'); INSERT INTO `sys_job_log` VALUES (11564, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-16 19:22:06'); INSERT INTO `sys_job_log` VALUES (11565, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-16 19:22:14'); INSERT INTO `sys_job_log` VALUES (11566, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-16 19:24:04'); INSERT INTO `sys_job_log` VALUES (11567, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:85毫秒', '0', '', '2022-01-16 19:24:06'); INSERT INTO `sys_job_log` VALUES (11568, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-16 19:24:14'); INSERT INTO `sys_job_log` VALUES (11569, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-16 19:26:04'); INSERT INTO `sys_job_log` VALUES (11570, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-16 19:26:06'); INSERT INTO `sys_job_log` VALUES (11571, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-16 19:26:14'); INSERT INTO `sys_job_log` VALUES (11572, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-16 19:28:04'); INSERT INTO `sys_job_log` VALUES (11573, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-16 19:28:06'); INSERT INTO `sys_job_log` VALUES (11574, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:287毫秒', '0', '', '2022-01-16 19:28:14'); INSERT INTO `sys_job_log` VALUES (11575, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1312毫秒', '0', '', '2022-01-16 19:30:05'); INSERT INTO `sys_job_log` VALUES (11576, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-16 19:30:06'); INSERT INTO `sys_job_log` VALUES (11577, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:109毫秒', '0', '', '2022-01-16 19:30:14'); INSERT INTO `sys_job_log` VALUES (11578, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-16 19:32:04'); INSERT INTO `sys_job_log` VALUES (11579, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-16 19:32:06'); INSERT INTO `sys_job_log` VALUES (11580, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:216毫秒', '0', '', '2022-01-16 19:32:14'); INSERT INTO `sys_job_log` VALUES (11581, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:324毫秒', '0', '', '2022-01-16 19:34:04'); INSERT INTO `sys_job_log` VALUES (11582, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-16 19:34:06'); INSERT INTO `sys_job_log` VALUES (11583, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-16 19:34:14'); INSERT INTO `sys_job_log` VALUES (11584, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2008毫秒', '0', '', '2022-01-16 19:36:06'); INSERT INTO `sys_job_log` VALUES (11585, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2017毫秒', '0', '', '2022-01-16 19:36:08'); INSERT INTO `sys_job_log` VALUES (11586, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-16 19:36:14'); INSERT INTO `sys_job_log` VALUES (11587, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:361毫秒', '0', '', '2022-01-16 19:38:04'); INSERT INTO `sys_job_log` VALUES (11588, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-16 19:38:06'); INSERT INTO `sys_job_log` VALUES (11589, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-16 19:38:14'); INSERT INTO `sys_job_log` VALUES (11590, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:246毫秒', '0', '', '2022-01-16 19:40:04'); INSERT INTO `sys_job_log` VALUES (11591, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-16 19:40:06'); INSERT INTO `sys_job_log` VALUES (11592, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-16 19:40:16'); INSERT INTO `sys_job_log` VALUES (11593, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2017毫秒', '0', '', '2022-01-16 19:42:06'); INSERT INTO `sys_job_log` VALUES (11594, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2008毫秒', '0', '', '2022-01-16 19:42:08'); INSERT INTO `sys_job_log` VALUES (11595, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1106毫秒', '0', '', '2022-01-16 19:42:15'); INSERT INTO `sys_job_log` VALUES (11596, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-16 19:44:04'); INSERT INTO `sys_job_log` VALUES (11597, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-16 19:44:06'); INSERT INTO `sys_job_log` VALUES (11598, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-16 19:44:14'); INSERT INTO `sys_job_log` VALUES (11599, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-16 19:46:04'); INSERT INTO `sys_job_log` VALUES (11600, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-16 19:46:06'); INSERT INTO `sys_job_log` VALUES (11601, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-16 19:46:14'); INSERT INTO `sys_job_log` VALUES (11602, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-16 19:48:04'); INSERT INTO `sys_job_log` VALUES (11603, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-16 19:48:06'); INSERT INTO `sys_job_log` VALUES (11604, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-16 19:48:14'); INSERT INTO `sys_job_log` VALUES (11605, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-16 19:50:04'); INSERT INTO `sys_job_log` VALUES (11606, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-16 19:50:06'); INSERT INTO `sys_job_log` VALUES (11607, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-16 19:50:14'); INSERT INTO `sys_job_log` VALUES (11608, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2019毫秒', '0', '', '2022-01-16 19:52:06'); INSERT INTO `sys_job_log` VALUES (11609, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-16 19:52:06'); INSERT INTO `sys_job_log` VALUES (11610, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-16 19:52:14'); INSERT INTO `sys_job_log` VALUES (11611, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:286毫秒', '0', '', '2022-01-16 19:54:04'); INSERT INTO `sys_job_log` VALUES (11612, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-16 19:54:06'); INSERT INTO `sys_job_log` VALUES (11613, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-16 19:54:14'); INSERT INTO `sys_job_log` VALUES (11614, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-16 19:56:04'); INSERT INTO `sys_job_log` VALUES (11615, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2012毫秒', '0', '', '2022-01-16 19:56:08'); INSERT INTO `sys_job_log` VALUES (11616, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1213毫秒', '0', '', '2022-01-16 19:56:15'); INSERT INTO `sys_job_log` VALUES (11617, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-16 19:58:04'); INSERT INTO `sys_job_log` VALUES (11618, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-16 19:58:06'); INSERT INTO `sys_job_log` VALUES (11619, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1114毫秒', '0', '', '2022-01-16 19:58:15'); INSERT INTO `sys_job_log` VALUES (11620, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1309毫秒', '0', '', '2022-01-16 20:00:05'); INSERT INTO `sys_job_log` VALUES (11621, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-16 20:00:06'); INSERT INTO `sys_job_log` VALUES (11622, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2015毫秒', '0', '', '2022-01-16 20:00:16'); INSERT INTO `sys_job_log` VALUES (11623, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-16 20:02:04'); INSERT INTO `sys_job_log` VALUES (11624, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-16 20:02:06'); INSERT INTO `sys_job_log` VALUES (11625, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-16 20:02:14'); INSERT INTO `sys_job_log` VALUES (11626, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-16 20:04:04'); INSERT INTO `sys_job_log` VALUES (11627, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:62毫秒', '0', '', '2022-01-16 20:04:06'); INSERT INTO `sys_job_log` VALUES (11628, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2003毫秒', '0', '', '2022-01-16 20:04:16'); INSERT INTO `sys_job_log` VALUES (11629, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:382毫秒', '0', '', '2022-01-16 20:06:04'); INSERT INTO `sys_job_log` VALUES (11630, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-16 20:06:06'); INSERT INTO `sys_job_log` VALUES (11631, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:472毫秒', '0', '', '2022-01-16 20:06:14'); INSERT INTO `sys_job_log` VALUES (11632, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-16 20:08:04'); INSERT INTO `sys_job_log` VALUES (11633, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:271毫秒', '0', '', '2022-01-16 20:08:06'); INSERT INTO `sys_job_log` VALUES (11634, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-16 20:08:14'); INSERT INTO `sys_job_log` VALUES (11635, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:823毫秒', '0', '', '2022-01-16 20:10:04'); INSERT INTO `sys_job_log` VALUES (11636, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-16 20:10:06'); INSERT INTO `sys_job_log` VALUES (11637, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-16 20:10:14'); INSERT INTO `sys_job_log` VALUES (11638, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:389毫秒', '0', '', '2022-01-16 20:12:04'); INSERT INTO `sys_job_log` VALUES (11639, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-16 20:12:06'); INSERT INTO `sys_job_log` VALUES (11640, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-16 20:12:14'); INSERT INTO `sys_job_log` VALUES (11641, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:237毫秒', '0', '', '2022-01-16 20:14:04'); INSERT INTO `sys_job_log` VALUES (11642, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-16 20:14:06'); INSERT INTO `sys_job_log` VALUES (11643, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-16 20:14:14'); INSERT INTO `sys_job_log` VALUES (11644, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-16 20:16:04'); INSERT INTO `sys_job_log` VALUES (11645, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-16 20:16:06'); INSERT INTO `sys_job_log` VALUES (11646, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-16 20:16:14'); INSERT INTO `sys_job_log` VALUES (11647, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:275毫秒', '0', '', '2022-01-16 20:18:04'); INSERT INTO `sys_job_log` VALUES (11648, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:119毫秒', '0', '', '2022-01-16 20:18:06'); INSERT INTO `sys_job_log` VALUES (11649, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-16 20:18:14'); INSERT INTO `sys_job_log` VALUES (11650, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:353毫秒', '0', '', '2022-01-16 20:20:04'); INSERT INTO `sys_job_log` VALUES (11651, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-16 20:20:06'); INSERT INTO `sys_job_log` VALUES (11652, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1091毫秒', '0', '', '2022-01-16 20:20:15'); INSERT INTO `sys_job_log` VALUES (11653, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:317毫秒', '0', '', '2022-01-16 20:22:04'); INSERT INTO `sys_job_log` VALUES (11654, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-16 20:22:06'); INSERT INTO `sys_job_log` VALUES (11655, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:940毫秒', '0', '', '2022-01-16 20:22:14'); INSERT INTO `sys_job_log` VALUES (11656, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-16 20:24:04'); INSERT INTO `sys_job_log` VALUES (11657, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-16 20:24:06'); INSERT INTO `sys_job_log` VALUES (11658, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-16 20:24:14'); INSERT INTO `sys_job_log` VALUES (11659, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:277毫秒', '0', '', '2022-01-16 20:26:04'); INSERT INTO `sys_job_log` VALUES (11660, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-16 20:26:06'); INSERT INTO `sys_job_log` VALUES (11661, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-16 20:26:14'); INSERT INTO `sys_job_log` VALUES (11662, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:240毫秒', '0', '', '2022-01-16 20:28:04'); INSERT INTO `sys_job_log` VALUES (11663, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-16 20:28:06'); INSERT INTO `sys_job_log` VALUES (11664, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-16 20:28:14'); INSERT INTO `sys_job_log` VALUES (11665, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:293毫秒', '0', '', '2022-01-16 20:30:04'); INSERT INTO `sys_job_log` VALUES (11666, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:98毫秒', '0', '', '2022-01-16 20:30:06'); INSERT INTO `sys_job_log` VALUES (11667, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-16 20:30:14'); INSERT INTO `sys_job_log` VALUES (11668, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-16 20:32:04'); INSERT INTO `sys_job_log` VALUES (11669, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:128毫秒', '0', '', '2022-01-16 20:32:06'); INSERT INTO `sys_job_log` VALUES (11670, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-16 20:32:14'); INSERT INTO `sys_job_log` VALUES (11671, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-16 20:34:04'); INSERT INTO `sys_job_log` VALUES (11672, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-16 20:34:06'); INSERT INTO `sys_job_log` VALUES (11673, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-16 20:34:14'); INSERT INTO `sys_job_log` VALUES (11674, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-16 20:36:04'); INSERT INTO `sys_job_log` VALUES (11675, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-16 20:36:06'); INSERT INTO `sys_job_log` VALUES (11676, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-16 20:36:14'); INSERT INTO `sys_job_log` VALUES (11677, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:137毫秒', '0', '', '2022-01-16 20:38:04'); INSERT INTO `sys_job_log` VALUES (11678, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:71毫秒', '0', '', '2022-01-16 20:38:06'); INSERT INTO `sys_job_log` VALUES (11679, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:269毫秒', '0', '', '2022-01-16 20:38:14'); INSERT INTO `sys_job_log` VALUES (11680, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-16 20:40:04'); INSERT INTO `sys_job_log` VALUES (11681, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-16 20:40:06'); INSERT INTO `sys_job_log` VALUES (11682, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3毫秒', '0', '', '2022-01-16 20:40:14'); INSERT INTO `sys_job_log` VALUES (11683, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2379毫秒', '0', '', '2022-01-16 20:42:06'); INSERT INTO `sys_job_log` VALUES (11684, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-16 20:42:06'); INSERT INTO `sys_job_log` VALUES (11685, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-16 20:42:14'); INSERT INTO `sys_job_log` VALUES (11686, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:318毫秒', '0', '', '2022-01-16 20:44:04'); INSERT INTO `sys_job_log` VALUES (11687, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-16 20:44:06'); INSERT INTO `sys_job_log` VALUES (11688, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:272毫秒', '0', '', '2022-01-16 20:44:14'); INSERT INTO `sys_job_log` VALUES (11689, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-16 20:46:04'); INSERT INTO `sys_job_log` VALUES (11690, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:289毫秒', '0', '', '2022-01-16 20:46:06'); INSERT INTO `sys_job_log` VALUES (11691, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-16 20:46:14'); INSERT INTO `sys_job_log` VALUES (11692, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-16 20:48:04'); INSERT INTO `sys_job_log` VALUES (11693, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:306毫秒', '0', '', '2022-01-16 20:48:06'); INSERT INTO `sys_job_log` VALUES (11694, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-16 20:48:14'); INSERT INTO `sys_job_log` VALUES (11695, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:321毫秒', '0', '', '2022-01-16 20:50:04'); INSERT INTO `sys_job_log` VALUES (11696, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-16 20:50:06'); INSERT INTO `sys_job_log` VALUES (11697, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-16 20:50:14'); INSERT INTO `sys_job_log` VALUES (11698, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:283毫秒', '0', '', '2022-01-16 20:52:04'); INSERT INTO `sys_job_log` VALUES (11699, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-16 20:52:06'); INSERT INTO `sys_job_log` VALUES (11700, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1072毫秒', '0', '', '2022-01-16 20:52:15'); INSERT INTO `sys_job_log` VALUES (11701, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:281毫秒', '0', '', '2022-01-16 20:54:04'); INSERT INTO `sys_job_log` VALUES (11702, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-16 20:54:06'); INSERT INTO `sys_job_log` VALUES (11703, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-16 20:54:14'); INSERT INTO `sys_job_log` VALUES (11704, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:274毫秒', '0', '', '2022-01-16 20:56:04'); INSERT INTO `sys_job_log` VALUES (11705, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-16 20:56:06'); INSERT INTO `sys_job_log` VALUES (11706, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-16 20:56:14'); INSERT INTO `sys_job_log` VALUES (11707, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:243毫秒', '0', '', '2022-01-16 20:58:04'); INSERT INTO `sys_job_log` VALUES (11708, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-16 20:58:06'); INSERT INTO `sys_job_log` VALUES (11709, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:150毫秒', '0', '', '2022-01-16 20:58:14'); INSERT INTO `sys_job_log` VALUES (11710, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:267毫秒', '0', '', '2022-01-16 21:00:04'); INSERT INTO `sys_job_log` VALUES (11711, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-16 21:00:06'); INSERT INTO `sys_job_log` VALUES (11712, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-16 21:00:14'); INSERT INTO `sys_job_log` VALUES (11713, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-16 21:02:04'); INSERT INTO `sys_job_log` VALUES (11714, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-16 21:02:06'); INSERT INTO `sys_job_log` VALUES (11715, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-16 21:02:14'); INSERT INTO `sys_job_log` VALUES (11716, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:287毫秒', '0', '', '2022-01-16 21:04:04'); INSERT INTO `sys_job_log` VALUES (11717, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-16 21:04:06'); INSERT INTO `sys_job_log` VALUES (11718, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-16 21:04:14'); INSERT INTO `sys_job_log` VALUES (11719, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:298毫秒', '0', '', '2022-01-16 21:06:04'); INSERT INTO `sys_job_log` VALUES (11720, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-16 21:06:06'); INSERT INTO `sys_job_log` VALUES (11721, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-16 21:06:14'); INSERT INTO `sys_job_log` VALUES (11722, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-16 21:08:04'); INSERT INTO `sys_job_log` VALUES (11723, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-16 21:08:06'); INSERT INTO `sys_job_log` VALUES (11724, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-16 21:08:14'); INSERT INTO `sys_job_log` VALUES (11725, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:252毫秒', '0', '', '2022-01-16 21:10:04'); INSERT INTO `sys_job_log` VALUES (11726, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-16 21:10:06'); INSERT INTO `sys_job_log` VALUES (11727, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-16 21:10:14'); INSERT INTO `sys_job_log` VALUES (11728, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:239毫秒', '0', '', '2022-01-16 21:12:04'); INSERT INTO `sys_job_log` VALUES (11729, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-16 21:12:06'); INSERT INTO `sys_job_log` VALUES (11730, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-16 21:12:14'); INSERT INTO `sys_job_log` VALUES (11731, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-16 21:14:04'); INSERT INTO `sys_job_log` VALUES (11732, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-16 21:14:06'); INSERT INTO `sys_job_log` VALUES (11733, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-16 21:14:14'); INSERT INTO `sys_job_log` VALUES (11734, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:319毫秒', '0', '', '2022-01-16 21:16:04'); INSERT INTO `sys_job_log` VALUES (11735, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-16 21:16:06'); INSERT INTO `sys_job_log` VALUES (11736, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1048毫秒', '0', '', '2022-01-16 21:16:15'); INSERT INTO `sys_job_log` VALUES (11737, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1092毫秒', '0', '', '2022-01-16 21:18:05'); INSERT INTO `sys_job_log` VALUES (11738, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:186毫秒', '0', '', '2022-01-16 21:18:06'); INSERT INTO `sys_job_log` VALUES (11739, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-16 21:18:14'); INSERT INTO `sys_job_log` VALUES (11740, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-16 21:20:04'); INSERT INTO `sys_job_log` VALUES (11741, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-16 21:20:06'); INSERT INTO `sys_job_log` VALUES (11742, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-16 21:20:14'); INSERT INTO `sys_job_log` VALUES (11743, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-16 21:22:04'); INSERT INTO `sys_job_log` VALUES (11744, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:258毫秒', '0', '', '2022-01-16 21:22:06'); INSERT INTO `sys_job_log` VALUES (11745, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-16 21:22:14'); INSERT INTO `sys_job_log` VALUES (11746, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-16 21:24:04'); INSERT INTO `sys_job_log` VALUES (11747, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-16 21:24:06'); INSERT INTO `sys_job_log` VALUES (11748, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-16 21:24:14'); INSERT INTO `sys_job_log` VALUES (11749, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-16 21:30:00'); INSERT INTO `sys_job_log` VALUES (11750, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:729毫秒', '0', '', '2022-01-16 21:40:00'); INSERT INTO `sys_job_log` VALUES (11751, '文案RPC调用任务', 'DEFAULT', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:212毫秒', '0', '', '2022-01-16 21:50:00'); INSERT INTO `sys_job_log` VALUES (11752, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:591毫秒', '0', '', '2022-01-16 22:00:00'); INSERT INTO `sys_job_log` VALUES (11753, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1146毫秒', '0', '', '2022-01-16 22:00:01'); INSERT INTO `sys_job_log` VALUES (11754, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:239毫秒', '0', '', '2022-01-16 22:04:01'); INSERT INTO `sys_job_log` VALUES (11755, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:240毫秒', '0', '', '2022-01-16 22:09:49'); INSERT INTO `sys_job_log` VALUES (11756, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-16 22:10:00'); INSERT INTO `sys_job_log` VALUES (11757, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:175毫秒', '0', '', '2022-01-16 22:10:00'); INSERT INTO `sys_job_log` VALUES (11758, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-16 22:20:00'); INSERT INTO `sys_job_log` VALUES (11759, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:228毫秒', '0', '', '2022-01-16 22:20:00'); INSERT INTO `sys_job_log` VALUES (11760, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:204毫秒', '0', '', '2022-01-16 22:30:00'); INSERT INTO `sys_job_log` VALUES (11761, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:242毫秒', '0', '', '2022-01-16 22:30:00'); INSERT INTO `sys_job_log` VALUES (11762, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3112毫秒', '0', '', '2022-01-17 08:50:03'); INSERT INTO `sys_job_log` VALUES (11763, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3103毫秒', '0', '', '2022-01-17 08:50:03'); INSERT INTO `sys_job_log` VALUES (11764, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:209毫秒', '0', '', '2022-01-17 09:00:00'); INSERT INTO `sys_job_log` VALUES (11765, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1141毫秒', '0', '', '2022-01-17 09:00:01'); INSERT INTO `sys_job_log` VALUES (11766, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-17 09:10:00'); INSERT INTO `sys_job_log` VALUES (11767, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:172毫秒', '0', '', '2022-01-17 09:10:00'); INSERT INTO `sys_job_log` VALUES (11768, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-17 09:20:00'); INSERT INTO `sys_job_log` VALUES (11769, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:263毫秒', '0', '', '2022-01-17 09:20:00'); INSERT INTO `sys_job_log` VALUES (11770, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:460毫秒', '0', '', '2022-01-17 09:30:00'); INSERT INTO `sys_job_log` VALUES (11771, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1122毫秒', '0', '', '2022-01-17 09:30:01'); INSERT INTO `sys_job_log` VALUES (11772, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3010毫秒', '0', '', '2022-01-17 09:40:03'); INSERT INTO `sys_job_log` VALUES (11773, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3021毫秒', '0', '', '2022-01-17 09:40:03'); INSERT INTO `sys_job_log` VALUES (11774, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-17 09:50:00'); INSERT INTO `sys_job_log` VALUES (11775, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1178毫秒', '0', '', '2022-01-17 09:50:01'); INSERT INTO `sys_job_log` VALUES (11776, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:267毫秒', '0', '', '2022-01-17 09:54:43'); INSERT INTO `sys_job_log` VALUES (11777, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:196毫秒', '0', '', '2022-01-17 10:00:00'); INSERT INTO `sys_job_log` VALUES (11778, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1168毫秒', '0', '', '2022-01-17 10:00:01'); INSERT INTO `sys_job_log` VALUES (11779, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-17 10:10:00'); INSERT INTO `sys_job_log` VALUES (11780, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-17 10:20:00'); INSERT INTO `sys_job_log` VALUES (11781, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:181毫秒', '0', '', '2022-01-17 10:20:00'); INSERT INTO `sys_job_log` VALUES (11782, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1137毫秒', '0', '', '2022-01-17 10:30:01'); INSERT INTO `sys_job_log` VALUES (11783, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:966毫秒', '0', '', '2022-01-17 10:40:00'); INSERT INTO `sys_job_log` VALUES (11784, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1496毫秒', '0', '', '2022-01-17 10:40:01'); INSERT INTO `sys_job_log` VALUES (11785, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-17 10:50:00'); INSERT INTO `sys_job_log` VALUES (11786, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:340毫秒', '0', '', '2022-01-17 11:00:00'); INSERT INTO `sys_job_log` VALUES (11787, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1174毫秒', '0', '', '2022-01-17 11:00:01'); INSERT INTO `sys_job_log` VALUES (11788, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1143毫秒', '0', '', '2022-01-17 11:10:01'); INSERT INTO `sys_job_log` VALUES (11789, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:482毫秒', '0', '', '2022-01-17 11:20:00'); INSERT INTO `sys_job_log` VALUES (11790, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-17 11:20:01'); INSERT INTO `sys_job_log` VALUES (11791, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1129毫秒', '0', '', '2022-01-17 11:30:01'); INSERT INTO `sys_job_log` VALUES (11792, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-17 11:40:00'); INSERT INTO `sys_job_log` VALUES (11793, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:170毫秒', '0', '', '2022-01-17 11:40:00'); INSERT INTO `sys_job_log` VALUES (11794, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-17 11:50:00'); INSERT INTO `sys_job_log` VALUES (11795, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1131毫秒', '0', '', '2022-01-17 12:00:01'); INSERT INTO `sys_job_log` VALUES (11796, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1451毫秒', '0', '', '2022-01-17 12:00:01'); INSERT INTO `sys_job_log` VALUES (11797, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1237毫秒', '0', '', '2022-01-17 12:10:01'); INSERT INTO `sys_job_log` VALUES (11798, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-17 12:20:00'); INSERT INTO `sys_job_log` VALUES (11799, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:174毫秒', '0', '', '2022-01-17 12:20:00'); INSERT INTO `sys_job_log` VALUES (11800, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:127毫秒', '0', '', '2022-01-17 12:30:00'); INSERT INTO `sys_job_log` VALUES (11801, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:501毫秒', '0', '', '2022-01-17 12:40:00'); INSERT INTO `sys_job_log` VALUES (11802, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1138毫秒', '0', '', '2022-01-17 12:40:01'); INSERT INTO `sys_job_log` VALUES (11803, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:249毫秒', '0', '', '2022-01-17 12:50:00'); INSERT INTO `sys_job_log` VALUES (11804, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-17 13:00:00'); INSERT INTO `sys_job_log` VALUES (11805, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1164毫秒', '0', '', '2022-01-17 13:00:01'); INSERT INTO `sys_job_log` VALUES (11806, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:120毫秒', '0', '', '2022-01-17 13:32:37'); INSERT INTO `sys_job_log` VALUES (11807, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:78毫秒', '0', '', '2022-01-17 13:32:37'); INSERT INTO `sys_job_log` VALUES (11808, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:74毫秒', '0', '', '2022-01-17 13:32:37'); INSERT INTO `sys_job_log` VALUES (11809, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:409毫秒', '0', '', '2022-01-17 13:32:37'); INSERT INTO `sys_job_log` VALUES (11810, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-17 13:40:00'); INSERT INTO `sys_job_log` VALUES (11811, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:190毫秒', '0', '', '2022-01-17 13:40:00'); INSERT INTO `sys_job_log` VALUES (11812, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-17 13:50:00'); INSERT INTO `sys_job_log` VALUES (11813, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:189毫秒', '0', '', '2022-01-17 14:00:00'); INSERT INTO `sys_job_log` VALUES (11814, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1184毫秒', '0', '', '2022-01-17 14:00:01'); INSERT INTO `sys_job_log` VALUES (11815, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-17 14:10:00'); INSERT INTO `sys_job_log` VALUES (11816, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:214毫秒', '0', '', '2022-01-17 14:20:00'); INSERT INTO `sys_job_log` VALUES (11817, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-17 14:20:01'); INSERT INTO `sys_job_log` VALUES (11818, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-17 14:30:00'); INSERT INTO `sys_job_log` VALUES (11819, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:89毫秒', '0', '', '2022-01-17 14:40:00'); INSERT INTO `sys_job_log` VALUES (11820, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-01-17 14:40:03'); INSERT INTO `sys_job_log` VALUES (11821, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1137毫秒', '0', '', '2022-01-17 14:50:01'); INSERT INTO `sys_job_log` VALUES (11822, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-17 15:00:00'); INSERT INTO `sys_job_log` VALUES (11823, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:281毫秒', '0', '', '2022-01-17 15:00:00'); INSERT INTO `sys_job_log` VALUES (11824, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-17 15:10:00'); INSERT INTO `sys_job_log` VALUES (11825, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-17 15:20:00'); INSERT INTO `sys_job_log` VALUES (11826, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1188毫秒', '0', '', '2022-01-17 15:20:01'); INSERT INTO `sys_job_log` VALUES (11827, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1090毫秒', '0', '', '2022-01-17 15:30:01'); INSERT INTO `sys_job_log` VALUES (11828, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:239毫秒', '0', '', '2022-01-17 15:40:00'); INSERT INTO `sys_job_log` VALUES (11829, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1118毫秒', '0', '', '2022-01-17 15:40:01'); INSERT INTO `sys_job_log` VALUES (11830, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3004毫秒', '0', '', '2022-01-17 15:50:03'); INSERT INTO `sys_job_log` VALUES (11831, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:170毫秒', '0', '', '2022-01-17 16:00:00'); INSERT INTO `sys_job_log` VALUES (11832, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2022-01-17 16:00:01'); INSERT INTO `sys_job_log` VALUES (11833, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-17 16:10:01'); INSERT INTO `sys_job_log` VALUES (11834, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:195毫秒', '0', '', '2022-01-17 16:20:00'); INSERT INTO `sys_job_log` VALUES (11835, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1122毫秒', '0', '', '2022-01-17 16:20:01'); INSERT INTO `sys_job_log` VALUES (11836, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-17 16:30:00'); INSERT INTO `sys_job_log` VALUES (11837, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-17 16:40:00'); INSERT INTO `sys_job_log` VALUES (11838, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:188毫秒', '0', '', '2022-01-17 16:40:00'); INSERT INTO `sys_job_log` VALUES (11839, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1137毫秒', '0', '', '2022-01-17 16:50:01'); INSERT INTO `sys_job_log` VALUES (11840, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-17 17:00:00'); INSERT INTO `sys_job_log` VALUES (11841, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-01-17 17:00:03'); INSERT INTO `sys_job_log` VALUES (11842, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-17 17:10:01'); INSERT INTO `sys_job_log` VALUES (11843, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3006毫秒', '0', '', '2022-01-17 17:20:03'); INSERT INTO `sys_job_log` VALUES (11844, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-01-17 17:20:03'); INSERT INTO `sys_job_log` VALUES (11845, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1119毫秒', '0', '', '2022-01-17 17:30:01'); INSERT INTO `sys_job_log` VALUES (11846, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2458毫秒', '0', '', '2022-01-18 08:50:02'); INSERT INTO `sys_job_log` VALUES (11847, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:797毫秒', '0', '', '2022-01-18 09:00:00'); INSERT INTO `sys_job_log` VALUES (11848, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1138毫秒', '0', '', '2022-01-18 09:00:01'); INSERT INTO `sys_job_log` VALUES (11849, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:255毫秒', '0', '', '2022-01-18 09:10:00'); INSERT INTO `sys_job_log` VALUES (11850, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:762毫秒', '0', '', '2022-01-18 09:20:00'); INSERT INTO `sys_job_log` VALUES (11851, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1127毫秒', '0', '', '2022-01-18 09:20:01'); INSERT INTO `sys_job_log` VALUES (11852, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1149毫秒', '0', '', '2022-01-18 09:30:01'); INSERT INTO `sys_job_log` VALUES (11853, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-18 09:40:00'); INSERT INTO `sys_job_log` VALUES (11854, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:446毫秒', '0', '', '2022-01-18 09:40:00'); INSERT INTO `sys_job_log` VALUES (11855, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1164毫秒', '0', '', '2022-01-18 09:50:01'); INSERT INTO `sys_job_log` VALUES (11856, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:133毫秒', '0', '', '2022-01-18 10:00:00'); INSERT INTO `sys_job_log` VALUES (11857, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:221毫秒', '0', '', '2022-01-18 10:00:00'); INSERT INTO `sys_job_log` VALUES (11858, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1272毫秒', '0', '', '2022-01-18 10:10:01'); INSERT INTO `sys_job_log` VALUES (11859, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:173毫秒', '0', '', '2022-01-18 10:20:00'); INSERT INTO `sys_job_log` VALUES (11860, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-18 10:20:01'); INSERT INTO `sys_job_log` VALUES (11861, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1256毫秒', '0', '', '2022-01-18 10:30:01'); INSERT INTO `sys_job_log` VALUES (11862, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:214毫秒', '0', '', '2022-01-18 10:40:00'); INSERT INTO `sys_job_log` VALUES (11863, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1163毫秒', '0', '', '2022-01-18 10:40:01'); INSERT INTO `sys_job_log` VALUES (11864, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1346毫秒', '0', '', '2022-01-18 10:50:01'); INSERT INTO `sys_job_log` VALUES (11865, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-18 11:00:00'); INSERT INTO `sys_job_log` VALUES (11866, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1522毫秒', '0', '', '2022-01-18 11:00:01'); INSERT INTO `sys_job_log` VALUES (11867, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1160毫秒', '0', '', '2022-01-18 11:10:01'); INSERT INTO `sys_job_log` VALUES (11868, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-18 11:20:00'); INSERT INTO `sys_job_log` VALUES (11869, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:195毫秒', '0', '', '2022-01-18 11:20:00'); INSERT INTO `sys_job_log` VALUES (11870, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3010毫秒', '0', '', '2022-01-18 11:30:03'); INSERT INTO `sys_job_log` VALUES (11871, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:253毫秒', '0', '', '2022-01-18 11:40:00'); INSERT INTO `sys_job_log` VALUES (11872, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1138毫秒', '0', '', '2022-01-18 11:40:01'); INSERT INTO `sys_job_log` VALUES (11873, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-18 11:50:01'); INSERT INTO `sys_job_log` VALUES (11874, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:200毫秒', '0', '', '2022-01-18 12:00:00'); INSERT INTO `sys_job_log` VALUES (11875, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1135毫秒', '0', '', '2022-01-18 12:00:01'); INSERT INTO `sys_job_log` VALUES (11876, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1149毫秒', '0', '', '2022-01-18 12:10:01'); INSERT INTO `sys_job_log` VALUES (11877, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:765毫秒', '0', '', '2022-01-18 12:20:00'); INSERT INTO `sys_job_log` VALUES (11878, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3013毫秒', '0', '', '2022-01-18 12:20:03'); INSERT INTO `sys_job_log` VALUES (11879, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-18 12:30:00'); INSERT INTO `sys_job_log` VALUES (11880, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-18 12:40:00'); INSERT INTO `sys_job_log` VALUES (11881, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:165毫秒', '0', '', '2022-01-18 12:40:00'); INSERT INTO `sys_job_log` VALUES (11882, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-18 12:50:00'); INSERT INTO `sys_job_log` VALUES (11883, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:130毫秒', '0', '', '2022-01-18 13:33:59'); INSERT INTO `sys_job_log` VALUES (11884, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-18 13:33:59'); INSERT INTO `sys_job_log` VALUES (11885, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:383毫秒', '0', '', '2022-01-18 13:33:59'); INSERT INTO `sys_job_log` VALUES (11886, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:81毫秒', '0', '', '2022-01-18 13:33:59'); INSERT INTO `sys_job_log` VALUES (11887, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-18 13:33:59'); INSERT INTO `sys_job_log` VALUES (11888, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:180毫秒', '0', '', '2022-01-18 13:33:59'); INSERT INTO `sys_job_log` VALUES (11889, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:187毫秒', '0', '', '2022-01-18 13:40:00'); INSERT INTO `sys_job_log` VALUES (11890, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1128毫秒', '0', '', '2022-01-18 13:40:01'); INSERT INTO `sys_job_log` VALUES (11891, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1153毫秒', '0', '', '2022-01-18 13:50:01'); INSERT INTO `sys_job_log` VALUES (11892, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-18 14:00:00'); INSERT INTO `sys_job_log` VALUES (11893, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:216毫秒', '0', '', '2022-01-18 14:00:00'); INSERT INTO `sys_job_log` VALUES (11894, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1238毫秒', '0', '', '2022-01-18 14:10:01'); INSERT INTO `sys_job_log` VALUES (11895, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-18 14:20:00'); INSERT INTO `sys_job_log` VALUES (11896, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:236毫秒', '0', '', '2022-01-18 14:20:00'); INSERT INTO `sys_job_log` VALUES (11897, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2719毫秒', '0', '', '2022-01-18 14:30:02'); INSERT INTO `sys_job_log` VALUES (11898, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:234毫秒', '0', '', '2022-01-18 14:40:00'); INSERT INTO `sys_job_log` VALUES (11899, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1129毫秒', '0', '', '2022-01-18 14:40:01'); INSERT INTO `sys_job_log` VALUES (11900, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1134毫秒', '0', '', '2022-01-18 14:50:01'); INSERT INTO `sys_job_log` VALUES (11901, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-18 15:00:00'); INSERT INTO `sys_job_log` VALUES (11902, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1470毫秒', '0', '', '2022-01-18 15:00:01'); INSERT INTO `sys_job_log` VALUES (11903, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-18 15:10:00'); INSERT INTO `sys_job_log` VALUES (11904, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1493毫秒', '0', '', '2022-01-18 15:20:01'); INSERT INTO `sys_job_log` VALUES (11905, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1541毫秒', '0', '', '2022-01-18 15:20:01'); INSERT INTO `sys_job_log` VALUES (11906, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:897毫秒', '0', '', '2022-01-18 15:30:00'); INSERT INTO `sys_job_log` VALUES (11907, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-18 15:40:00'); INSERT INTO `sys_job_log` VALUES (11908, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:625毫秒', '0', '', '2022-01-18 15:40:00'); INSERT INTO `sys_job_log` VALUES (11909, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1237毫秒', '0', '', '2022-01-18 15:50:01'); INSERT INTO `sys_job_log` VALUES (11910, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1723毫秒', '0', '', '2022-01-18 16:00:01'); INSERT INTO `sys_job_log` VALUES (11911, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1737毫秒', '0', '', '2022-01-18 16:00:01'); INSERT INTO `sys_job_log` VALUES (11912, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:118毫秒', '0', '', '2022-01-18 16:10:00'); INSERT INTO `sys_job_log` VALUES (11913, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:163毫秒', '0', '', '2022-01-18 16:20:00'); INSERT INTO `sys_job_log` VALUES (11914, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-18 16:20:01'); INSERT INTO `sys_job_log` VALUES (11915, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-18 16:30:00'); INSERT INTO `sys_job_log` VALUES (11916, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:279毫秒', '0', '', '2022-01-18 16:40:00'); INSERT INTO `sys_job_log` VALUES (11917, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-18 16:40:01'); INSERT INTO `sys_job_log` VALUES (11918, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-18 16:50:00'); INSERT INTO `sys_job_log` VALUES (11919, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-18 17:00:00'); INSERT INTO `sys_job_log` VALUES (11920, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:417毫秒', '0', '', '2022-01-18 17:00:00'); INSERT INTO `sys_job_log` VALUES (11921, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-18 17:10:01'); INSERT INTO `sys_job_log` VALUES (11922, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-18 17:20:00'); INSERT INTO `sys_job_log` VALUES (11923, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:205毫秒', '0', '', '2022-01-18 17:20:00'); INSERT INTO `sys_job_log` VALUES (11924, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-18 17:30:00'); INSERT INTO `sys_job_log` VALUES (11925, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:523毫秒', '0', '', '2022-01-18 20:10:00'); INSERT INTO `sys_job_log` VALUES (11926, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:310毫秒', '0', '', '2022-01-18 20:20:00'); INSERT INTO `sys_job_log` VALUES (11927, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:392毫秒', '0', '', '2022-01-18 20:20:00'); INSERT INTO `sys_job_log` VALUES (11928, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:214毫秒', '0', '', '2022-01-18 20:30:00'); INSERT INTO `sys_job_log` VALUES (11929, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-18 20:40:00'); INSERT INTO `sys_job_log` VALUES (11930, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:255毫秒', '0', '', '2022-01-18 20:40:00'); INSERT INTO `sys_job_log` VALUES (11931, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-18 20:50:00'); INSERT INTO `sys_job_log` VALUES (11932, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-18 21:00:00'); INSERT INTO `sys_job_log` VALUES (11933, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:259毫秒', '0', '', '2022-01-18 21:00:00'); INSERT INTO `sys_job_log` VALUES (11934, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-18 21:10:00'); INSERT INTO `sys_job_log` VALUES (11935, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:306毫秒', '0', '', '2022-01-18 21:20:00'); INSERT INTO `sys_job_log` VALUES (11936, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:323毫秒', '0', '', '2022-01-18 21:20:00'); INSERT INTO `sys_job_log` VALUES (11937, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-18 21:30:00'); INSERT INTO `sys_job_log` VALUES (11938, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:738毫秒', '0', '', '2022-01-18 21:40:00'); INSERT INTO `sys_job_log` VALUES (11939, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1984毫秒', '0', '', '2022-01-18 21:40:02'); INSERT INTO `sys_job_log` VALUES (11940, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-18 21:50:00'); INSERT INTO `sys_job_log` VALUES (11941, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-18 22:00:00'); INSERT INTO `sys_job_log` VALUES (11942, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:286毫秒', '0', '', '2022-01-18 22:00:00'); INSERT INTO `sys_job_log` VALUES (11943, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-18 22:10:00'); INSERT INTO `sys_job_log` VALUES (11944, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-18 22:20:00'); INSERT INTO `sys_job_log` VALUES (11945, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:646毫秒', '0', '', '2022-01-18 22:20:00'); INSERT INTO `sys_job_log` VALUES (11946, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:188毫秒', '0', '', '2022-01-18 22:30:00'); INSERT INTO `sys_job_log` VALUES (11947, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-18 22:40:00'); INSERT INTO `sys_job_log` VALUES (11948, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:265毫秒', '0', '', '2022-01-18 22:40:00'); INSERT INTO `sys_job_log` VALUES (11949, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:282毫秒', '0', '', '2022-01-18 22:50:00'); INSERT INTO `sys_job_log` VALUES (11950, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:187毫秒', '0', '', '2022-01-18 23:00:00'); INSERT INTO `sys_job_log` VALUES (11951, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:630毫秒', '0', '', '2022-01-18 23:00:00'); INSERT INTO `sys_job_log` VALUES (11952, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3065毫秒', '0', '', '2022-01-19 08:40:03'); INSERT INTO `sys_job_log` VALUES (11953, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3127毫秒', '0', '', '2022-01-19 08:40:03'); INSERT INTO `sys_job_log` VALUES (11954, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1117毫秒', '0', '', '2022-01-19 08:50:01'); INSERT INTO `sys_job_log` VALUES (11955, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:256毫秒', '0', '', '2022-01-19 09:00:00'); INSERT INTO `sys_job_log` VALUES (11956, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:475毫秒', '0', '', '2022-01-19 09:00:00'); INSERT INTO `sys_job_log` VALUES (11957, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1098毫秒', '0', '', '2022-01-19 09:10:01'); INSERT INTO `sys_job_log` VALUES (11958, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1226毫秒', '0', '', '2022-01-19 09:20:01'); INSERT INTO `sys_job_log` VALUES (11959, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1435毫秒', '0', '', '2022-01-19 09:20:01'); INSERT INTO `sys_job_log` VALUES (11960, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1150毫秒', '0', '', '2022-01-19 09:30:01'); INSERT INTO `sys_job_log` VALUES (11961, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1156毫秒', '0', '', '2022-01-19 09:40:01'); INSERT INTO `sys_job_log` VALUES (11962, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1163毫秒', '0', '', '2022-01-19 09:40:01'); INSERT INTO `sys_job_log` VALUES (11963, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-19 09:50:00'); INSERT INTO `sys_job_log` VALUES (11964, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1430毫秒', '0', '', '2022-01-19 10:00:01'); INSERT INTO `sys_job_log` VALUES (11965, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1421毫秒', '0', '', '2022-01-19 10:00:01'); INSERT INTO `sys_job_log` VALUES (11966, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3010毫秒', '0', '', '2022-01-19 10:10:03'); INSERT INTO `sys_job_log` VALUES (11967, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-19 10:20:00'); INSERT INTO `sys_job_log` VALUES (11968, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:167毫秒', '0', '', '2022-01-19 10:20:00'); INSERT INTO `sys_job_log` VALUES (11969, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-19 10:30:01'); INSERT INTO `sys_job_log` VALUES (11970, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:406毫秒', '0', '', '2022-01-19 10:40:00'); INSERT INTO `sys_job_log` VALUES (11971, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1100毫秒', '0', '', '2022-01-19 10:40:01'); INSERT INTO `sys_job_log` VALUES (11972, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1143毫秒', '0', '', '2022-01-19 10:50:01'); INSERT INTO `sys_job_log` VALUES (11973, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:238毫秒', '0', '', '2022-01-19 11:00:00'); INSERT INTO `sys_job_log` VALUES (11974, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-19 11:00:01'); INSERT INTO `sys_job_log` VALUES (11975, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-19 11:10:00'); INSERT INTO `sys_job_log` VALUES (11976, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-19 11:20:00'); INSERT INTO `sys_job_log` VALUES (11977, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2199毫秒', '0', '', '2022-01-19 11:20:02'); INSERT INTO `sys_job_log` VALUES (11978, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1380毫秒', '0', '', '2022-01-19 11:30:01'); INSERT INTO `sys_job_log` VALUES (11979, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:205毫秒', '0', '', '2022-01-19 11:40:00'); INSERT INTO `sys_job_log` VALUES (11980, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1261毫秒', '0', '', '2022-01-19 11:40:01'); INSERT INTO `sys_job_log` VALUES (11981, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-19 11:50:00'); INSERT INTO `sys_job_log` VALUES (11982, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:466毫秒', '0', '', '2022-01-19 12:00:00'); INSERT INTO `sys_job_log` VALUES (11983, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1155毫秒', '0', '', '2022-01-19 12:00:01'); INSERT INTO `sys_job_log` VALUES (11984, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1150毫秒', '0', '', '2022-01-19 12:10:01'); INSERT INTO `sys_job_log` VALUES (11985, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:203毫秒', '0', '', '2022-01-19 12:20:00'); INSERT INTO `sys_job_log` VALUES (11986, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-19 12:20:01'); INSERT INTO `sys_job_log` VALUES (11987, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-19 12:30:00'); INSERT INTO `sys_job_log` VALUES (11988, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:430毫秒', '0', '', '2022-01-19 12:40:00'); INSERT INTO `sys_job_log` VALUES (11989, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-19 12:40:01'); INSERT INTO `sys_job_log` VALUES (11990, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-19 13:33:31'); INSERT INTO `sys_job_log` VALUES (11991, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-19 13:33:31'); INSERT INTO `sys_job_log` VALUES (11992, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-19 13:33:31'); INSERT INTO `sys_job_log` VALUES (11993, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:77毫秒', '0', '', '2022-01-19 13:33:31'); INSERT INTO `sys_job_log` VALUES (11994, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:395毫秒', '0', '', '2022-01-19 13:33:31'); INSERT INTO `sys_job_log` VALUES (11995, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:92毫秒', '0', '', '2022-01-19 13:33:31'); INSERT INTO `sys_job_log` VALUES (11996, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:143毫秒', '0', '', '2022-01-19 13:33:32'); INSERT INTO `sys_job_log` VALUES (11997, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:168毫秒', '0', '', '2022-01-19 13:40:00'); INSERT INTO `sys_job_log` VALUES (11998, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1103毫秒', '0', '', '2022-01-19 13:40:01'); INSERT INTO `sys_job_log` VALUES (11999, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:786毫秒', '0', '', '2022-01-19 13:50:00'); INSERT INTO `sys_job_log` VALUES (12000, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:694毫秒', '0', '', '2022-01-19 14:00:00'); INSERT INTO `sys_job_log` VALUES (12001, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1463毫秒', '0', '', '2022-01-19 14:00:01'); INSERT INTO `sys_job_log` VALUES (12002, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-19 14:10:00'); INSERT INTO `sys_job_log` VALUES (12003, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-19 14:20:00'); INSERT INTO `sys_job_log` VALUES (12004, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:143毫秒', '0', '', '2022-01-19 14:20:00'); INSERT INTO `sys_job_log` VALUES (12005, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-19 14:30:00'); INSERT INTO `sys_job_log` VALUES (12006, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:133毫秒', '0', '', '2022-01-19 14:40:00'); INSERT INTO `sys_job_log` VALUES (12007, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1439毫秒', '0', '', '2022-01-19 14:40:01'); INSERT INTO `sys_job_log` VALUES (12008, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-19 14:50:00'); INSERT INTO `sys_job_log` VALUES (12009, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:244毫秒', '0', '', '2022-01-19 15:00:00'); INSERT INTO `sys_job_log` VALUES (12010, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1222毫秒', '0', '', '2022-01-19 15:00:01'); INSERT INTO `sys_job_log` VALUES (12011, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-19 15:10:00'); INSERT INTO `sys_job_log` VALUES (12012, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:435毫秒', '0', '', '2022-01-19 15:20:00'); INSERT INTO `sys_job_log` VALUES (12013, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1221毫秒', '0', '', '2022-01-19 15:20:01'); INSERT INTO `sys_job_log` VALUES (12014, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1276毫秒', '0', '', '2022-01-19 15:30:01'); INSERT INTO `sys_job_log` VALUES (12015, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:194毫秒', '0', '', '2022-01-19 15:40:00'); INSERT INTO `sys_job_log` VALUES (12016, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-19 15:40:00'); INSERT INTO `sys_job_log` VALUES (12017, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-19 15:50:00'); INSERT INTO `sys_job_log` VALUES (12018, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:101毫秒', '0', '', '2022-01-19 16:00:00'); INSERT INTO `sys_job_log` VALUES (12019, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:403毫秒', '0', '', '2022-01-19 16:00:00'); INSERT INTO `sys_job_log` VALUES (12020, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:102毫秒', '0', '', '2022-01-19 16:10:00'); INSERT INTO `sys_job_log` VALUES (12021, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:178毫秒', '0', '', '2022-01-19 16:20:00'); INSERT INTO `sys_job_log` VALUES (12022, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-19 16:20:01'); INSERT INTO `sys_job_log` VALUES (12023, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-19 16:30:00'); INSERT INTO `sys_job_log` VALUES (12024, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-19 16:40:00'); INSERT INTO `sys_job_log` VALUES (12025, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:459毫秒', '0', '', '2022-01-19 16:40:00'); INSERT INTO `sys_job_log` VALUES (12026, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-19 16:50:00'); INSERT INTO `sys_job_log` VALUES (12027, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1209毫秒', '0', '', '2022-01-19 17:00:01'); INSERT INTO `sys_job_log` VALUES (12028, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2156毫秒', '0', '', '2022-01-19 17:00:02'); INSERT INTO `sys_job_log` VALUES (12029, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-19 17:10:00'); INSERT INTO `sys_job_log` VALUES (12030, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:444毫秒', '0', '', '2022-01-19 17:20:00'); INSERT INTO `sys_job_log` VALUES (12031, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1122毫秒', '0', '', '2022-01-19 17:20:01'); INSERT INTO `sys_job_log` VALUES (12032, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1192毫秒', '0', '', '2022-01-19 17:30:01'); INSERT INTO `sys_job_log` VALUES (12033, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:447毫秒', '0', '', '2022-01-19 19:30:00'); INSERT INTO `sys_job_log` VALUES (12034, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1007毫秒', '0', '', '2022-01-19 19:40:01'); INSERT INTO `sys_job_log` VALUES (12035, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1031毫秒', '0', '', '2022-01-19 19:40:01'); INSERT INTO `sys_job_log` VALUES (12036, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:506毫秒', '0', '', '2022-01-19 19:50:00'); INSERT INTO `sys_job_log` VALUES (12037, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:270毫秒', '0', '', '2022-01-19 20:00:00'); INSERT INTO `sys_job_log` VALUES (12038, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:781毫秒', '0', '', '2022-01-19 20:00:00'); INSERT INTO `sys_job_log` VALUES (12039, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:189毫秒', '0', '', '2022-01-19 20:10:00'); INSERT INTO `sys_job_log` VALUES (12040, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-19 20:20:00'); INSERT INTO `sys_job_log` VALUES (12041, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:255毫秒', '0', '', '2022-01-19 20:20:00'); INSERT INTO `sys_job_log` VALUES (12042, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:295毫秒', '0', '', '2022-01-19 20:30:00'); INSERT INTO `sys_job_log` VALUES (12043, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-19 20:40:00'); INSERT INTO `sys_job_log` VALUES (12044, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:727毫秒', '0', '', '2022-01-19 20:40:00'); INSERT INTO `sys_job_log` VALUES (12045, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:194毫秒', '0', '', '2022-01-19 20:50:00'); INSERT INTO `sys_job_log` VALUES (12046, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-19 21:00:00'); INSERT INTO `sys_job_log` VALUES (12047, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:224毫秒', '0', '', '2022-01-19 21:00:00'); INSERT INTO `sys_job_log` VALUES (12048, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:132毫秒', '0', '', '2022-01-19 21:10:00'); INSERT INTO `sys_job_log` VALUES (12049, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:215毫秒', '0', '', '2022-01-19 21:20:00'); INSERT INTO `sys_job_log` VALUES (12050, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:757毫秒', '0', '', '2022-01-19 21:20:00'); INSERT INTO `sys_job_log` VALUES (12051, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:481毫秒', '0', '', '2022-01-19 21:30:00'); INSERT INTO `sys_job_log` VALUES (12052, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:715毫秒', '0', '', '2022-01-19 21:40:00'); INSERT INTO `sys_job_log` VALUES (12053, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:720毫秒', '0', '', '2022-01-19 21:40:00'); INSERT INTO `sys_job_log` VALUES (12054, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:203毫秒', '0', '', '2022-01-19 21:50:00'); INSERT INTO `sys_job_log` VALUES (12055, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-19 22:00:00'); INSERT INTO `sys_job_log` VALUES (12056, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:782毫秒', '0', '', '2022-01-19 22:00:00'); INSERT INTO `sys_job_log` VALUES (12057, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:142毫秒', '0', '', '2022-01-19 22:10:00'); INSERT INTO `sys_job_log` VALUES (12058, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-19 22:20:00'); INSERT INTO `sys_job_log` VALUES (12059, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:291毫秒', '0', '', '2022-01-19 22:20:00'); INSERT INTO `sys_job_log` VALUES (12060, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-19 22:30:00'); INSERT INTO `sys_job_log` VALUES (12061, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-19 22:40:00'); INSERT INTO `sys_job_log` VALUES (12062, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:715毫秒', '0', '', '2022-01-19 22:40:00'); INSERT INTO `sys_job_log` VALUES (12063, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:307毫秒', '0', '', '2022-01-19 22:50:00'); INSERT INTO `sys_job_log` VALUES (12064, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2985毫秒', '0', '', '2022-01-20 08:40:03'); INSERT INTO `sys_job_log` VALUES (12065, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3279毫秒', '0', '', '2022-01-20 08:40:03'); INSERT INTO `sys_job_log` VALUES (12066, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3016毫秒', '0', '', '2022-01-20 08:50:03'); INSERT INTO `sys_job_log` VALUES (12067, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:567毫秒', '0', '', '2022-01-20 09:00:00'); INSERT INTO `sys_job_log` VALUES (12068, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1127毫秒', '0', '', '2022-01-20 09:00:01'); INSERT INTO `sys_job_log` VALUES (12069, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1172毫秒', '0', '', '2022-01-20 09:10:01'); INSERT INTO `sys_job_log` VALUES (12070, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:241毫秒', '0', '', '2022-01-20 09:20:00'); INSERT INTO `sys_job_log` VALUES (12071, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1117毫秒', '0', '', '2022-01-20 09:20:01'); INSERT INTO `sys_job_log` VALUES (12072, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3004毫秒', '0', '', '2022-01-20 09:30:03'); INSERT INTO `sys_job_log` VALUES (12073, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-20 09:40:00'); INSERT INTO `sys_job_log` VALUES (12074, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:433毫秒', '0', '', '2022-01-20 09:40:00'); INSERT INTO `sys_job_log` VALUES (12075, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1151毫秒', '0', '', '2022-01-20 09:50:01'); INSERT INTO `sys_job_log` VALUES (12076, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1170毫秒', '0', '', '2022-01-20 10:00:01'); INSERT INTO `sys_job_log` VALUES (12077, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1206毫秒', '0', '', '2022-01-20 10:00:01'); INSERT INTO `sys_job_log` VALUES (12078, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1148毫秒', '0', '', '2022-01-20 10:10:01'); INSERT INTO `sys_job_log` VALUES (12079, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-20 10:20:00'); INSERT INTO `sys_job_log` VALUES (12080, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:359毫秒', '0', '', '2022-01-20 10:20:00'); INSERT INTO `sys_job_log` VALUES (12081, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1112毫秒', '0', '', '2022-01-20 10:30:01'); INSERT INTO `sys_job_log` VALUES (12082, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:212毫秒', '0', '', '2022-01-20 10:40:00'); INSERT INTO `sys_job_log` VALUES (12083, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3003毫秒', '0', '', '2022-01-20 10:40:03'); INSERT INTO `sys_job_log` VALUES (12084, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1167毫秒', '0', '', '2022-01-20 10:50:01'); INSERT INTO `sys_job_log` VALUES (12085, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1223毫秒', '0', '', '2022-01-20 11:00:01'); INSERT INTO `sys_job_log` VALUES (12086, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1390毫秒', '0', '', '2022-01-20 11:00:01'); INSERT INTO `sys_job_log` VALUES (12087, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1131毫秒', '0', '', '2022-01-20 11:10:01'); INSERT INTO `sys_job_log` VALUES (12088, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:96毫秒', '0', '', '2022-01-20 11:20:00'); INSERT INTO `sys_job_log` VALUES (12089, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:264毫秒', '0', '', '2022-01-20 11:20:00'); INSERT INTO `sys_job_log` VALUES (12090, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1116毫秒', '0', '', '2022-01-20 11:30:01'); INSERT INTO `sys_job_log` VALUES (12091, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:406毫秒', '0', '', '2022-01-20 11:40:00'); INSERT INTO `sys_job_log` VALUES (12092, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1113毫秒', '0', '', '2022-01-20 11:40:01'); INSERT INTO `sys_job_log` VALUES (12093, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1130毫秒', '0', '', '2022-01-20 11:50:01'); INSERT INTO `sys_job_log` VALUES (12094, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:90毫秒', '0', '', '2022-01-20 12:00:00'); INSERT INTO `sys_job_log` VALUES (12095, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:169毫秒', '0', '', '2022-01-20 12:00:00'); INSERT INTO `sys_job_log` VALUES (12096, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1200毫秒', '0', '', '2022-01-20 12:10:01'); INSERT INTO `sys_job_log` VALUES (12097, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1105毫秒', '0', '', '2022-01-20 12:20:01'); INSERT INTO `sys_job_log` VALUES (12098, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2805毫秒', '0', '', '2022-01-20 12:20:02'); INSERT INTO `sys_job_log` VALUES (12099, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1120毫秒', '0', '', '2022-01-20 12:30:01'); INSERT INTO `sys_job_log` VALUES (12100, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:142毫秒', '0', '', '2022-01-20 12:40:00'); INSERT INTO `sys_job_log` VALUES (12101, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1116毫秒', '0', '', '2022-01-20 12:40:01'); INSERT INTO `sys_job_log` VALUES (12102, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1101毫秒', '0', '', '2022-01-20 12:50:01'); INSERT INTO `sys_job_log` VALUES (12103, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:88毫秒', '0', '', '2022-01-20 13:29:55'); INSERT INTO `sys_job_log` VALUES (12104, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-20 13:29:55'); INSERT INTO `sys_job_log` VALUES (12105, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:78毫秒', '0', '', '2022-01-20 13:29:55'); INSERT INTO `sys_job_log` VALUES (12106, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:82毫秒', '0', '', '2022-01-20 13:29:55'); INSERT INTO `sys_job_log` VALUES (12107, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-20 13:29:55'); INSERT INTO `sys_job_log` VALUES (12108, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:42毫秒', '0', '', '2022-01-20 13:30:00'); INSERT INTO `sys_job_log` VALUES (12109, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-20 13:40:00'); INSERT INTO `sys_job_log` VALUES (12110, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:356毫秒', '0', '', '2022-01-20 13:40:00'); INSERT INTO `sys_job_log` VALUES (12111, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-20 13:50:00'); INSERT INTO `sys_job_log` VALUES (12112, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:957毫秒', '0', '', '2022-01-20 14:00:00'); INSERT INTO `sys_job_log` VALUES (12113, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:987毫秒', '0', '', '2022-01-20 14:00:01'); INSERT INTO `sys_job_log` VALUES (12114, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-20 14:10:00'); INSERT INTO `sys_job_log` VALUES (12115, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1177毫秒', '0', '', '2022-01-20 14:20:01'); INSERT INTO `sys_job_log` VALUES (12116, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1432毫秒', '0', '', '2022-01-20 14:20:01'); INSERT INTO `sys_job_log` VALUES (12117, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:396毫秒', '0', '', '2022-01-20 14:30:00'); INSERT INTO `sys_job_log` VALUES (12118, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-20 14:40:00'); INSERT INTO `sys_job_log` VALUES (12119, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:351毫秒', '0', '', '2022-01-20 14:40:00'); INSERT INTO `sys_job_log` VALUES (12120, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1109毫秒', '0', '', '2022-01-20 14:50:01'); INSERT INTO `sys_job_log` VALUES (12121, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1278毫秒', '0', '', '2022-01-20 15:00:01'); INSERT INTO `sys_job_log` VALUES (12122, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1361毫秒', '0', '', '2022-01-20 15:00:01'); INSERT INTO `sys_job_log` VALUES (12123, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-20 15:10:00'); INSERT INTO `sys_job_log` VALUES (12124, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-20 15:20:00'); INSERT INTO `sys_job_log` VALUES (12125, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:191毫秒', '0', '', '2022-01-20 15:20:00'); INSERT INTO `sys_job_log` VALUES (12126, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1150毫秒', '0', '', '2022-01-20 15:30:01'); INSERT INTO `sys_job_log` VALUES (12127, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:135毫秒', '0', '', '2022-01-20 15:40:00'); INSERT INTO `sys_job_log` VALUES (12128, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:142毫秒', '0', '', '2022-01-20 15:40:00'); INSERT INTO `sys_job_log` VALUES (12129, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-20 15:50:00'); INSERT INTO `sys_job_log` VALUES (12130, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:112毫秒', '0', '', '2022-01-20 16:00:00'); INSERT INTO `sys_job_log` VALUES (12131, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:163毫秒', '0', '', '2022-01-20 16:00:00'); INSERT INTO `sys_job_log` VALUES (12132, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:103毫秒', '0', '', '2022-01-20 16:10:00'); INSERT INTO `sys_job_log` VALUES (12133, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:190毫秒', '0', '', '2022-01-20 16:20:00'); INSERT INTO `sys_job_log` VALUES (12134, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:307毫秒', '0', '', '2022-01-20 16:20:00'); INSERT INTO `sys_job_log` VALUES (12135, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1096毫秒', '0', '', '2022-01-20 16:30:01'); INSERT INTO `sys_job_log` VALUES (12136, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:144毫秒', '0', '', '2022-01-20 16:40:00'); INSERT INTO `sys_job_log` VALUES (12137, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:210毫秒', '0', '', '2022-01-20 16:40:00'); INSERT INTO `sys_job_log` VALUES (12138, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-20 16:50:00'); INSERT INTO `sys_job_log` VALUES (12139, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:206毫秒', '0', '', '2022-01-20 17:00:00'); INSERT INTO `sys_job_log` VALUES (12140, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-20 17:00:01'); INSERT INTO `sys_job_log` VALUES (12141, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-20 17:10:00'); INSERT INTO `sys_job_log` VALUES (12142, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1822毫秒', '0', '', '2022-01-20 17:20:01'); INSERT INTO `sys_job_log` VALUES (12143, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1890毫秒', '0', '', '2022-01-20 17:20:01'); INSERT INTO `sys_job_log` VALUES (12144, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-20 17:30:00'); INSERT INTO `sys_job_log` VALUES (12145, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:575毫秒', '0', '', '2022-01-20 18:40:00'); INSERT INTO `sys_job_log` VALUES (12146, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:565毫秒', '0', '', '2022-01-20 18:40:00'); INSERT INTO `sys_job_log` VALUES (12147, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-20 18:50:00'); INSERT INTO `sys_job_log` VALUES (12148, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:181毫秒', '0', '', '2022-01-20 19:00:00'); INSERT INTO `sys_job_log` VALUES (12149, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:238毫秒', '0', '', '2022-01-20 19:00:00'); INSERT INTO `sys_job_log` VALUES (12150, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:236毫秒', '0', '', '2022-01-20 19:10:00'); INSERT INTO `sys_job_log` VALUES (12151, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-20 19:20:00'); INSERT INTO `sys_job_log` VALUES (12152, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:278毫秒', '0', '', '2022-01-20 19:20:00'); INSERT INTO `sys_job_log` VALUES (12153, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-20 19:30:00'); INSERT INTO `sys_job_log` VALUES (12154, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-20 19:40:00'); INSERT INTO `sys_job_log` VALUES (12155, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:674毫秒', '0', '', '2022-01-20 19:40:00'); INSERT INTO `sys_job_log` VALUES (12156, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-20 19:50:00'); INSERT INTO `sys_job_log` VALUES (12157, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:176毫秒', '0', '', '2022-01-20 20:00:00'); INSERT INTO `sys_job_log` VALUES (12158, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-20 20:00:00'); INSERT INTO `sys_job_log` VALUES (12159, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:140毫秒', '0', '', '2022-01-20 20:10:00'); INSERT INTO `sys_job_log` VALUES (12160, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:456毫秒', '0', '', '2022-01-20 20:20:00'); INSERT INTO `sys_job_log` VALUES (12161, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:493毫秒', '0', '', '2022-01-20 20:20:00'); INSERT INTO `sys_job_log` VALUES (12162, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:117毫秒', '0', '', '2022-01-20 20:30:00'); INSERT INTO `sys_job_log` VALUES (12163, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:287毫秒', '0', '', '2022-01-20 20:40:00'); INSERT INTO `sys_job_log` VALUES (12164, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:426毫秒', '0', '', '2022-01-20 20:40:00'); INSERT INTO `sys_job_log` VALUES (12165, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-20 20:50:00'); INSERT INTO `sys_job_log` VALUES (12166, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-20 21:00:00'); INSERT INTO `sys_job_log` VALUES (12167, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:652毫秒', '0', '', '2022-01-20 21:00:00'); INSERT INTO `sys_job_log` VALUES (12168, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-20 21:10:00'); INSERT INTO `sys_job_log` VALUES (12169, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:176毫秒', '0', '', '2022-01-20 21:20:00'); INSERT INTO `sys_job_log` VALUES (12170, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:226毫秒', '0', '', '2022-01-20 21:20:00'); INSERT INTO `sys_job_log` VALUES (12171, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1539毫秒', '0', '', '2022-01-21 08:50:01'); INSERT INTO `sys_job_log` VALUES (12172, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:138毫秒', '0', '', '2022-01-21 09:00:00'); INSERT INTO `sys_job_log` VALUES (12173, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:151毫秒', '0', '', '2022-01-21 09:00:00'); INSERT INTO `sys_job_log` VALUES (12174, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-21 09:10:00'); INSERT INTO `sys_job_log` VALUES (12175, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:106毫秒', '0', '', '2022-01-21 09:20:00'); INSERT INTO `sys_job_log` VALUES (12176, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:434毫秒', '0', '', '2022-01-21 09:20:00'); INSERT INTO `sys_job_log` VALUES (12177, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-21 09:30:00'); INSERT INTO `sys_job_log` VALUES (12178, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:100毫秒', '0', '', '2022-01-21 09:40:00'); INSERT INTO `sys_job_log` VALUES (12179, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:180毫秒', '0', '', '2022-01-21 09:40:00'); INSERT INTO `sys_job_log` VALUES (12180, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-21 09:50:00'); INSERT INTO `sys_job_log` VALUES (12181, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-21 10:00:00'); INSERT INTO `sys_job_log` VALUES (12182, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:127毫秒', '0', '', '2022-01-21 10:00:00'); INSERT INTO `sys_job_log` VALUES (12183, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1099毫秒', '0', '', '2022-01-21 10:10:01'); INSERT INTO `sys_job_log` VALUES (12184, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:99毫秒', '0', '', '2022-01-21 10:20:00'); INSERT INTO `sys_job_log` VALUES (12185, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:159毫秒', '0', '', '2022-01-21 10:20:00'); INSERT INTO `sys_job_log` VALUES (12186, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-21 10:30:00'); INSERT INTO `sys_job_log` VALUES (12187, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-21 10:40:00'); INSERT INTO `sys_job_log` VALUES (12188, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:163毫秒', '0', '', '2022-01-21 10:40:00'); INSERT INTO `sys_job_log` VALUES (12189, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1131毫秒', '0', '', '2022-01-21 10:50:01'); INSERT INTO `sys_job_log` VALUES (12190, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:292毫秒', '0', '', '2022-01-21 11:00:00'); INSERT INTO `sys_job_log` VALUES (12191, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:601毫秒', '0', '', '2022-01-21 11:00:00'); INSERT INTO `sys_job_log` VALUES (12192, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1201毫秒', '0', '', '2022-01-21 11:10:01'); INSERT INTO `sys_job_log` VALUES (12193, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:226毫秒', '0', '', '2022-01-21 11:20:00'); INSERT INTO `sys_job_log` VALUES (12194, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1127毫秒', '0', '', '2022-01-21 11:20:01'); INSERT INTO `sys_job_log` VALUES (12195, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:153毫秒', '0', '', '2022-01-21 11:30:00'); INSERT INTO `sys_job_log` VALUES (12196, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1172毫秒', '0', '', '2022-01-21 11:40:01'); INSERT INTO `sys_job_log` VALUES (12197, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1177毫秒', '0', '', '2022-01-21 11:40:01'); INSERT INTO `sys_job_log` VALUES (12198, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1242毫秒', '0', '', '2022-01-21 11:50:01'); INSERT INTO `sys_job_log` VALUES (12199, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:95毫秒', '0', '', '2022-01-21 12:00:00'); INSERT INTO `sys_job_log` VALUES (12200, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:135毫秒', '0', '', '2022-01-21 12:00:00'); INSERT INTO `sys_job_log` VALUES (12201, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:111毫秒', '0', '', '2022-01-21 12:10:00'); INSERT INTO `sys_job_log` VALUES (12202, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:104毫秒', '0', '', '2022-01-21 12:20:00'); INSERT INTO `sys_job_log` VALUES (12203, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:348毫秒', '0', '', '2022-01-21 12:20:00'); INSERT INTO `sys_job_log` VALUES (12204, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-21 12:30:01'); INSERT INTO `sys_job_log` VALUES (12205, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-21 12:40:00'); INSERT INTO `sys_job_log` VALUES (12206, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:207毫秒', '0', '', '2022-01-21 12:40:00'); INSERT INTO `sys_job_log` VALUES (12207, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1107毫秒', '0', '', '2022-01-21 13:31:17'); INSERT INTO `sys_job_log` VALUES (12208, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:76毫秒', '0', '', '2022-01-21 13:31:17'); INSERT INTO `sys_job_log` VALUES (12209, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:65毫秒', '0', '', '2022-01-21 13:31:17'); INSERT INTO `sys_job_log` VALUES (12210, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:67毫秒', '0', '', '2022-01-21 13:31:17'); INSERT INTO `sys_job_log` VALUES (12211, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1430毫秒', '0', '', '2022-01-21 13:31:17'); INSERT INTO `sys_job_log` VALUES (12212, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-21 13:31:17'); INSERT INTO `sys_job_log` VALUES (12213, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:145毫秒', '0', '', '2022-01-21 13:31:17'); INSERT INTO `sys_job_log` VALUES (12214, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:245毫秒', '0', '', '2022-01-21 13:40:00'); INSERT INTO `sys_job_log` VALUES (12215, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1122毫秒', '0', '', '2022-01-21 13:40:01'); INSERT INTO `sys_job_log` VALUES (12216, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-21 13:50:01'); INSERT INTO `sys_job_log` VALUES (12217, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-21 14:00:00'); INSERT INTO `sys_job_log` VALUES (12218, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:172毫秒', '0', '', '2022-01-21 14:00:00'); INSERT INTO `sys_job_log` VALUES (12219, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1111毫秒', '0', '', '2022-01-21 14:10:01'); INSERT INTO `sys_job_log` VALUES (12220, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:168毫秒', '0', '', '2022-01-21 14:20:00'); INSERT INTO `sys_job_log` VALUES (12221, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1108毫秒', '0', '', '2022-01-21 14:20:01'); INSERT INTO `sys_job_log` VALUES (12222, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1104毫秒', '0', '', '2022-01-21 14:30:01'); INSERT INTO `sys_job_log` VALUES (12223, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-21 14:40:00'); INSERT INTO `sys_job_log` VALUES (12224, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:418毫秒', '0', '', '2022-01-21 14:40:00'); INSERT INTO `sys_job_log` VALUES (12225, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1141毫秒', '0', '', '2022-01-21 14:50:01'); INSERT INTO `sys_job_log` VALUES (12226, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:250毫秒', '0', '', '2022-01-21 15:00:00'); INSERT INTO `sys_job_log` VALUES (12227, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1097毫秒', '0', '', '2022-01-21 15:00:01'); INSERT INTO `sys_job_log` VALUES (12228, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1209毫秒', '0', '', '2022-01-21 15:10:01'); INSERT INTO `sys_job_log` VALUES (12229, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:215毫秒', '0', '', '2022-01-21 15:20:00'); INSERT INTO `sys_job_log` VALUES (12230, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1143毫秒', '0', '', '2022-01-21 15:20:01'); INSERT INTO `sys_job_log` VALUES (12231, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1147毫秒', '0', '', '2022-01-21 15:30:01'); INSERT INTO `sys_job_log` VALUES (12232, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:94毫秒', '0', '', '2022-01-21 15:40:00'); INSERT INTO `sys_job_log` VALUES (12233, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:148毫秒', '0', '', '2022-01-21 15:40:00'); INSERT INTO `sys_job_log` VALUES (12234, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1128毫秒', '0', '', '2022-01-21 15:50:01'); INSERT INTO `sys_job_log` VALUES (12235, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:107毫秒', '0', '', '2022-01-21 16:00:00'); INSERT INTO `sys_job_log` VALUES (12236, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:226毫秒', '0', '', '2022-01-21 16:00:00'); INSERT INTO `sys_job_log` VALUES (12237, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1549毫秒', '0', '', '2022-01-21 16:10:01'); INSERT INTO `sys_job_log` VALUES (12238, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:445毫秒', '0', '', '2022-01-21 16:20:00'); INSERT INTO `sys_job_log` VALUES (12239, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-21 16:20:01'); INSERT INTO `sys_job_log` VALUES (12240, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1193毫秒', '0', '', '2022-01-21 16:30:01'); INSERT INTO `sys_job_log` VALUES (12241, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:307毫秒', '0', '', '2022-01-21 16:40:00'); INSERT INTO `sys_job_log` VALUES (12242, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1182毫秒', '0', '', '2022-01-21 16:40:01'); INSERT INTO `sys_job_log` VALUES (12243, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-21 16:50:01'); INSERT INTO `sys_job_log` VALUES (12244, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:113毫秒', '0', '', '2022-01-21 17:00:00'); INSERT INTO `sys_job_log` VALUES (12245, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:230毫秒', '0', '', '2022-01-21 17:00:00'); INSERT INTO `sys_job_log` VALUES (12246, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3025毫秒', '0', '', '2022-01-21 17:10:03'); INSERT INTO `sys_job_log` VALUES (12247, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2193毫秒', '0', '', '2022-01-21 17:20:02'); INSERT INTO `sys_job_log` VALUES (12248, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2221毫秒', '0', '', '2022-01-21 17:20:02'); INSERT INTO `sys_job_log` VALUES (12249, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:115毫秒', '0', '', '2022-01-21 17:30:00'); INSERT INTO `sys_job_log` VALUES (12250, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2918毫秒', '0', '', '2022-01-21 19:20:03'); INSERT INTO `sys_job_log` VALUES (12251, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3221毫秒', '0', '', '2022-01-21 19:20:03'); INSERT INTO `sys_job_log` VALUES (12252, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-21 19:30:00'); INSERT INTO `sys_job_log` VALUES (12253, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-21 19:40:00'); INSERT INTO `sys_job_log` VALUES (12254, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:259毫秒', '0', '', '2022-01-21 19:40:00'); INSERT INTO `sys_job_log` VALUES (12255, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:211毫秒', '0', '', '2022-01-21 19:50:00'); INSERT INTO `sys_job_log` VALUES (12256, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:242毫秒', '0', '', '2022-01-21 20:00:00'); INSERT INTO `sys_job_log` VALUES (12257, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:665毫秒', '0', '', '2022-01-21 20:00:00'); INSERT INTO `sys_job_log` VALUES (12258, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-21 20:10:00'); INSERT INTO `sys_job_log` VALUES (12259, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-21 20:20:00'); INSERT INTO `sys_job_log` VALUES (12260, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:258毫秒', '0', '', '2022-01-21 20:20:00'); INSERT INTO `sys_job_log` VALUES (12261, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-21 20:30:00'); INSERT INTO `sys_job_log` VALUES (12262, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-21 20:40:00'); INSERT INTO `sys_job_log` VALUES (12263, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:944毫秒', '0', '', '2022-01-21 20:40:00'); INSERT INTO `sys_job_log` VALUES (12264, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-21 20:50:00'); INSERT INTO `sys_job_log` VALUES (12265, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:290毫秒', '0', '', '2022-01-21 21:00:00'); INSERT INTO `sys_job_log` VALUES (12266, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:326毫秒', '0', '', '2022-01-21 21:00:00'); INSERT INTO `sys_job_log` VALUES (12267, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:320毫秒', '0', '', '2022-01-21 21:10:00'); INSERT INTO `sys_job_log` VALUES (12268, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:430毫秒', '0', '', '2022-01-21 21:20:00'); INSERT INTO `sys_job_log` VALUES (12269, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:723毫秒', '0', '', '2022-01-21 21:20:00'); INSERT INTO `sys_job_log` VALUES (12270, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-21 21:30:00'); INSERT INTO `sys_job_log` VALUES (12271, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:231毫秒', '0', '', '2022-01-21 21:40:00'); INSERT INTO `sys_job_log` VALUES (12272, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:268毫秒', '0', '', '2022-01-21 21:40:00'); INSERT INTO `sys_job_log` VALUES (12273, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:278毫秒', '0', '', '2022-01-21 21:50:00'); INSERT INTO `sys_job_log` VALUES (12274, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-21 22:00:00'); INSERT INTO `sys_job_log` VALUES (12275, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:706毫秒', '0', '', '2022-01-21 22:00:00'); INSERT INTO `sys_job_log` VALUES (12276, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-21 22:10:00'); INSERT INTO `sys_job_log` VALUES (12277, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-21 22:20:00'); INSERT INTO `sys_job_log` VALUES (12278, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:284毫秒', '0', '', '2022-01-21 22:20:00'); INSERT INTO `sys_job_log` VALUES (12279, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-21 22:30:00'); INSERT INTO `sys_job_log` VALUES (12280, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-21 22:40:00'); INSERT INTO `sys_job_log` VALUES (12281, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:778毫秒', '0', '', '2022-01-21 22:40:00'); INSERT INTO `sys_job_log` VALUES (12282, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:220毫秒', '0', '', '2022-01-21 22:50:00'); INSERT INTO `sys_job_log` VALUES (12283, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-21 23:00:00'); INSERT INTO `sys_job_log` VALUES (12284, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:270毫秒', '0', '', '2022-01-21 23:00:00'); INSERT INTO `sys_job_log` VALUES (12285, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-21 23:10:00'); INSERT INTO `sys_job_log` VALUES (12286, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:735毫秒', '0', '', '2022-01-21 23:20:00'); INSERT INTO `sys_job_log` VALUES (12287, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:751毫秒', '0', '', '2022-01-21 23:20:00'); INSERT INTO `sys_job_log` VALUES (12288, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:567毫秒', '0', '', '2022-01-21 23:30:00'); INSERT INTO `sys_job_log` VALUES (12289, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-21 23:40:00'); INSERT INTO `sys_job_log` VALUES (12290, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:233毫秒', '0', '', '2022-01-21 23:40:00'); INSERT INTO `sys_job_log` VALUES (12291, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:116毫秒', '0', '', '2022-01-21 23:50:00'); INSERT INTO `sys_job_log` VALUES (12292, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2142毫秒', '0', '', '2022-01-22 00:20:02'); INSERT INTO `sys_job_log` VALUES (12293, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2126毫秒', '0', '', '2022-01-22 00:20:02'); INSERT INTO `sys_job_log` VALUES (12294, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2122毫秒', '0', '', '2022-01-22 00:30:02'); INSERT INTO `sys_job_log` VALUES (12295, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2317毫秒', '0', '', '2022-01-22 00:40:02'); INSERT INTO `sys_job_log` VALUES (12296, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2315毫秒', '0', '', '2022-01-22 00:40:02'); INSERT INTO `sys_job_log` VALUES (12297, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:425毫秒', '0', '', '2022-01-22 00:50:00'); INSERT INTO `sys_job_log` VALUES (12298, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1033毫秒', '0', '', '2022-01-22 01:00:01'); INSERT INTO `sys_job_log` VALUES (12299, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1443毫秒', '0', '', '2022-01-22 01:00:01'); INSERT INTO `sys_job_log` VALUES (12300, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:213毫秒', '0', '', '2022-01-22 11:11:00'); INSERT INTO `sys_job_log` VALUES (12301, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:311毫秒', '0', '', '2022-01-22 11:20:00'); INSERT INTO `sys_job_log` VALUES (12302, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-22 11:22:00'); INSERT INTO `sys_job_log` VALUES (12303, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:228毫秒', '0', '', '2022-01-22 11:33:00'); INSERT INTO `sys_job_log` VALUES (12304, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:255毫秒', '0', '', '2022-01-22 11:40:00'); INSERT INTO `sys_job_log` VALUES (12305, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:180毫秒', '0', '', '2022-01-22 11:44:00'); INSERT INTO `sys_job_log` VALUES (12306, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-22 11:55:00'); INSERT INTO `sys_job_log` VALUES (12307, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:302毫秒', '0', '', '2022-01-22 12:00:00'); INSERT INTO `sys_job_log` VALUES (12308, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:321毫秒', '0', '', '2022-01-22 12:00:00'); INSERT INTO `sys_job_log` VALUES (12309, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:219毫秒', '0', '', '2022-01-22 12:11:00'); INSERT INTO `sys_job_log` VALUES (12310, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1327毫秒', '0', '', '2022-01-22 12:20:01'); INSERT INTO `sys_job_log` VALUES (12311, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:227毫秒', '0', '', '2022-01-22 12:22:00'); INSERT INTO `sys_job_log` VALUES (12312, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:328毫秒', '0', '', '2022-01-22 12:33:00'); INSERT INTO `sys_job_log` VALUES (12313, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:276毫秒', '0', '', '2022-01-22 12:40:00'); INSERT INTO `sys_job_log` VALUES (12314, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:245毫秒', '0', '', '2022-01-22 12:44:00'); INSERT INTO `sys_job_log` VALUES (12315, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:314毫秒', '0', '', '2022-01-22 12:55:00'); INSERT INTO `sys_job_log` VALUES (12316, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:312毫秒', '0', '', '2022-01-22 13:00:00'); INSERT INTO `sys_job_log` VALUES (12317, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1029毫秒', '0', '', '2022-01-22 13:00:01'); INSERT INTO `sys_job_log` VALUES (12318, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-22 13:11:00'); INSERT INTO `sys_job_log` VALUES (12319, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:269毫秒', '0', '', '2022-01-22 13:20:00'); INSERT INTO `sys_job_log` VALUES (12320, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-22 13:22:00'); INSERT INTO `sys_job_log` VALUES (12321, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:279毫秒', '0', '', '2022-01-22 13:33:00'); INSERT INTO `sys_job_log` VALUES (12322, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1023毫秒', '0', '', '2022-01-22 13:40:01'); INSERT INTO `sys_job_log` VALUES (12323, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:401毫秒', '0', '', '2022-01-22 13:44:00'); INSERT INTO `sys_job_log` VALUES (12324, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:394毫秒', '0', '', '2022-01-22 13:55:00'); INSERT INTO `sys_job_log` VALUES (12325, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:125毫秒', '0', '', '2022-01-22 14:10:23'); INSERT INTO `sys_job_log` VALUES (12326, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:964毫秒', '0', '', '2022-01-22 14:10:24'); INSERT INTO `sys_job_log` VALUES (12327, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-22 14:11:00'); INSERT INTO `sys_job_log` VALUES (12328, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:258毫秒', '0', '', '2022-01-22 14:20:00'); INSERT INTO `sys_job_log` VALUES (12329, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-22 14:22:00'); INSERT INTO `sys_job_log` VALUES (12330, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:276毫秒', '0', '', '2022-01-22 14:33:00'); INSERT INTO `sys_job_log` VALUES (12331, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:261毫秒', '0', '', '2022-01-22 14:40:00'); INSERT INTO `sys_job_log` VALUES (12332, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-22 14:44:00'); INSERT INTO `sys_job_log` VALUES (12333, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:253毫秒', '0', '', '2022-01-22 14:55:00'); INSERT INTO `sys_job_log` VALUES (12334, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:210毫秒', '0', '', '2022-01-22 15:00:00'); INSERT INTO `sys_job_log` VALUES (12335, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:981毫秒', '0', '', '2022-01-22 15:00:01'); INSERT INTO `sys_job_log` VALUES (12336, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:195毫秒', '0', '', '2022-01-22 15:11:00'); INSERT INTO `sys_job_log` VALUES (12337, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:333毫秒', '0', '', '2022-01-22 15:20:00'); INSERT INTO `sys_job_log` VALUES (12338, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:197毫秒', '0', '', '2022-01-22 15:22:00'); INSERT INTO `sys_job_log` VALUES (12339, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:399毫秒', '0', '', '2022-01-22 15:33:00'); INSERT INTO `sys_job_log` VALUES (12340, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1030毫秒', '0', '', '2022-01-22 15:40:01'); INSERT INTO `sys_job_log` VALUES (12341, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:198毫秒', '0', '', '2022-01-22 15:44:00'); INSERT INTO `sys_job_log` VALUES (12342, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-22 15:55:00'); INSERT INTO `sys_job_log` VALUES (12343, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:251毫秒', '0', '', '2022-01-22 16:00:00'); INSERT INTO `sys_job_log` VALUES (12344, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:245毫秒', '0', '', '2022-01-22 16:00:00'); INSERT INTO `sys_job_log` VALUES (12345, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-22 16:11:00'); INSERT INTO `sys_job_log` VALUES (12346, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1381毫秒', '0', '', '2022-01-22 16:20:01'); INSERT INTO `sys_job_log` VALUES (12347, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-22 16:22:00'); INSERT INTO `sys_job_log` VALUES (12348, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:439毫秒', '0', '', '2022-01-22 16:42:35'); INSERT INTO `sys_job_log` VALUES (12349, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:431毫秒', '0', '', '2022-01-22 16:42:35'); INSERT INTO `sys_job_log` VALUES (12350, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:399毫秒', '0', '', '2022-01-22 16:44:00'); INSERT INTO `sys_job_log` VALUES (12351, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:207毫秒', '0', '', '2022-01-22 16:55:00'); INSERT INTO `sys_job_log` VALUES (12352, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:222毫秒', '0', '', '2022-01-22 17:00:00'); INSERT INTO `sys_job_log` VALUES (12353, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:979毫秒', '0', '', '2022-01-22 17:00:01'); INSERT INTO `sys_job_log` VALUES (12354, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:330毫秒', '0', '', '2022-01-22 17:11:00'); INSERT INTO `sys_job_log` VALUES (12355, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:278毫秒', '0', '', '2022-01-22 17:20:00'); INSERT INTO `sys_job_log` VALUES (12356, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:184毫秒', '0', '', '2022-01-22 17:22:00'); INSERT INTO `sys_job_log` VALUES (12357, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:238毫秒', '0', '', '2022-01-22 17:33:00'); INSERT INTO `sys_job_log` VALUES (12358, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1029毫秒', '0', '', '2022-01-22 17:40:01'); INSERT INTO `sys_job_log` VALUES (12359, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-22 17:44:00'); INSERT INTO `sys_job_log` VALUES (12360, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3013毫秒', '0', '', '2022-01-22 18:45:10'); INSERT INTO `sys_job_log` VALUES (12361, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-01-22 18:45:10'); INSERT INTO `sys_job_log` VALUES (12362, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3003毫秒', '0', '', '2022-01-22 18:45:13'); INSERT INTO `sys_job_log` VALUES (12363, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-01-22 18:45:13'); INSERT INTO `sys_job_log` VALUES (12364, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3004毫秒', '0', '', '2022-01-22 18:45:16'); INSERT INTO `sys_job_log` VALUES (12365, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-01-22 18:45:16'); INSERT INTO `sys_job_log` VALUES (12366, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3002毫秒', '0', '', '2022-01-22 18:45:19'); INSERT INTO `sys_job_log` VALUES (12367, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3003毫秒', '0', '', '2022-01-22 18:45:22'); INSERT INTO `sys_job_log` VALUES (12368, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3003毫秒', '0', '', '2022-01-22 18:45:25'); INSERT INTO `sys_job_log` VALUES (12369, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-22 18:55:00'); INSERT INTO `sys_job_log` VALUES (12370, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:246毫秒', '0', '', '2022-01-22 19:00:00'); INSERT INTO `sys_job_log` VALUES (12371, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:353毫秒', '0', '', '2022-01-22 19:00:00'); INSERT INTO `sys_job_log` VALUES (12372, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-22 19:11:00'); INSERT INTO `sys_job_log` VALUES (12373, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1080毫秒', '0', '', '2022-01-22 19:20:01'); INSERT INTO `sys_job_log` VALUES (12374, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-22 19:22:00'); INSERT INTO `sys_job_log` VALUES (12375, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:389毫秒', '0', '', '2022-01-22 19:33:00'); INSERT INTO `sys_job_log` VALUES (12376, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:238毫秒', '0', '', '2022-01-22 19:40:00'); INSERT INTO `sys_job_log` VALUES (12377, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-22 19:44:00'); INSERT INTO `sys_job_log` VALUES (12378, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:159毫秒', '0', '', '2022-01-22 19:55:00'); INSERT INTO `sys_job_log` VALUES (12379, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-22 20:00:00'); INSERT INTO `sys_job_log` VALUES (12380, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1719毫秒', '0', '', '2022-01-22 20:00:01'); INSERT INTO `sys_job_log` VALUES (12381, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:163毫秒', '0', '', '2022-01-22 20:11:00'); INSERT INTO `sys_job_log` VALUES (12382, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:245毫秒', '0', '', '2022-01-22 20:20:00'); INSERT INTO `sys_job_log` VALUES (12383, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-22 20:22:00'); INSERT INTO `sys_job_log` VALUES (12384, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-22 20:33:00'); INSERT INTO `sys_job_log` VALUES (12385, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1371毫秒', '0', '', '2022-01-22 20:40:01'); INSERT INTO `sys_job_log` VALUES (12386, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-22 20:44:00'); INSERT INTO `sys_job_log` VALUES (12387, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-22 20:55:00'); INSERT INTO `sys_job_log` VALUES (12388, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:173毫秒', '0', '', '2022-01-22 21:00:00'); INSERT INTO `sys_job_log` VALUES (12389, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:223毫秒', '0', '', '2022-01-22 21:00:00'); INSERT INTO `sys_job_log` VALUES (12390, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:157毫秒', '0', '', '2022-01-22 21:11:00'); INSERT INTO `sys_job_log` VALUES (12391, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1634毫秒', '0', '', '2022-01-22 21:20:01'); INSERT INTO `sys_job_log` VALUES (12392, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-22 21:22:00'); INSERT INTO `sys_job_log` VALUES (12393, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:165毫秒', '0', '', '2022-01-22 21:33:00'); INSERT INTO `sys_job_log` VALUES (12394, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:235毫秒', '0', '', '2022-01-22 21:40:00'); INSERT INTO `sys_job_log` VALUES (12395, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-22 21:44:00'); INSERT INTO `sys_job_log` VALUES (12396, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-22 21:55:00'); INSERT INTO `sys_job_log` VALUES (12397, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-22 22:00:00'); INSERT INTO `sys_job_log` VALUES (12398, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1420毫秒', '0', '', '2022-01-22 22:00:01'); INSERT INTO `sys_job_log` VALUES (12399, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:168毫秒', '0', '', '2022-01-22 22:11:00'); INSERT INTO `sys_job_log` VALUES (12400, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:235毫秒', '0', '', '2022-01-22 22:20:00'); INSERT INTO `sys_job_log` VALUES (12401, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:161毫秒', '0', '', '2022-01-22 22:22:00'); INSERT INTO `sys_job_log` VALUES (12402, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-22 22:33:00'); INSERT INTO `sys_job_log` VALUES (12403, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1259毫秒', '0', '', '2022-01-22 22:40:01'); INSERT INTO `sys_job_log` VALUES (12404, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-22 22:44:00'); INSERT INTO `sys_job_log` VALUES (12405, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:193毫秒', '0', '', '2022-01-22 22:55:00'); INSERT INTO `sys_job_log` VALUES (12406, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:195毫秒', '0', '', '2022-01-22 23:00:00'); INSERT INTO `sys_job_log` VALUES (12407, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:292毫秒', '0', '', '2022-01-22 23:00:00'); INSERT INTO `sys_job_log` VALUES (12408, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:311毫秒', '0', '', '2022-01-22 23:11:00'); INSERT INTO `sys_job_log` VALUES (12409, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1805毫秒', '0', '', '2022-01-22 23:20:01'); INSERT INTO `sys_job_log` VALUES (12410, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:164毫秒', '0', '', '2022-01-22 23:22:00'); INSERT INTO `sys_job_log` VALUES (12411, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1331毫秒', '0', '', '2022-01-22 23:33:01'); INSERT INTO `sys_job_log` VALUES (12412, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2794毫秒', '0', '', '2022-01-23 19:33:02'); INSERT INTO `sys_job_log` VALUES (12413, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1799毫秒', '0', '', '2022-01-23 19:40:01'); INSERT INTO `sys_job_log` VALUES (12414, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:192毫秒', '0', '', '2022-01-23 19:44:00'); INSERT INTO `sys_job_log` VALUES (12415, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-23 19:55:00'); INSERT INTO `sys_job_log` VALUES (12416, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:444毫秒', '0', '', '2022-01-24 08:55:00'); INSERT INTO `sys_job_log` VALUES (12417, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:169毫秒', '0', '', '2022-01-24 09:00:00'); INSERT INTO `sys_job_log` VALUES (12418, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:177毫秒', '0', '', '2022-01-24 09:00:00'); INSERT INTO `sys_job_log` VALUES (12419, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:201毫秒', '0', '', '2022-01-24 09:11:00'); INSERT INTO `sys_job_log` VALUES (12420, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:755毫秒', '0', '', '2022-01-24 09:20:00'); INSERT INTO `sys_job_log` VALUES (12421, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1433毫秒', '0', '', '2022-01-24 09:22:01'); INSERT INTO `sys_job_log` VALUES (12422, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1302毫秒', '0', '', '2022-01-24 09:33:01'); INSERT INTO `sys_job_log` VALUES (12423, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1990毫秒', '0', '', '2022-01-24 09:40:02'); INSERT INTO `sys_job_log` VALUES (12424, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:183毫秒', '0', '', '2022-01-24 09:44:00'); INSERT INTO `sys_job_log` VALUES (12425, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-24 09:55:00'); INSERT INTO `sys_job_log` VALUES (12426, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1863毫秒', '0', '', '2022-01-24 10:00:01'); INSERT INTO `sys_job_log` VALUES (12427, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1860毫秒', '0', '', '2022-01-24 10:00:01'); INSERT INTO `sys_job_log` VALUES (12428, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1188毫秒', '0', '', '2022-01-24 10:11:01'); INSERT INTO `sys_job_log` VALUES (12429, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:832毫秒', '0', '', '2022-01-24 10:20:00'); INSERT INTO `sys_job_log` VALUES (12430, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1639毫秒', '0', '', '2022-01-24 10:22:01'); INSERT INTO `sys_job_log` VALUES (12431, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-24 10:33:00'); INSERT INTO `sys_job_log` VALUES (12432, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1247毫秒', '0', '', '2022-01-24 10:40:01'); INSERT INTO `sys_job_log` VALUES (12433, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-24 10:44:00'); INSERT INTO `sys_job_log` VALUES (12434, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-24 10:55:00'); INSERT INTO `sys_job_log` VALUES (12435, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:197毫秒', '0', '', '2022-01-24 11:00:00'); INSERT INTO `sys_job_log` VALUES (12436, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:233毫秒', '0', '', '2022-01-24 11:00:00'); INSERT INTO `sys_job_log` VALUES (12437, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:455毫秒', '0', '', '2022-01-24 11:11:00'); INSERT INTO `sys_job_log` VALUES (12438, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1218毫秒', '0', '', '2022-01-24 11:20:01'); INSERT INTO `sys_job_log` VALUES (12439, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:185毫秒', '0', '', '2022-01-24 11:22:00'); INSERT INTO `sys_job_log` VALUES (12440, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:114毫秒', '0', '', '2022-01-24 11:33:00'); INSERT INTO `sys_job_log` VALUES (12441, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1154毫秒', '0', '', '2022-01-24 11:40:01'); INSERT INTO `sys_job_log` VALUES (12442, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-24 11:44:00'); INSERT INTO `sys_job_log` VALUES (12443, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-24 11:55:00'); INSERT INTO `sys_job_log` VALUES (12444, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:122毫秒', '0', '', '2022-01-24 12:00:00'); INSERT INTO `sys_job_log` VALUES (12445, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:122毫秒', '0', '', '2022-01-24 12:00:00'); INSERT INTO `sys_job_log` VALUES (12446, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:146毫秒', '0', '', '2022-01-24 12:11:00'); INSERT INTO `sys_job_log` VALUES (12447, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2295毫秒', '0', '', '2022-01-24 12:20:02'); INSERT INTO `sys_job_log` VALUES (12448, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:134毫秒', '0', '', '2022-01-24 12:22:00'); INSERT INTO `sys_job_log` VALUES (12449, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:191毫秒', '0', '', '2022-01-24 13:33:58'); INSERT INTO `sys_job_log` VALUES (12450, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:75毫秒', '0', '', '2022-01-24 13:33:58'); INSERT INTO `sys_job_log` VALUES (12451, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:70毫秒', '0', '', '2022-01-24 13:33:58'); INSERT INTO `sys_job_log` VALUES (12452, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:64毫秒', '0', '', '2022-01-24 13:33:58'); INSERT INTO `sys_job_log` VALUES (12453, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:80毫秒', '0', '', '2022-01-24 13:33:58'); INSERT INTO `sys_job_log` VALUES (12454, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:646毫秒', '0', '', '2022-01-24 13:33:58'); INSERT INTO `sys_job_log` VALUES (12455, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:123毫秒', '0', '', '2022-01-24 13:33:58'); INSERT INTO `sys_job_log` VALUES (12456, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:99毫秒', '0', '', '2022-01-24 13:33:58'); INSERT INTO `sys_job_log` VALUES (12457, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:66毫秒', '0', '', '2022-01-24 13:33:58'); INSERT INTO `sys_job_log` VALUES (12458, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:153毫秒', '0', '', '2022-01-24 13:33:58'); INSERT INTO `sys_job_log` VALUES (12459, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1218毫秒', '0', '', '2022-01-24 13:40:01'); INSERT INTO `sys_job_log` VALUES (12460, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:105毫秒', '0', '', '2022-01-24 13:44:00'); INSERT INTO `sys_job_log` VALUES (12461, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-24 13:55:00'); INSERT INTO `sys_job_log` VALUES (12462, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:124毫秒', '0', '', '2022-01-24 14:00:00'); INSERT INTO `sys_job_log` VALUES (12463, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:137毫秒', '0', '', '2022-01-24 14:00:00'); INSERT INTO `sys_job_log` VALUES (12464, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:232毫秒', '0', '', '2022-01-24 14:11:00'); INSERT INTO `sys_job_log` VALUES (12465, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:136毫秒', '0', '', '2022-01-24 14:20:00'); INSERT INTO `sys_job_log` VALUES (12466, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1121毫秒', '0', '', '2022-01-24 14:22:01'); INSERT INTO `sys_job_log` VALUES (12467, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-24 14:33:00'); INSERT INTO `sys_job_log` VALUES (12468, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2737毫秒', '0', '', '2022-01-24 14:40:02'); INSERT INTO `sys_job_log` VALUES (12469, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:143毫秒', '0', '', '2022-01-24 14:44:00'); INSERT INTO `sys_job_log` VALUES (12470, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:160毫秒', '0', '', '2022-01-24 14:55:00'); INSERT INTO `sys_job_log` VALUES (12471, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-24 15:00:00'); INSERT INTO `sys_job_log` VALUES (12472, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:156毫秒', '0', '', '2022-01-24 15:00:00'); INSERT INTO `sys_job_log` VALUES (12473, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1206毫秒', '0', '', '2022-01-24 15:11:01'); INSERT INTO `sys_job_log` VALUES (12474, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2107毫秒', '0', '', '2022-01-24 15:20:02'); INSERT INTO `sys_job_log` VALUES (12475, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:167毫秒', '0', '', '2022-01-24 15:22:00'); INSERT INTO `sys_job_log` VALUES (12476, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:262毫秒', '0', '', '2022-01-24 15:33:00'); INSERT INTO `sys_job_log` VALUES (12477, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1278毫秒', '0', '', '2022-01-24 15:40:01'); INSERT INTO `sys_job_log` VALUES (12478, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:110毫秒', '0', '', '2022-01-24 15:44:00'); INSERT INTO `sys_job_log` VALUES (12479, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:199毫秒', '0', '', '2022-01-24 15:55:00'); INSERT INTO `sys_job_log` VALUES (12480, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:174毫秒', '0', '', '2022-01-24 16:00:00'); INSERT INTO `sys_job_log` VALUES (12481, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2043毫秒', '0', '', '2022-01-24 16:00:02'); INSERT INTO `sys_job_log` VALUES (12482, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3016毫秒', '0', '', '2022-01-24 16:11:03'); INSERT INTO `sys_job_log` VALUES (12483, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:201毫秒', '0', '', '2022-01-24 16:20:00'); INSERT INTO `sys_job_log` VALUES (12484, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-24 16:22:00'); INSERT INTO `sys_job_log` VALUES (12485, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-24 16:33:00'); INSERT INTO `sys_job_log` VALUES (12486, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:715毫秒', '0', '', '2022-01-24 16:40:00'); INSERT INTO `sys_job_log` VALUES (12487, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:196毫秒', '0', '', '2022-01-24 16:44:00'); INSERT INTO `sys_job_log` VALUES (12488, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:139毫秒', '0', '', '2022-01-24 16:55:00'); INSERT INTO `sys_job_log` VALUES (12489, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:264毫秒', '0', '', '2022-01-24 17:00:00'); INSERT INTO `sys_job_log` VALUES (12490, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:264毫秒', '0', '', '2022-01-24 17:00:00'); INSERT INTO `sys_job_log` VALUES (12491, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-24 17:11:00'); INSERT INTO `sys_job_log` VALUES (12492, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1215毫秒', '0', '', '2022-01-24 17:20:01'); INSERT INTO `sys_job_log` VALUES (12493, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-24 17:22:00'); INSERT INTO `sys_job_log` VALUES (12494, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2153毫秒', '0', '', '2022-01-24 18:55:02'); INSERT INTO `sys_job_log` VALUES (12495, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:376毫秒', '0', '', '2022-01-24 19:00:00'); INSERT INTO `sys_job_log` VALUES (12496, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:432毫秒', '0', '', '2022-01-24 19:00:00'); INSERT INTO `sys_job_log` VALUES (12497, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:202毫秒', '0', '', '2022-01-24 19:11:00'); INSERT INTO `sys_job_log` VALUES (12498, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:278毫秒', '0', '', '2022-01-24 19:20:00'); INSERT INTO `sys_job_log` VALUES (12499, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:206毫秒', '0', '', '2022-01-24 19:22:00'); INSERT INTO `sys_job_log` VALUES (12500, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:218毫秒', '0', '', '2022-01-24 19:33:00'); INSERT INTO `sys_job_log` VALUES (12501, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:239毫秒', '0', '', '2022-01-24 19:40:00'); INSERT INTO `sys_job_log` VALUES (12502, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-24 19:44:00'); INSERT INTO `sys_job_log` VALUES (12503, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:230毫秒', '0', '', '2022-01-24 19:55:00'); INSERT INTO `sys_job_log` VALUES (12504, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:791毫秒', '0', '', '2022-01-24 20:00:07'); INSERT INTO `sys_job_log` VALUES (12505, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1368毫秒', '0', '', '2022-01-24 20:00:08'); INSERT INTO `sys_job_log` VALUES (12506, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:315毫秒', '0', '', '2022-01-24 20:11:00'); INSERT INTO `sys_job_log` VALUES (12507, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:160毫秒', '0', '', '2022-01-24 20:20:00'); INSERT INTO `sys_job_log` VALUES (12508, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2505毫秒', '0', '', '2022-01-25 08:33:02'); INSERT INTO `sys_job_log` VALUES (12509, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:328毫秒', '0', '', '2022-01-25 08:40:00'); INSERT INTO `sys_job_log` VALUES (12510, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:156毫秒', '0', '', '2022-01-25 08:44:00'); INSERT INTO `sys_job_log` VALUES (12511, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:223毫秒', '0', '', '2022-01-25 08:55:00'); INSERT INTO `sys_job_log` VALUES (12512, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:158毫秒', '0', '', '2022-01-25 09:00:00'); INSERT INTO `sys_job_log` VALUES (12513, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:160毫秒', '0', '', '2022-01-25 09:00:00'); INSERT INTO `sys_job_log` VALUES (12514, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:209毫秒', '0', '', '2022-01-25 09:11:00'); INSERT INTO `sys_job_log` VALUES (12515, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1724毫秒', '0', '', '2022-01-25 09:20:01'); INSERT INTO `sys_job_log` VALUES (12516, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3012毫秒', '0', '', '2022-01-25 09:22:03'); INSERT INTO `sys_job_log` VALUES (12517, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-25 09:33:00'); INSERT INTO `sys_job_log` VALUES (12518, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1250毫秒', '0', '', '2022-01-25 09:40:01'); INSERT INTO `sys_job_log` VALUES (12519, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-25 09:44:00'); INSERT INTO `sys_job_log` VALUES (12520, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-25 09:55:00'); INSERT INTO `sys_job_log` VALUES (12521, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:178毫秒', '0', '', '2022-01-25 10:00:00'); INSERT INTO `sys_job_log` VALUES (12522, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1817毫秒', '0', '', '2022-01-25 10:00:01'); INSERT INTO `sys_job_log` VALUES (12523, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1214毫秒', '0', '', '2022-01-25 10:11:01'); INSERT INTO `sys_job_log` VALUES (12524, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1229毫秒', '0', '', '2022-01-25 10:20:01'); INSERT INTO `sys_job_log` VALUES (12525, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-25 10:22:00'); INSERT INTO `sys_job_log` VALUES (12526, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:217毫秒', '0', '', '2022-01-25 10:33:00'); INSERT INTO `sys_job_log` VALUES (12527, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1889毫秒', '0', '', '2022-01-25 10:40:01'); INSERT INTO `sys_job_log` VALUES (12528, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:182毫秒', '0', '', '2022-01-25 10:44:00'); INSERT INTO `sys_job_log` VALUES (12529, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-25 10:55:00'); INSERT INTO `sys_job_log` VALUES (12530, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:234毫秒', '0', '', '2022-01-25 11:00:00'); INSERT INTO `sys_job_log` VALUES (12531, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:227毫秒', '0', '', '2022-01-25 11:00:00'); INSERT INTO `sys_job_log` VALUES (12532, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-25 11:11:00'); INSERT INTO `sys_job_log` VALUES (12533, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3006毫秒', '0', '', '2022-01-25 11:20:03'); INSERT INTO `sys_job_log` VALUES (12534, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:175毫秒', '0', '', '2022-01-25 11:22:00'); INSERT INTO `sys_job_log` VALUES (12535, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:151毫秒', '0', '', '2022-01-25 11:33:00'); INSERT INTO `sys_job_log` VALUES (12536, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:173毫秒', '0', '', '2022-01-25 11:40:00'); INSERT INTO `sys_job_log` VALUES (12537, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-25 11:44:00'); INSERT INTO `sys_job_log` VALUES (12538, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:145毫秒', '0', '', '2022-01-25 11:55:00'); INSERT INTO `sys_job_log` VALUES (12539, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:235毫秒', '0', '', '2022-01-25 12:00:00'); INSERT INTO `sys_job_log` VALUES (12540, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:223毫秒', '0', '', '2022-01-25 12:00:00'); INSERT INTO `sys_job_log` VALUES (12541, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:505毫秒', '0', '', '2022-01-25 12:11:00'); INSERT INTO `sys_job_log` VALUES (12542, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1814毫秒', '0', '', '2022-01-25 12:20:01'); INSERT INTO `sys_job_log` VALUES (12543, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:141毫秒', '0', '', '2022-01-25 12:22:00'); INSERT INTO `sys_job_log` VALUES (12544, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-25 12:33:00'); INSERT INTO `sys_job_log` VALUES (12545, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1310毫秒', '0', '', '2022-01-25 12:40:01'); INSERT INTO `sys_job_log` VALUES (12546, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:147毫秒', '0', '', '2022-01-25 12:44:00'); INSERT INTO `sys_job_log` VALUES (12547, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3010毫秒', '0', '', '2022-01-25 12:55:03'); INSERT INTO `sys_job_log` VALUES (12548, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:155毫秒', '0', '', '2022-01-25 13:00:00'); INSERT INTO `sys_job_log` VALUES (12549, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:792毫秒', '0', '', '2022-01-25 13:00:00'); INSERT INTO `sys_job_log` VALUES (12550, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:224毫秒', '0', '', '2022-01-25 13:11:00'); INSERT INTO `sys_job_log` VALUES (12551, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:108毫秒', '0', '', '2022-01-25 13:34:18'); INSERT INTO `sys_job_log` VALUES (12552, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:69毫秒', '0', '', '2022-01-25 13:34:18'); INSERT INTO `sys_job_log` VALUES (12553, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:701毫秒', '0', '', '2022-01-25 13:34:19'); INSERT INTO `sys_job_log` VALUES (12554, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3018毫秒', '0', '', '2022-01-25 13:40:03'); INSERT INTO `sys_job_log` VALUES (12555, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:148毫秒', '0', '', '2022-01-25 13:44:00'); INSERT INTO `sys_job_log` VALUES (12556, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:208毫秒', '0', '', '2022-01-25 13:55:00'); INSERT INTO `sys_job_log` VALUES (12557, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:126毫秒', '0', '', '2022-01-25 14:00:00'); INSERT INTO `sys_job_log` VALUES (12558, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:129毫秒', '0', '', '2022-01-25 14:00:00'); INSERT INTO `sys_job_log` VALUES (12559, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:162毫秒', '0', '', '2022-01-25 14:11:00'); INSERT INTO `sys_job_log` VALUES (12560, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-01-25 14:20:03'); INSERT INTO `sys_job_log` VALUES (12561, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:247毫秒', '0', '', '2022-01-25 14:22:00'); INSERT INTO `sys_job_log` VALUES (12562, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:649毫秒', '0', '', '2022-01-25 14:33:00'); INSERT INTO `sys_job_log` VALUES (12563, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:400毫秒', '0', '', '2022-01-25 14:40:00'); INSERT INTO `sys_job_log` VALUES (12564, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2595毫秒', '0', '', '2022-01-25 14:44:02'); INSERT INTO `sys_job_log` VALUES (12565, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:306毫秒', '0', '', '2022-01-25 14:55:00'); INSERT INTO `sys_job_log` VALUES (12566, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:179毫秒', '0', '', '2022-01-25 15:00:00'); INSERT INTO `sys_job_log` VALUES (12567, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1687毫秒', '0', '', '2022-01-25 15:00:01'); INSERT INTO `sys_job_log` VALUES (12568, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2472毫秒', '0', '', '2022-01-25 15:11:02'); INSERT INTO `sys_job_log` VALUES (12569, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:424毫秒', '0', '', '2022-01-25 15:20:00'); INSERT INTO `sys_job_log` VALUES (12570, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-25 15:22:00'); INSERT INTO `sys_job_log` VALUES (12571, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-25 15:33:00'); INSERT INTO `sys_job_log` VALUES (12572, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:172毫秒', '0', '', '2022-01-25 15:40:00'); INSERT INTO `sys_job_log` VALUES (12573, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:166毫秒', '0', '', '2022-01-25 15:44:00'); INSERT INTO `sys_job_log` VALUES (12574, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:152毫秒', '0', '', '2022-01-25 15:55:00'); INSERT INTO `sys_job_log` VALUES (12575, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:121毫秒', '0', '', '2022-01-25 16:00:00'); INSERT INTO `sys_job_log` VALUES (12576, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:143毫秒', '0', '', '2022-01-25 16:00:00'); INSERT INTO `sys_job_log` VALUES (12577, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:171毫秒', '0', '', '2022-01-25 16:11:00'); INSERT INTO `sys_job_log` VALUES (12578, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:944毫秒', '0', '', '2022-01-25 16:20:00'); INSERT INTO `sys_job_log` VALUES (12579, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:129毫秒', '0', '', '2022-01-25 16:22:00'); INSERT INTO `sys_job_log` VALUES (12580, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1136毫秒', '0', '', '2022-01-25 16:33:01'); INSERT INTO `sys_job_log` VALUES (12581, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:296毫秒', '0', '', '2022-01-25 16:40:00'); INSERT INTO `sys_job_log` VALUES (12582, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:172毫秒', '0', '', '2022-01-25 16:44:00'); INSERT INTO `sys_job_log` VALUES (12583, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1225毫秒', '0', '', '2022-01-25 16:55:01'); INSERT INTO `sys_job_log` VALUES (12584, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:1258毫秒', '0', '', '2022-01-25 17:00:00'); INSERT INTO `sys_job_log` VALUES (12585, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:780毫秒', '0', '', '2022-01-25 17:00:00'); INSERT INTO `sys_job_log` VALUES (12586, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:883毫秒', '0', '', '2022-01-25 17:00:00'); INSERT INTO `sys_job_log` VALUES (12587, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:34毫秒', '0', '', '2022-01-25 17:01:20'); INSERT INTO `sys_job_log` VALUES (12588, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:33毫秒', '0', '', '2022-01-25 17:10:32'); INSERT INTO `sys_job_log` VALUES (12589, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1150毫秒', '0', '', '2022-01-25 17:11:01'); INSERT INTO `sys_job_log` VALUES (12590, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:11753毫秒', '0', '', '2022-01-25 17:13:08'); INSERT INTO `sys_job_log` VALUES (12591, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2868毫秒', '0', '', '2022-01-25 17:20:02'); INSERT INTO `sys_job_log` VALUES (12592, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:149毫秒', '0', '', '2022-01-25 17:22:00'); INSERT INTO `sys_job_log` VALUES (12593, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:34毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:37)\r\n ... 10 more\r\n', '2022-01-25 17:22:57'); INSERT INTO `sys_job_log` VALUES (12594, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:31毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:37)\r\n ... 10 more\r\n', '2022-01-25 17:24:33'); INSERT INTO `sys_job_log` VALUES (12595, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:59毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:37)\r\n ... 10 more\r\n', '2022-01-25 17:25:55'); INSERT INTO `sys_job_log` VALUES (12596, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:38271毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:37)\r\n ... 10 more\r\n', '2022-01-25 17:28:09'); INSERT INTO `sys_job_log` VALUES (12597, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2945毫秒', '0', '', '2022-01-25 17:55:03'); INSERT INTO `sys_job_log` VALUES (12598, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:19897毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:40)\r\n ... 10 more\r\n', '2022-01-25 17:55:48'); INSERT INTO `sys_job_log` VALUES (12599, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:32毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:40)\r\n ... 10 more\r\n', '2022-01-25 17:59:57'); INSERT INTO `sys_job_log` VALUES (12600, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3009毫秒', '0', '', '2022-01-25 18:00:03'); INSERT INTO `sys_job_log` VALUES (12601, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3010毫秒', '0', '', '2022-01-25 18:00:03'); INSERT INTO `sys_job_log` VALUES (12602, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:3006毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:40)\r\n ... 10 more\r\n', '2022-01-25 18:03:15'); INSERT INTO `sys_job_log` VALUES (12603, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:19毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:40)\r\n ... 10 more\r\n', '2022-01-25 18:05:00'); INSERT INTO `sys_job_log` VALUES (12604, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:117毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:40)\r\n ... 10 more\r\n', '2022-01-25 18:06:24'); INSERT INTO `sys_job_log` VALUES (12605, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:10794毫秒', '0', '', '2022-01-25 18:08:35'); INSERT INTO `sys_job_log` VALUES (12606, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:154毫秒', '0', '', '2022-01-25 18:11:00'); INSERT INTO `sys_job_log` VALUES (12607, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:55毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:40)\r\n ... 10 more\r\n', '2022-01-25 18:12:24'); INSERT INTO `sys_job_log` VALUES (12608, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:1毫秒', '0', '', '2022-01-25 18:14:00'); INSERT INTO `sys_job_log` VALUES (12609, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:30毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:40)\r\n ... 10 more\r\n', '2022-01-25 18:14:48'); INSERT INTO `sys_job_log` VALUES (12610, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:14924毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:49)\r\n ... 10 more\r\n', '2022-01-25 18:17:15'); INSERT INTO `sys_job_log` VALUES (12611, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:721毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:43)\r\n ... 10 more\r\n', '2022-01-25 18:18:40'); INSERT INTO `sys_job_log` VALUES (12612, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:91毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:44)\r\n ... 10 more\r\n', '2022-01-25 18:20:43'); INSERT INTO `sys_job_log` VALUES (12613, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2244毫秒', '0', '', '2022-01-25 18:22:02'); INSERT INTO `sys_job_log` VALUES (12614, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:516毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:44)\r\n ... 10 more\r\n', '2022-01-25 18:23:02'); INSERT INTO `sys_job_log` VALUES (12615, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:16167毫秒', '0', '', '2022-01-25 18:26:42'); INSERT INTO `sys_job_log` VALUES (12616, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:27毫秒', '0', '', '2022-01-25 18:29:18'); INSERT INTO `sys_job_log` VALUES (12617, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:38毫秒', '0', '', '2022-01-25 18:31:54'); INSERT INTO `sys_job_log` VALUES (12618, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3051毫秒', '0', '', '2022-01-25 18:33:03'); INSERT INTO `sys_job_log` VALUES (12619, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:1326毫秒', '0', '', '2022-01-25 18:39:56'); INSERT INTO `sys_job_log` VALUES (12620, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3093毫秒', '0', '', '2022-01-25 18:40:03'); INSERT INTO `sys_job_log` VALUES (12621, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:18毫秒', '0', '', '2022-01-25 18:40:48'); INSERT INTO `sys_job_log` VALUES (12622, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:464毫秒', '0', '', '2022-01-25 18:44:00'); INSERT INTO `sys_job_log` VALUES (12623, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:377毫秒', '0', '', '2022-01-25 18:55:00'); INSERT INTO `sys_job_log` VALUES (12624, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:229毫秒', '0', '', '2022-01-25 19:00:00'); INSERT INTO `sys_job_log` VALUES (12625, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1292毫秒', '0', '', '2022-01-25 19:00:01'); INSERT INTO `sys_job_log` VALUES (12626, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:27毫秒', '1', 'java.lang.reflect.InvocationTargetException\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\r\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\r\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\r\n at java.base/java.lang.reflect.Method.invoke(Method.java:566)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:61)\r\n at com.ruoyi.job.util.JobInvokeUtil.invokeMethod(JobInvokeUtil.java:33)\r\n at com.ruoyi.job.util.QuartzDisallowConcurrentExecution.doExecute(QuartzDisallowConcurrentExecution.java:20)\r\n at com.ruoyi.job.util.AbstractQuartzJob.execute(AbstractQuartzJob.java:42)\r\n at org.quartz.core.JobRunShell.run(JobRunShell.java:202)\r\n at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:573)\r\nCaused by: java.lang.NullPointerException\r\n at com.alibaba.cloud.sentinel.feign.SentinelInvocationHandler.invoke(SentinelInvocationHandler.java:100)\r\n at com.sun.proxy.$Proxy163.findRecordListForRPC(Unknown Source)\r\n at com.xjs.job.task.WarningTask.handleRecordDate(WarningTask.java:37)\r\n ... 10 more\r\n', '2022-01-25 19:10:37'); INSERT INTO `sys_job_log` VALUES (12627, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2504毫秒', '0', '', '2022-01-25 19:11:02'); INSERT INTO `sys_job_log` VALUES (12628, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:89毫秒', '0', '', '2022-01-25 19:11:48'); INSERT INTO `sys_job_log` VALUES (12629, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:42毫秒', '0', '', '2022-01-25 19:14:36'); INSERT INTO `sys_job_log` VALUES (12630, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:466毫秒', '0', '', '2022-01-25 19:17:23'); INSERT INTO `sys_job_log` VALUES (12631, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1151毫秒', '0', '', '2022-01-25 19:20:01'); INSERT INTO `sys_job_log` VALUES (12632, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:86毫秒', '0', '', '2022-01-25 19:21:51'); INSERT INTO `sys_job_log` VALUES (12633, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:404毫秒', '0', '', '2022-01-25 19:22:00'); INSERT INTO `sys_job_log` VALUES (12634, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:85毫秒', '0', '', '2022-01-25 19:25:42'); INSERT INTO `sys_job_log` VALUES (12635, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:86毫秒', '0', '', '2022-01-25 19:30:16'); INSERT INTO `sys_job_log` VALUES (12636, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:304毫秒', '0', '', '2022-01-25 19:31:47'); INSERT INTO `sys_job_log` VALUES (12637, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:25毫秒', '0', '', '2022-01-25 19:33:00'); INSERT INTO `sys_job_log` VALUES (12638, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:597毫秒', '0', '', '2022-01-25 19:39:18'); INSERT INTO `sys_job_log` VALUES (12639, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2866毫秒', '0', '', '2022-01-25 19:40:02'); INSERT INTO `sys_job_log` VALUES (12640, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:67毫秒', '0', '', '2022-01-25 19:43:54'); INSERT INTO `sys_job_log` VALUES (12641, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:299毫秒', '0', '', '2022-01-25 19:44:00'); INSERT INTO `sys_job_log` VALUES (12642, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:23467毫秒', '0', '', '2022-01-25 19:47:53'); INSERT INTO `sys_job_log` VALUES (12643, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:357毫秒', '0', '', '2022-01-25 19:50:00'); INSERT INTO `sys_job_log` VALUES (12644, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:304毫秒', '0', '', '2022-01-25 20:00:00'); INSERT INTO `sys_job_log` VALUES (12645, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:427毫秒', '0', '', '2022-01-25 20:00:00'); INSERT INTO `sys_job_log` VALUES (12646, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:1044毫秒', '0', '', '2022-01-25 20:05:31'); INSERT INTO `sys_job_log` VALUES (12647, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:524毫秒', '0', '', '2022-01-26 08:40:00'); INSERT INTO `sys_job_log` VALUES (12648, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:516毫秒', '0', '', '2022-01-26 08:40:00'); INSERT INTO `sys_job_log` VALUES (12649, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:3012毫秒', '0', '', '2022-01-26 08:50:03'); INSERT INTO `sys_job_log` VALUES (12650, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:1216毫秒', '0', '', '2022-01-26 09:00:01'); INSERT INTO `sys_job_log` VALUES (12651, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1203毫秒', '0', '', '2022-01-26 09:00:01'); INSERT INTO `sys_job_log` VALUES (12652, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1648毫秒', '0', '', '2022-01-26 09:00:01'); INSERT INTO `sys_job_log` VALUES (12653, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:31206毫秒', '0', '', '2022-01-26 09:02:47'); INSERT INTO `sys_job_log` VALUES (12654, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2500毫秒', '0', '', '2022-01-26 09:10:02'); INSERT INTO `sys_job_log` VALUES (12655, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2089毫秒', '0', '', '2022-01-26 09:20:02'); INSERT INTO `sys_job_log` VALUES (12656, '文案RPC调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案RPC调用任务 总共耗时:2099毫秒', '0', '', '2022-01-26 09:20:02'); INSERT INTO `sys_job_log` VALUES (12657, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2373毫秒', '0', '', '2022-01-26 09:20:02'); INSERT INTO `sys_job_log` VALUES (12658, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:328毫秒', '0', '', '2022-01-26 09:30:00'); INSERT INTO `sys_job_log` VALUES (12659, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-01-26 09:30:00'); INSERT INTO `sys_job_log` VALUES (12660, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:580毫秒', '0', '', '2022-01-26 09:40:00'); INSERT INTO `sys_job_log` VALUES (12661, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:741毫秒', '0', '', '2022-01-26 09:40:00'); INSERT INTO `sys_job_log` VALUES (12662, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1253毫秒', '0', '', '2022-01-26 09:40:01'); INSERT INTO `sys_job_log` VALUES (12663, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:858毫秒', '0', '', '2022-01-26 09:50:00'); INSERT INTO `sys_job_log` VALUES (12664, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1236毫秒', '0', '', '2022-01-26 09:50:01'); INSERT INTO `sys_job_log` VALUES (12665, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:350毫秒', '0', '', '2022-01-26 10:00:00'); INSERT INTO `sys_job_log` VALUES (12666, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:704毫秒', '0', '', '2022-01-26 10:00:00'); INSERT INTO `sys_job_log` VALUES (12667, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1265毫秒', '0', '', '2022-01-26 10:00:01'); INSERT INTO `sys_job_log` VALUES (12668, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:904毫秒', '0', '', '2022-01-26 10:10:00'); INSERT INTO `sys_job_log` VALUES (12669, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1291毫秒', '0', '', '2022-01-26 10:10:01'); INSERT INTO `sys_job_log` VALUES (12670, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3387毫秒', '0', '', '2022-01-26 10:30:03'); INSERT INTO `sys_job_log` VALUES (12671, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3387毫秒', '0', '', '2022-01-26 10:30:03'); INSERT INTO `sys_job_log` VALUES (12672, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:371毫秒', '0', '', '2022-01-26 10:40:00'); INSERT INTO `sys_job_log` VALUES (12673, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:750毫秒', '0', '', '2022-01-26 10:40:00'); INSERT INTO `sys_job_log` VALUES (12674, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1233毫秒', '0', '', '2022-01-26 10:40:01'); INSERT INTO `sys_job_log` VALUES (12675, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:293毫秒', '0', '', '2022-01-26 10:50:00'); INSERT INTO `sys_job_log` VALUES (12676, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-01-26 10:50:00'); INSERT INTO `sys_job_log` VALUES (12677, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:159毫秒', '0', '', '2022-01-26 11:00:00'); INSERT INTO `sys_job_log` VALUES (12678, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:278毫秒', '0', '', '2022-01-26 11:00:00'); INSERT INTO `sys_job_log` VALUES (12679, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:691毫秒', '0', '', '2022-01-26 11:00:00'); INSERT INTO `sys_job_log` VALUES (12680, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:256毫秒', '0', '', '2022-01-26 11:10:00'); INSERT INTO `sys_job_log` VALUES (12681, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-01-26 11:10:00'); INSERT INTO `sys_job_log` VALUES (12682, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:290毫秒', '0', '', '2022-01-26 11:20:00'); INSERT INTO `sys_job_log` VALUES (12683, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-01-26 11:20:00'); INSERT INTO `sys_job_log` VALUES (12684, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1231毫秒', '0', '', '2022-01-26 11:20:01'); INSERT INTO `sys_job_log` VALUES (12685, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:232毫秒', '0', '', '2022-01-26 11:30:00'); INSERT INTO `sys_job_log` VALUES (12686, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:560毫秒', '0', '', '2022-01-26 11:30:00'); INSERT INTO `sys_job_log` VALUES (12687, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:328毫秒', '0', '', '2022-01-26 11:40:00'); INSERT INTO `sys_job_log` VALUES (12688, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:882毫秒', '0', '', '2022-01-26 11:40:00'); INSERT INTO `sys_job_log` VALUES (12689, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1241毫秒', '0', '', '2022-01-26 11:40:01'); INSERT INTO `sys_job_log` VALUES (12690, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:734毫秒', '0', '', '2022-01-26 11:50:00'); INSERT INTO `sys_job_log` VALUES (12691, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1344毫秒', '0', '', '2022-01-26 11:50:01'); INSERT INTO `sys_job_log` VALUES (12692, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1846毫秒', '0', '', '2022-01-26 12:00:01'); INSERT INTO `sys_job_log` VALUES (12693, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2359毫秒', '0', '', '2022-01-26 12:00:02'); INSERT INTO `sys_job_log` VALUES (12694, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-01-26 12:00:03'); INSERT INTO `sys_job_log` VALUES (12695, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:843毫秒', '0', '', '2022-01-26 12:10:00'); INSERT INTO `sys_job_log` VALUES (12696, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1247毫秒', '0', '', '2022-01-26 12:10:01'); INSERT INTO `sys_job_log` VALUES (12697, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:277毫秒', '0', '', '2022-01-26 12:20:00'); INSERT INTO `sys_job_log` VALUES (12698, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:848毫秒', '0', '', '2022-01-26 12:20:00'); INSERT INTO `sys_job_log` VALUES (12699, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1717毫秒', '0', '', '2022-01-26 12:20:01'); INSERT INTO `sys_job_log` VALUES (12700, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:255毫秒', '0', '', '2022-01-26 12:30:00'); INSERT INTO `sys_job_log` VALUES (12701, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-01-26 12:30:00'); INSERT INTO `sys_job_log` VALUES (12702, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:276毫秒', '0', '', '2022-01-26 12:40:00'); INSERT INTO `sys_job_log` VALUES (12703, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-01-26 12:40:00'); INSERT INTO `sys_job_log` VALUES (12704, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1201毫秒', '0', '', '2022-01-26 12:40:01'); INSERT INTO `sys_job_log` VALUES (12705, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:313毫秒', '0', '', '2022-01-26 12:50:00'); INSERT INTO `sys_job_log` VALUES (12706, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:744毫秒', '0', '', '2022-01-26 12:50:00'); INSERT INTO `sys_job_log` VALUES (12707, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:302毫秒', '0', '', '2022-01-26 13:00:00'); INSERT INTO `sys_job_log` VALUES (12708, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-01-26 13:00:00'); INSERT INTO `sys_job_log` VALUES (12709, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1753毫秒', '0', '', '2022-01-26 13:00:01'); INSERT INTO `sys_job_log` VALUES (12710, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1027毫秒', '0', '', '2022-01-26 13:10:01'); INSERT INTO `sys_job_log` VALUES (12711, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1374毫秒', '0', '', '2022-01-26 13:10:01'); INSERT INTO `sys_job_log` VALUES (12712, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:165毫秒', '0', '', '2022-01-26 13:20:00'); INSERT INTO `sys_job_log` VALUES (12713, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:260毫秒', '0', '', '2022-01-26 13:20:00'); INSERT INTO `sys_job_log` VALUES (12714, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:649毫秒', '0', '', '2022-01-26 13:20:00'); INSERT INTO `sys_job_log` VALUES (12715, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:855毫秒', '0', '', '2022-01-26 13:30:00'); INSERT INTO `sys_job_log` VALUES (12716, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1279毫秒', '0', '', '2022-01-26 13:30:01'); INSERT INTO `sys_job_log` VALUES (12717, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:24毫秒', '0', '', '2022-01-26 13:40:00'); INSERT INTO `sys_job_log` VALUES (12718, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:4毫秒', '0', '', '2022-01-26 13:40:00'); INSERT INTO `sys_job_log` VALUES (12719, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:363毫秒', '0', '', '2022-01-26 13:40:00'); INSERT INTO `sys_job_log` VALUES (12720, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1585毫秒', '0', '', '2022-01-26 13:50:01'); INSERT INTO `sys_job_log` VALUES (12721, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1815毫秒', '0', '', '2022-01-26 13:50:01'); INSERT INTO `sys_job_log` VALUES (12722, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:570毫秒', '0', '', '2022-01-26 14:00:00'); INSERT INTO `sys_job_log` VALUES (12723, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1083毫秒', '0', '', '2022-01-26 14:00:01'); INSERT INTO `sys_job_log` VALUES (12724, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1324毫秒', '0', '', '2022-01-26 14:00:01'); INSERT INTO `sys_job_log` VALUES (12725, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:251毫秒', '0', '', '2022-01-26 14:10:00'); INSERT INTO `sys_job_log` VALUES (12726, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1053毫秒', '0', '', '2022-01-26 14:10:01'); INSERT INTO `sys_job_log` VALUES (12727, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:189毫秒', '0', '', '2022-01-26 14:20:00'); INSERT INTO `sys_job_log` VALUES (12728, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:233毫秒', '0', '', '2022-01-26 14:20:00'); INSERT INTO `sys_job_log` VALUES (12729, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:675毫秒', '0', '', '2022-01-26 14:20:00'); INSERT INTO `sys_job_log` VALUES (12730, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:271毫秒', '0', '', '2022-01-26 14:30:00'); INSERT INTO `sys_job_log` VALUES (12731, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-01-26 14:30:00'); INSERT INTO `sys_job_log` VALUES (12732, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:272毫秒', '0', '', '2022-01-26 14:40:00'); INSERT INTO `sys_job_log` VALUES (12733, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:931毫秒', '0', '', '2022-01-26 14:40:00'); INSERT INTO `sys_job_log` VALUES (12734, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1156毫秒', '0', '', '2022-01-26 14:40:01'); INSERT INTO `sys_job_log` VALUES (12735, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:606毫秒', '0', '', '2022-01-26 14:50:00'); INSERT INTO `sys_job_log` VALUES (12736, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1212毫秒', '0', '', '2022-01-26 14:50:01'); INSERT INTO `sys_job_log` VALUES (12737, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:273毫秒', '0', '', '2022-01-26 15:00:00'); INSERT INTO `sys_job_log` VALUES (12738, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:354毫秒', '0', '', '2022-01-26 15:00:00'); INSERT INTO `sys_job_log` VALUES (12739, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:751毫秒', '0', '', '2022-01-26 15:00:00'); INSERT INTO `sys_job_log` VALUES (12740, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:315毫秒', '0', '', '2022-01-26 15:10:00'); INSERT INTO `sys_job_log` VALUES (12741, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:945毫秒', '0', '', '2022-01-26 15:10:00'); INSERT INTO `sys_job_log` VALUES (12742, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:335毫秒', '0', '', '2022-01-26 15:20:00'); INSERT INTO `sys_job_log` VALUES (12743, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:744毫秒', '0', '', '2022-01-26 15:20:00'); INSERT INTO `sys_job_log` VALUES (12744, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1706毫秒', '0', '', '2022-01-26 15:20:01'); INSERT INTO `sys_job_log` VALUES (12745, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:971毫秒', '0', '', '2022-01-26 15:30:00'); INSERT INTO `sys_job_log` VALUES (12746, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1301毫秒', '0', '', '2022-01-26 15:30:01'); INSERT INTO `sys_job_log` VALUES (12747, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3005毫秒', '0', '', '2022-01-26 15:40:03'); INSERT INTO `sys_job_log` VALUES (12748, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-01-26 15:40:03'); INSERT INTO `sys_job_log` VALUES (12749, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3002毫秒', '0', '', '2022-01-26 15:40:03'); INSERT INTO `sys_job_log` VALUES (12750, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:704毫秒', '0', '', '2022-01-26 15:50:00'); INSERT INTO `sys_job_log` VALUES (12751, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1231毫秒', '0', '', '2022-01-26 15:50:01'); INSERT INTO `sys_job_log` VALUES (12752, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:189毫秒', '0', '', '2022-01-26 16:00:00'); INSERT INTO `sys_job_log` VALUES (12753, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:573毫秒', '0', '', '2022-01-26 16:00:00'); INSERT INTO `sys_job_log` VALUES (12754, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1214毫秒', '0', '', '2022-01-26 16:00:01'); INSERT INTO `sys_job_log` VALUES (12755, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:227毫秒', '0', '', '2022-01-26 16:10:00'); INSERT INTO `sys_job_log` VALUES (12756, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:933毫秒', '0', '', '2022-01-26 16:10:00'); INSERT INTO `sys_job_log` VALUES (12757, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:226毫秒', '0', '', '2022-01-26 16:20:00'); INSERT INTO `sys_job_log` VALUES (12758, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:621毫秒', '0', '', '2022-01-26 16:20:00'); INSERT INTO `sys_job_log` VALUES (12759, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1218毫秒', '0', '', '2022-01-26 16:20:01'); INSERT INTO `sys_job_log` VALUES (12760, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:250毫秒', '0', '', '2022-01-26 16:30:00'); INSERT INTO `sys_job_log` VALUES (12761, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:743毫秒', '0', '', '2022-01-26 16:30:00'); INSERT INTO `sys_job_log` VALUES (12762, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:184毫秒', '0', '', '2022-01-26 16:40:00'); INSERT INTO `sys_job_log` VALUES (12763, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:212毫秒', '0', '', '2022-01-26 16:40:00'); INSERT INTO `sys_job_log` VALUES (12764, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-01-26 16:40:00'); INSERT INTO `sys_job_log` VALUES (12765, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:995毫秒', '0', '', '2022-01-26 19:10:01'); INSERT INTO `sys_job_log` VALUES (12766, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1724毫秒', '0', '', '2022-01-26 19:10:01'); INSERT INTO `sys_job_log` VALUES (12767, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:299毫秒', '0', '', '2022-01-26 19:20:00'); INSERT INTO `sys_job_log` VALUES (12768, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:361毫秒', '0', '', '2022-01-26 19:20:00'); INSERT INTO `sys_job_log` VALUES (12769, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:776毫秒', '0', '', '2022-01-26 19:20:00'); INSERT INTO `sys_job_log` VALUES (12770, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:807毫秒', '0', '', '2022-01-26 19:30:00'); INSERT INTO `sys_job_log` VALUES (12771, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1417毫秒', '0', '', '2022-01-26 19:30:01'); INSERT INTO `sys_job_log` VALUES (12772, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:366毫秒', '0', '', '2022-01-26 19:40:00'); INSERT INTO `sys_job_log` VALUES (12773, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:760毫秒', '0', '', '2022-01-26 19:40:00'); INSERT INTO `sys_job_log` VALUES (12774, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1176毫秒', '0', '', '2022-01-26 19:40:01'); INSERT INTO `sys_job_log` VALUES (12775, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:245毫秒', '0', '', '2022-01-26 19:50:00'); INSERT INTO `sys_job_log` VALUES (12776, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:710毫秒', '0', '', '2022-01-26 19:50:00'); INSERT INTO `sys_job_log` VALUES (12777, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:311毫秒', '0', '', '2022-01-26 20:00:00'); INSERT INTO `sys_job_log` VALUES (12778, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:365毫秒', '0', '', '2022-01-26 20:00:00'); INSERT INTO `sys_job_log` VALUES (12779, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:741毫秒', '0', '', '2022-01-26 20:00:00'); INSERT INTO `sys_job_log` VALUES (12780, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:281毫秒', '0', '', '2022-01-26 20:10:00'); INSERT INTO `sys_job_log` VALUES (12781, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1025毫秒', '0', '', '2022-01-26 20:10:01'); INSERT INTO `sys_job_log` VALUES (12782, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:289毫秒', '0', '', '2022-01-26 20:20:00'); INSERT INTO `sys_job_log` VALUES (12783, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:369毫秒', '0', '', '2022-01-26 20:20:00'); INSERT INTO `sys_job_log` VALUES (12784, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:789毫秒', '0', '', '2022-01-26 20:20:00'); INSERT INTO `sys_job_log` VALUES (12785, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:388毫秒', '0', '', '2022-01-26 20:30:00'); INSERT INTO `sys_job_log` VALUES (12786, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:660毫秒', '0', '', '2022-01-26 20:30:00'); INSERT INTO `sys_job_log` VALUES (12787, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:353毫秒', '0', '', '2022-01-26 20:40:00'); INSERT INTO `sys_job_log` VALUES (12788, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:538毫秒', '0', '', '2022-01-26 20:40:00'); INSERT INTO `sys_job_log` VALUES (12789, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1079毫秒', '0', '', '2022-01-26 20:40:01'); INSERT INTO `sys_job_log` VALUES (12790, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:341毫秒', '0', '', '2022-01-26 20:50:00'); INSERT INTO `sys_job_log` VALUES (12791, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:773毫秒', '0', '', '2022-01-26 20:50:00'); INSERT INTO `sys_job_log` VALUES (12792, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:277毫秒', '0', '', '2022-01-26 21:00:00'); INSERT INTO `sys_job_log` VALUES (12793, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:368毫秒', '0', '', '2022-01-26 21:00:00'); INSERT INTO `sys_job_log` VALUES (12794, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:931毫秒', '0', '', '2022-01-26 21:00:00'); INSERT INTO `sys_job_log` VALUES (12795, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:448毫秒', '0', '', '2022-01-26 21:10:00'); INSERT INTO `sys_job_log` VALUES (12796, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:939毫秒', '0', '', '2022-01-26 21:10:00'); INSERT INTO `sys_job_log` VALUES (12797, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:338毫秒', '0', '', '2022-01-26 21:20:00'); INSERT INTO `sys_job_log` VALUES (12798, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:485毫秒', '0', '', '2022-01-26 21:20:00'); INSERT INTO `sys_job_log` VALUES (12799, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:677毫秒', '0', '', '2022-01-26 21:20:00'); INSERT INTO `sys_job_log` VALUES (12800, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:321毫秒', '0', '', '2022-01-26 21:30:00'); INSERT INTO `sys_job_log` VALUES (12801, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-01-26 21:30:00'); INSERT INTO `sys_job_log` VALUES (12802, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:379毫秒', '0', '', '2022-01-26 21:40:00'); INSERT INTO `sys_job_log` VALUES (12803, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-01-26 21:40:00'); INSERT INTO `sys_job_log` VALUES (12804, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1097毫秒', '0', '', '2022-01-26 21:40:01'); INSERT INTO `sys_job_log` VALUES (12805, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:329毫秒', '0', '', '2022-01-26 21:50:00'); INSERT INTO `sys_job_log` VALUES (12806, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:837毫秒', '0', '', '2022-01-26 21:50:00'); INSERT INTO `sys_job_log` VALUES (12807, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:248毫秒', '0', '', '2022-01-26 22:00:00'); INSERT INTO `sys_job_log` VALUES (12808, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:338毫秒', '0', '', '2022-01-26 22:00:00'); INSERT INTO `sys_job_log` VALUES (12809, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:607毫秒', '0', '', '2022-01-26 22:00:00'); INSERT INTO `sys_job_log` VALUES (12810, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:301毫秒', '0', '', '2022-01-26 22:10:00'); INSERT INTO `sys_job_log` VALUES (12811, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:666毫秒', '0', '', '2022-01-26 22:10:00'); INSERT INTO `sys_job_log` VALUES (12812, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:432毫秒', '0', '', '2022-01-26 22:20:00'); INSERT INTO `sys_job_log` VALUES (12813, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-01-26 22:20:00'); INSERT INTO `sys_job_log` VALUES (12814, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1390毫秒', '0', '', '2022-01-26 22:20:01'); INSERT INTO `sys_job_log` VALUES (12815, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:306毫秒', '0', '', '2022-01-26 22:30:00'); INSERT INTO `sys_job_log` VALUES (12816, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:818毫秒', '0', '', '2022-01-26 22:30:00'); INSERT INTO `sys_job_log` VALUES (12817, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:335毫秒', '0', '', '2022-01-26 22:40:00'); INSERT INTO `sys_job_log` VALUES (12818, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:417毫秒', '0', '', '2022-01-26 22:40:00'); INSERT INTO `sys_job_log` VALUES (12819, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:789毫秒', '0', '', '2022-01-26 22:40:00'); INSERT INTO `sys_job_log` VALUES (12820, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:393毫秒', '0', '', '2022-01-26 22:50:00'); INSERT INTO `sys_job_log` VALUES (12821, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:728毫秒', '0', '', '2022-01-26 22:50:00'); INSERT INTO `sys_job_log` VALUES (12822, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:520毫秒', '0', '', '2022-01-27 09:20:00'); INSERT INTO `sys_job_log` VALUES (12823, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:616毫秒', '0', '', '2022-01-27 09:20:00'); INSERT INTO `sys_job_log` VALUES (12824, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1203毫秒', '0', '', '2022-01-27 09:20:01'); INSERT INTO `sys_job_log` VALUES (12825, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-01-27 09:30:00'); INSERT INTO `sys_job_log` VALUES (12826, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3016毫秒', '0', '', '2022-01-27 09:30:03'); INSERT INTO `sys_job_log` VALUES (12827, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:240毫秒', '0', '', '2022-01-27 09:40:00'); INSERT INTO `sys_job_log` VALUES (12828, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:269毫秒', '0', '', '2022-01-27 09:40:00'); INSERT INTO `sys_job_log` VALUES (12829, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:522毫秒', '0', '', '2022-01-27 09:40:00'); INSERT INTO `sys_job_log` VALUES (12830, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:385毫秒', '0', '', '2022-01-27 09:50:00'); INSERT INTO `sys_job_log` VALUES (12831, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:538毫秒', '0', '', '2022-01-27 09:50:00'); INSERT INTO `sys_job_log` VALUES (12832, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:284毫秒', '0', '', '2022-01-27 10:00:00'); INSERT INTO `sys_job_log` VALUES (12833, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:507毫秒', '0', '', '2022-01-27 10:00:00'); INSERT INTO `sys_job_log` VALUES (12834, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:679毫秒', '0', '', '2022-01-27 10:00:00'); INSERT INTO `sys_job_log` VALUES (12835, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:886毫秒', '0', '', '2022-01-27 10:10:00'); INSERT INTO `sys_job_log` VALUES (12836, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1219毫秒', '0', '', '2022-01-27 10:10:01'); INSERT INTO `sys_job_log` VALUES (12837, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:256毫秒', '0', '', '2022-01-27 10:20:00'); INSERT INTO `sys_job_log` VALUES (12838, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:508毫秒', '0', '', '2022-01-27 10:20:00'); INSERT INTO `sys_job_log` VALUES (12839, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1177毫秒', '0', '', '2022-01-27 10:20:01'); INSERT INTO `sys_job_log` VALUES (12840, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1033毫秒', '0', '', '2022-01-27 10:30:01'); INSERT INTO `sys_job_log` VALUES (12841, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1338毫秒', '0', '', '2022-01-27 10:30:01'); INSERT INTO `sys_job_log` VALUES (12842, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:274毫秒', '0', '', '2022-01-27 10:40:00'); INSERT INTO `sys_job_log` VALUES (12843, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:513毫秒', '0', '', '2022-01-27 10:40:00'); INSERT INTO `sys_job_log` VALUES (12844, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1653毫秒', '0', '', '2022-01-27 10:40:01'); INSERT INTO `sys_job_log` VALUES (12845, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:881毫秒', '0', '', '2022-01-27 10:50:00'); INSERT INTO `sys_job_log` VALUES (12846, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1210毫秒', '0', '', '2022-01-27 10:50:01'); INSERT INTO `sys_job_log` VALUES (12847, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:179毫秒', '0', '', '2022-01-27 11:00:00'); INSERT INTO `sys_job_log` VALUES (12848, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:278毫秒', '0', '', '2022-01-27 11:00:00'); INSERT INTO `sys_job_log` VALUES (12849, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-01-27 11:00:00'); INSERT INTO `sys_job_log` VALUES (12850, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:281毫秒', '0', '', '2022-01-27 11:10:00'); INSERT INTO `sys_job_log` VALUES (12851, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-01-27 11:10:00'); INSERT INTO `sys_job_log` VALUES (12852, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:365毫秒', '0', '', '2022-01-27 11:20:00'); INSERT INTO `sys_job_log` VALUES (12853, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:556毫秒', '0', '', '2022-01-27 11:20:00'); INSERT INTO `sys_job_log` VALUES (12854, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1629毫秒', '0', '', '2022-01-27 11:20:01'); INSERT INTO `sys_job_log` VALUES (12855, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:714毫秒', '0', '', '2022-01-27 11:30:00'); INSERT INTO `sys_job_log` VALUES (12856, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1245毫秒', '0', '', '2022-01-27 11:30:01'); INSERT INTO `sys_job_log` VALUES (12857, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:209毫秒', '0', '', '2022-01-27 11:40:00'); INSERT INTO `sys_job_log` VALUES (12858, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:517毫秒', '0', '', '2022-01-27 11:40:00'); INSERT INTO `sys_job_log` VALUES (12859, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1304毫秒', '0', '', '2022-01-27 11:40:01'); INSERT INTO `sys_job_log` VALUES (12860, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1302毫秒', '0', '', '2022-01-27 11:50:01'); INSERT INTO `sys_job_log` VALUES (12861, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1859毫秒', '0', '', '2022-01-27 11:50:01'); INSERT INTO `sys_job_log` VALUES (12862, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:564毫秒', '0', '', '2022-01-27 12:00:00'); INSERT INTO `sys_job_log` VALUES (12863, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:740毫秒', '0', '', '2022-01-27 12:00:00'); INSERT INTO `sys_job_log` VALUES (12864, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1229毫秒', '0', '', '2022-01-27 12:00:01'); INSERT INTO `sys_job_log` VALUES (12865, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:665毫秒', '0', '', '2022-01-27 12:10:00'); INSERT INTO `sys_job_log` VALUES (12866, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1730毫秒', '0', '', '2022-01-27 12:10:01'); INSERT INTO `sys_job_log` VALUES (12867, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:260毫秒', '0', '', '2022-01-27 12:20:00'); INSERT INTO `sys_job_log` VALUES (12868, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:752毫秒', '0', '', '2022-01-27 12:20:00'); INSERT INTO `sys_job_log` VALUES (12869, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1230毫秒', '0', '', '2022-01-27 12:20:01'); INSERT INTO `sys_job_log` VALUES (12870, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:577毫秒', '0', '', '2022-01-27 12:30:00'); INSERT INTO `sys_job_log` VALUES (12871, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1214毫秒', '0', '', '2022-01-27 12:30:01'); INSERT INTO `sys_job_log` VALUES (12872, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:261毫秒', '0', '', '2022-01-27 12:40:00'); INSERT INTO `sys_job_log` VALUES (12873, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:517毫秒', '0', '', '2022-01-27 12:40:00'); INSERT INTO `sys_job_log` VALUES (12874, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3017毫秒', '0', '', '2022-01-27 12:40:03'); INSERT INTO `sys_job_log` VALUES (12875, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-01-27 12:50:00'); INSERT INTO `sys_job_log` VALUES (12876, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1252毫秒', '0', '', '2022-01-27 12:50:01'); INSERT INTO `sys_job_log` VALUES (12877, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:268毫秒', '0', '', '2022-01-27 13:00:00'); INSERT INTO `sys_job_log` VALUES (12878, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:919毫秒', '0', '', '2022-01-27 13:00:00'); INSERT INTO `sys_job_log` VALUES (12879, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1185毫秒', '0', '', '2022-01-27 13:00:01'); INSERT INTO `sys_job_log` VALUES (12880, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:574毫秒', '0', '', '2022-01-27 13:10:00'); INSERT INTO `sys_job_log` VALUES (12881, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1243毫秒', '0', '', '2022-01-27 13:10:01'); INSERT INTO `sys_job_log` VALUES (12882, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:590毫秒', '0', '', '2022-01-27 13:20:00'); INSERT INTO `sys_job_log` VALUES (12883, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:845毫秒', '0', '', '2022-01-27 13:20:00'); INSERT INTO `sys_job_log` VALUES (12884, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1213毫秒', '0', '', '2022-01-27 13:20:01'); INSERT INTO `sys_job_log` VALUES (12885, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:243毫秒', '0', '', '2022-01-27 13:30:00'); INSERT INTO `sys_job_log` VALUES (12886, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:736毫秒', '0', '', '2022-01-27 13:30:00'); INSERT INTO `sys_job_log` VALUES (12887, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:244毫秒', '0', '', '2022-01-27 13:40:00'); INSERT INTO `sys_job_log` VALUES (12888, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:468毫秒', '0', '', '2022-01-27 13:40:00'); INSERT INTO `sys_job_log` VALUES (12889, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1185毫秒', '0', '', '2022-01-27 13:40:01'); INSERT INTO `sys_job_log` VALUES (12890, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:187毫秒', '0', '', '2022-01-27 13:50:00'); INSERT INTO `sys_job_log` VALUES (12891, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:549毫秒', '0', '', '2022-01-27 13:50:00'); INSERT INTO `sys_job_log` VALUES (12892, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:263毫秒', '0', '', '2022-01-27 14:00:00'); INSERT INTO `sys_job_log` VALUES (12893, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:618毫秒', '0', '', '2022-01-27 14:00:00'); INSERT INTO `sys_job_log` VALUES (12894, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1030毫秒', '0', '', '2022-01-27 14:00:01'); INSERT INTO `sys_job_log` VALUES (12895, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:357毫秒', '0', '', '2022-01-27 14:10:00'); INSERT INTO `sys_job_log` VALUES (12896, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:689毫秒', '0', '', '2022-01-27 14:10:00'); INSERT INTO `sys_job_log` VALUES (12897, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:235毫秒', '0', '', '2022-01-27 14:20:00'); INSERT INTO `sys_job_log` VALUES (12898, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:862毫秒', '0', '', '2022-01-27 14:20:00'); INSERT INTO `sys_job_log` VALUES (12899, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1182毫秒', '0', '', '2022-01-27 14:20:01'); INSERT INTO `sys_job_log` VALUES (12900, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:262毫秒', '0', '', '2022-01-27 14:30:00'); INSERT INTO `sys_job_log` VALUES (12901, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:579毫秒', '0', '', '2022-01-27 14:30:00'); INSERT INTO `sys_job_log` VALUES (12902, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:234毫秒', '0', '', '2022-01-27 14:40:00'); INSERT INTO `sys_job_log` VALUES (12903, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-01-27 14:40:00'); INSERT INTO `sys_job_log` VALUES (12904, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:771毫秒', '0', '', '2022-01-27 14:40:00'); INSERT INTO `sys_job_log` VALUES (12905, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:830毫秒', '0', '', '2022-01-27 14:50:00'); INSERT INTO `sys_job_log` VALUES (12906, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1207毫秒', '0', '', '2022-01-27 14:50:01'); INSERT INTO `sys_job_log` VALUES (12907, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:226毫秒', '0', '', '2022-01-27 15:00:00'); INSERT INTO `sys_job_log` VALUES (12908, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:859毫秒', '0', '', '2022-01-27 15:00:00'); INSERT INTO `sys_job_log` VALUES (12909, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1154毫秒', '0', '', '2022-01-27 15:00:01'); INSERT INTO `sys_job_log` VALUES (12910, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-01-27 15:10:00'); INSERT INTO `sys_job_log` VALUES (12911, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1346毫秒', '0', '', '2022-01-27 15:10:01'); INSERT INTO `sys_job_log` VALUES (12912, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:713毫秒', '0', '', '2022-01-27 15:20:00'); INSERT INTO `sys_job_log` VALUES (12913, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:731毫秒', '0', '', '2022-01-27 15:20:00'); INSERT INTO `sys_job_log` VALUES (12914, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1293毫秒', '0', '', '2022-01-27 15:20:01'); INSERT INTO `sys_job_log` VALUES (12915, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:538毫秒', '0', '', '2022-01-27 15:30:00'); INSERT INTO `sys_job_log` VALUES (12916, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1207毫秒', '0', '', '2022-01-27 15:30:01'); INSERT INTO `sys_job_log` VALUES (12917, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:257毫秒', '0', '', '2022-01-27 15:40:00'); INSERT INTO `sys_job_log` VALUES (12918, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:502毫秒', '0', '', '2022-01-27 15:40:00'); INSERT INTO `sys_job_log` VALUES (12919, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1175毫秒', '0', '', '2022-01-27 15:40:01'); INSERT INTO `sys_job_log` VALUES (12920, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-01-27 15:50:00'); INSERT INTO `sys_job_log` VALUES (12921, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1223毫秒', '0', '', '2022-01-27 15:50:01'); INSERT INTO `sys_job_log` VALUES (12922, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:255毫秒', '0', '', '2022-01-27 16:00:00'); INSERT INTO `sys_job_log` VALUES (12923, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:629毫秒', '0', '', '2022-01-27 16:00:00'); INSERT INTO `sys_job_log` VALUES (12924, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2699毫秒', '0', '', '2022-01-27 16:00:02'); INSERT INTO `sys_job_log` VALUES (12925, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1221毫秒', '0', '', '2022-01-27 16:10:01'); INSERT INTO `sys_job_log` VALUES (12926, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1435毫秒', '0', '', '2022-01-27 16:10:01'); INSERT INTO `sys_job_log` VALUES (12927, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:174毫秒', '0', '', '2022-01-27 16:20:00'); INSERT INTO `sys_job_log` VALUES (12928, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:286毫秒', '0', '', '2022-01-27 16:20:00'); INSERT INTO `sys_job_log` VALUES (12929, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:863毫秒', '0', '', '2022-01-27 16:20:00'); INSERT INTO `sys_job_log` VALUES (12930, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:653毫秒', '0', '', '2022-01-27 23:40:00'); INSERT INTO `sys_job_log` VALUES (12931, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:691毫秒', '0', '', '2022-01-27 23:40:00'); INSERT INTO `sys_job_log` VALUES (12932, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1238毫秒', '0', '', '2022-01-27 23:40:01'); INSERT INTO `sys_job_log` VALUES (12933, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:351毫秒', '0', '', '2022-01-27 23:50:00'); INSERT INTO `sys_job_log` VALUES (12934, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1178毫秒', '0', '', '2022-01-27 23:50:01'); INSERT INTO `sys_job_log` VALUES (12935, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:410毫秒', '0', '', '2022-01-28 00:00:00'); INSERT INTO `sys_job_log` VALUES (12936, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:551毫秒', '0', '', '2022-01-28 00:00:00'); INSERT INTO `sys_job_log` VALUES (12937, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:792毫秒', '0', '', '2022-01-28 00:00:00'); INSERT INTO `sys_job_log` VALUES (12938, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:458毫秒', '0', '', '2022-01-28 00:00:10'); INSERT INTO `sys_job_log` VALUES (12939, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3275毫秒', '0', '', '2022-01-29 14:00:03'); INSERT INTO `sys_job_log` VALUES (12940, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3291毫秒', '0', '', '2022-01-29 14:00:03'); INSERT INTO `sys_job_log` VALUES (12941, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3281毫秒', '0', '', '2022-01-29 14:00:03'); INSERT INTO `sys_job_log` VALUES (12942, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:337毫秒', '0', '', '2022-01-29 14:10:00'); INSERT INTO `sys_job_log` VALUES (12943, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-01-29 14:10:00'); INSERT INTO `sys_job_log` VALUES (12944, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:194毫秒', '0', '', '2022-01-29 14:20:00'); INSERT INTO `sys_job_log` VALUES (12945, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:297毫秒', '0', '', '2022-01-29 14:20:00'); INSERT INTO `sys_job_log` VALUES (12946, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:582毫秒', '0', '', '2022-01-29 14:20:00'); INSERT INTO `sys_job_log` VALUES (12947, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:324毫秒', '0', '', '2022-01-29 14:30:00'); INSERT INTO `sys_job_log` VALUES (12948, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:879毫秒', '0', '', '2022-01-29 14:30:00'); INSERT INTO `sys_job_log` VALUES (12949, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:300毫秒', '0', '', '2022-01-29 14:40:00'); INSERT INTO `sys_job_log` VALUES (12950, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:573毫秒', '0', '', '2022-01-29 14:40:00'); INSERT INTO `sys_job_log` VALUES (12951, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:847毫秒', '0', '', '2022-01-29 14:40:00'); INSERT INTO `sys_job_log` VALUES (12952, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:319毫秒', '0', '', '2022-01-29 14:50:00'); INSERT INTO `sys_job_log` VALUES (12953, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:564毫秒', '0', '', '2022-01-29 14:50:00'); INSERT INTO `sys_job_log` VALUES (12954, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:234毫秒', '0', '', '2022-01-29 15:00:00'); INSERT INTO `sys_job_log` VALUES (12955, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:343毫秒', '0', '', '2022-01-29 15:00:00'); INSERT INTO `sys_job_log` VALUES (12956, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:588毫秒', '0', '', '2022-01-29 15:00:00'); INSERT INTO `sys_job_log` VALUES (12957, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:322毫秒', '0', '', '2022-01-29 15:10:00'); INSERT INTO `sys_job_log` VALUES (12958, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:556毫秒', '0', '', '2022-01-29 15:10:00'); INSERT INTO `sys_job_log` VALUES (12959, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:267毫秒', '0', '', '2022-01-29 15:20:00'); INSERT INTO `sys_job_log` VALUES (12960, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:546毫秒', '0', '', '2022-01-29 15:20:00'); INSERT INTO `sys_job_log` VALUES (12961, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:969毫秒', '0', '', '2022-01-29 15:20:00'); INSERT INTO `sys_job_log` VALUES (12962, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:222毫秒', '0', '', '2022-01-29 15:30:00'); INSERT INTO `sys_job_log` VALUES (12963, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-01-29 15:30:00'); INSERT INTO `sys_job_log` VALUES (12964, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:240毫秒', '0', '', '2022-01-29 15:40:00'); INSERT INTO `sys_job_log` VALUES (12965, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:344毫秒', '0', '', '2022-01-29 15:40:00'); INSERT INTO `sys_job_log` VALUES (12966, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-01-29 15:40:00'); INSERT INTO `sys_job_log` VALUES (12967, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:312毫秒', '0', '', '2022-01-29 15:50:00'); INSERT INTO `sys_job_log` VALUES (12968, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:588毫秒', '0', '', '2022-01-29 15:50:00'); INSERT INTO `sys_job_log` VALUES (12969, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:220毫秒', '0', '', '2022-01-29 16:00:00'); INSERT INTO `sys_job_log` VALUES (12970, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1216毫秒', '0', '', '2022-01-29 16:00:01'); INSERT INTO `sys_job_log` VALUES (12971, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1266毫秒', '0', '', '2022-01-29 16:00:01'); INSERT INTO `sys_job_log` VALUES (12972, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:294毫秒', '0', '', '2022-01-29 16:10:00'); INSERT INTO `sys_job_log` VALUES (12973, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-01-29 16:10:00'); INSERT INTO `sys_job_log` VALUES (12974, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:211毫秒', '0', '', '2022-01-29 16:20:00'); INSERT INTO `sys_job_log` VALUES (12975, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:271毫秒', '0', '', '2022-01-29 16:20:00'); INSERT INTO `sys_job_log` VALUES (12976, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:542毫秒', '0', '', '2022-01-29 16:20:00'); INSERT INTO `sys_job_log` VALUES (12977, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:272毫秒', '0', '', '2022-01-29 16:30:00'); INSERT INTO `sys_job_log` VALUES (12978, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:528毫秒', '0', '', '2022-01-29 16:30:00'); INSERT INTO `sys_job_log` VALUES (12979, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:280毫秒', '0', '', '2022-01-29 16:40:00'); INSERT INTO `sys_job_log` VALUES (12980, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:518毫秒', '0', '', '2022-01-29 16:40:00'); INSERT INTO `sys_job_log` VALUES (12981, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:850毫秒', '0', '', '2022-01-29 16:40:00'); INSERT INTO `sys_job_log` VALUES (12982, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:290毫秒', '0', '', '2022-01-29 16:50:00'); INSERT INTO `sys_job_log` VALUES (12983, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:524毫秒', '0', '', '2022-01-29 16:50:00'); INSERT INTO `sys_job_log` VALUES (12984, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:192毫秒', '0', '', '2022-01-29 17:00:00'); INSERT INTO `sys_job_log` VALUES (12985, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:275毫秒', '0', '', '2022-01-29 17:00:00'); INSERT INTO `sys_job_log` VALUES (12986, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:512毫秒', '0', '', '2022-01-29 17:00:00'); INSERT INTO `sys_job_log` VALUES (12987, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3286毫秒', '0', '', '2022-01-30 23:40:03'); INSERT INTO `sys_job_log` VALUES (12988, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3271毫秒', '0', '', '2022-01-30 23:40:03'); INSERT INTO `sys_job_log` VALUES (12989, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3278毫秒', '0', '', '2022-01-30 23:40:03'); INSERT INTO `sys_job_log` VALUES (12990, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:282毫秒', '0', '', '2022-01-30 23:50:00'); INSERT INTO `sys_job_log` VALUES (12991, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:751毫秒', '0', '', '2022-01-30 23:50:00'); INSERT INTO `sys_job_log` VALUES (12992, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3254毫秒', '0', '', '2022-01-31 20:30:03'); INSERT INTO `sys_job_log` VALUES (12993, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3260毫秒', '0', '', '2022-01-31 20:30:03'); INSERT INTO `sys_job_log` VALUES (12994, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:350毫秒', '0', '', '2022-01-31 20:40:00'); INSERT INTO `sys_job_log` VALUES (12995, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:647毫秒', '0', '', '2022-01-31 20:40:00'); INSERT INTO `sys_job_log` VALUES (12996, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1224毫秒', '0', '', '2022-01-31 20:40:01'); INSERT INTO `sys_job_log` VALUES (12997, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:319毫秒', '0', '', '2022-01-31 20:50:00'); INSERT INTO `sys_job_log` VALUES (12998, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:706毫秒', '0', '', '2022-01-31 20:50:00'); INSERT INTO `sys_job_log` VALUES (12999, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:221毫秒', '0', '', '2022-01-31 21:00:00'); INSERT INTO `sys_job_log` VALUES (13000, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:380毫秒', '0', '', '2022-01-31 21:00:00'); INSERT INTO `sys_job_log` VALUES (13001, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:962毫秒', '0', '', '2022-01-31 21:00:01'); INSERT INTO `sys_job_log` VALUES (13002, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:284毫秒', '0', '', '2022-01-31 21:10:00'); INSERT INTO `sys_job_log` VALUES (13003, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-01-31 21:10:00'); INSERT INTO `sys_job_log` VALUES (13004, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:278毫秒', '0', '', '2022-01-31 21:20:00'); INSERT INTO `sys_job_log` VALUES (13005, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:650毫秒', '0', '', '2022-01-31 21:20:00'); INSERT INTO `sys_job_log` VALUES (13006, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1505毫秒', '0', '', '2022-01-31 21:20:01'); INSERT INTO `sys_job_log` VALUES (13007, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:301毫秒', '0', '', '2022-01-31 21:30:00'); INSERT INTO `sys_job_log` VALUES (13008, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:871毫秒', '0', '', '2022-01-31 21:30:00'); INSERT INTO `sys_job_log` VALUES (13009, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:371毫秒', '0', '', '2022-01-31 22:10:41'); INSERT INTO `sys_job_log` VALUES (13010, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:186毫秒', '0', '', '2022-01-31 22:10:41'); INSERT INTO `sys_job_log` VALUES (13011, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:601毫秒', '0', '', '2022-01-31 22:10:41'); INSERT INTO `sys_job_log` VALUES (13012, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:187毫秒', '0', '', '2022-01-31 22:10:41'); INSERT INTO `sys_job_log` VALUES (13013, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:886毫秒', '0', '', '2022-01-31 22:10:41'); INSERT INTO `sys_job_log` VALUES (13014, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:181毫秒', '0', '', '2022-01-31 22:10:41'); INSERT INTO `sys_job_log` VALUES (13015, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:187毫秒', '0', '', '2022-01-31 22:10:41'); INSERT INTO `sys_job_log` VALUES (13016, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:537毫秒', '0', '', '2022-01-31 22:10:42'); INSERT INTO `sys_job_log` VALUES (13017, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:494毫秒', '0', '', '2022-01-31 22:10:42'); INSERT INTO `sys_job_log` VALUES (13018, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:516毫秒', '0', '', '2022-01-31 22:10:43'); INSERT INTO `sys_job_log` VALUES (13019, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:204毫秒', '0', '', '2022-01-31 22:20:00'); INSERT INTO `sys_job_log` VALUES (13020, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:285毫秒', '0', '', '2022-01-31 22:20:00'); INSERT INTO `sys_job_log` VALUES (13021, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-01-31 22:20:00'); INSERT INTO `sys_job_log` VALUES (13022, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:303毫秒', '0', '', '2022-01-31 22:30:00'); INSERT INTO `sys_job_log` VALUES (13023, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-01-31 22:30:00'); INSERT INTO `sys_job_log` VALUES (13024, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:194毫秒', '0', '', '2022-01-31 22:40:00'); INSERT INTO `sys_job_log` VALUES (13025, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:257毫秒', '0', '', '2022-01-31 22:40:00'); INSERT INTO `sys_job_log` VALUES (13026, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:553毫秒', '0', '', '2022-01-31 22:40:00'); INSERT INTO `sys_job_log` VALUES (13027, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:280毫秒', '0', '', '2022-01-31 22:50:00'); INSERT INTO `sys_job_log` VALUES (13028, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:560毫秒', '0', '', '2022-01-31 22:50:00'); INSERT INTO `sys_job_log` VALUES (13029, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:266毫秒', '0', '', '2022-01-31 23:00:00'); INSERT INTO `sys_job_log` VALUES (13030, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:575毫秒', '0', '', '2022-01-31 23:00:00'); INSERT INTO `sys_job_log` VALUES (13031, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1068毫秒', '0', '', '2022-01-31 23:00:01'); INSERT INTO `sys_job_log` VALUES (13032, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1645毫秒', '0', '', '2022-01-31 23:10:01'); INSERT INTO `sys_job_log` VALUES (13033, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1997毫秒', '0', '', '2022-01-31 23:10:02'); INSERT INTO `sys_job_log` VALUES (13034, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:204毫秒', '0', '', '2022-01-31 23:20:00'); INSERT INTO `sys_job_log` VALUES (13035, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:214毫秒', '0', '', '2022-01-31 23:20:00'); INSERT INTO `sys_job_log` VALUES (13036, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:572毫秒', '0', '', '2022-01-31 23:20:00'); INSERT INTO `sys_job_log` VALUES (13037, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:267毫秒', '0', '', '2022-01-31 23:30:00'); INSERT INTO `sys_job_log` VALUES (13038, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:631毫秒', '0', '', '2022-01-31 23:30:00'); INSERT INTO `sys_job_log` VALUES (13039, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:284毫秒', '0', '', '2022-01-31 23:40:00'); INSERT INTO `sys_job_log` VALUES (13040, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-01-31 23:40:00'); INSERT INTO `sys_job_log` VALUES (13041, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:918毫秒', '0', '', '2022-01-31 23:40:00'); INSERT INTO `sys_job_log` VALUES (13042, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:354毫秒', '0', '', '2022-01-31 23:50:00'); INSERT INTO `sys_job_log` VALUES (13043, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-01-31 23:50:00'); INSERT INTO `sys_job_log` VALUES (13044, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:206毫秒', '0', '', '2022-02-01 00:00:00'); INSERT INTO `sys_job_log` VALUES (13045, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:315毫秒', '0', '', '2022-02-01 00:00:00'); INSERT INTO `sys_job_log` VALUES (13046, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:626毫秒', '0', '', '2022-02-01 00:00:00'); INSERT INTO `sys_job_log` VALUES (13047, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:381毫秒', '0', '', '2022-02-01 00:00:10'); INSERT INTO `sys_job_log` VALUES (13048, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:303毫秒', '0', '', '2022-02-01 00:10:00'); INSERT INTO `sys_job_log` VALUES (13049, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:929毫秒', '0', '', '2022-02-01 00:10:00'); INSERT INTO `sys_job_log` VALUES (13050, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:271毫秒', '0', '', '2022-02-01 00:20:00'); INSERT INTO `sys_job_log` VALUES (13051, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:525毫秒', '0', '', '2022-02-01 00:20:00'); INSERT INTO `sys_job_log` VALUES (13052, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1410毫秒', '0', '', '2022-02-01 00:20:01'); INSERT INTO `sys_job_log` VALUES (13053, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:255毫秒', '0', '', '2022-02-01 00:30:00'); INSERT INTO `sys_job_log` VALUES (13054, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:530毫秒', '0', '', '2022-02-01 00:30:00'); INSERT INTO `sys_job_log` VALUES (13055, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:201毫秒', '0', '', '2022-02-01 00:40:00'); INSERT INTO `sys_job_log` VALUES (13056, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:271毫秒', '0', '', '2022-02-01 00:40:00'); INSERT INTO `sys_job_log` VALUES (13057, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:689毫秒', '0', '', '2022-02-01 00:40:00'); INSERT INTO `sys_job_log` VALUES (13058, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:362毫秒', '0', '', '2022-02-01 00:50:00'); INSERT INTO `sys_job_log` VALUES (13059, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:614毫秒', '0', '', '2022-02-01 00:50:00'); INSERT INTO `sys_job_log` VALUES (13060, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:311毫秒', '0', '', '2022-02-01 01:00:00'); INSERT INTO `sys_job_log` VALUES (13061, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:666毫秒', '0', '', '2022-02-01 01:00:00'); INSERT INTO `sys_job_log` VALUES (13062, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:873毫秒', '0', '', '2022-02-01 01:00:00'); INSERT INTO `sys_job_log` VALUES (13063, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:383毫秒', '0', '', '2022-02-01 01:10:00'); INSERT INTO `sys_job_log` VALUES (13064, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:838毫秒', '0', '', '2022-02-01 01:10:00'); INSERT INTO `sys_job_log` VALUES (13065, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:208毫秒', '0', '', '2022-02-01 01:20:00'); INSERT INTO `sys_job_log` VALUES (13066, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:293毫秒', '0', '', '2022-02-01 01:20:00'); INSERT INTO `sys_job_log` VALUES (13067, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-02-01 01:20:00'); INSERT INTO `sys_job_log` VALUES (13068, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:283毫秒', '0', '', '2022-02-01 01:30:00'); INSERT INTO `sys_job_log` VALUES (13069, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:840毫秒', '0', '', '2022-02-01 01:30:00'); INSERT INTO `sys_job_log` VALUES (13070, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:271毫秒', '0', '', '2022-02-01 01:40:00'); INSERT INTO `sys_job_log` VALUES (13071, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:572毫秒', '0', '', '2022-02-01 01:40:00'); INSERT INTO `sys_job_log` VALUES (13072, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:874毫秒', '0', '', '2022-02-01 01:40:00'); INSERT INTO `sys_job_log` VALUES (13073, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:831毫秒', '0', '', '2022-02-01 16:10:00'); INSERT INTO `sys_job_log` VALUES (13074, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1236毫秒', '0', '', '2022-02-01 16:10:01'); INSERT INTO `sys_job_log` VALUES (13075, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:274毫秒', '0', '', '2022-02-01 16:20:00'); INSERT INTO `sys_job_log` VALUES (13076, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:367毫秒', '0', '', '2022-02-01 16:20:00'); INSERT INTO `sys_job_log` VALUES (13077, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:748毫秒', '0', '', '2022-02-01 16:20:00'); INSERT INTO `sys_job_log` VALUES (13078, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:283毫秒', '0', '', '2022-02-01 16:30:00'); INSERT INTO `sys_job_log` VALUES (13079, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:635毫秒', '0', '', '2022-02-01 16:30:00'); INSERT INTO `sys_job_log` VALUES (13080, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:301毫秒', '0', '', '2022-02-01 16:40:00'); INSERT INTO `sys_job_log` VALUES (13081, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:615毫秒', '0', '', '2022-02-01 16:40:00'); INSERT INTO `sys_job_log` VALUES (13082, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:977毫秒', '0', '', '2022-02-01 16:40:01'); INSERT INTO `sys_job_log` VALUES (13083, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:410毫秒', '0', '', '2022-02-01 16:50:00'); INSERT INTO `sys_job_log` VALUES (13084, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:682毫秒', '0', '', '2022-02-01 16:50:00'); INSERT INTO `sys_job_log` VALUES (13085, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:245毫秒', '0', '', '2022-02-01 17:00:00'); INSERT INTO `sys_job_log` VALUES (13086, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:408毫秒', '0', '', '2022-02-01 17:00:00'); INSERT INTO `sys_job_log` VALUES (13087, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:899毫秒', '0', '', '2022-02-01 17:00:00'); INSERT INTO `sys_job_log` VALUES (13088, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:321毫秒', '0', '', '2022-02-01 17:10:00'); INSERT INTO `sys_job_log` VALUES (13089, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:709毫秒', '0', '', '2022-02-01 17:10:00'); INSERT INTO `sys_job_log` VALUES (13090, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:287毫秒', '0', '', '2022-02-01 17:20:00'); INSERT INTO `sys_job_log` VALUES (13091, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:858毫秒', '0', '', '2022-02-01 17:20:00'); INSERT INTO `sys_job_log` VALUES (13092, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:934毫秒', '0', '', '2022-02-01 17:20:00'); INSERT INTO `sys_job_log` VALUES (13093, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:783毫秒', '0', '', '2022-02-02 17:50:00'); INSERT INTO `sys_job_log` VALUES (13094, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1272毫秒', '0', '', '2022-02-02 17:50:01'); INSERT INTO `sys_job_log` VALUES (13095, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:249毫秒', '0', '', '2022-02-02 18:00:00'); INSERT INTO `sys_job_log` VALUES (13096, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:354毫秒', '0', '', '2022-02-02 18:00:00'); INSERT INTO `sys_job_log` VALUES (13097, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:621毫秒', '0', '', '2022-02-02 18:00:00'); INSERT INTO `sys_job_log` VALUES (13098, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:266毫秒', '0', '', '2022-02-02 18:10:00'); INSERT INTO `sys_job_log` VALUES (13099, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-02-02 18:10:00'); INSERT INTO `sys_job_log` VALUES (13100, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:281毫秒', '0', '', '2022-02-02 18:20:00'); INSERT INTO `sys_job_log` VALUES (13101, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:798毫秒', '0', '', '2022-02-02 18:20:00'); INSERT INTO `sys_job_log` VALUES (13102, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:874毫秒', '0', '', '2022-02-02 18:20:00'); INSERT INTO `sys_job_log` VALUES (13103, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:257毫秒', '0', '', '2022-02-02 18:52:42'); INSERT INTO `sys_job_log` VALUES (13104, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:189毫秒', '0', '', '2022-02-02 18:52:42'); INSERT INTO `sys_job_log` VALUES (13105, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-02-02 18:52:42'); INSERT INTO `sys_job_log` VALUES (13106, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:265毫秒', '0', '', '2022-02-02 18:52:42'); INSERT INTO `sys_job_log` VALUES (13107, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:830毫秒', '0', '', '2022-02-02 18:52:42'); INSERT INTO `sys_job_log` VALUES (13108, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:509毫秒', '0', '', '2022-02-02 18:52:42'); INSERT INTO `sys_job_log` VALUES (13109, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:494毫秒', '0', '', '2022-02-02 18:52:43'); INSERT INTO `sys_job_log` VALUES (13110, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:200毫秒', '0', '', '2022-02-02 19:00:00'); INSERT INTO `sys_job_log` VALUES (13111, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:303毫秒', '0', '', '2022-02-02 19:00:00'); INSERT INTO `sys_job_log` VALUES (13112, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1677毫秒', '0', '', '2022-02-02 19:00:01'); INSERT INTO `sys_job_log` VALUES (13113, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:286毫秒', '0', '', '2022-02-02 19:10:00'); INSERT INTO `sys_job_log` VALUES (13114, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-02-02 19:10:00'); INSERT INTO `sys_job_log` VALUES (13115, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:208毫秒', '0', '', '2022-02-02 19:20:00'); INSERT INTO `sys_job_log` VALUES (13116, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:289毫秒', '0', '', '2022-02-02 19:20:00'); INSERT INTO `sys_job_log` VALUES (13117, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:824毫秒', '0', '', '2022-02-02 19:20:00'); INSERT INTO `sys_job_log` VALUES (13118, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:313毫秒', '0', '', '2022-02-02 19:30:00'); INSERT INTO `sys_job_log` VALUES (13119, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-02-02 19:30:00'); INSERT INTO `sys_job_log` VALUES (13120, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:344毫秒', '0', '', '2022-02-02 19:40:00'); INSERT INTO `sys_job_log` VALUES (13121, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:614毫秒', '0', '', '2022-02-02 19:40:00'); INSERT INTO `sys_job_log` VALUES (13122, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:922毫秒', '0', '', '2022-02-02 19:40:00'); INSERT INTO `sys_job_log` VALUES (13123, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:306毫秒', '0', '', '2022-02-02 19:50:00'); INSERT INTO `sys_job_log` VALUES (13124, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:844毫秒', '0', '', '2022-02-02 19:50:00'); INSERT INTO `sys_job_log` VALUES (13125, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:213毫秒', '0', '', '2022-02-02 20:00:00'); INSERT INTO `sys_job_log` VALUES (13126, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:287毫秒', '0', '', '2022-02-02 20:00:00'); INSERT INTO `sys_job_log` VALUES (13127, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:590毫秒', '0', '', '2022-02-02 20:00:00'); INSERT INTO `sys_job_log` VALUES (13128, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:294毫秒', '0', '', '2022-02-02 20:10:00'); INSERT INTO `sys_job_log` VALUES (13129, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:632毫秒', '0', '', '2022-02-02 20:10:00'); INSERT INTO `sys_job_log` VALUES (13130, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:200毫秒', '0', '', '2022-02-02 20:20:00'); INSERT INTO `sys_job_log` VALUES (13131, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:291毫秒', '0', '', '2022-02-02 20:20:00'); INSERT INTO `sys_job_log` VALUES (13132, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-02-02 20:20:00'); INSERT INTO `sys_job_log` VALUES (13133, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:335毫秒', '0', '', '2022-02-02 20:30:00'); INSERT INTO `sys_job_log` VALUES (13134, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:914毫秒', '0', '', '2022-02-02 20:30:00'); INSERT INTO `sys_job_log` VALUES (13135, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1257毫秒', '0', '', '2022-02-02 20:40:01'); INSERT INTO `sys_job_log` VALUES (13136, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1322毫秒', '0', '', '2022-02-02 20:40:01'); INSERT INTO `sys_job_log` VALUES (13137, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1742毫秒', '0', '', '2022-02-02 20:40:01'); INSERT INTO `sys_job_log` VALUES (13138, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:398毫秒', '0', '', '2022-02-02 20:50:00'); INSERT INTO `sys_job_log` VALUES (13139, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:702毫秒', '0', '', '2022-02-02 20:50:00'); INSERT INTO `sys_job_log` VALUES (13140, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:222毫秒', '0', '', '2022-02-02 21:00:00'); INSERT INTO `sys_job_log` VALUES (13141, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:300毫秒', '0', '', '2022-02-02 21:00:00'); INSERT INTO `sys_job_log` VALUES (13142, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:630毫秒', '0', '', '2022-02-02 21:00:00'); INSERT INTO `sys_job_log` VALUES (13143, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1413毫秒', '0', '', '2022-02-02 21:10:01'); INSERT INTO `sys_job_log` VALUES (13144, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1766毫秒', '0', '', '2022-02-02 21:10:01'); INSERT INTO `sys_job_log` VALUES (13145, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:207毫秒', '0', '', '2022-02-02 21:20:00'); INSERT INTO `sys_job_log` VALUES (13146, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:243毫秒', '0', '', '2022-02-02 21:20:00'); INSERT INTO `sys_job_log` VALUES (13147, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:559毫秒', '0', '', '2022-02-02 21:20:00'); INSERT INTO `sys_job_log` VALUES (13148, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:395毫秒', '0', '', '2022-02-02 21:30:00'); INSERT INTO `sys_job_log` VALUES (13149, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:699毫秒', '0', '', '2022-02-02 21:30:00'); INSERT INTO `sys_job_log` VALUES (13150, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:15毫秒', '0', '', '2022-02-02 21:40:00'); INSERT INTO `sys_job_log` VALUES (13151, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:6毫秒', '0', '', '2022-02-02 21:40:00'); INSERT INTO `sys_job_log` VALUES (13152, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:4毫秒', '0', '', '2022-02-02 21:40:00'); INSERT INTO `sys_job_log` VALUES (13153, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:247毫秒', '0', '', '2022-02-02 21:50:00'); INSERT INTO `sys_job_log` VALUES (13154, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:611毫秒', '0', '', '2022-02-02 21:50:00'); INSERT INTO `sys_job_log` VALUES (13155, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:239毫秒', '0', '', '2022-02-02 22:00:00'); INSERT INTO `sys_job_log` VALUES (13156, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:289毫秒', '0', '', '2022-02-02 22:00:00'); INSERT INTO `sys_job_log` VALUES (13157, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:667毫秒', '0', '', '2022-02-02 22:00:00'); INSERT INTO `sys_job_log` VALUES (13158, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:506毫秒', '0', '', '2022-02-02 22:10:00'); INSERT INTO `sys_job_log` VALUES (13159, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:700毫秒', '0', '', '2022-02-02 22:10:00'); INSERT INTO `sys_job_log` VALUES (13160, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:392毫秒', '0', '', '2022-02-02 22:20:00'); INSERT INTO `sys_job_log` VALUES (13161, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:624毫秒', '0', '', '2022-02-02 22:20:00'); INSERT INTO `sys_job_log` VALUES (13162, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1195毫秒', '0', '', '2022-02-02 22:20:01'); INSERT INTO `sys_job_log` VALUES (13163, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:334毫秒', '0', '', '2022-02-02 22:30:00'); INSERT INTO `sys_job_log` VALUES (13164, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:607毫秒', '0', '', '2022-02-02 22:30:00'); INSERT INTO `sys_job_log` VALUES (13165, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:254毫秒', '0', '', '2022-02-02 22:40:00'); INSERT INTO `sys_job_log` VALUES (13166, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:308毫秒', '0', '', '2022-02-02 22:40:00'); INSERT INTO `sys_job_log` VALUES (13167, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:885毫秒', '0', '', '2022-02-02 22:40:00'); INSERT INTO `sys_job_log` VALUES (13168, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:300毫秒', '0', '', '2022-02-02 22:50:00'); INSERT INTO `sys_job_log` VALUES (13169, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-02-02 22:50:00'); INSERT INTO `sys_job_log` VALUES (13170, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:367毫秒', '0', '', '2022-02-02 23:00:00'); INSERT INTO `sys_job_log` VALUES (13171, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:792毫秒', '0', '', '2022-02-02 23:00:00'); INSERT INTO `sys_job_log` VALUES (13172, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1032毫秒', '0', '', '2022-02-02 23:00:01'); INSERT INTO `sys_job_log` VALUES (13173, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:356毫秒', '0', '', '2022-02-02 23:10:00'); INSERT INTO `sys_job_log` VALUES (13174, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1026毫秒', '0', '', '2022-02-02 23:10:01'); INSERT INTO `sys_job_log` VALUES (13175, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:824毫秒', '0', '', '2022-02-02 23:30:00'); INSERT INTO `sys_job_log` VALUES (13176, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1414毫秒', '0', '', '2022-02-02 23:30:01'); INSERT INTO `sys_job_log` VALUES (13177, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3287毫秒', '0', '', '2022-02-03 19:50:03'); INSERT INTO `sys_job_log` VALUES (13178, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3300毫秒', '0', '', '2022-02-03 19:50:03'); INSERT INTO `sys_job_log` VALUES (13179, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:665毫秒', '0', '', '2022-02-03 20:00:00'); INSERT INTO `sys_job_log` VALUES (13180, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:662毫秒', '0', '', '2022-02-03 20:00:00'); INSERT INTO `sys_job_log` VALUES (13181, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1289毫秒', '0', '', '2022-02-03 20:00:01'); INSERT INTO `sys_job_log` VALUES (13182, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1392毫秒', '0', '', '2022-02-03 20:10:01'); INSERT INTO `sys_job_log` VALUES (13183, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2254毫秒', '0', '', '2022-02-03 20:10:02'); INSERT INTO `sys_job_log` VALUES (13184, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:245毫秒', '0', '', '2022-02-03 20:20:00'); INSERT INTO `sys_job_log` VALUES (13185, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:378毫秒', '0', '', '2022-02-03 20:20:00'); INSERT INTO `sys_job_log` VALUES (13186, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:648毫秒', '0', '', '2022-02-03 20:20:00'); INSERT INTO `sys_job_log` VALUES (13187, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:262毫秒', '0', '', '2022-02-03 20:30:00'); INSERT INTO `sys_job_log` VALUES (13188, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:661毫秒', '0', '', '2022-02-03 20:30:00'); INSERT INTO `sys_job_log` VALUES (13189, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:294毫秒', '0', '', '2022-02-03 20:40:00'); INSERT INTO `sys_job_log` VALUES (13190, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-02-03 20:40:00'); INSERT INTO `sys_job_log` VALUES (13191, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1115毫秒', '0', '', '2022-02-03 20:40:01'); INSERT INTO `sys_job_log` VALUES (13192, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:304毫秒', '0', '', '2022-02-03 20:50:00'); INSERT INTO `sys_job_log` VALUES (13193, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1682毫秒', '0', '', '2022-02-03 20:50:01'); INSERT INTO `sys_job_log` VALUES (13194, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:226毫秒', '0', '', '2022-02-03 21:00:00'); INSERT INTO `sys_job_log` VALUES (13195, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:292毫秒', '0', '', '2022-02-03 21:00:00'); INSERT INTO `sys_job_log` VALUES (13196, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-02-03 21:00:00'); INSERT INTO `sys_job_log` VALUES (13197, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:308毫秒', '0', '', '2022-02-03 21:10:00'); INSERT INTO `sys_job_log` VALUES (13198, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:620毫秒', '0', '', '2022-02-03 21:10:00'); INSERT INTO `sys_job_log` VALUES (13199, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:283毫秒', '0', '', '2022-02-03 21:20:00'); INSERT INTO `sys_job_log` VALUES (13200, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:927毫秒', '0', '', '2022-02-03 21:20:00'); INSERT INTO `sys_job_log` VALUES (13201, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:940毫秒', '0', '', '2022-02-03 21:20:00'); INSERT INTO `sys_job_log` VALUES (13202, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:366毫秒', '0', '', '2022-02-03 21:30:00'); INSERT INTO `sys_job_log` VALUES (13203, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:682毫秒', '0', '', '2022-02-03 21:30:00'); INSERT INTO `sys_job_log` VALUES (13204, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:228毫秒', '0', '', '2022-02-03 21:40:00'); INSERT INTO `sys_job_log` VALUES (13205, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:277毫秒', '0', '', '2022-02-03 21:40:00'); INSERT INTO `sys_job_log` VALUES (13206, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:606毫秒', '0', '', '2022-02-03 21:40:00'); INSERT INTO `sys_job_log` VALUES (13207, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:339毫秒', '0', '', '2022-02-03 21:50:00'); INSERT INTO `sys_job_log` VALUES (13208, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1164毫秒', '0', '', '2022-02-03 21:50:01'); INSERT INTO `sys_job_log` VALUES (13209, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:401毫秒', '0', '', '2022-02-03 22:00:00'); INSERT INTO `sys_job_log` VALUES (13210, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:724毫秒', '0', '', '2022-02-03 22:00:00'); INSERT INTO `sys_job_log` VALUES (13211, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1180毫秒', '0', '', '2022-02-03 22:00:01'); INSERT INTO `sys_job_log` VALUES (13212, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:498毫秒', '0', '', '2022-02-03 22:10:00'); INSERT INTO `sys_job_log` VALUES (13213, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:889毫秒', '0', '', '2022-02-03 22:10:00'); INSERT INTO `sys_job_log` VALUES (13214, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:328毫秒', '0', '', '2022-02-03 22:20:00'); INSERT INTO `sys_job_log` VALUES (13215, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:449毫秒', '0', '', '2022-02-03 22:20:00'); INSERT INTO `sys_job_log` VALUES (13216, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1974毫秒', '0', '', '2022-02-03 22:20:02'); INSERT INTO `sys_job_log` VALUES (13217, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:262毫秒', '0', '', '2022-02-03 22:30:00'); INSERT INTO `sys_job_log` VALUES (13218, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:568毫秒', '0', '', '2022-02-03 22:30:00'); INSERT INTO `sys_job_log` VALUES (13219, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:206毫秒', '0', '', '2022-02-03 22:40:00'); INSERT INTO `sys_job_log` VALUES (13220, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:249毫秒', '0', '', '2022-02-03 22:40:00'); INSERT INTO `sys_job_log` VALUES (13221, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:763毫秒', '0', '', '2022-02-03 22:40:00'); INSERT INTO `sys_job_log` VALUES (13222, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:558毫秒', '0', '', '2022-02-07 20:00:00'); INSERT INTO `sys_job_log` VALUES (13223, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:632毫秒', '0', '', '2022-02-07 20:00:00'); INSERT INTO `sys_job_log` VALUES (13224, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1058毫秒', '0', '', '2022-02-07 20:00:01'); INSERT INTO `sys_job_log` VALUES (13225, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:251毫秒', '0', '', '2022-02-07 20:10:00'); INSERT INTO `sys_job_log` VALUES (13226, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:617毫秒', '0', '', '2022-02-07 20:10:00'); INSERT INTO `sys_job_log` VALUES (13227, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:305毫秒', '0', '', '2022-02-07 20:20:00'); INSERT INTO `sys_job_log` VALUES (13228, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:416毫秒', '0', '', '2022-02-07 20:20:00'); INSERT INTO `sys_job_log` VALUES (13229, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:746毫秒', '0', '', '2022-02-07 20:20:00'); INSERT INTO `sys_job_log` VALUES (13230, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:295毫秒', '0', '', '2022-02-07 20:30:00'); INSERT INTO `sys_job_log` VALUES (13231, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:550毫秒', '0', '', '2022-02-07 20:30:00'); INSERT INTO `sys_job_log` VALUES (13232, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:464毫秒', '0', '', '2022-02-07 20:40:00'); INSERT INTO `sys_job_log` VALUES (13233, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:625毫秒', '0', '', '2022-02-07 20:40:00'); INSERT INTO `sys_job_log` VALUES (13234, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3008毫秒', '0', '', '2022-02-07 20:40:03'); INSERT INTO `sys_job_log` VALUES (13235, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:590毫秒', '0', '', '2022-02-07 20:50:00'); INSERT INTO `sys_job_log` VALUES (13236, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:825毫秒', '0', '', '2022-02-07 20:50:00'); INSERT INTO `sys_job_log` VALUES (13237, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:268毫秒', '0', '', '2022-02-07 21:00:00'); INSERT INTO `sys_job_log` VALUES (13238, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:431毫秒', '0', '', '2022-02-07 21:00:00'); INSERT INTO `sys_job_log` VALUES (13239, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:777毫秒', '0', '', '2022-02-07 21:00:00'); INSERT INTO `sys_job_log` VALUES (13240, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:303毫秒', '0', '', '2022-02-07 21:10:00'); INSERT INTO `sys_job_log` VALUES (13241, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:626毫秒', '0', '', '2022-02-07 21:10:00'); INSERT INTO `sys_job_log` VALUES (13242, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:896毫秒', '0', '', '2022-02-07 21:20:00'); INSERT INTO `sys_job_log` VALUES (13243, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1199毫秒', '0', '', '2022-02-07 21:20:01'); INSERT INTO `sys_job_log` VALUES (13244, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1329毫秒', '0', '', '2022-02-07 21:20:01'); INSERT INTO `sys_job_log` VALUES (13245, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:701毫秒', '0', '', '2022-02-08 09:50:00'); INSERT INTO `sys_job_log` VALUES (13246, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1189毫秒', '0', '', '2022-02-08 09:50:01'); INSERT INTO `sys_job_log` VALUES (13247, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:182毫秒', '0', '', '2022-02-08 10:00:00'); INSERT INTO `sys_job_log` VALUES (13248, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:276毫秒', '0', '', '2022-02-08 10:00:00'); INSERT INTO `sys_job_log` VALUES (13249, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:895毫秒', '0', '', '2022-02-08 10:00:00'); INSERT INTO `sys_job_log` VALUES (13250, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:255毫秒', '0', '', '2022-02-08 10:10:00'); INSERT INTO `sys_job_log` VALUES (13251, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:592毫秒', '0', '', '2022-02-08 10:10:00'); INSERT INTO `sys_job_log` VALUES (13252, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:344毫秒', '0', '', '2022-02-08 10:20:00'); INSERT INTO `sys_job_log` VALUES (13253, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-02-08 10:20:00'); INSERT INTO `sys_job_log` VALUES (13254, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:636毫秒', '0', '', '2022-02-08 10:20:00'); INSERT INTO `sys_job_log` VALUES (13255, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3008毫秒', '0', '', '2022-02-08 10:30:03'); INSERT INTO `sys_job_log` VALUES (13256, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3005毫秒', '0', '', '2022-02-08 10:30:03'); INSERT INTO `sys_job_log` VALUES (13257, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:210毫秒', '0', '', '2022-02-08 10:40:00'); INSERT INTO `sys_job_log` VALUES (13258, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:301毫秒', '0', '', '2022-02-08 10:40:00'); INSERT INTO `sys_job_log` VALUES (13259, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-02-08 10:40:00'); INSERT INTO `sys_job_log` VALUES (13260, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:233毫秒', '0', '', '2022-02-08 10:50:00'); INSERT INTO `sys_job_log` VALUES (13261, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:526毫秒', '0', '', '2022-02-08 10:50:00'); INSERT INTO `sys_job_log` VALUES (13262, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12毫秒', '0', '', '2022-02-08 11:00:00'); INSERT INTO `sys_job_log` VALUES (13263, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:5毫秒', '0', '', '2022-02-08 11:00:00'); INSERT INTO `sys_job_log` VALUES (13264, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:4毫秒', '0', '', '2022-02-08 11:00:00'); INSERT INTO `sys_job_log` VALUES (13265, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1399毫秒', '0', '', '2022-02-08 11:10:01'); INSERT INTO `sys_job_log` VALUES (13266, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1717毫秒', '0', '', '2022-02-08 11:10:01'); INSERT INTO `sys_job_log` VALUES (13267, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:620毫秒', '0', '', '2022-02-08 11:20:00'); INSERT INTO `sys_job_log` VALUES (13268, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1033毫秒', '0', '', '2022-02-08 11:20:01'); INSERT INTO `sys_job_log` VALUES (13269, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1293毫秒', '0', '', '2022-02-08 11:20:01'); INSERT INTO `sys_job_log` VALUES (13270, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:360毫秒', '0', '', '2022-02-08 11:30:00'); INSERT INTO `sys_job_log` VALUES (13271, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:728毫秒', '0', '', '2022-02-08 11:30:00'); INSERT INTO `sys_job_log` VALUES (13272, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:351毫秒', '0', '', '2022-02-08 11:40:00'); INSERT INTO `sys_job_log` VALUES (13273, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:602毫秒', '0', '', '2022-02-08 11:40:00'); INSERT INTO `sys_job_log` VALUES (13274, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:666毫秒', '0', '', '2022-02-08 11:40:00'); INSERT INTO `sys_job_log` VALUES (13275, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:253毫秒', '0', '', '2022-02-08 11:50:00'); INSERT INTO `sys_job_log` VALUES (13276, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:506毫秒', '0', '', '2022-02-08 11:50:00'); INSERT INTO `sys_job_log` VALUES (13277, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:279毫秒', '0', '', '2022-02-08 12:00:00'); INSERT INTO `sys_job_log` VALUES (13278, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:641毫秒', '0', '', '2022-02-08 12:00:00'); INSERT INTO `sys_job_log` VALUES (13279, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:680毫秒', '0', '', '2022-02-08 12:00:00'); INSERT INTO `sys_job_log` VALUES (13280, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:264毫秒', '0', '', '2022-02-08 12:10:00'); INSERT INTO `sys_job_log` VALUES (13281, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:566毫秒', '0', '', '2022-02-08 12:10:00'); INSERT INTO `sys_job_log` VALUES (13282, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:246毫秒', '0', '', '2022-02-08 12:20:00'); INSERT INTO `sys_job_log` VALUES (13283, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:817毫秒', '0', '', '2022-02-08 12:20:00'); INSERT INTO `sys_job_log` VALUES (13284, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:859毫秒', '0', '', '2022-02-08 12:20:00'); INSERT INTO `sys_job_log` VALUES (13285, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-02-08 12:30:00'); INSERT INTO `sys_job_log` VALUES (13286, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1273毫秒', '0', '', '2022-02-08 12:30:01'); INSERT INTO `sys_job_log` VALUES (13287, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:284毫秒', '0', '', '2022-02-08 12:40:00'); INSERT INTO `sys_job_log` VALUES (13288, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:518毫秒', '0', '', '2022-02-08 12:40:00'); INSERT INTO `sys_job_log` VALUES (13289, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:625毫秒', '0', '', '2022-02-08 12:40:00'); INSERT INTO `sys_job_log` VALUES (13290, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:246毫秒', '0', '', '2022-02-08 13:40:45'); INSERT INTO `sys_job_log` VALUES (13291, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:182毫秒', '0', '', '2022-02-08 13:40:45'); INSERT INTO `sys_job_log` VALUES (13292, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:717毫秒', '0', '', '2022-02-08 13:40:46'); INSERT INTO `sys_job_log` VALUES (13293, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:308毫秒', '0', '', '2022-02-08 13:40:46'); INSERT INTO `sys_job_log` VALUES (13294, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:822毫秒', '0', '', '2022-02-08 13:40:46'); INSERT INTO `sys_job_log` VALUES (13295, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:148毫秒', '0', '', '2022-02-08 13:40:46'); INSERT INTO `sys_job_log` VALUES (13296, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:222毫秒', '0', '', '2022-02-08 13:40:46'); INSERT INTO `sys_job_log` VALUES (13297, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:130毫秒', '0', '', '2022-02-08 13:40:46'); INSERT INTO `sys_job_log` VALUES (13298, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:212毫秒', '0', '', '2022-02-08 13:40:46'); INSERT INTO `sys_job_log` VALUES (13299, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:511毫秒', '0', '', '2022-02-08 13:40:46'); INSERT INTO `sys_job_log` VALUES (13300, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:163毫秒', '0', '', '2022-02-08 13:40:46'); INSERT INTO `sys_job_log` VALUES (13301, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:467毫秒', '0', '', '2022-02-08 13:40:47'); INSERT INTO `sys_job_log` VALUES (13302, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:408毫秒', '0', '', '2022-02-08 13:40:47'); INSERT INTO `sys_job_log` VALUES (13303, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:440毫秒', '0', '', '2022-02-08 13:40:48'); INSERT INTO `sys_job_log` VALUES (13304, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:432毫秒', '0', '', '2022-02-08 13:40:48'); INSERT INTO `sys_job_log` VALUES (13305, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:236毫秒', '0', '', '2022-02-08 13:50:00'); INSERT INTO `sys_job_log` VALUES (13306, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:551毫秒', '0', '', '2022-02-08 13:50:00'); INSERT INTO `sys_job_log` VALUES (13307, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:335毫秒', '0', '', '2022-02-08 14:00:00'); INSERT INTO `sys_job_log` VALUES (13308, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-02-08 14:00:00'); INSERT INTO `sys_job_log` VALUES (13309, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1184毫秒', '0', '', '2022-02-08 14:00:01'); INSERT INTO `sys_job_log` VALUES (13310, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:243毫秒', '0', '', '2022-02-08 14:10:00'); INSERT INTO `sys_job_log` VALUES (13311, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:483毫秒', '0', '', '2022-02-08 14:10:00'); INSERT INTO `sys_job_log` VALUES (13312, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:730毫秒', '0', '', '2022-02-08 20:50:00'); INSERT INTO `sys_job_log` VALUES (13313, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1131毫秒', '0', '', '2022-02-08 20:50:01'); INSERT INTO `sys_job_log` VALUES (13314, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:315毫秒', '0', '', '2022-02-08 21:00:00'); INSERT INTO `sys_job_log` VALUES (13315, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:413毫秒', '0', '', '2022-02-08 21:00:00'); INSERT INTO `sys_job_log` VALUES (13316, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:808毫秒', '0', '', '2022-02-08 21:00:00'); INSERT INTO `sys_job_log` VALUES (13317, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3324毫秒', '0', '', '2022-02-09 08:50:03'); INSERT INTO `sys_job_log` VALUES (13318, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3321毫秒', '0', '', '2022-02-09 08:50:03'); INSERT INTO `sys_job_log` VALUES (13319, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:369毫秒', '0', '', '2022-02-09 09:00:00'); INSERT INTO `sys_job_log` VALUES (13320, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:986毫秒', '0', '', '2022-02-09 09:00:01'); INSERT INTO `sys_job_log` VALUES (13321, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1185毫秒', '0', '', '2022-02-09 09:00:01'); INSERT INTO `sys_job_log` VALUES (13322, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:735毫秒', '0', '', '2022-02-09 09:10:00'); INSERT INTO `sys_job_log` VALUES (13323, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1224毫秒', '0', '', '2022-02-09 09:10:01'); INSERT INTO `sys_job_log` VALUES (13324, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:803毫秒', '0', '', '2022-02-09 09:20:00'); INSERT INTO `sys_job_log` VALUES (13325, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1037毫秒', '0', '', '2022-02-09 09:20:01'); INSERT INTO `sys_job_log` VALUES (13326, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1246毫秒', '0', '', '2022-02-09 09:20:01'); INSERT INTO `sys_job_log` VALUES (13327, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-02-09 09:30:00'); INSERT INTO `sys_job_log` VALUES (13328, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1226毫秒', '0', '', '2022-02-09 09:30:01'); INSERT INTO `sys_job_log` VALUES (13329, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:264毫秒', '0', '', '2022-02-09 09:40:00'); INSERT INTO `sys_job_log` VALUES (13330, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:485毫秒', '0', '', '2022-02-09 09:40:00'); INSERT INTO `sys_job_log` VALUES (13331, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1176毫秒', '0', '', '2022-02-09 09:40:01'); INSERT INTO `sys_job_log` VALUES (13332, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:534毫秒', '0', '', '2022-02-09 09:50:00'); INSERT INTO `sys_job_log` VALUES (13333, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1220毫秒', '0', '', '2022-02-09 09:50:01'); INSERT INTO `sys_job_log` VALUES (13334, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:261毫秒', '0', '', '2022-02-09 10:00:00'); INSERT INTO `sys_job_log` VALUES (13335, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:499毫秒', '0', '', '2022-02-09 10:00:00'); INSERT INTO `sys_job_log` VALUES (13336, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1635毫秒', '0', '', '2022-02-09 10:00:01'); INSERT INTO `sys_job_log` VALUES (13337, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:882毫秒', '0', '', '2022-02-09 10:10:00'); INSERT INTO `sys_job_log` VALUES (13338, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1248毫秒', '0', '', '2022-02-09 10:10:01'); INSERT INTO `sys_job_log` VALUES (13339, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:262毫秒', '0', '', '2022-02-09 10:20:00'); INSERT INTO `sys_job_log` VALUES (13340, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:494毫秒', '0', '', '2022-02-09 10:20:00'); INSERT INTO `sys_job_log` VALUES (13341, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3010毫秒', '0', '', '2022-02-09 10:20:03'); INSERT INTO `sys_job_log` VALUES (13342, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-02-09 10:30:00'); INSERT INTO `sys_job_log` VALUES (13343, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1215毫秒', '0', '', '2022-02-09 10:30:01'); INSERT INTO `sys_job_log` VALUES (13344, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1362毫秒', '0', '', '2022-02-09 10:40:01'); INSERT INTO `sys_job_log` VALUES (13345, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1553毫秒', '0', '', '2022-02-09 10:40:01'); INSERT INTO `sys_job_log` VALUES (13346, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2261毫秒', '0', '', '2022-02-09 10:40:02'); INSERT INTO `sys_job_log` VALUES (13347, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3005毫秒', '0', '', '2022-02-09 10:50:03'); INSERT INTO `sys_job_log` VALUES (13348, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3003毫秒', '0', '', '2022-02-09 10:50:03'); INSERT INTO `sys_job_log` VALUES (13349, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:699毫秒', '0', '', '2022-02-09 11:00:00'); INSERT INTO `sys_job_log` VALUES (13350, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:742毫秒', '0', '', '2022-02-09 11:00:00'); INSERT INTO `sys_job_log` VALUES (13351, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1293毫秒', '0', '', '2022-02-09 11:00:01'); INSERT INTO `sys_job_log` VALUES (13352, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-02-09 11:10:00'); INSERT INTO `sys_job_log` VALUES (13353, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1366毫秒', '0', '', '2022-02-09 11:10:01'); INSERT INTO `sys_job_log` VALUES (13354, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:281毫秒', '0', '', '2022-02-09 11:20:00'); INSERT INTO `sys_job_log` VALUES (13355, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:670毫秒', '0', '', '2022-02-09 11:20:00'); INSERT INTO `sys_job_log` VALUES (13356, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:898毫秒', '0', '', '2022-02-09 11:20:00'); INSERT INTO `sys_job_log` VALUES (13357, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-02-09 11:30:00'); INSERT INTO `sys_job_log` VALUES (13358, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1226毫秒', '0', '', '2022-02-09 11:30:01'); INSERT INTO `sys_job_log` VALUES (13359, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:301毫秒', '0', '', '2022-02-09 11:40:00'); INSERT INTO `sys_job_log` VALUES (13360, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:556毫秒', '0', '', '2022-02-09 11:40:00'); INSERT INTO `sys_job_log` VALUES (13361, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1146毫秒', '0', '', '2022-02-09 11:40:01'); INSERT INTO `sys_job_log` VALUES (13362, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:760毫秒', '0', '', '2022-02-09 11:50:00'); INSERT INTO `sys_job_log` VALUES (13363, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1214毫秒', '0', '', '2022-02-09 11:50:01'); INSERT INTO `sys_job_log` VALUES (13364, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:272毫秒', '0', '', '2022-02-09 12:00:00'); INSERT INTO `sys_job_log` VALUES (13365, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:595毫秒', '0', '', '2022-02-09 12:00:00'); INSERT INTO `sys_job_log` VALUES (13366, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1661毫秒', '0', '', '2022-02-09 12:00:01'); INSERT INTO `sys_job_log` VALUES (13367, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:560毫秒', '0', '', '2022-02-09 12:10:00'); INSERT INTO `sys_job_log` VALUES (13368, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1236毫秒', '0', '', '2022-02-09 12:10:01'); INSERT INTO `sys_job_log` VALUES (13369, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:302毫秒', '0', '', '2022-02-09 12:20:00'); INSERT INTO `sys_job_log` VALUES (13370, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:558毫秒', '0', '', '2022-02-09 12:20:00'); INSERT INTO `sys_job_log` VALUES (13371, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1147毫秒', '0', '', '2022-02-09 12:20:01'); INSERT INTO `sys_job_log` VALUES (13372, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:739毫秒', '0', '', '2022-02-09 12:30:00'); INSERT INTO `sys_job_log` VALUES (13373, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1060毫秒', '0', '', '2022-02-09 12:30:01'); INSERT INTO `sys_job_log` VALUES (13374, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:387毫秒', '0', '', '2022-02-09 12:40:00'); INSERT INTO `sys_job_log` VALUES (13375, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:643毫秒', '0', '', '2022-02-09 12:40:00'); INSERT INTO `sys_job_log` VALUES (13376, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1568毫秒', '0', '', '2022-02-09 12:40:01'); INSERT INTO `sys_job_log` VALUES (13377, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-02-09 12:50:00'); INSERT INTO `sys_job_log` VALUES (13378, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1275毫秒', '0', '', '2022-02-09 12:50:01'); INSERT INTO `sys_job_log` VALUES (13379, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:185毫秒', '0', '', '2022-02-09 13:00:00'); INSERT INTO `sys_job_log` VALUES (13380, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:251毫秒', '0', '', '2022-02-09 13:00:00'); INSERT INTO `sys_job_log` VALUES (13381, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:886毫秒', '0', '', '2022-02-09 13:00:00'); INSERT INTO `sys_job_log` VALUES (13382, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-02-09 13:10:00'); INSERT INTO `sys_job_log` VALUES (13383, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1298毫秒', '0', '', '2022-02-09 13:10:01'); INSERT INTO `sys_job_log` VALUES (13384, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:686毫秒', '0', '', '2022-02-09 13:20:00'); INSERT INTO `sys_job_log` VALUES (13385, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1327毫秒', '0', '', '2022-02-09 13:20:01'); INSERT INTO `sys_job_log` VALUES (13386, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1667毫秒', '0', '', '2022-02-09 13:20:01'); INSERT INTO `sys_job_log` VALUES (13387, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:728毫秒', '0', '', '2022-02-09 13:30:00'); INSERT INTO `sys_job_log` VALUES (13388, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1217毫秒', '0', '', '2022-02-09 13:30:01'); INSERT INTO `sys_job_log` VALUES (13389, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:245毫秒', '0', '', '2022-02-09 13:40:00'); INSERT INTO `sys_job_log` VALUES (13390, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-02-09 13:40:00'); INSERT INTO `sys_job_log` VALUES (13391, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1190毫秒', '0', '', '2022-02-09 13:40:01'); INSERT INTO `sys_job_log` VALUES (13392, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:558毫秒', '0', '', '2022-02-09 13:50:00'); INSERT INTO `sys_job_log` VALUES (13393, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1235毫秒', '0', '', '2022-02-09 13:50:01'); INSERT INTO `sys_job_log` VALUES (13394, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:243毫秒', '0', '', '2022-02-09 14:00:00'); INSERT INTO `sys_job_log` VALUES (13395, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:654毫秒', '0', '', '2022-02-09 14:00:00'); INSERT INTO `sys_job_log` VALUES (13396, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1081毫秒', '0', '', '2022-02-09 14:00:01'); INSERT INTO `sys_job_log` VALUES (13397, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:581毫秒', '0', '', '2022-02-09 14:10:00'); INSERT INTO `sys_job_log` VALUES (13398, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1251毫秒', '0', '', '2022-02-09 14:10:01'); INSERT INTO `sys_job_log` VALUES (13399, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:320毫秒', '0', '', '2022-02-09 18:35:23'); INSERT INTO `sys_job_log` VALUES (13400, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:191毫秒', '0', '', '2022-02-09 18:35:23'); INSERT INTO `sys_job_log` VALUES (13401, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:648毫秒', '0', '', '2022-02-09 18:35:23'); INSERT INTO `sys_job_log` VALUES (13402, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:196毫秒', '0', '', '2022-02-09 18:35:23'); INSERT INTO `sys_job_log` VALUES (13403, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:757毫秒', '0', '', '2022-02-09 18:35:23'); INSERT INTO `sys_job_log` VALUES (13404, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:130毫秒', '0', '', '2022-02-09 18:35:23'); INSERT INTO `sys_job_log` VALUES (13405, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:147毫秒', '0', '', '2022-02-09 18:35:23'); INSERT INTO `sys_job_log` VALUES (13406, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:215毫秒', '0', '', '2022-02-09 18:35:23'); INSERT INTO `sys_job_log` VALUES (13407, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:134毫秒', '0', '', '2022-02-09 18:35:24'); INSERT INTO `sys_job_log` VALUES (13408, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:196毫秒', '0', '', '2022-02-09 18:35:24'); INSERT INTO `sys_job_log` VALUES (13409, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:133毫秒', '0', '', '2022-02-09 18:35:24'); INSERT INTO `sys_job_log` VALUES (13410, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:210毫秒', '0', '', '2022-02-09 18:35:24'); INSERT INTO `sys_job_log` VALUES (13411, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:734毫秒', '0', '', '2022-02-09 18:35:24'); INSERT INTO `sys_job_log` VALUES (13412, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:216毫秒', '0', '', '2022-02-09 18:35:24'); INSERT INTO `sys_job_log` VALUES (13413, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:128毫秒', '0', '', '2022-02-09 18:35:24'); INSERT INTO `sys_job_log` VALUES (13414, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:234毫秒', '0', '', '2022-02-09 18:35:24'); INSERT INTO `sys_job_log` VALUES (13415, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:123毫秒', '0', '', '2022-02-09 18:35:24'); INSERT INTO `sys_job_log` VALUES (13416, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:193毫秒', '0', '', '2022-02-09 18:35:24'); INSERT INTO `sys_job_log` VALUES (13417, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:130毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13418, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:197毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13419, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:137毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13420, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:711毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13421, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:141毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13422, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:198毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13423, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:139毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13424, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:223毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13425, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:152毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13426, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:191毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13427, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-02-09 18:35:25'); INSERT INTO `sys_job_log` VALUES (13428, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:202毫秒', '0', '', '2022-02-09 18:35:26'); INSERT INTO `sys_job_log` VALUES (13429, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:217毫秒', '0', '', '2022-02-09 18:35:26'); INSERT INTO `sys_job_log` VALUES (13430, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:250毫秒', '0', '', '2022-02-09 18:35:26'); INSERT INTO `sys_job_log` VALUES (13431, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:716毫秒', '0', '', '2022-02-09 18:35:26'); INSERT INTO `sys_job_log` VALUES (13432, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:202毫秒', '0', '', '2022-02-09 18:35:26'); INSERT INTO `sys_job_log` VALUES (13433, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:183毫秒', '0', '', '2022-02-09 18:35:27'); INSERT INTO `sys_job_log` VALUES (13434, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:185毫秒', '0', '', '2022-02-09 18:35:27'); INSERT INTO `sys_job_log` VALUES (13435, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:624毫秒', '0', '', '2022-02-09 18:35:27'); INSERT INTO `sys_job_log` VALUES (13436, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:180毫秒', '0', '', '2022-02-09 18:35:27'); INSERT INTO `sys_job_log` VALUES (13437, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:189毫秒', '0', '', '2022-02-09 18:35:27'); INSERT INTO `sys_job_log` VALUES (13438, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:226毫秒', '0', '', '2022-02-09 18:35:27'); INSERT INTO `sys_job_log` VALUES (13439, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:646毫秒', '0', '', '2022-02-09 18:35:28'); INSERT INTO `sys_job_log` VALUES (13440, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:195毫秒', '0', '', '2022-02-09 18:35:28'); INSERT INTO `sys_job_log` VALUES (13441, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:193毫秒', '0', '', '2022-02-09 18:35:28'); INSERT INTO `sys_job_log` VALUES (13442, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:165毫秒', '0', '', '2022-02-09 18:35:28'); INSERT INTO `sys_job_log` VALUES (13443, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-02-09 18:35:28'); INSERT INTO `sys_job_log` VALUES (13444, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:220毫秒', '0', '', '2022-02-09 18:35:28'); INSERT INTO `sys_job_log` VALUES (13445, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:208毫秒', '0', '', '2022-02-09 18:35:29'); INSERT INTO `sys_job_log` VALUES (13446, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:647毫秒', '0', '', '2022-02-09 18:35:29'); INSERT INTO `sys_job_log` VALUES (13447, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-02-09 18:35:30'); INSERT INTO `sys_job_log` VALUES (13448, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:569毫秒', '0', '', '2022-02-09 18:35:30'); INSERT INTO `sys_job_log` VALUES (13449, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-02-09 18:35:31'); INSERT INTO `sys_job_log` VALUES (13450, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:583毫秒', '0', '', '2022-02-09 18:35:31'); INSERT INTO `sys_job_log` VALUES (13451, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:546毫秒', '0', '', '2022-02-09 18:35:32'); INSERT INTO `sys_job_log` VALUES (13452, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-02-09 18:35:32'); INSERT INTO `sys_job_log` VALUES (13453, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:501毫秒', '0', '', '2022-02-09 18:35:33'); INSERT INTO `sys_job_log` VALUES (13454, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:501毫秒', '0', '', '2022-02-09 18:35:33'); INSERT INTO `sys_job_log` VALUES (13455, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:490毫秒', '0', '', '2022-02-09 18:35:34'); INSERT INTO `sys_job_log` VALUES (13456, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:496毫秒', '0', '', '2022-02-09 18:35:34'); INSERT INTO `sys_job_log` VALUES (13457, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:490毫秒', '0', '', '2022-02-09 18:35:35'); INSERT INTO `sys_job_log` VALUES (13458, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:472毫秒', '0', '', '2022-02-09 18:35:35'); INSERT INTO `sys_job_log` VALUES (13459, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:483毫秒', '0', '', '2022-02-09 18:35:36'); INSERT INTO `sys_job_log` VALUES (13460, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:485毫秒', '0', '', '2022-02-09 18:35:36'); INSERT INTO `sys_job_log` VALUES (13461, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:461毫秒', '0', '', '2022-02-09 18:35:37'); INSERT INTO `sys_job_log` VALUES (13462, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:479毫秒', '0', '', '2022-02-09 18:35:37'); INSERT INTO `sys_job_log` VALUES (13463, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:472毫秒', '0', '', '2022-02-09 18:35:38'); INSERT INTO `sys_job_log` VALUES (13464, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:844毫秒', '0', '', '2022-02-12 22:10:00'); INSERT INTO `sys_job_log` VALUES (13465, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1338毫秒', '0', '', '2022-02-12 22:10:01'); INSERT INTO `sys_job_log` VALUES (13466, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:329毫秒', '0', '', '2022-02-12 22:20:00'); INSERT INTO `sys_job_log` VALUES (13467, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:442毫秒', '0', '', '2022-02-12 22:20:00'); INSERT INTO `sys_job_log` VALUES (13468, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:743毫秒', '0', '', '2022-02-12 22:20:00'); INSERT INTO `sys_job_log` VALUES (13469, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:272毫秒', '0', '', '2022-02-12 22:30:00'); INSERT INTO `sys_job_log` VALUES (13470, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:540毫秒', '0', '', '2022-02-12 22:30:00'); INSERT INTO `sys_job_log` VALUES (13471, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:376毫秒', '0', '', '2022-02-12 22:40:00'); INSERT INTO `sys_job_log` VALUES (13472, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:663毫秒', '0', '', '2022-02-12 22:40:00'); INSERT INTO `sys_job_log` VALUES (13473, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1051毫秒', '0', '', '2022-02-12 22:40:01'); INSERT INTO `sys_job_log` VALUES (13474, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:301毫秒', '0', '', '2022-02-12 22:50:00'); INSERT INTO `sys_job_log` VALUES (13475, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:579毫秒', '0', '', '2022-02-12 22:50:00'); INSERT INTO `sys_job_log` VALUES (13476, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:552毫秒', '0', '', '2022-02-13 10:15:45'); INSERT INTO `sys_job_log` VALUES (13477, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:745毫秒', '0', '', '2022-02-13 10:15:46'); INSERT INTO `sys_job_log` VALUES (13478, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:720毫秒', '0', '', '2022-02-13 10:15:46'); INSERT INTO `sys_job_log` VALUES (13479, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:102毫秒', '0', '', '2022-02-13 10:15:46'); INSERT INTO `sys_job_log` VALUES (13480, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:971毫秒', '0', '', '2022-02-13 10:15:46'); INSERT INTO `sys_job_log` VALUES (13481, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:276毫秒', '0', '', '2022-02-13 10:15:47'); INSERT INTO `sys_job_log` VALUES (13482, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:209毫秒', '0', '', '2022-02-13 10:15:47'); INSERT INTO `sys_job_log` VALUES (13483, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:129毫秒', '0', '', '2022-02-13 10:15:47'); INSERT INTO `sys_job_log` VALUES (13484, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:432毫秒', '0', '', '2022-02-13 10:15:47'); INSERT INTO `sys_job_log` VALUES (13485, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:70毫秒', '0', '', '2022-02-13 10:15:47'); INSERT INTO `sys_job_log` VALUES (13486, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:49毫秒', '0', '', '2022-02-13 10:15:47'); INSERT INTO `sys_job_log` VALUES (13487, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:425毫秒', '0', '', '2022-02-13 10:15:47'); INSERT INTO `sys_job_log` VALUES (13488, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:1804毫秒', '0', '', '2022-02-13 10:15:47'); INSERT INTO `sys_job_log` VALUES (13489, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:234毫秒', '0', '', '2022-02-13 10:15:47'); INSERT INTO `sys_job_log` VALUES (13490, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:138毫秒', '0', '', '2022-02-13 10:15:47'); INSERT INTO `sys_job_log` VALUES (13491, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:246毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13492, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:50毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13493, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:44毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13494, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:289毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13495, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:35毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13496, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:40毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13497, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:53毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13498, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:358毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13499, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:239毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13500, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:56毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13501, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:284毫秒', '0', '', '2022-02-13 10:15:48'); INSERT INTO `sys_job_log` VALUES (13502, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:466毫秒', '0', '', '2022-02-13 10:15:49'); INSERT INTO `sys_job_log` VALUES (13503, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:49毫秒', '0', '', '2022-02-13 10:15:49'); INSERT INTO `sys_job_log` VALUES (13504, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:993毫秒', '0', '', '2022-02-13 10:15:49'); INSERT INTO `sys_job_log` VALUES (13505, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:42毫秒', '0', '', '2022-02-13 10:15:49'); INSERT INTO `sys_job_log` VALUES (13506, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:265毫秒', '0', '', '2022-02-13 10:15:49'); INSERT INTO `sys_job_log` VALUES (13507, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:50毫秒', '0', '', '2022-02-13 10:15:49'); INSERT INTO `sys_job_log` VALUES (13508, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:69毫秒', '0', '', '2022-02-13 10:15:49'); INSERT INTO `sys_job_log` VALUES (13509, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:313毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13510, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:300毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13511, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:53毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13512, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:143毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13513, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:389毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13514, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:245毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13515, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:54毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13516, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:52毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13517, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:51毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13518, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:232毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13519, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:242毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13520, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:51毫秒', '0', '', '2022-02-13 10:15:50'); INSERT INTO `sys_job_log` VALUES (13521, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:52毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13522, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:47毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13523, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:222毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13524, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:239毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13525, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:39毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13526, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:45毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13527, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:49毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13528, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:229毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13529, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:34毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13530, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:239毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13531, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:40毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13532, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:40毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13533, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:227毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13534, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:40毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13535, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:238毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13536, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:41毫秒', '0', '', '2022-02-13 10:15:51'); INSERT INTO `sys_job_log` VALUES (13537, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:271毫秒', '0', '', '2022-02-13 10:15:52'); INSERT INTO `sys_job_log` VALUES (13538, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:257毫秒', '0', '', '2022-02-13 10:15:52'); INSERT INTO `sys_job_log` VALUES (13539, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:221毫秒', '0', '', '2022-02-13 10:15:52'); INSERT INTO `sys_job_log` VALUES (13540, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:286毫秒', '0', '', '2022-02-13 10:15:52'); INSERT INTO `sys_job_log` VALUES (13541, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:218毫秒', '0', '', '2022-02-13 10:15:52'); INSERT INTO `sys_job_log` VALUES (13542, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:217毫秒', '0', '', '2022-02-13 10:15:52'); INSERT INTO `sys_job_log` VALUES (13543, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:198毫秒', '0', '', '2022-02-13 10:15:52'); INSERT INTO `sys_job_log` VALUES (13544, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:233毫秒', '0', '', '2022-02-13 10:15:52'); INSERT INTO `sys_job_log` VALUES (13545, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:172毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13546, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:165毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13547, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:136毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13548, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:159毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13549, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:137毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13550, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:125毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13551, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:166毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13552, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:158毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13553, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:194毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13554, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:158毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13555, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:153毫秒', '0', '', '2022-02-13 10:15:53'); INSERT INTO `sys_job_log` VALUES (13556, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:125毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13557, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:171毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13558, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:116毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13559, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:157毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13560, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:144毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13561, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:173毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13562, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:172毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13563, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:197毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13564, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:162毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13565, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:175毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13566, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:158毫秒', '0', '', '2022-02-13 10:15:54'); INSERT INTO `sys_job_log` VALUES (13567, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:176毫秒', '0', '', '2022-02-13 10:15:55'); INSERT INTO `sys_job_log` VALUES (13568, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:128毫秒', '0', '', '2022-02-13 10:15:55'); INSERT INTO `sys_job_log` VALUES (13569, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:218毫秒', '0', '', '2022-02-13 10:15:55'); INSERT INTO `sys_job_log` VALUES (13570, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:435毫秒', '0', '', '2022-02-13 10:15:55'); INSERT INTO `sys_job_log` VALUES (13571, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:229毫秒', '0', '', '2022-02-13 10:15:55'); INSERT INTO `sys_job_log` VALUES (13572, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:214毫秒', '0', '', '2022-02-13 10:15:55'); INSERT INTO `sys_job_log` VALUES (13573, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:173毫秒', '0', '', '2022-02-13 10:15:56'); INSERT INTO `sys_job_log` VALUES (13574, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:503毫秒', '0', '', '2022-02-13 10:15:56'); INSERT INTO `sys_job_log` VALUES (13575, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:190毫秒', '0', '', '2022-02-13 10:15:56'); INSERT INTO `sys_job_log` VALUES (13576, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:191毫秒', '0', '', '2022-02-13 10:15:56'); INSERT INTO `sys_job_log` VALUES (13577, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:187毫秒', '0', '', '2022-02-13 10:15:56'); INSERT INTO `sys_job_log` VALUES (13578, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:535毫秒', '0', '', '2022-02-13 10:15:56'); INSERT INTO `sys_job_log` VALUES (13579, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:171毫秒', '0', '', '2022-02-13 10:15:56'); INSERT INTO `sys_job_log` VALUES (13580, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:184毫秒', '0', '', '2022-02-13 10:15:57'); INSERT INTO `sys_job_log` VALUES (13581, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:554毫秒', '0', '', '2022-02-13 10:15:57'); INSERT INTO `sys_job_log` VALUES (13582, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:213毫秒', '0', '', '2022-02-13 10:15:57'); INSERT INTO `sys_job_log` VALUES (13583, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:175毫秒', '0', '', '2022-02-13 10:15:57'); INSERT INTO `sys_job_log` VALUES (13584, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:201毫秒', '0', '', '2022-02-13 10:15:57'); INSERT INTO `sys_job_log` VALUES (13585, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:504毫秒', '0', '', '2022-02-13 10:15:57'); INSERT INTO `sys_job_log` VALUES (13586, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:177毫秒', '0', '', '2022-02-13 10:15:57'); INSERT INTO `sys_job_log` VALUES (13587, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:182毫秒', '0', '', '2022-02-13 10:15:58'); INSERT INTO `sys_job_log` VALUES (13588, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:186毫秒', '0', '', '2022-02-13 10:15:58'); INSERT INTO `sys_job_log` VALUES (13589, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:506毫秒', '0', '', '2022-02-13 10:15:58'); INSERT INTO `sys_job_log` VALUES (13590, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:384毫秒', '0', '', '2022-02-13 10:15:58'); INSERT INTO `sys_job_log` VALUES (13591, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:492毫秒', '0', '', '2022-02-13 10:15:58'); INSERT INTO `sys_job_log` VALUES (13592, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:198毫秒', '0', '', '2022-02-13 10:15:58'); INSERT INTO `sys_job_log` VALUES (13593, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:185毫秒', '0', '', '2022-02-13 10:15:59'); INSERT INTO `sys_job_log` VALUES (13594, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:175毫秒', '0', '', '2022-02-13 10:15:59'); INSERT INTO `sys_job_log` VALUES (13595, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:509毫秒', '0', '', '2022-02-13 10:15:59'); INSERT INTO `sys_job_log` VALUES (13596, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:182毫秒', '0', '', '2022-02-13 10:15:59'); INSERT INTO `sys_job_log` VALUES (13597, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:188毫秒', '0', '', '2022-02-13 10:15:59'); INSERT INTO `sys_job_log` VALUES (13598, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:486毫秒', '0', '', '2022-02-13 10:15:59'); INSERT INTO `sys_job_log` VALUES (13599, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:171毫秒', '0', '', '2022-02-13 10:15:59'); INSERT INTO `sys_job_log` VALUES (13600, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:170毫秒', '0', '', '2022-02-13 10:16:00'); INSERT INTO `sys_job_log` VALUES (13601, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:171毫秒', '0', '', '2022-02-13 10:16:00'); INSERT INTO `sys_job_log` VALUES (13602, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:450毫秒', '0', '', '2022-02-13 10:16:00'); INSERT INTO `sys_job_log` VALUES (13603, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:153毫秒', '0', '', '2022-02-13 10:16:00'); INSERT INTO `sys_job_log` VALUES (13604, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:184毫秒', '0', '', '2022-02-13 10:16:00'); INSERT INTO `sys_job_log` VALUES (13605, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:175毫秒', '0', '', '2022-02-13 10:16:00'); INSERT INTO `sys_job_log` VALUES (13606, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:487毫秒', '0', '', '2022-02-13 10:16:00'); INSERT INTO `sys_job_log` VALUES (13607, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:174毫秒', '0', '', '2022-02-13 10:16:00'); INSERT INTO `sys_job_log` VALUES (13608, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:177毫秒', '0', '', '2022-02-13 10:16:01'); INSERT INTO `sys_job_log` VALUES (13609, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:486毫秒', '0', '', '2022-02-13 10:16:01'); INSERT INTO `sys_job_log` VALUES (13610, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:172毫秒', '0', '', '2022-02-13 10:16:01'); INSERT INTO `sys_job_log` VALUES (13611, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:169毫秒', '0', '', '2022-02-13 10:16:01'); INSERT INTO `sys_job_log` VALUES (13612, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:170毫秒', '0', '', '2022-02-13 10:16:01'); INSERT INTO `sys_job_log` VALUES (13613, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:467毫秒', '0', '', '2022-02-13 10:16:01'); INSERT INTO `sys_job_log` VALUES (13614, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:169毫秒', '0', '', '2022-02-13 10:16:01'); INSERT INTO `sys_job_log` VALUES (13615, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:165毫秒', '0', '', '2022-02-13 10:16:02'); INSERT INTO `sys_job_log` VALUES (13616, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:189毫秒', '0', '', '2022-02-13 10:16:02'); INSERT INTO `sys_job_log` VALUES (13617, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:479毫秒', '0', '', '2022-02-13 10:16:02'); INSERT INTO `sys_job_log` VALUES (13618, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:189毫秒', '0', '', '2022-02-13 10:16:02'); INSERT INTO `sys_job_log` VALUES (13619, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:170毫秒', '0', '', '2022-02-13 10:16:02'); INSERT INTO `sys_job_log` VALUES (13620, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:477毫秒', '0', '', '2022-02-13 10:16:02'); INSERT INTO `sys_job_log` VALUES (13621, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:181毫秒', '0', '', '2022-02-13 10:16:02'); INSERT INTO `sys_job_log` VALUES (13622, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:176毫秒', '0', '', '2022-02-13 10:16:02'); INSERT INTO `sys_job_log` VALUES (13623, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:509毫秒', '0', '', '2022-02-13 10:16:03'); INSERT INTO `sys_job_log` VALUES (13624, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:476毫秒', '0', '', '2022-02-13 10:16:03'); INSERT INTO `sys_job_log` VALUES (13625, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:490毫秒', '0', '', '2022-02-13 10:16:04'); INSERT INTO `sys_job_log` VALUES (13626, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:496毫秒', '0', '', '2022-02-13 10:16:04'); INSERT INTO `sys_job_log` VALUES (13627, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:526毫秒', '0', '', '2022-02-13 10:16:05'); INSERT INTO `sys_job_log` VALUES (13628, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:468毫秒', '0', '', '2022-02-13 10:16:05'); INSERT INTO `sys_job_log` VALUES (13629, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:469毫秒', '0', '', '2022-02-13 10:16:06'); INSERT INTO `sys_job_log` VALUES (13630, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:499毫秒', '0', '', '2022-02-13 10:16:06'); INSERT INTO `sys_job_log` VALUES (13631, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:502毫秒', '0', '', '2022-02-13 10:16:07'); INSERT INTO `sys_job_log` VALUES (13632, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:483毫秒', '0', '', '2022-02-13 10:16:07'); INSERT INTO `sys_job_log` VALUES (13633, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:479毫秒', '0', '', '2022-02-13 10:16:08'); INSERT INTO `sys_job_log` VALUES (13634, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:439毫秒', '0', '', '2022-02-13 10:16:08'); INSERT INTO `sys_job_log` VALUES (13635, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:448毫秒', '0', '', '2022-02-13 10:16:09'); INSERT INTO `sys_job_log` VALUES (13636, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:479毫秒', '0', '', '2022-02-13 10:16:09'); INSERT INTO `sys_job_log` VALUES (13637, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:478毫秒', '0', '', '2022-02-13 10:16:10'); INSERT INTO `sys_job_log` VALUES (13638, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:573毫秒', '0', '', '2022-02-13 10:16:10'); INSERT INTO `sys_job_log` VALUES (13639, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:536毫秒', '0', '', '2022-02-13 10:16:11'); INSERT INTO `sys_job_log` VALUES (13640, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-02-13 10:16:11'); INSERT INTO `sys_job_log` VALUES (13641, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-02-13 10:16:12'); INSERT INTO `sys_job_log` VALUES (13642, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:515毫秒', '0', '', '2022-02-13 10:16:12'); INSERT INTO `sys_job_log` VALUES (13643, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:504毫秒', '0', '', '2022-02-13 10:16:13'); INSERT INTO `sys_job_log` VALUES (13644, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:488毫秒', '0', '', '2022-02-13 10:16:13'); INSERT INTO `sys_job_log` VALUES (13645, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:489毫秒', '0', '', '2022-02-13 10:16:14'); INSERT INTO `sys_job_log` VALUES (13646, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:535毫秒', '0', '', '2022-02-13 10:16:14'); INSERT INTO `sys_job_log` VALUES (13647, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:261毫秒', '0', '', '2022-02-13 10:20:00'); INSERT INTO `sys_job_log` VALUES (13648, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:354毫秒', '0', '', '2022-02-13 10:20:00'); INSERT INTO `sys_job_log` VALUES (13649, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:615毫秒', '0', '', '2022-02-13 10:20:00'); INSERT INTO `sys_job_log` VALUES (13650, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:653毫秒', '0', '', '2022-02-13 10:30:00'); INSERT INTO `sys_job_log` VALUES (13651, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:719毫秒', '0', '', '2022-02-13 10:30:00'); INSERT INTO `sys_job_log` VALUES (13652, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:324毫秒', '0', '', '2022-02-13 10:40:00'); INSERT INTO `sys_job_log` VALUES (13653, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:472毫秒', '0', '', '2022-02-13 10:40:00'); INSERT INTO `sys_job_log` VALUES (13654, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:805毫秒', '0', '', '2022-02-13 10:40:00'); INSERT INTO `sys_job_log` VALUES (13655, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:308毫秒', '0', '', '2022-02-13 10:50:00'); INSERT INTO `sys_job_log` VALUES (13656, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:641毫秒', '0', '', '2022-02-13 10:50:00'); INSERT INTO `sys_job_log` VALUES (13657, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:359毫秒', '0', '', '2022-02-13 11:00:00'); INSERT INTO `sys_job_log` VALUES (13658, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:679毫秒', '0', '', '2022-02-13 11:00:00'); INSERT INTO `sys_job_log` VALUES (13659, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1189毫秒', '0', '', '2022-02-13 11:00:01'); INSERT INTO `sys_job_log` VALUES (13660, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:558毫秒', '0', '', '2022-02-13 11:10:00'); INSERT INTO `sys_job_log` VALUES (13661, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:844毫秒', '0', '', '2022-02-13 11:10:00'); INSERT INTO `sys_job_log` VALUES (13662, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:249毫秒', '0', '', '2022-02-13 11:20:00'); INSERT INTO `sys_job_log` VALUES (13663, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:334毫秒', '0', '', '2022-02-13 11:20:00'); INSERT INTO `sys_job_log` VALUES (13664, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:633毫秒', '0', '', '2022-02-13 11:20:00'); INSERT INTO `sys_job_log` VALUES (13665, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:560毫秒', '0', '', '2022-02-13 11:30:00'); INSERT INTO `sys_job_log` VALUES (13666, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:967毫秒', '0', '', '2022-02-13 11:30:01'); INSERT INTO `sys_job_log` VALUES (13667, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:559毫秒', '0', '', '2022-02-13 11:40:00'); INSERT INTO `sys_job_log` VALUES (13668, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:897毫秒', '0', '', '2022-02-13 11:40:00'); INSERT INTO `sys_job_log` VALUES (13669, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1112毫秒', '0', '', '2022-02-13 11:40:01'); INSERT INTO `sys_job_log` VALUES (13670, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:296毫秒', '0', '', '2022-02-13 11:50:00'); INSERT INTO `sys_job_log` VALUES (13671, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:597毫秒', '0', '', '2022-02-13 11:50:00'); INSERT INTO `sys_job_log` VALUES (13672, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:250毫秒', '0', '', '2022-02-13 12:00:00'); INSERT INTO `sys_job_log` VALUES (13673, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:360毫秒', '0', '', '2022-02-13 12:00:00'); INSERT INTO `sys_job_log` VALUES (13674, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-02-13 12:00:00'); INSERT INTO `sys_job_log` VALUES (13675, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:429毫秒', '0', '', '2022-02-13 12:10:00'); INSERT INTO `sys_job_log` VALUES (13676, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:783毫秒', '0', '', '2022-02-13 12:10:00'); INSERT INTO `sys_job_log` VALUES (13677, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:610毫秒', '0', '', '2022-02-13 12:20:00'); INSERT INTO `sys_job_log` VALUES (13678, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:908毫秒', '0', '', '2022-02-13 12:20:00'); INSERT INTO `sys_job_log` VALUES (13679, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1179毫秒', '0', '', '2022-02-13 12:20:01'); INSERT INTO `sys_job_log` VALUES (13680, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:323毫秒', '0', '', '2022-02-13 12:30:00'); INSERT INTO `sys_job_log` VALUES (13681, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-02-13 12:30:00'); INSERT INTO `sys_job_log` VALUES (13682, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:246毫秒', '0', '', '2022-02-13 12:40:00'); INSERT INTO `sys_job_log` VALUES (13683, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:305毫秒', '0', '', '2022-02-13 12:40:00'); INSERT INTO `sys_job_log` VALUES (13684, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:636毫秒', '0', '', '2022-02-13 12:40:00'); INSERT INTO `sys_job_log` VALUES (13685, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:287毫秒', '0', '', '2022-02-13 12:50:00'); INSERT INTO `sys_job_log` VALUES (13686, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-02-13 12:50:00'); INSERT INTO `sys_job_log` VALUES (13687, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:349毫秒', '0', '', '2022-02-13 13:00:00'); INSERT INTO `sys_job_log` VALUES (13688, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:663毫秒', '0', '', '2022-02-13 13:00:00'); INSERT INTO `sys_job_log` VALUES (13689, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1043毫秒', '0', '', '2022-02-13 13:00:01'); INSERT INTO `sys_job_log` VALUES (13690, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:313毫秒', '0', '', '2022-02-13 13:10:00'); INSERT INTO `sys_job_log` VALUES (13691, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:614毫秒', '0', '', '2022-02-13 13:10:00'); INSERT INTO `sys_job_log` VALUES (13692, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:288毫秒', '0', '', '2022-02-13 13:20:00'); INSERT INTO `sys_job_log` VALUES (13693, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:384毫秒', '0', '', '2022-02-13 13:20:00'); INSERT INTO `sys_job_log` VALUES (13694, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:626毫秒', '0', '', '2022-02-13 13:20:00'); INSERT INTO `sys_job_log` VALUES (13695, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:309毫秒', '0', '', '2022-02-13 13:30:00'); INSERT INTO `sys_job_log` VALUES (13696, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-02-13 13:30:00'); INSERT INTO `sys_job_log` VALUES (13697, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:342毫秒', '0', '', '2022-02-13 13:40:00'); INSERT INTO `sys_job_log` VALUES (13698, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-02-13 13:40:00'); INSERT INTO `sys_job_log` VALUES (13699, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1020毫秒', '0', '', '2022-02-13 13:40:01'); INSERT INTO `sys_job_log` VALUES (13700, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:400毫秒', '0', '', '2022-02-13 13:50:00'); INSERT INTO `sys_job_log` VALUES (13701, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-02-13 13:50:00'); INSERT INTO `sys_job_log` VALUES (13702, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:294毫秒', '0', '', '2022-02-13 14:00:00'); INSERT INTO `sys_job_log` VALUES (13703, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:376毫秒', '0', '', '2022-02-13 14:00:00'); INSERT INTO `sys_job_log` VALUES (13704, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:630毫秒', '0', '', '2022-02-13 14:00:00'); INSERT INTO `sys_job_log` VALUES (13705, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:401毫秒', '0', '', '2022-02-13 14:10:00'); INSERT INTO `sys_job_log` VALUES (13706, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-02-13 14:10:00'); INSERT INTO `sys_job_log` VALUES (13707, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:470毫秒', '0', '', '2022-02-13 14:20:00'); INSERT INTO `sys_job_log` VALUES (13708, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:634毫秒', '0', '', '2022-02-13 14:20:00'); INSERT INTO `sys_job_log` VALUES (13709, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:892毫秒', '0', '', '2022-02-13 14:20:00'); INSERT INTO `sys_job_log` VALUES (13710, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:349毫秒', '0', '', '2022-02-13 14:30:00'); INSERT INTO `sys_job_log` VALUES (13711, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:705毫秒', '0', '', '2022-02-13 14:30:00'); INSERT INTO `sys_job_log` VALUES (13712, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:314毫秒', '0', '', '2022-02-13 14:40:00'); INSERT INTO `sys_job_log` VALUES (13713, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:432毫秒', '0', '', '2022-02-13 14:40:00'); INSERT INTO `sys_job_log` VALUES (13714, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:730毫秒', '0', '', '2022-02-13 14:40:00'); INSERT INTO `sys_job_log` VALUES (13715, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:630毫秒', '0', '', '2022-02-13 14:50:00'); INSERT INTO `sys_job_log` VALUES (13716, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1029毫秒', '0', '', '2022-02-13 14:50:01'); INSERT INTO `sys_job_log` VALUES (13717, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:406毫秒', '0', '', '2022-02-13 15:00:00'); INSERT INTO `sys_job_log` VALUES (13718, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-02-13 15:00:00'); INSERT INTO `sys_job_log` VALUES (13719, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1099毫秒', '0', '', '2022-02-13 15:00:01'); INSERT INTO `sys_job_log` VALUES (13720, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:337毫秒', '0', '', '2022-02-13 15:10:00'); INSERT INTO `sys_job_log` VALUES (13721, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-02-13 15:10:00'); INSERT INTO `sys_job_log` VALUES (13722, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:294毫秒', '0', '', '2022-02-13 15:20:00'); INSERT INTO `sys_job_log` VALUES (13723, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:394毫秒', '0', '', '2022-02-13 15:20:00'); INSERT INTO `sys_job_log` VALUES (13724, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-02-13 15:20:00'); INSERT INTO `sys_job_log` VALUES (13725, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:313毫秒', '0', '', '2022-02-13 15:30:00'); INSERT INTO `sys_job_log` VALUES (13726, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-02-13 15:30:00'); INSERT INTO `sys_job_log` VALUES (13727, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:297毫秒', '0', '', '2022-02-13 15:40:00'); INSERT INTO `sys_job_log` VALUES (13728, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:400毫秒', '0', '', '2022-02-13 15:40:00'); INSERT INTO `sys_job_log` VALUES (13729, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:955毫秒', '0', '', '2022-02-13 15:40:00'); INSERT INTO `sys_job_log` VALUES (13730, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:350毫秒', '0', '', '2022-02-13 15:50:00'); INSERT INTO `sys_job_log` VALUES (13731, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:579毫秒', '0', '', '2022-02-13 15:50:00'); INSERT INTO `sys_job_log` VALUES (13732, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:310毫秒', '0', '', '2022-02-13 16:00:00'); INSERT INTO `sys_job_log` VALUES (13733, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:409毫秒', '0', '', '2022-02-13 16:00:00'); INSERT INTO `sys_job_log` VALUES (13734, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:658毫秒', '0', '', '2022-02-13 16:00:00'); INSERT INTO `sys_job_log` VALUES (13735, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:438毫秒', '0', '', '2022-02-13 16:10:00'); INSERT INTO `sys_job_log` VALUES (13736, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1065毫秒', '0', '', '2022-02-13 16:10:01'); INSERT INTO `sys_job_log` VALUES (13737, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:628毫秒', '0', '', '2022-02-13 16:20:00'); INSERT INTO `sys_job_log` VALUES (13738, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:884毫秒', '0', '', '2022-02-13 16:20:00'); INSERT INTO `sys_job_log` VALUES (13739, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1291毫秒', '0', '', '2022-02-13 16:20:01'); INSERT INTO `sys_job_log` VALUES (13740, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:380毫秒', '0', '', '2022-02-13 16:30:00'); INSERT INTO `sys_job_log` VALUES (13741, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:638毫秒', '0', '', '2022-02-13 16:30:00'); INSERT INTO `sys_job_log` VALUES (13742, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:383毫秒', '0', '', '2022-02-13 16:40:00'); INSERT INTO `sys_job_log` VALUES (13743, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:506毫秒', '0', '', '2022-02-13 16:40:00'); INSERT INTO `sys_job_log` VALUES (13744, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:954毫秒', '0', '', '2022-02-13 16:40:00'); INSERT INTO `sys_job_log` VALUES (13745, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:441毫秒', '0', '', '2022-02-13 16:50:00'); INSERT INTO `sys_job_log` VALUES (13746, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:759毫秒', '0', '', '2022-02-13 16:50:00'); INSERT INTO `sys_job_log` VALUES (13747, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:599毫秒', '0', '', '2022-02-13 17:00:00'); INSERT INTO `sys_job_log` VALUES (13748, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:848毫秒', '0', '', '2022-02-13 17:00:00'); INSERT INTO `sys_job_log` VALUES (13749, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1460毫秒', '0', '', '2022-02-13 17:00:01'); INSERT INTO `sys_job_log` VALUES (13750, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:336毫秒', '0', '', '2022-02-13 17:10:00'); INSERT INTO `sys_job_log` VALUES (13751, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:680毫秒', '0', '', '2022-02-13 17:10:00'); INSERT INTO `sys_job_log` VALUES (13752, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:319毫秒', '0', '', '2022-02-13 17:20:00'); INSERT INTO `sys_job_log` VALUES (13753, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:414毫秒', '0', '', '2022-02-13 17:20:00'); INSERT INTO `sys_job_log` VALUES (13754, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:894毫秒', '0', '', '2022-02-13 17:20:00'); INSERT INTO `sys_job_log` VALUES (13755, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:335毫秒', '0', '', '2022-02-13 17:30:00'); INSERT INTO `sys_job_log` VALUES (13756, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-02-13 17:30:00'); INSERT INTO `sys_job_log` VALUES (13757, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:394毫秒', '0', '', '2022-02-13 17:40:00'); INSERT INTO `sys_job_log` VALUES (13758, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:717毫秒', '0', '', '2022-02-13 17:40:00'); INSERT INTO `sys_job_log` VALUES (13759, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1097毫秒', '0', '', '2022-02-13 17:40:01'); INSERT INTO `sys_job_log` VALUES (13760, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:322毫秒', '0', '', '2022-02-13 17:50:00'); INSERT INTO `sys_job_log` VALUES (13761, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:636毫秒', '0', '', '2022-02-13 17:50:00'); INSERT INTO `sys_job_log` VALUES (13762, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:289毫秒', '0', '', '2022-02-13 18:00:00'); INSERT INTO `sys_job_log` VALUES (13763, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:394毫秒', '0', '', '2022-02-13 18:00:00'); INSERT INTO `sys_job_log` VALUES (13764, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:641毫秒', '0', '', '2022-02-13 18:00:00'); INSERT INTO `sys_job_log` VALUES (13765, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:349毫秒', '0', '', '2022-02-13 18:10:00'); INSERT INTO `sys_job_log` VALUES (13766, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:701毫秒', '0', '', '2022-02-13 18:10:00'); INSERT INTO `sys_job_log` VALUES (13767, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:595毫秒', '0', '', '2022-02-13 18:20:00'); INSERT INTO `sys_job_log` VALUES (13768, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1135毫秒', '0', '', '2022-02-13 18:20:01'); INSERT INTO `sys_job_log` VALUES (13769, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1199毫秒', '0', '', '2022-02-13 18:20:01'); INSERT INTO `sys_job_log` VALUES (13770, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:430毫秒', '0', '', '2022-02-13 18:30:00'); INSERT INTO `sys_job_log` VALUES (13771, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:716毫秒', '0', '', '2022-02-13 18:30:00'); INSERT INTO `sys_job_log` VALUES (13772, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:454毫秒', '0', '', '2022-02-13 18:40:00'); INSERT INTO `sys_job_log` VALUES (13773, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1277毫秒', '0', '', '2022-02-13 18:40:01'); INSERT INTO `sys_job_log` VALUES (13774, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2032毫秒', '0', '', '2022-02-13 18:40:02'); INSERT INTO `sys_job_log` VALUES (13775, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:494毫秒', '0', '', '2022-02-13 18:50:00'); INSERT INTO `sys_job_log` VALUES (13776, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:837毫秒', '0', '', '2022-02-13 18:50:00'); INSERT INTO `sys_job_log` VALUES (13777, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:402毫秒', '0', '', '2022-02-13 19:00:00'); INSERT INTO `sys_job_log` VALUES (13778, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:683毫秒', '0', '', '2022-02-13 19:00:00'); INSERT INTO `sys_job_log` VALUES (13779, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1266毫秒', '0', '', '2022-02-13 19:00:01'); INSERT INTO `sys_job_log` VALUES (13780, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3027毫秒', '0', '', '2022-02-13 19:10:03'); INSERT INTO `sys_job_log` VALUES (13781, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3011毫秒', '0', '', '2022-02-13 19:10:03'); INSERT INTO `sys_job_log` VALUES (13782, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:413毫秒', '0', '', '2022-02-13 19:20:00'); INSERT INTO `sys_job_log` VALUES (13783, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:496毫秒', '0', '', '2022-02-13 19:20:00'); INSERT INTO `sys_job_log` VALUES (13784, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:862毫秒', '0', '', '2022-02-13 19:20:00'); INSERT INTO `sys_job_log` VALUES (13785, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:375毫秒', '0', '', '2022-02-13 19:30:00'); INSERT INTO `sys_job_log` VALUES (13786, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:871毫秒', '0', '', '2022-02-13 19:30:00'); INSERT INTO `sys_job_log` VALUES (13787, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:316毫秒', '0', '', '2022-02-13 19:40:00'); INSERT INTO `sys_job_log` VALUES (13788, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:624毫秒', '0', '', '2022-02-13 19:40:00'); INSERT INTO `sys_job_log` VALUES (13789, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1203毫秒', '0', '', '2022-02-13 19:40:01'); INSERT INTO `sys_job_log` VALUES (13790, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1348毫秒', '0', '', '2022-02-13 19:50:01'); INSERT INTO `sys_job_log` VALUES (13791, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1688毫秒', '0', '', '2022-02-13 19:50:01'); INSERT INTO `sys_job_log` VALUES (13792, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1299毫秒', '0', '', '2022-02-13 20:00:01'); INSERT INTO `sys_job_log` VALUES (13793, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1300毫秒', '0', '', '2022-02-13 20:00:01'); INSERT INTO `sys_job_log` VALUES (13794, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3004毫秒', '0', '', '2022-02-13 20:00:03'); INSERT INTO `sys_job_log` VALUES (13795, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1406毫秒', '0', '', '2022-02-13 20:10:01'); INSERT INTO `sys_job_log` VALUES (13796, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1797毫秒', '0', '', '2022-02-13 20:10:01'); INSERT INTO `sys_job_log` VALUES (13797, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3013毫秒', '0', '', '2022-02-13 20:20:03'); INSERT INTO `sys_job_log` VALUES (13798, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3040毫秒', '0', '', '2022-02-13 20:20:03'); INSERT INTO `sys_job_log` VALUES (13799, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3521毫秒', '0', '', '2022-02-13 20:20:03'); INSERT INTO `sys_job_log` VALUES (13800, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3008毫秒', '0', '', '2022-02-13 20:20:06'); INSERT INTO `sys_job_log` VALUES (13801, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-13 20:20:06'); INSERT INTO `sys_job_log` VALUES (13802, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3006毫秒', '0', '', '2022-02-13 20:20:06'); INSERT INTO `sys_job_log` VALUES (13803, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1720毫秒', '0', '', '2022-02-13 20:30:01'); INSERT INTO `sys_job_log` VALUES (13804, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2364毫秒', '0', '', '2022-02-13 20:30:02'); INSERT INTO `sys_job_log` VALUES (13805, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:401毫秒', '0', '', '2022-02-13 20:40:00'); INSERT INTO `sys_job_log` VALUES (13806, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:491毫秒', '0', '', '2022-02-13 20:40:00'); INSERT INTO `sys_job_log` VALUES (13807, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1105毫秒', '0', '', '2022-02-13 20:40:01'); INSERT INTO `sys_job_log` VALUES (13808, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1367毫秒', '0', '', '2022-02-13 20:50:01'); INSERT INTO `sys_job_log` VALUES (13809, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1813毫秒', '0', '', '2022-02-13 20:50:01'); INSERT INTO `sys_job_log` VALUES (13810, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:445毫秒', '0', '', '2022-02-13 21:00:00'); INSERT INTO `sys_job_log` VALUES (13811, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:783毫秒', '0', '', '2022-02-13 21:00:00'); INSERT INTO `sys_job_log` VALUES (13812, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1858毫秒', '0', '', '2022-02-13 21:00:01'); INSERT INTO `sys_job_log` VALUES (13813, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:458毫秒', '0', '', '2022-02-13 21:10:00'); INSERT INTO `sys_job_log` VALUES (13814, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:886毫秒', '0', '', '2022-02-13 21:10:00'); INSERT INTO `sys_job_log` VALUES (13815, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:294毫秒', '0', '', '2022-02-13 21:20:00'); INSERT INTO `sys_job_log` VALUES (13816, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:376毫秒', '0', '', '2022-02-13 21:20:00'); INSERT INTO `sys_job_log` VALUES (13817, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:738毫秒', '0', '', '2022-02-13 21:20:00'); INSERT INTO `sys_job_log` VALUES (13818, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3004毫秒', '0', '', '2022-02-13 21:30:03'); INSERT INTO `sys_job_log` VALUES (13819, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-02-13 21:30:03'); INSERT INTO `sys_job_log` VALUES (13820, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:378毫秒', '0', '', '2022-02-13 21:40:00'); INSERT INTO `sys_job_log` VALUES (13821, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:811毫秒', '0', '', '2022-02-13 21:40:00'); INSERT INTO `sys_job_log` VALUES (13822, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1423毫秒', '0', '', '2022-02-13 21:40:01'); INSERT INTO `sys_job_log` VALUES (13823, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:517毫秒', '0', '', '2022-02-13 21:50:00'); INSERT INTO `sys_job_log` VALUES (13824, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1099毫秒', '0', '', '2022-02-13 21:50:01'); INSERT INTO `sys_job_log` VALUES (13825, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:340毫秒', '0', '', '2022-02-13 22:00:00'); INSERT INTO `sys_job_log` VALUES (13826, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:448毫秒', '0', '', '2022-02-13 22:00:00'); INSERT INTO `sys_job_log` VALUES (13827, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:947毫秒', '0', '', '2022-02-13 22:00:00'); INSERT INTO `sys_job_log` VALUES (13828, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:466毫秒', '0', '', '2022-02-14 08:32:22'); INSERT INTO `sys_job_log` VALUES (13829, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3025毫秒', '0', '', '2022-02-14 08:32:25'); INSERT INTO `sys_job_log` VALUES (13830, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3009毫秒', '0', '', '2022-02-14 08:32:25'); INSERT INTO `sys_job_log` VALUES (13831, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3011毫秒', '0', '', '2022-02-14 08:32:25'); INSERT INTO `sys_job_log` VALUES (13832, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3012毫秒', '0', '', '2022-02-14 08:32:28'); INSERT INTO `sys_job_log` VALUES (13833, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3013毫秒', '0', '', '2022-02-14 08:32:28'); INSERT INTO `sys_job_log` VALUES (13834, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3015毫秒', '0', '', '2022-02-14 08:32:28'); INSERT INTO `sys_job_log` VALUES (13835, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1227毫秒', '0', '', '2022-02-14 08:32:29'); INSERT INTO `sys_job_log` VALUES (13836, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3015毫秒', '0', '', '2022-02-14 08:32:31'); INSERT INTO `sys_job_log` VALUES (13837, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3016毫秒', '0', '', '2022-02-14 08:32:31'); INSERT INTO `sys_job_log` VALUES (13838, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:766毫秒', '0', '', '2022-02-14 08:32:32'); INSERT INTO `sys_job_log` VALUES (13839, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1030毫秒', '0', '', '2022-02-14 08:32:32'); INSERT INTO `sys_job_log` VALUES (13840, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3019毫秒', '0', '', '2022-02-14 08:32:32'); INSERT INTO `sys_job_log` VALUES (13841, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:528毫秒', '0', '', '2022-02-14 08:32:32'); INSERT INTO `sys_job_log` VALUES (13842, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:206毫秒', '0', '', '2022-02-14 08:32:32'); INSERT INTO `sys_job_log` VALUES (13843, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:286毫秒', '0', '', '2022-02-14 08:32:33'); INSERT INTO `sys_job_log` VALUES (13844, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:595毫秒', '0', '', '2022-02-14 08:32:33'); INSERT INTO `sys_job_log` VALUES (13845, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:193毫秒', '0', '', '2022-02-14 08:32:33'); INSERT INTO `sys_job_log` VALUES (13846, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:214毫秒', '0', '', '2022-02-14 08:32:33'); INSERT INTO `sys_job_log` VALUES (13847, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:188毫秒', '0', '', '2022-02-14 08:32:33'); INSERT INTO `sys_job_log` VALUES (13848, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:188毫秒', '0', '', '2022-02-14 08:32:34'); INSERT INTO `sys_job_log` VALUES (13849, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:665毫秒', '0', '', '2022-02-14 08:32:34'); INSERT INTO `sys_job_log` VALUES (13850, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:258毫秒', '0', '', '2022-02-14 08:32:34'); INSERT INTO `sys_job_log` VALUES (13851, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:216毫秒', '0', '', '2022-02-14 08:32:34'); INSERT INTO `sys_job_log` VALUES (13852, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:568毫秒', '0', '', '2022-02-14 08:32:34'); INSERT INTO `sys_job_log` VALUES (13853, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:215毫秒', '0', '', '2022-02-14 08:32:34'); INSERT INTO `sys_job_log` VALUES (13854, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:217毫秒', '0', '', '2022-02-14 08:32:35'); INSERT INTO `sys_job_log` VALUES (13855, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-02-14 08:32:35'); INSERT INTO `sys_job_log` VALUES (13856, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:296毫秒', '0', '', '2022-02-14 08:32:35'); INSERT INTO `sys_job_log` VALUES (13857, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-14 08:32:35'); INSERT INTO `sys_job_log` VALUES (13858, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:202毫秒', '0', '', '2022-02-14 08:32:35'); INSERT INTO `sys_job_log` VALUES (13859, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:154毫秒', '0', '', '2022-02-14 08:32:35'); INSERT INTO `sys_job_log` VALUES (13860, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:212毫秒', '0', '', '2022-02-14 08:32:35'); INSERT INTO `sys_job_log` VALUES (13861, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:141毫秒', '0', '', '2022-02-14 08:32:35'); INSERT INTO `sys_job_log` VALUES (13862, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:587毫秒', '0', '', '2022-02-14 08:32:35'); INSERT INTO `sys_job_log` VALUES (13863, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:207毫秒', '0', '', '2022-02-14 08:32:36'); INSERT INTO `sys_job_log` VALUES (13864, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:131毫秒', '0', '', '2022-02-14 08:32:36'); INSERT INTO `sys_job_log` VALUES (13865, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:126毫秒', '0', '', '2022-02-14 08:32:36'); INSERT INTO `sys_job_log` VALUES (13866, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:186毫秒', '0', '', '2022-02-14 08:32:36'); INSERT INTO `sys_job_log` VALUES (13867, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:164毫秒', '0', '', '2022-02-14 08:32:36'); INSERT INTO `sys_job_log` VALUES (13868, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:202毫秒', '0', '', '2022-02-14 08:32:36'); INSERT INTO `sys_job_log` VALUES (13869, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:568毫秒', '0', '', '2022-02-14 08:32:36'); INSERT INTO `sys_job_log` VALUES (13870, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:146毫秒', '0', '', '2022-02-14 08:32:36'); INSERT INTO `sys_job_log` VALUES (13871, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:198毫秒', '0', '', '2022-02-14 08:32:36'); INSERT INTO `sys_job_log` VALUES (13872, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:187毫秒', '0', '', '2022-02-14 08:32:36'); INSERT INTO `sys_job_log` VALUES (13873, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:183毫秒', '0', '', '2022-02-14 08:32:37'); INSERT INTO `sys_job_log` VALUES (13874, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:577毫秒', '0', '', '2022-02-14 08:32:37'); INSERT INTO `sys_job_log` VALUES (13875, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:170毫秒', '0', '', '2022-02-14 08:32:37'); INSERT INTO `sys_job_log` VALUES (13876, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:175毫秒', '0', '', '2022-02-14 08:32:37'); INSERT INTO `sys_job_log` VALUES (13877, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:180毫秒', '0', '', '2022-02-14 08:32:37'); INSERT INTO `sys_job_log` VALUES (13878, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-02-14 08:32:37'); INSERT INTO `sys_job_log` VALUES (13879, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1191毫秒', '0', '', '2022-02-14 08:32:37'); INSERT INTO `sys_job_log` VALUES (13880, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:205毫秒', '0', '', '2022-02-14 08:32:37'); INSERT INTO `sys_job_log` VALUES (13881, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:183毫秒', '0', '', '2022-02-14 08:32:38'); INSERT INTO `sys_job_log` VALUES (13882, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:555毫秒', '0', '', '2022-02-14 08:32:38'); INSERT INTO `sys_job_log` VALUES (13883, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:215毫秒', '0', '', '2022-02-14 08:32:38'); INSERT INTO `sys_job_log` VALUES (13884, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:230毫秒', '0', '', '2022-02-14 08:32:38'); INSERT INTO `sys_job_log` VALUES (13885, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:206毫秒', '0', '', '2022-02-14 08:32:38'); INSERT INTO `sys_job_log` VALUES (13886, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:611毫秒', '0', '', '2022-02-14 08:32:38'); INSERT INTO `sys_job_log` VALUES (13887, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:245毫秒', '0', '', '2022-02-14 08:32:39'); INSERT INTO `sys_job_log` VALUES (13888, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:187毫秒', '0', '', '2022-02-14 08:32:39'); INSERT INTO `sys_job_log` VALUES (13889, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:189毫秒', '0', '', '2022-02-14 08:32:39'); INSERT INTO `sys_job_log` VALUES (13890, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:635毫秒', '0', '', '2022-02-14 08:32:39'); INSERT INTO `sys_job_log` VALUES (13891, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:185毫秒', '0', '', '2022-02-14 08:32:39'); INSERT INTO `sys_job_log` VALUES (13892, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:231毫秒', '0', '', '2022-02-14 08:32:39'); INSERT INTO `sys_job_log` VALUES (13893, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:180毫秒', '0', '', '2022-02-14 08:32:40'); INSERT INTO `sys_job_log` VALUES (13894, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-02-14 08:32:40'); INSERT INTO `sys_job_log` VALUES (13895, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:192毫秒', '0', '', '2022-02-14 08:32:40'); INSERT INTO `sys_job_log` VALUES (13896, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:229毫秒', '0', '', '2022-02-14 08:32:40'); INSERT INTO `sys_job_log` VALUES (13897, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:577毫秒', '0', '', '2022-02-14 08:32:40'); INSERT INTO `sys_job_log` VALUES (13898, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3018毫秒', '0', '', '2022-02-14 08:32:40'); INSERT INTO `sys_job_log` VALUES (13899, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:266毫秒', '0', '', '2022-02-14 08:32:40'); INSERT INTO `sys_job_log` VALUES (13900, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:126毫秒', '0', '', '2022-02-14 08:32:40'); INSERT INTO `sys_job_log` VALUES (13901, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:223毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13902, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:153毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13903, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:195毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13904, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:194毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13905, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13906, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:125毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13907, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:215毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13908, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:139毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13909, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:182毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13910, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:546毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13911, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:187毫秒', '0', '', '2022-02-14 08:32:41'); INSERT INTO `sys_job_log` VALUES (13912, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:203毫秒', '0', '', '2022-02-14 08:32:42'); INSERT INTO `sys_job_log` VALUES (13913, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:211毫秒', '0', '', '2022-02-14 08:32:42'); INSERT INTO `sys_job_log` VALUES (13914, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:531毫秒', '0', '', '2022-02-14 08:32:42'); INSERT INTO `sys_job_log` VALUES (13915, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:191毫秒', '0', '', '2022-02-14 08:32:42'); INSERT INTO `sys_job_log` VALUES (13916, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1129毫秒', '0', '', '2022-02-14 08:32:42'); INSERT INTO `sys_job_log` VALUES (13917, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:238毫秒', '0', '', '2022-02-14 08:32:42'); INSERT INTO `sys_job_log` VALUES (13918, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:170毫秒', '0', '', '2022-02-14 08:32:43'); INSERT INTO `sys_job_log` VALUES (13919, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-02-14 08:32:43'); INSERT INTO `sys_job_log` VALUES (13920, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:189毫秒', '0', '', '2022-02-14 08:32:43'); INSERT INTO `sys_job_log` VALUES (13921, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:170毫秒', '0', '', '2022-02-14 08:32:43'); INSERT INTO `sys_job_log` VALUES (13922, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:528毫秒', '0', '', '2022-02-14 08:32:43'); INSERT INTO `sys_job_log` VALUES (13923, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:196毫秒', '0', '', '2022-02-14 08:32:43'); INSERT INTO `sys_job_log` VALUES (13924, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:215毫秒', '0', '', '2022-02-14 08:32:43'); INSERT INTO `sys_job_log` VALUES (13925, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1208毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13926, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:223毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13927, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:111毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13928, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:178毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13929, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:689毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13930, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:159毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13931, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:140毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13932, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:195毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13933, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:144毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13934, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:200毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13935, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:537毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13936, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:198毫秒', '0', '', '2022-02-14 08:32:44'); INSERT INTO `sys_job_log` VALUES (13937, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:187毫秒', '0', '', '2022-02-14 08:32:45'); INSERT INTO `sys_job_log` VALUES (13938, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:242毫秒', '0', '', '2022-02-14 08:32:45'); INSERT INTO `sys_job_log` VALUES (13939, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:231毫秒', '0', '', '2022-02-14 08:32:45'); INSERT INTO `sys_job_log` VALUES (13940, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:771毫秒', '0', '', '2022-02-14 08:32:45'); INSERT INTO `sys_job_log` VALUES (13941, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:209毫秒', '0', '', '2022-02-14 08:32:45'); INSERT INTO `sys_job_log` VALUES (13942, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:732毫秒', '0', '', '2022-02-14 08:32:46'); INSERT INTO `sys_job_log` VALUES (13943, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-02-14 08:32:47'); INSERT INTO `sys_job_log` VALUES (13944, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:495毫秒', '0', '', '2022-02-14 08:32:47'); INSERT INTO `sys_job_log` VALUES (13945, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3015毫秒', '0', '', '2022-02-14 08:32:47'); INSERT INTO `sys_job_log` VALUES (13946, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:153毫秒', '0', '', '2022-02-14 08:32:47'); INSERT INTO `sys_job_log` VALUES (13947, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:136毫秒', '0', '', '2022-02-14 08:32:48'); INSERT INTO `sys_job_log` VALUES (13948, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:516毫秒', '0', '', '2022-02-14 08:32:48'); INSERT INTO `sys_job_log` VALUES (13949, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:121毫秒', '0', '', '2022-02-14 08:32:48'); INSERT INTO `sys_job_log` VALUES (13950, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:177毫秒', '0', '', '2022-02-14 08:32:48'); INSERT INTO `sys_job_log` VALUES (13951, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-02-14 08:32:48'); INSERT INTO `sys_job_log` VALUES (13952, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:539毫秒', '0', '', '2022-02-14 08:32:49'); INSERT INTO `sys_job_log` VALUES (13953, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:559毫秒', '0', '', '2022-02-14 08:32:49'); INSERT INTO `sys_job_log` VALUES (13954, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:591毫秒', '0', '', '2022-02-14 08:32:50'); INSERT INTO `sys_job_log` VALUES (13955, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-02-14 08:32:50'); INSERT INTO `sys_job_log` VALUES (13956, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3017毫秒', '0', '', '2022-02-14 08:32:51'); INSERT INTO `sys_job_log` VALUES (13957, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:542毫秒', '0', '', '2022-02-14 08:32:51'); INSERT INTO `sys_job_log` VALUES (13958, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:135毫秒', '0', '', '2022-02-14 08:32:51'); INSERT INTO `sys_job_log` VALUES (13959, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:629毫秒', '0', '', '2022-02-14 08:32:52'); INSERT INTO `sys_job_log` VALUES (13960, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:5376毫秒', '0', '', '2022-02-14 08:32:57'); INSERT INTO `sys_job_log` VALUES (13961, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-02-14 08:32:58'); INSERT INTO `sys_job_log` VALUES (13962, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:657毫秒', '0', '', '2022-02-14 08:32:58'); INSERT INTO `sys_job_log` VALUES (13963, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-02-14 08:32:59'); INSERT INTO `sys_job_log` VALUES (13964, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-02-14 08:33:00'); INSERT INTO `sys_job_log` VALUES (13965, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-02-14 08:33:00'); INSERT INTO `sys_job_log` VALUES (13966, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-02-14 08:33:01'); INSERT INTO `sys_job_log` VALUES (13967, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-02-14 08:33:01'); INSERT INTO `sys_job_log` VALUES (13968, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-02-14 08:33:02'); INSERT INTO `sys_job_log` VALUES (13969, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:612毫秒', '0', '', '2022-02-14 08:33:03'); INSERT INTO `sys_job_log` VALUES (13970, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:654毫秒', '0', '', '2022-02-14 08:33:03'); INSERT INTO `sys_job_log` VALUES (13971, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:876毫秒', '0', '', '2022-02-14 08:33:04'); INSERT INTO `sys_job_log` VALUES (13972, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-02-14 08:33:05'); INSERT INTO `sys_job_log` VALUES (13973, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:770毫秒', '0', '', '2022-02-14 08:33:06'); INSERT INTO `sys_job_log` VALUES (13974, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-02-14 08:33:06'); INSERT INTO `sys_job_log` VALUES (13975, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:692毫秒', '0', '', '2022-02-14 08:33:07'); INSERT INTO `sys_job_log` VALUES (13976, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:860毫秒', '0', '', '2022-02-14 08:33:08'); INSERT INTO `sys_job_log` VALUES (13977, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-02-14 08:33:09'); INSERT INTO `sys_job_log` VALUES (13978, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:495毫秒', '0', '', '2022-02-14 08:33:09'); INSERT INTO `sys_job_log` VALUES (13979, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:491毫秒', '0', '', '2022-02-14 08:33:10'); INSERT INTO `sys_job_log` VALUES (13980, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:491毫秒', '0', '', '2022-02-14 08:33:10'); INSERT INTO `sys_job_log` VALUES (13981, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:475毫秒', '0', '', '2022-02-14 08:33:11'); INSERT INTO `sys_job_log` VALUES (13982, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:497毫秒', '0', '', '2022-02-14 08:33:11'); INSERT INTO `sys_job_log` VALUES (13983, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:490毫秒', '0', '', '2022-02-14 08:33:12'); INSERT INTO `sys_job_log` VALUES (13984, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:484毫秒', '0', '', '2022-02-14 08:33:12'); INSERT INTO `sys_job_log` VALUES (13985, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:485毫秒', '0', '', '2022-02-14 08:33:13'); INSERT INTO `sys_job_log` VALUES (13986, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:254毫秒', '0', '', '2022-02-14 08:40:00'); INSERT INTO `sys_job_log` VALUES (13987, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:539毫秒', '0', '', '2022-02-14 08:40:00'); INSERT INTO `sys_job_log` VALUES (13988, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1384毫秒', '0', '', '2022-02-14 08:40:01'); INSERT INTO `sys_job_log` VALUES (13989, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:642毫秒', '0', '', '2022-02-14 08:50:00'); INSERT INTO `sys_job_log` VALUES (13990, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1317毫秒', '0', '', '2022-02-14 08:50:01'); INSERT INTO `sys_job_log` VALUES (13991, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:234毫秒', '0', '', '2022-02-14 09:00:00'); INSERT INTO `sys_job_log` VALUES (13992, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:283毫秒', '0', '', '2022-02-14 09:00:00'); INSERT INTO `sys_job_log` VALUES (13993, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:807毫秒', '0', '', '2022-02-14 09:00:00'); INSERT INTO `sys_job_log` VALUES (13994, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:257毫秒', '0', '', '2022-02-14 09:10:00'); INSERT INTO `sys_job_log` VALUES (13995, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-02-14 09:10:00'); INSERT INTO `sys_job_log` VALUES (13996, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:381毫秒', '0', '', '2022-02-14 09:20:00'); INSERT INTO `sys_job_log` VALUES (13997, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-02-14 09:20:00'); INSERT INTO `sys_job_log` VALUES (13998, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:786毫秒', '0', '', '2022-02-14 09:20:00'); INSERT INTO `sys_job_log` VALUES (13999, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:308毫秒', '0', '', '2022-02-14 09:30:00'); INSERT INTO `sys_job_log` VALUES (14000, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-02-14 09:30:00'); INSERT INTO `sys_job_log` VALUES (14001, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:188毫秒', '0', '', '2022-02-14 09:40:00'); INSERT INTO `sys_job_log` VALUES (14002, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:287毫秒', '0', '', '2022-02-14 09:40:00'); INSERT INTO `sys_job_log` VALUES (14003, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1006毫秒', '0', '', '2022-02-14 09:40:01'); INSERT INTO `sys_job_log` VALUES (14004, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:250毫秒', '0', '', '2022-02-14 09:50:00'); INSERT INTO `sys_job_log` VALUES (14005, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-02-14 09:50:00'); INSERT INTO `sys_job_log` VALUES (14006, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-02-14 10:00:00'); INSERT INTO `sys_job_log` VALUES (14007, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1311毫秒', '0', '', '2022-02-14 10:00:01'); INSERT INTO `sys_job_log` VALUES (14008, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1602毫秒', '0', '', '2022-02-14 10:00:01'); INSERT INTO `sys_job_log` VALUES (14009, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:309毫秒', '0', '', '2022-02-14 10:10:00'); INSERT INTO `sys_job_log` VALUES (14010, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:954毫秒', '0', '', '2022-02-14 10:10:00'); INSERT INTO `sys_job_log` VALUES (14011, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:226毫秒', '0', '', '2022-02-14 10:20:00'); INSERT INTO `sys_job_log` VALUES (14012, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:281毫秒', '0', '', '2022-02-14 10:20:00'); INSERT INTO `sys_job_log` VALUES (14013, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-02-14 10:20:00'); INSERT INTO `sys_job_log` VALUES (14014, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:657毫秒', '0', '', '2022-02-14 10:30:00'); INSERT INTO `sys_job_log` VALUES (14015, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1210毫秒', '0', '', '2022-02-14 10:30:01'); INSERT INTO `sys_job_log` VALUES (14016, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:322毫秒', '0', '', '2022-02-14 10:40:00'); INSERT INTO `sys_job_log` VALUES (14017, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:977毫秒', '0', '', '2022-02-14 10:40:01'); INSERT INTO `sys_job_log` VALUES (14018, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:970毫秒', '0', '', '2022-02-14 10:40:01'); INSERT INTO `sys_job_log` VALUES (14019, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:285毫秒', '0', '', '2022-02-14 10:50:00'); INSERT INTO `sys_job_log` VALUES (14020, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:822毫秒', '0', '', '2022-02-14 10:50:00'); INSERT INTO `sys_job_log` VALUES (14021, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:198毫秒', '0', '', '2022-02-14 11:00:00'); INSERT INTO `sys_job_log` VALUES (14022, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:269毫秒', '0', '', '2022-02-14 11:00:00'); INSERT INTO `sys_job_log` VALUES (14023, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:682毫秒', '0', '', '2022-02-14 11:00:00'); INSERT INTO `sys_job_log` VALUES (14024, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:237毫秒', '0', '', '2022-02-14 11:10:00'); INSERT INTO `sys_job_log` VALUES (14025, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:662毫秒', '0', '', '2022-02-14 11:10:00'); INSERT INTO `sys_job_log` VALUES (14026, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:248毫秒', '0', '', '2022-02-14 11:20:00'); INSERT INTO `sys_job_log` VALUES (14027, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1895毫秒', '0', '', '2022-02-14 11:20:01'); INSERT INTO `sys_job_log` VALUES (14028, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2264毫秒', '0', '', '2022-02-14 11:20:02'); INSERT INTO `sys_job_log` VALUES (14029, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:351毫秒', '0', '', '2022-02-14 11:30:00'); INSERT INTO `sys_job_log` VALUES (14030, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-02-14 11:30:00'); INSERT INTO `sys_job_log` VALUES (14031, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:196毫秒', '0', '', '2022-02-14 11:40:00'); INSERT INTO `sys_job_log` VALUES (14032, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:274毫秒', '0', '', '2022-02-14 11:40:00'); INSERT INTO `sys_job_log` VALUES (14033, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:643毫秒', '0', '', '2022-02-14 11:40:00'); INSERT INTO `sys_job_log` VALUES (14034, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:241毫秒', '0', '', '2022-02-14 11:50:00'); INSERT INTO `sys_job_log` VALUES (14035, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-02-14 11:50:00'); INSERT INTO `sys_job_log` VALUES (14036, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:206毫秒', '0', '', '2022-02-14 12:00:00'); INSERT INTO `sys_job_log` VALUES (14037, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:295毫秒', '0', '', '2022-02-14 12:00:00'); INSERT INTO `sys_job_log` VALUES (14038, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:940毫秒', '0', '', '2022-02-14 12:00:00'); INSERT INTO `sys_job_log` VALUES (14039, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:763毫秒', '0', '', '2022-02-14 12:10:00'); INSERT INTO `sys_job_log` VALUES (14040, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2018毫秒', '0', '', '2022-02-14 12:10:02'); INSERT INTO `sys_job_log` VALUES (14041, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:420毫秒', '0', '', '2022-02-14 12:20:00'); INSERT INTO `sys_job_log` VALUES (14042, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:412毫秒', '0', '', '2022-02-14 12:20:00'); INSERT INTO `sys_job_log` VALUES (14043, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:778毫秒', '0', '', '2022-02-14 12:20:00'); INSERT INTO `sys_job_log` VALUES (14044, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:961毫秒', '0', '', '2022-02-14 12:30:00'); INSERT INTO `sys_job_log` VALUES (14045, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1954毫秒', '0', '', '2022-02-14 12:30:01'); INSERT INTO `sys_job_log` VALUES (14046, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:405毫秒', '0', '', '2022-02-14 12:40:00'); INSERT INTO `sys_job_log` VALUES (14047, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:890毫秒', '0', '', '2022-02-14 12:40:00'); INSERT INTO `sys_job_log` VALUES (14048, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:974毫秒', '0', '', '2022-02-14 12:40:01'); INSERT INTO `sys_job_log` VALUES (14049, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:379毫秒', '0', '', '2022-02-14 12:50:00'); INSERT INTO `sys_job_log` VALUES (14050, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:802毫秒', '0', '', '2022-02-14 12:50:00'); INSERT INTO `sys_job_log` VALUES (14051, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:252毫秒', '0', '', '2022-02-14 13:00:00'); INSERT INTO `sys_job_log` VALUES (14052, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:758毫秒', '0', '', '2022-02-14 13:00:00'); INSERT INTO `sys_job_log` VALUES (14053, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1095毫秒', '0', '', '2022-02-14 13:00:01'); INSERT INTO `sys_job_log` VALUES (14054, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:705毫秒', '0', '', '2022-02-14 13:10:00'); INSERT INTO `sys_job_log` VALUES (14055, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1218毫秒', '0', '', '2022-02-14 13:10:01'); INSERT INTO `sys_job_log` VALUES (14056, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1766毫秒', '0', '', '2022-02-14 13:20:01'); INSERT INTO `sys_job_log` VALUES (14057, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2880毫秒', '0', '', '2022-02-14 13:20:02'); INSERT INTO `sys_job_log` VALUES (14058, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3009毫秒', '0', '', '2022-02-14 13:20:03'); INSERT INTO `sys_job_log` VALUES (14059, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1119毫秒', '0', '', '2022-02-14 13:30:01'); INSERT INTO `sys_job_log` VALUES (14060, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2655毫秒', '0', '', '2022-02-14 13:30:02'); INSERT INTO `sys_job_log` VALUES (14061, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:978毫秒', '0', '', '2022-02-14 13:40:00'); INSERT INTO `sys_job_log` VALUES (14062, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1303毫秒', '0', '', '2022-02-14 13:40:01'); INSERT INTO `sys_job_log` VALUES (14063, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2742毫秒', '0', '', '2022-02-14 13:40:02'); INSERT INTO `sys_job_log` VALUES (14064, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:716毫秒', '0', '', '2022-02-14 13:50:00'); INSERT INTO `sys_job_log` VALUES (14065, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2106毫秒', '0', '', '2022-02-14 13:50:02'); INSERT INTO `sys_job_log` VALUES (14066, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:801毫秒', '0', '', '2022-02-14 14:00:00'); INSERT INTO `sys_job_log` VALUES (14067, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2237毫秒', '0', '', '2022-02-14 14:00:02'); INSERT INTO `sys_job_log` VALUES (14068, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3013毫秒', '0', '', '2022-02-14 14:00:03'); INSERT INTO `sys_job_log` VALUES (14069, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:663毫秒', '0', '', '2022-02-14 14:10:00'); INSERT INTO `sys_job_log` VALUES (14070, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1815毫秒', '0', '', '2022-02-14 14:10:01'); INSERT INTO `sys_job_log` VALUES (14071, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2353毫秒', '0', '', '2022-02-14 14:20:02'); INSERT INTO `sys_job_log` VALUES (14072, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3006毫秒', '0', '', '2022-02-14 14:20:03'); INSERT INTO `sys_job_log` VALUES (14073, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-14 14:20:03'); INSERT INTO `sys_job_log` VALUES (14074, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:633毫秒', '0', '', '2022-02-14 14:30:00'); INSERT INTO `sys_job_log` VALUES (14075, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2001毫秒', '0', '', '2022-02-14 14:30:02'); INSERT INTO `sys_job_log` VALUES (14076, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1797毫秒', '0', '', '2022-02-14 14:40:01'); INSERT INTO `sys_job_log` VALUES (14077, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-14 14:40:03'); INSERT INTO `sys_job_log` VALUES (14078, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-02-14 14:40:03'); INSERT INTO `sys_job_log` VALUES (14079, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:303毫秒', '0', '', '2022-02-14 14:50:00'); INSERT INTO `sys_job_log` VALUES (14080, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-02-14 14:50:00'); INSERT INTO `sys_job_log` VALUES (14081, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:181毫秒', '0', '', '2022-02-14 15:00:00'); INSERT INTO `sys_job_log` VALUES (14082, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:272毫秒', '0', '', '2022-02-14 15:00:00'); INSERT INTO `sys_job_log` VALUES (14083, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:666毫秒', '0', '', '2022-02-14 15:00:00'); INSERT INTO `sys_job_log` VALUES (14084, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:254毫秒', '0', '', '2022-02-14 15:10:00'); INSERT INTO `sys_job_log` VALUES (14085, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:879毫秒', '0', '', '2022-02-14 15:10:00'); INSERT INTO `sys_job_log` VALUES (14086, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:303毫秒', '0', '', '2022-02-14 15:20:00'); INSERT INTO `sys_job_log` VALUES (14087, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:534毫秒', '0', '', '2022-02-14 15:20:00'); INSERT INTO `sys_job_log` VALUES (14088, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:638毫秒', '0', '', '2022-02-14 15:20:00'); INSERT INTO `sys_job_log` VALUES (14089, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-02-14 15:30:00'); INSERT INTO `sys_job_log` VALUES (14090, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1214毫秒', '0', '', '2022-02-14 15:30:01'); INSERT INTO `sys_job_log` VALUES (14091, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:287毫秒', '0', '', '2022-02-14 15:40:00'); INSERT INTO `sys_job_log` VALUES (14092, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:664毫秒', '0', '', '2022-02-14 15:40:00'); INSERT INTO `sys_job_log` VALUES (14093, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1168毫秒', '0', '', '2022-02-14 15:40:01'); INSERT INTO `sys_job_log` VALUES (14094, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:768毫秒', '0', '', '2022-02-14 15:50:00'); INSERT INTO `sys_job_log` VALUES (14095, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1229毫秒', '0', '', '2022-02-14 15:50:01'); INSERT INTO `sys_job_log` VALUES (14096, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:345毫秒', '0', '', '2022-02-14 16:00:00'); INSERT INTO `sys_job_log` VALUES (14097, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:429毫秒', '0', '', '2022-02-14 16:00:00'); INSERT INTO `sys_job_log` VALUES (14098, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:680毫秒', '0', '', '2022-02-14 16:00:00'); INSERT INTO `sys_job_log` VALUES (14099, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:250毫秒', '0', '', '2022-02-14 16:10:00'); INSERT INTO `sys_job_log` VALUES (14100, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:736毫秒', '0', '', '2022-02-14 16:10:00'); INSERT INTO `sys_job_log` VALUES (14101, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:179毫秒', '0', '', '2022-02-14 16:20:00'); INSERT INTO `sys_job_log` VALUES (14102, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:267毫秒', '0', '', '2022-02-14 16:20:00'); INSERT INTO `sys_job_log` VALUES (14103, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-02-14 16:20:00'); INSERT INTO `sys_job_log` VALUES (14104, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:271毫秒', '0', '', '2022-02-14 16:30:00'); INSERT INTO `sys_job_log` VALUES (14105, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-02-14 16:30:00'); INSERT INTO `sys_job_log` VALUES (14106, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:358毫秒', '0', '', '2022-02-14 16:40:00'); INSERT INTO `sys_job_log` VALUES (14107, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:391毫秒', '0', '', '2022-02-14 16:40:00'); INSERT INTO `sys_job_log` VALUES (14108, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:861毫秒', '0', '', '2022-02-14 16:40:00'); INSERT INTO `sys_job_log` VALUES (14109, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:247毫秒', '0', '', '2022-02-14 16:50:00'); INSERT INTO `sys_job_log` VALUES (14110, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:574毫秒', '0', '', '2022-02-14 16:50:00'); INSERT INTO `sys_job_log` VALUES (14111, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:174毫秒', '0', '', '2022-02-14 17:00:00'); INSERT INTO `sys_job_log` VALUES (14112, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:264毫秒', '0', '', '2022-02-14 17:00:00'); INSERT INTO `sys_job_log` VALUES (14113, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:677毫秒', '0', '', '2022-02-14 17:00:00'); INSERT INTO `sys_job_log` VALUES (14114, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:199毫秒', '0', '', '2022-02-14 17:10:00'); INSERT INTO `sys_job_log` VALUES (14115, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:915毫秒', '0', '', '2022-02-14 17:10:00'); INSERT INTO `sys_job_log` VALUES (14116, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1812毫秒', '0', '', '2022-02-14 17:20:01'); INSERT INTO `sys_job_log` VALUES (14117, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2062毫秒', '0', '', '2022-02-14 17:20:02'); INSERT INTO `sys_job_log` VALUES (14118, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-14 17:20:03'); INSERT INTO `sys_job_log` VALUES (14119, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1964毫秒', '0', '', '2022-02-14 17:30:01'); INSERT INTO `sys_job_log` VALUES (14120, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2478毫秒', '0', '', '2022-02-14 17:30:02'); INSERT INTO `sys_job_log` VALUES (14121, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2023毫秒', '0', '', '2022-02-14 17:50:15'); INSERT INTO `sys_job_log` VALUES (14122, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:242毫秒', '0', '', '2022-02-14 17:50:16'); INSERT INTO `sys_job_log` VALUES (14123, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2848毫秒', '0', '', '2022-02-14 17:50:16'); INSERT INTO `sys_job_log` VALUES (14124, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-14 17:50:16'); INSERT INTO `sys_job_log` VALUES (14125, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:872毫秒', '0', '', '2022-02-14 17:50:17'); INSERT INTO `sys_job_log` VALUES (14126, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1253毫秒', '0', '', '2022-02-14 18:00:01'); INSERT INTO `sys_job_log` VALUES (14127, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1515毫秒', '0', '', '2022-02-14 18:00:01'); INSERT INTO `sys_job_log` VALUES (14128, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1887毫秒', '0', '', '2022-02-14 18:00:01'); INSERT INTO `sys_job_log` VALUES (14129, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:225毫秒', '0', '', '2022-02-14 18:10:00'); INSERT INTO `sys_job_log` VALUES (14130, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1164毫秒', '0', '', '2022-02-14 18:10:01'); INSERT INTO `sys_job_log` VALUES (14131, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:331毫秒', '0', '', '2022-02-14 18:20:00'); INSERT INTO `sys_job_log` VALUES (14132, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:474毫秒', '0', '', '2022-02-14 18:20:00'); INSERT INTO `sys_job_log` VALUES (14133, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:785毫秒', '0', '', '2022-02-14 18:20:00'); INSERT INTO `sys_job_log` VALUES (14134, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:522毫秒', '0', '', '2022-02-14 18:30:00'); INSERT INTO `sys_job_log` VALUES (14135, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:923毫秒', '0', '', '2022-02-14 18:30:00'); INSERT INTO `sys_job_log` VALUES (14136, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2026毫秒', '0', '', '2022-02-14 18:40:02'); INSERT INTO `sys_job_log` VALUES (14137, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2382毫秒', '0', '', '2022-02-14 18:40:02'); INSERT INTO `sys_job_log` VALUES (14138, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3012毫秒', '0', '', '2022-02-14 18:40:03'); INSERT INTO `sys_job_log` VALUES (14139, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:366毫秒', '0', '', '2022-02-14 18:50:00'); INSERT INTO `sys_job_log` VALUES (14140, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:936毫秒', '0', '', '2022-02-14 18:50:00'); INSERT INTO `sys_job_log` VALUES (14141, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:276毫秒', '0', '', '2022-02-14 19:00:00'); INSERT INTO `sys_job_log` VALUES (14142, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:372毫秒', '0', '', '2022-02-14 19:00:00'); INSERT INTO `sys_job_log` VALUES (14143, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:699毫秒', '0', '', '2022-02-14 19:00:00'); INSERT INTO `sys_job_log` VALUES (14144, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:910毫秒', '0', '', '2022-02-14 19:10:00'); INSERT INTO `sys_job_log` VALUES (14145, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1370毫秒', '0', '', '2022-02-14 19:10:01'); INSERT INTO `sys_job_log` VALUES (14146, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1356毫秒', '0', '', '2022-02-14 19:20:01'); INSERT INTO `sys_job_log` VALUES (14147, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1904毫秒', '0', '', '2022-02-14 19:20:01'); INSERT INTO `sys_job_log` VALUES (14148, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-14 19:20:03'); INSERT INTO `sys_job_log` VALUES (14149, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:397毫秒', '0', '', '2022-02-14 19:30:00'); INSERT INTO `sys_job_log` VALUES (14150, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:754毫秒', '0', '', '2022-02-14 19:30:00'); INSERT INTO `sys_job_log` VALUES (14151, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:326毫秒', '0', '', '2022-02-14 19:40:00'); INSERT INTO `sys_job_log` VALUES (14152, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:739毫秒', '0', '', '2022-02-14 19:40:00'); INSERT INTO `sys_job_log` VALUES (14153, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:960毫秒', '0', '', '2022-02-14 19:40:00'); INSERT INTO `sys_job_log` VALUES (14154, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:308毫秒', '0', '', '2022-02-14 19:50:00'); INSERT INTO `sys_job_log` VALUES (14155, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:711毫秒', '0', '', '2022-02-14 19:50:00'); INSERT INTO `sys_job_log` VALUES (14156, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2355毫秒', '0', '', '2022-02-14 20:00:02'); INSERT INTO `sys_job_log` VALUES (14157, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2704毫秒', '0', '', '2022-02-14 20:00:02'); INSERT INTO `sys_job_log` VALUES (14158, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3002毫秒', '0', '', '2022-02-14 20:00:03'); INSERT INTO `sys_job_log` VALUES (14159, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:245毫秒', '0', '', '2022-02-14 20:10:00'); INSERT INTO `sys_job_log` VALUES (14160, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:727毫秒', '0', '', '2022-02-14 20:10:00'); INSERT INTO `sys_job_log` VALUES (14161, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:313毫秒', '0', '', '2022-02-14 20:20:00'); INSERT INTO `sys_job_log` VALUES (14162, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:777毫秒', '0', '', '2022-02-14 20:20:00'); INSERT INTO `sys_job_log` VALUES (14163, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1047毫秒', '0', '', '2022-02-14 20:20:01'); INSERT INTO `sys_job_log` VALUES (14164, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:420毫秒', '0', '', '2022-02-14 20:30:00'); INSERT INTO `sys_job_log` VALUES (14165, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:852毫秒', '0', '', '2022-02-14 20:30:00'); INSERT INTO `sys_job_log` VALUES (14166, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:280毫秒', '0', '', '2022-02-14 20:40:00'); INSERT INTO `sys_job_log` VALUES (14167, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:536毫秒', '0', '', '2022-02-14 20:40:00'); INSERT INTO `sys_job_log` VALUES (14168, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:863毫秒', '0', '', '2022-02-14 20:40:00'); INSERT INTO `sys_job_log` VALUES (14169, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:681毫秒', '0', '', '2022-02-14 20:50:00'); INSERT INTO `sys_job_log` VALUES (14170, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1018毫秒', '0', '', '2022-02-14 20:50:01'); INSERT INTO `sys_job_log` VALUES (14171, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:309毫秒', '0', '', '2022-02-14 21:00:00'); INSERT INTO `sys_job_log` VALUES (14172, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:421毫秒', '0', '', '2022-02-14 21:00:00'); INSERT INTO `sys_job_log` VALUES (14173, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:683毫秒', '0', '', '2022-02-14 21:00:00'); INSERT INTO `sys_job_log` VALUES (14174, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:646毫秒', '0', '', '2022-02-14 21:10:00'); INSERT INTO `sys_job_log` VALUES (14175, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:680毫秒', '0', '', '2022-02-14 21:10:00'); INSERT INTO `sys_job_log` VALUES (14176, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:402毫秒', '0', '', '2022-02-14 21:20:00'); INSERT INTO `sys_job_log` VALUES (14177, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:686毫秒', '0', '', '2022-02-14 21:20:00'); INSERT INTO `sys_job_log` VALUES (14178, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-14 21:20:03'); INSERT INTO `sys_job_log` VALUES (14179, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:323毫秒', '0', '', '2022-02-14 21:30:00'); INSERT INTO `sys_job_log` VALUES (14180, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:568毫秒', '0', '', '2022-02-14 21:30:00'); INSERT INTO `sys_job_log` VALUES (14181, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:290毫秒', '0', '', '2022-02-14 21:40:00'); INSERT INTO `sys_job_log` VALUES (14182, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:387毫秒', '0', '', '2022-02-14 21:40:00'); INSERT INTO `sys_job_log` VALUES (14183, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:664毫秒', '0', '', '2022-02-14 21:40:00'); INSERT INTO `sys_job_log` VALUES (14184, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:777毫秒', '0', '', '2022-02-14 21:50:00'); INSERT INTO `sys_job_log` VALUES (14185, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1130毫秒', '0', '', '2022-02-14 21:50:01'); INSERT INTO `sys_job_log` VALUES (14186, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:698毫秒', '0', '', '2022-02-14 22:00:00'); INSERT INTO `sys_job_log` VALUES (14187, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1228毫秒', '0', '', '2022-02-14 22:00:01'); INSERT INTO `sys_job_log` VALUES (14188, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-14 22:00:03'); INSERT INTO `sys_job_log` VALUES (14189, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:624毫秒', '0', '', '2022-02-14 22:10:00'); INSERT INTO `sys_job_log` VALUES (14190, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-02-14 22:10:00'); INSERT INTO `sys_job_log` VALUES (14191, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2184毫秒', '0', '', '2022-02-14 22:20:02'); INSERT INTO `sys_job_log` VALUES (14192, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2289毫秒', '0', '', '2022-02-14 22:20:02'); INSERT INTO `sys_job_log` VALUES (14193, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2629毫秒', '0', '', '2022-02-14 22:20:02'); INSERT INTO `sys_job_log` VALUES (14194, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2231毫秒', '0', '', '2022-02-14 22:30:02'); INSERT INTO `sys_job_log` VALUES (14195, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2637毫秒', '0', '', '2022-02-14 22:30:02'); INSERT INTO `sys_job_log` VALUES (14196, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1479毫秒', '0', '', '2022-02-14 22:40:01'); INSERT INTO `sys_job_log` VALUES (14197, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2095毫秒', '0', '', '2022-02-14 22:40:02'); INSERT INTO `sys_job_log` VALUES (14198, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-14 22:40:03'); INSERT INTO `sys_job_log` VALUES (14199, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:486毫秒', '0', '', '2022-02-14 22:50:00'); INSERT INTO `sys_job_log` VALUES (14200, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1452毫秒', '0', '', '2022-02-14 22:50:01'); INSERT INTO `sys_job_log` VALUES (14201, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:300毫秒', '0', '', '2022-02-14 23:00:00'); INSERT INTO `sys_job_log` VALUES (14202, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1076毫秒', '0', '', '2022-02-14 23:00:01'); INSERT INTO `sys_job_log` VALUES (14203, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1634毫秒', '0', '', '2022-02-14 23:00:01'); INSERT INTO `sys_job_log` VALUES (14204, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:350毫秒', '0', '', '2022-02-14 23:10:00'); INSERT INTO `sys_job_log` VALUES (14205, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1905毫秒', '0', '', '2022-02-14 23:10:01'); INSERT INTO `sys_job_log` VALUES (14206, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:430毫秒', '0', '', '2022-02-14 23:20:00'); INSERT INTO `sys_job_log` VALUES (14207, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1616毫秒', '0', '', '2022-02-14 23:20:01'); INSERT INTO `sys_job_log` VALUES (14208, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-14 23:20:03'); INSERT INTO `sys_job_log` VALUES (14209, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:393毫秒', '0', '', '2022-02-14 23:30:00'); INSERT INTO `sys_job_log` VALUES (14210, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1572毫秒', '0', '', '2022-02-14 23:30:01'); INSERT INTO `sys_job_log` VALUES (14211, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:238毫秒', '0', '', '2022-02-14 23:40:00'); INSERT INTO `sys_job_log` VALUES (14212, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:873毫秒', '0', '', '2022-02-14 23:40:00'); INSERT INTO `sys_job_log` VALUES (14213, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1695毫秒', '0', '', '2022-02-14 23:40:01'); INSERT INTO `sys_job_log` VALUES (14214, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2286毫秒', '0', '', '2022-02-14 23:50:02'); INSERT INTO `sys_job_log` VALUES (14215, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-02-14 23:50:03'); INSERT INTO `sys_job_log` VALUES (14216, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:480毫秒', '0', '', '2022-02-15 02:56:15'); INSERT INTO `sys_job_log` VALUES (14217, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2688毫秒', '0', '', '2022-02-15 02:56:18'); INSERT INTO `sys_job_log` VALUES (14218, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3013毫秒', '0', '', '2022-02-15 02:56:18'); INSERT INTO `sys_job_log` VALUES (14219, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3009毫秒', '0', '', '2022-02-15 02:56:18'); INSERT INTO `sys_job_log` VALUES (14220, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:823毫秒', '0', '', '2022-02-15 02:56:18'); INSERT INTO `sys_job_log` VALUES (14221, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-02-15 02:56:19'); INSERT INTO `sys_job_log` VALUES (14222, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:529毫秒', '0', '', '2022-02-15 02:56:19'); INSERT INTO `sys_job_log` VALUES (14223, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:274毫秒', '0', '', '2022-02-15 02:56:19'); INSERT INTO `sys_job_log` VALUES (14224, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:710毫秒', '0', '', '2022-02-15 02:56:19'); INSERT INTO `sys_job_log` VALUES (14225, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:470毫秒', '0', '', '2022-02-15 02:56:20'); INSERT INTO `sys_job_log` VALUES (14226, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:646毫秒', '0', '', '2022-02-15 02:56:20'); INSERT INTO `sys_job_log` VALUES (14227, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:486毫秒', '0', '', '2022-02-15 02:56:20'); INSERT INTO `sys_job_log` VALUES (14228, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:261毫秒', '0', '', '2022-02-15 02:56:21'); INSERT INTO `sys_job_log` VALUES (14229, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2906毫秒', '0', '', '2022-02-15 02:56:21'); INSERT INTO `sys_job_log` VALUES (14230, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:439毫秒', '0', '', '2022-02-15 02:56:21'); INSERT INTO `sys_job_log` VALUES (14231, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-02-15 02:56:23'); INSERT INTO `sys_job_log` VALUES (14232, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:19974880毫秒', '0', '', '2022-02-15 08:29:16'); INSERT INTO `sys_job_log` VALUES (14233, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:19974866毫秒', '0', '', '2022-02-15 08:29:16'); INSERT INTO `sys_job_log` VALUES (14234, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1022毫秒', '0', '', '2022-02-15 08:29:19'); INSERT INTO `sys_job_log` VALUES (14235, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3035毫秒', '0', '', '2022-02-15 08:29:20'); INSERT INTO `sys_job_log` VALUES (14236, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2192毫秒', '0', '', '2022-02-15 08:29:21'); INSERT INTO `sys_job_log` VALUES (14237, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2577毫秒', '0', '', '2022-02-15 08:29:28'); INSERT INTO `sys_job_log` VALUES (14238, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2471毫秒', '0', '', '2022-02-15 08:29:28'); INSERT INTO `sys_job_log` VALUES (14239, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3015毫秒', '0', '', '2022-02-15 08:29:29'); INSERT INTO `sys_job_log` VALUES (14240, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:597毫秒', '0', '', '2022-02-15 08:29:30'); INSERT INTO `sys_job_log` VALUES (14241, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:543毫秒', '0', '', '2022-02-15 08:29:31'); INSERT INTO `sys_job_log` VALUES (14242, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1327毫秒', '0', '', '2022-02-15 08:29:31'); INSERT INTO `sys_job_log` VALUES (14243, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3018毫秒', '0', '', '2022-02-15 08:29:31'); INSERT INTO `sys_job_log` VALUES (14244, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:929毫秒', '0', '', '2022-02-15 08:29:32'); INSERT INTO `sys_job_log` VALUES (14245, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1664毫秒', '0', '', '2022-02-15 08:29:32'); INSERT INTO `sys_job_log` VALUES (14246, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:389毫秒', '0', '', '2022-02-15 08:29:33'); INSERT INTO `sys_job_log` VALUES (14247, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1087毫秒', '0', '', '2022-02-15 08:29:33'); INSERT INTO `sys_job_log` VALUES (14248, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:925毫秒', '0', '', '2022-02-15 08:29:34'); INSERT INTO `sys_job_log` VALUES (14249, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:824毫秒', '0', '', '2022-02-15 08:29:34'); INSERT INTO `sys_job_log` VALUES (14250, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:279毫秒', '0', '', '2022-02-15 08:29:34'); INSERT INTO `sys_job_log` VALUES (14251, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3017毫秒', '0', '', '2022-02-15 08:29:34'); INSERT INTO `sys_job_log` VALUES (14252, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:690毫秒', '0', '', '2022-02-15 08:29:34'); INSERT INTO `sys_job_log` VALUES (14253, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:706毫秒', '0', '', '2022-02-15 08:29:35'); INSERT INTO `sys_job_log` VALUES (14254, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:630毫秒', '0', '', '2022-02-15 08:29:35'); INSERT INTO `sys_job_log` VALUES (14255, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:337毫秒', '0', '', '2022-02-15 08:29:35'); INSERT INTO `sys_job_log` VALUES (14256, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:797毫秒', '0', '', '2022-02-15 08:29:35'); INSERT INTO `sys_job_log` VALUES (14257, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:603毫秒', '0', '', '2022-02-15 08:29:36'); INSERT INTO `sys_job_log` VALUES (14258, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:972毫秒', '0', '', '2022-02-15 08:29:36'); INSERT INTO `sys_job_log` VALUES (14259, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:694毫秒', '0', '', '2022-02-15 08:29:36'); INSERT INTO `sys_job_log` VALUES (14260, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:595毫秒', '0', '', '2022-02-15 08:29:36'); INSERT INTO `sys_job_log` VALUES (14261, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:481毫秒', '0', '', '2022-02-15 08:29:36'); INSERT INTO `sys_job_log` VALUES (14262, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:311毫秒', '0', '', '2022-02-15 08:29:37'); INSERT INTO `sys_job_log` VALUES (14263, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:459毫秒', '0', '', '2022-02-15 08:29:37'); INSERT INTO `sys_job_log` VALUES (14264, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:870毫秒', '0', '', '2022-02-15 08:29:37'); INSERT INTO `sys_job_log` VALUES (14265, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:187毫秒', '0', '', '2022-02-15 08:29:37'); INSERT INTO `sys_job_log` VALUES (14266, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:334毫秒', '0', '', '2022-02-15 08:29:37'); INSERT INTO `sys_job_log` VALUES (14267, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:244毫秒', '0', '', '2022-02-15 08:29:37'); INSERT INTO `sys_job_log` VALUES (14268, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:225毫秒', '0', '', '2022-02-15 08:29:38'); INSERT INTO `sys_job_log` VALUES (14269, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:479毫秒', '0', '', '2022-02-15 08:29:38'); INSERT INTO `sys_job_log` VALUES (14270, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:251毫秒', '0', '', '2022-02-15 08:29:38'); INSERT INTO `sys_job_log` VALUES (14271, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1070毫秒', '0', '', '2022-02-15 08:29:38'); INSERT INTO `sys_job_log` VALUES (14272, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:322毫秒', '0', '', '2022-02-15 08:29:38'); INSERT INTO `sys_job_log` VALUES (14273, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:280毫秒', '0', '', '2022-02-15 08:29:38'); INSERT INTO `sys_job_log` VALUES (14274, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:200毫秒', '0', '', '2022-02-15 08:29:38'); INSERT INTO `sys_job_log` VALUES (14275, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:336毫秒', '0', '', '2022-02-15 08:29:39'); INSERT INTO `sys_job_log` VALUES (14276, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:197毫秒', '0', '', '2022-02-15 08:29:39'); INSERT INTO `sys_job_log` VALUES (14277, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:320毫秒', '0', '', '2022-02-15 08:29:39'); INSERT INTO `sys_job_log` VALUES (14278, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:191毫秒', '0', '', '2022-02-15 08:29:39'); INSERT INTO `sys_job_log` VALUES (14279, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:928毫秒', '0', '', '2022-02-15 08:29:39'); INSERT INTO `sys_job_log` VALUES (14280, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:413毫秒', '0', '', '2022-02-15 08:29:39'); INSERT INTO `sys_job_log` VALUES (14281, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:863毫秒', '0', '', '2022-02-15 08:29:40'); INSERT INTO `sys_job_log` VALUES (14282, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:484毫秒', '0', '', '2022-02-15 08:29:40'); INSERT INTO `sys_job_log` VALUES (14283, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1151毫秒', '0', '', '2022-02-15 08:29:40'); INSERT INTO `sys_job_log` VALUES (14284, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:281毫秒', '0', '', '2022-02-15 08:29:40'); INSERT INTO `sys_job_log` VALUES (14285, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:397毫秒', '0', '', '2022-02-15 08:29:40'); INSERT INTO `sys_job_log` VALUES (14286, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:222毫秒', '0', '', '2022-02-15 08:29:41'); INSERT INTO `sys_job_log` VALUES (14287, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:192毫秒', '0', '', '2022-02-15 08:29:41'); INSERT INTO `sys_job_log` VALUES (14288, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:372毫秒', '0', '', '2022-02-15 08:29:41'); INSERT INTO `sys_job_log` VALUES (14289, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:177毫秒', '0', '', '2022-02-15 08:29:41'); INSERT INTO `sys_job_log` VALUES (14290, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:313毫秒', '0', '', '2022-02-15 08:29:41'); INSERT INTO `sys_job_log` VALUES (14291, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1021毫秒', '0', '', '2022-02-15 08:29:41'); INSERT INTO `sys_job_log` VALUES (14292, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:161毫秒', '0', '', '2022-02-15 08:29:41'); INSERT INTO `sys_job_log` VALUES (14293, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:298毫秒', '0', '', '2022-02-15 08:29:42'); INSERT INTO `sys_job_log` VALUES (14294, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:789毫秒', '0', '', '2022-02-15 08:29:42'); INSERT INTO `sys_job_log` VALUES (14295, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:544毫秒', '0', '', '2022-02-15 08:29:42'); INSERT INTO `sys_job_log` VALUES (14296, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:320毫秒', '0', '', '2022-02-15 08:29:42'); INSERT INTO `sys_job_log` VALUES (14297, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:671毫秒', '0', '', '2022-02-15 08:29:43'); INSERT INTO `sys_job_log` VALUES (14298, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1109毫秒', '0', '', '2022-02-15 08:29:43'); INSERT INTO `sys_job_log` VALUES (14299, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:409毫秒', '0', '', '2022-02-15 08:29:44'); INSERT INTO `sys_job_log` VALUES (14300, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:321毫秒', '0', '', '2022-02-15 08:29:44'); INSERT INTO `sys_job_log` VALUES (14301, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:951毫秒', '0', '', '2022-02-15 08:29:44'); INSERT INTO `sys_job_log` VALUES (14302, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:717毫秒', '0', '', '2022-02-15 08:29:45'); INSERT INTO `sys_job_log` VALUES (14303, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:695毫秒', '0', '', '2022-02-15 08:29:45'); INSERT INTO `sys_job_log` VALUES (14304, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:257毫秒', '0', '', '2022-02-15 08:29:45'); INSERT INTO `sys_job_log` VALUES (14305, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:377毫秒', '0', '', '2022-02-15 08:29:45'); INSERT INTO `sys_job_log` VALUES (14306, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:445毫秒', '0', '', '2022-02-15 08:29:46'); INSERT INTO `sys_job_log` VALUES (14307, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1255毫秒', '0', '', '2022-02-15 08:29:46'); INSERT INTO `sys_job_log` VALUES (14308, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:447毫秒', '0', '', '2022-02-15 08:29:47'); INSERT INTO `sys_job_log` VALUES (14309, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:230毫秒', '0', '', '2022-02-15 08:29:47'); INSERT INTO `sys_job_log` VALUES (14310, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:748毫秒', '0', '', '2022-02-15 08:29:47'); INSERT INTO `sys_job_log` VALUES (14311, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:292毫秒', '0', '', '2022-02-15 08:29:47'); INSERT INTO `sys_job_log` VALUES (14312, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:709毫秒', '0', '', '2022-02-15 08:29:48'); INSERT INTO `sys_job_log` VALUES (14313, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:897毫秒', '0', '', '2022-02-15 08:29:48'); INSERT INTO `sys_job_log` VALUES (14314, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:736毫秒', '0', '', '2022-02-15 08:29:49'); INSERT INTO `sys_job_log` VALUES (14315, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1367毫秒', '0', '', '2022-02-15 08:29:50'); INSERT INTO `sys_job_log` VALUES (14316, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:562毫秒', '0', '', '2022-02-15 08:29:51'); INSERT INTO `sys_job_log` VALUES (14317, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3002毫秒', '0', '', '2022-02-15 08:29:51'); INSERT INTO `sys_job_log` VALUES (14318, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:653毫秒', '0', '', '2022-02-15 08:29:51'); INSERT INTO `sys_job_log` VALUES (14319, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:668毫秒', '0', '', '2022-02-15 08:29:52'); INSERT INTO `sys_job_log` VALUES (14320, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:450毫秒', '0', '', '2022-02-15 08:29:52'); INSERT INTO `sys_job_log` VALUES (14321, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3003毫秒', '0', '', '2022-02-15 08:29:54'); INSERT INTO `sys_job_log` VALUES (14322, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1678毫秒', '0', '', '2022-02-15 08:29:56'); INSERT INTO `sys_job_log` VALUES (14323, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3815毫秒', '0', '', '2022-02-15 08:30:00'); INSERT INTO `sys_job_log` VALUES (14324, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:513毫秒', '0', '', '2022-02-15 08:30:00'); INSERT INTO `sys_job_log` VALUES (14325, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2465毫秒', '0', '', '2022-02-15 08:30:02'); INSERT INTO `sys_job_log` VALUES (14326, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3007毫秒', '0', '', '2022-02-15 08:30:05'); INSERT INTO `sys_job_log` VALUES (14327, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2201毫秒', '0', '', '2022-02-15 08:30:07'); INSERT INTO `sys_job_log` VALUES (14328, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-02-15 08:30:08'); INSERT INTO `sys_job_log` VALUES (14329, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:554毫秒', '0', '', '2022-02-15 08:30:08'); INSERT INTO `sys_job_log` VALUES (14330, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:569毫秒', '0', '', '2022-02-15 08:30:09'); INSERT INTO `sys_job_log` VALUES (14331, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:580毫秒', '0', '', '2022-02-15 08:30:10'); INSERT INTO `sys_job_log` VALUES (14332, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:542毫秒', '0', '', '2022-02-15 08:30:10'); INSERT INTO `sys_job_log` VALUES (14333, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:512毫秒', '0', '', '2022-02-15 08:30:11'); INSERT INTO `sys_job_log` VALUES (14334, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:482毫秒', '0', '', '2022-02-15 08:30:11'); INSERT INTO `sys_job_log` VALUES (14335, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-02-15 08:30:12'); INSERT INTO `sys_job_log` VALUES (14336, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:530毫秒', '0', '', '2022-02-15 08:30:12'); INSERT INTO `sys_job_log` VALUES (14337, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:508毫秒', '0', '', '2022-02-15 08:30:13'); INSERT INTO `sys_job_log` VALUES (14338, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:509毫秒', '0', '', '2022-02-15 08:30:13'); INSERT INTO `sys_job_log` VALUES (14339, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:543毫秒', '0', '', '2022-02-15 08:30:14'); INSERT INTO `sys_job_log` VALUES (14340, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:618毫秒', '0', '', '2022-02-15 08:30:15'); INSERT INTO `sys_job_log` VALUES (14341, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-02-15 08:30:15'); INSERT INTO `sys_job_log` VALUES (14342, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-02-15 08:30:16'); INSERT INTO `sys_job_log` VALUES (14343, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:594毫秒', '0', '', '2022-02-15 08:30:16'); INSERT INTO `sys_job_log` VALUES (14344, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-02-15 08:30:17'); INSERT INTO `sys_job_log` VALUES (14345, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:814毫秒', '0', '', '2022-02-15 08:30:18'); INSERT INTO `sys_job_log` VALUES (14346, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-02-15 08:30:18'); INSERT INTO `sys_job_log` VALUES (14347, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:174毫秒', '0', '', '2022-02-15 08:40:00'); INSERT INTO `sys_job_log` VALUES (14348, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:279毫秒', '0', '', '2022-02-15 08:40:00'); INSERT INTO `sys_job_log` VALUES (14349, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:591毫秒', '0', '', '2022-02-15 08:40:00'); INSERT INTO `sys_job_log` VALUES (14350, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1027毫秒', '0', '', '2022-02-15 08:50:01'); INSERT INTO `sys_job_log` VALUES (14351, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:979毫秒', '0', '', '2022-02-15 08:50:01'); INSERT INTO `sys_job_log` VALUES (14352, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:664毫秒', '0', '', '2022-02-15 09:00:00'); INSERT INTO `sys_job_log` VALUES (14353, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1512毫秒', '0', '', '2022-02-15 09:00:01'); INSERT INTO `sys_job_log` VALUES (14354, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2778毫秒', '0', '', '2022-02-15 09:00:02'); INSERT INTO `sys_job_log` VALUES (14355, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2759毫秒', '0', '', '2022-02-15 09:10:02'); INSERT INTO `sys_job_log` VALUES (14356, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2861毫秒', '0', '', '2022-02-15 09:10:02'); INSERT INTO `sys_job_log` VALUES (14357, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1771毫秒', '0', '', '2022-02-15 09:20:01'); INSERT INTO `sys_job_log` VALUES (14358, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2158毫秒', '0', '', '2022-02-15 09:20:02'); INSERT INTO `sys_job_log` VALUES (14359, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2236毫秒', '0', '', '2022-02-15 09:20:02'); INSERT INTO `sys_job_log` VALUES (14360, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1061毫秒', '0', '', '2022-02-15 09:30:01'); INSERT INTO `sys_job_log` VALUES (14361, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1733毫秒', '0', '', '2022-02-15 09:30:01'); INSERT INTO `sys_job_log` VALUES (14362, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:912毫秒', '0', '', '2022-02-15 09:40:00'); INSERT INTO `sys_job_log` VALUES (14363, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1575毫秒', '0', '', '2022-02-15 09:40:01'); INSERT INTO `sys_job_log` VALUES (14364, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3008毫秒', '0', '', '2022-02-15 09:40:03'); INSERT INTO `sys_job_log` VALUES (14365, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2612毫秒', '0', '', '2022-02-15 09:50:02'); INSERT INTO `sys_job_log` VALUES (14366, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2800毫秒', '0', '', '2022-02-15 09:50:02'); INSERT INTO `sys_job_log` VALUES (14367, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:9毫秒', '0', '', '2022-02-15 10:00:00'); INSERT INTO `sys_job_log` VALUES (14368, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:27毫秒', '0', '', '2022-02-15 10:00:00'); INSERT INTO `sys_job_log` VALUES (14369, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:7毫秒', '0', '', '2022-02-15 10:00:00'); INSERT INTO `sys_job_log` VALUES (14370, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1175毫秒', '0', '', '2022-02-15 10:10:01'); INSERT INTO `sys_job_log` VALUES (14371, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1721毫秒', '0', '', '2022-02-15 10:10:01'); INSERT INTO `sys_job_log` VALUES (14372, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1063毫秒', '0', '', '2022-02-15 10:20:01'); INSERT INTO `sys_job_log` VALUES (14373, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1533毫秒', '0', '', '2022-02-15 10:20:01'); INSERT INTO `sys_job_log` VALUES (14374, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3006毫秒', '0', '', '2022-02-15 10:20:03'); INSERT INTO `sys_job_log` VALUES (14375, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:758毫秒', '0', '', '2022-02-15 10:30:00'); INSERT INTO `sys_job_log` VALUES (14376, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2260毫秒', '0', '', '2022-02-15 10:30:02'); INSERT INTO `sys_job_log` VALUES (14377, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:273毫秒', '0', '', '2022-02-15 10:40:00'); INSERT INTO `sys_job_log` VALUES (14378, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:701毫秒', '0', '', '2022-02-15 10:40:00'); INSERT INTO `sys_job_log` VALUES (14379, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:800毫秒', '0', '', '2022-02-15 10:40:00'); INSERT INTO `sys_job_log` VALUES (14380, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:606毫秒', '0', '', '2022-02-15 10:50:00'); INSERT INTO `sys_job_log` VALUES (14381, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3057毫秒', '0', '', '2022-02-15 10:50:03'); INSERT INTO `sys_job_log` VALUES (14382, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:730毫秒', '0', '', '2022-02-15 11:00:00'); INSERT INTO `sys_job_log` VALUES (14383, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:794毫秒', '0', '', '2022-02-15 11:00:00'); INSERT INTO `sys_job_log` VALUES (14384, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-15 11:00:03'); INSERT INTO `sys_job_log` VALUES (14385, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:674毫秒', '0', '', '2022-02-15 11:10:00'); INSERT INTO `sys_job_log` VALUES (14386, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:937毫秒', '0', '', '2022-02-15 11:10:00'); INSERT INTO `sys_job_log` VALUES (14387, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:235毫秒', '0', '', '2022-02-15 11:20:00'); INSERT INTO `sys_job_log` VALUES (14388, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:711毫秒', '0', '', '2022-02-15 11:20:00'); INSERT INTO `sys_job_log` VALUES (14389, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1664毫秒', '0', '', '2022-02-15 11:20:01'); INSERT INTO `sys_job_log` VALUES (14390, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:881毫秒', '0', '', '2022-02-15 11:30:00'); INSERT INTO `sys_job_log` VALUES (14391, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1302毫秒', '0', '', '2022-02-15 11:30:01'); INSERT INTO `sys_job_log` VALUES (14392, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:662毫秒', '0', '', '2022-02-15 11:40:00'); INSERT INTO `sys_job_log` VALUES (14393, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1180毫秒', '0', '', '2022-02-15 11:40:01'); INSERT INTO `sys_job_log` VALUES (14394, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-15 11:40:03'); INSERT INTO `sys_job_log` VALUES (14395, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-02-15 11:50:00'); INSERT INTO `sys_job_log` VALUES (14396, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3755毫秒', '0', '', '2022-02-15 11:50:03'); INSERT INTO `sys_job_log` VALUES (14397, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:864毫秒', '0', '', '2022-02-15 12:00:00'); INSERT INTO `sys_job_log` VALUES (14398, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1298毫秒', '0', '', '2022-02-15 12:00:01'); INSERT INTO `sys_job_log` VALUES (14399, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1333毫秒', '0', '', '2022-02-15 12:00:01'); INSERT INTO `sys_job_log` VALUES (14400, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:789毫秒', '0', '', '2022-02-15 12:10:00'); INSERT INTO `sys_job_log` VALUES (14401, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4722毫秒', '0', '', '2022-02-15 12:10:04'); INSERT INTO `sys_job_log` VALUES (14402, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1154毫秒', '0', '', '2022-02-15 12:20:01'); INSERT INTO `sys_job_log` VALUES (14403, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1582毫秒', '0', '', '2022-02-15 12:20:01'); INSERT INTO `sys_job_log` VALUES (14404, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2916毫秒', '0', '', '2022-02-15 12:20:02'); INSERT INTO `sys_job_log` VALUES (14405, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:704毫秒', '0', '', '2022-02-15 12:30:00'); INSERT INTO `sys_job_log` VALUES (14406, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1323毫秒', '0', '', '2022-02-15 12:30:01'); INSERT INTO `sys_job_log` VALUES (14407, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:208毫秒', '0', '', '2022-02-15 12:40:00'); INSERT INTO `sys_job_log` VALUES (14408, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:621毫秒', '0', '', '2022-02-15 12:40:00'); INSERT INTO `sys_job_log` VALUES (14409, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:663毫秒', '0', '', '2022-02-15 12:40:00'); INSERT INTO `sys_job_log` VALUES (14410, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:683毫秒', '0', '', '2022-02-15 12:50:00'); INSERT INTO `sys_job_log` VALUES (14411, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:768毫秒', '0', '', '2022-02-15 12:50:00'); INSERT INTO `sys_job_log` VALUES (14412, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-02-15 13:00:00'); INSERT INTO `sys_job_log` VALUES (14413, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:768毫秒', '0', '', '2022-02-15 13:00:00'); INSERT INTO `sys_job_log` VALUES (14414, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-15 13:00:03'); INSERT INTO `sys_job_log` VALUES (14415, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-02-15 13:10:00'); INSERT INTO `sys_job_log` VALUES (14416, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1018毫秒', '0', '', '2022-02-15 13:10:01'); INSERT INTO `sys_job_log` VALUES (14417, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:581毫秒', '0', '', '2022-02-15 13:20:00'); INSERT INTO `sys_job_log` VALUES (14418, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1188毫秒', '0', '', '2022-02-15 13:20:01'); INSERT INTO `sys_job_log` VALUES (14419, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1750毫秒', '0', '', '2022-02-15 13:20:01'); INSERT INTO `sys_job_log` VALUES (14420, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:868毫秒', '0', '', '2022-02-15 13:30:00'); INSERT INTO `sys_job_log` VALUES (14421, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2255毫秒', '0', '', '2022-02-15 13:30:02'); INSERT INTO `sys_job_log` VALUES (14422, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:798毫秒', '0', '', '2022-02-15 13:40:00'); INSERT INTO `sys_job_log` VALUES (14423, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2199毫秒', '0', '', '2022-02-15 13:40:02'); INSERT INTO `sys_job_log` VALUES (14424, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3010毫秒', '0', '', '2022-02-15 13:40:03'); INSERT INTO `sys_job_log` VALUES (14425, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:531毫秒', '0', '', '2022-02-15 13:50:00'); INSERT INTO `sys_job_log` VALUES (14426, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-02-15 13:50:00'); INSERT INTO `sys_job_log` VALUES (14427, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:342毫秒', '0', '', '2022-02-15 14:00:00'); INSERT INTO `sys_job_log` VALUES (14428, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-02-15 14:00:00'); INSERT INTO `sys_job_log` VALUES (14429, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2305毫秒', '0', '', '2022-02-15 14:00:02'); INSERT INTO `sys_job_log` VALUES (14430, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1189毫秒', '0', '', '2022-02-15 14:10:01'); INSERT INTO `sys_job_log` VALUES (14431, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1589毫秒', '0', '', '2022-02-15 14:10:01'); INSERT INTO `sys_job_log` VALUES (14432, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:725毫秒', '0', '', '2022-02-15 14:20:00'); INSERT INTO `sys_job_log` VALUES (14433, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1967毫秒', '0', '', '2022-02-15 14:20:01'); INSERT INTO `sys_job_log` VALUES (14434, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2820毫秒', '0', '', '2022-02-15 14:20:02'); INSERT INTO `sys_job_log` VALUES (14435, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-02-15 14:30:00'); INSERT INTO `sys_job_log` VALUES (14436, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1620毫秒', '0', '', '2022-02-15 14:30:01'); INSERT INTO `sys_job_log` VALUES (14437, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:968毫秒', '0', '', '2022-02-15 14:40:01'); INSERT INTO `sys_job_log` VALUES (14438, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1177毫秒', '0', '', '2022-02-15 14:40:01'); INSERT INTO `sys_job_log` VALUES (14439, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2014毫秒', '0', '', '2022-02-15 14:40:02'); INSERT INTO `sys_job_log` VALUES (14440, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:582毫秒', '0', '', '2022-02-15 14:50:00'); INSERT INTO `sys_job_log` VALUES (14441, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:964毫秒', '0', '', '2022-02-15 14:50:00'); INSERT INTO `sys_job_log` VALUES (14442, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:686毫秒', '0', '', '2022-02-15 15:00:00'); INSERT INTO `sys_job_log` VALUES (14443, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1154毫秒', '0', '', '2022-02-15 15:00:01'); INSERT INTO `sys_job_log` VALUES (14444, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-15 15:00:03'); INSERT INTO `sys_job_log` VALUES (14445, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-02-15 15:10:00'); INSERT INTO `sys_job_log` VALUES (14446, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:691毫秒', '0', '', '2022-02-15 15:10:00'); INSERT INTO `sys_job_log` VALUES (14447, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:282毫秒', '0', '', '2022-02-15 15:20:00'); INSERT INTO `sys_job_log` VALUES (14448, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:879毫秒', '0', '', '2022-02-15 15:20:00'); INSERT INTO `sys_job_log` VALUES (14449, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1225毫秒', '0', '', '2022-02-15 15:20:01'); INSERT INTO `sys_job_log` VALUES (14450, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:666毫秒', '0', '', '2022-02-15 15:30:00'); INSERT INTO `sys_job_log` VALUES (14451, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:938毫秒', '0', '', '2022-02-15 15:30:00'); INSERT INTO `sys_job_log` VALUES (14452, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:702毫秒', '0', '', '2022-02-15 15:40:00'); INSERT INTO `sys_job_log` VALUES (14453, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2017毫秒', '0', '', '2022-02-15 15:40:02'); INSERT INTO `sys_job_log` VALUES (14454, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2698毫秒', '0', '', '2022-02-15 15:40:02'); INSERT INTO `sys_job_log` VALUES (14455, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:902毫秒', '0', '', '2022-02-15 15:50:00'); INSERT INTO `sys_job_log` VALUES (14456, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:938毫秒', '0', '', '2022-02-15 15:50:00'); INSERT INTO `sys_job_log` VALUES (14457, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:362毫秒', '0', '', '2022-02-15 16:00:00'); INSERT INTO `sys_job_log` VALUES (14458, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:752毫秒', '0', '', '2022-02-15 16:00:00'); INSERT INTO `sys_job_log` VALUES (14459, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:881毫秒', '0', '', '2022-02-15 16:00:00'); INSERT INTO `sys_job_log` VALUES (14460, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-02-15 16:10:00'); INSERT INTO `sys_job_log` VALUES (14461, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1672毫秒', '0', '', '2022-02-15 16:10:01'); INSERT INTO `sys_job_log` VALUES (14462, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:719毫秒', '0', '', '2022-02-15 16:20:00'); INSERT INTO `sys_job_log` VALUES (14463, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1508毫秒', '0', '', '2022-02-15 16:20:01'); INSERT INTO `sys_job_log` VALUES (14464, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2841毫秒', '0', '', '2022-02-15 16:20:02'); INSERT INTO `sys_job_log` VALUES (14465, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:712毫秒', '0', '', '2022-02-15 16:30:00'); INSERT INTO `sys_job_log` VALUES (14466, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1217毫秒', '0', '', '2022-02-15 16:30:01'); INSERT INTO `sys_job_log` VALUES (14467, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:214毫秒', '0', '', '2022-02-15 16:40:00'); INSERT INTO `sys_job_log` VALUES (14468, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-02-15 16:40:00'); INSERT INTO `sys_job_log` VALUES (14469, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1838毫秒', '0', '', '2022-02-15 16:40:01'); INSERT INTO `sys_job_log` VALUES (14470, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-02-15 16:50:00'); INSERT INTO `sys_job_log` VALUES (14471, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1168毫秒', '0', '', '2022-02-15 16:50:01'); INSERT INTO `sys_job_log` VALUES (14472, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:670毫秒', '0', '', '2022-02-15 17:00:00'); INSERT INTO `sys_job_log` VALUES (14473, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2842毫秒', '0', '', '2022-02-15 17:00:02'); INSERT INTO `sys_job_log` VALUES (14474, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2855毫秒', '0', '', '2022-02-15 17:00:02'); INSERT INTO `sys_job_log` VALUES (14475, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-02-15 17:10:00'); INSERT INTO `sys_job_log` VALUES (14476, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:752毫秒', '0', '', '2022-02-15 17:10:00'); INSERT INTO `sys_job_log` VALUES (14477, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:657毫秒', '0', '', '2022-02-15 17:20:00'); INSERT INTO `sys_job_log` VALUES (14478, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-02-15 17:20:00'); INSERT INTO `sys_job_log` VALUES (14479, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1181毫秒', '0', '', '2022-02-15 17:20:01'); INSERT INTO `sys_job_log` VALUES (14480, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:638毫秒', '0', '', '2022-02-15 17:30:00'); INSERT INTO `sys_job_log` VALUES (14481, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:774毫秒', '0', '', '2022-02-15 17:30:00'); INSERT INTO `sys_job_log` VALUES (14482, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1286毫秒', '0', '', '2022-02-15 18:13:49'); INSERT INTO `sys_job_log` VALUES (14483, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1478毫秒', '0', '', '2022-02-15 18:13:49'); INSERT INTO `sys_job_log` VALUES (14484, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3034毫秒', '0', '', '2022-02-15 18:13:51'); INSERT INTO `sys_job_log` VALUES (14485, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1946毫秒', '0', '', '2022-02-15 18:13:51'); INSERT INTO `sys_job_log` VALUES (14486, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:247毫秒', '0', '', '2022-02-15 18:13:51'); INSERT INTO `sys_job_log` VALUES (14487, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1899毫秒', '0', '', '2022-02-15 18:13:51'); INSERT INTO `sys_job_log` VALUES (14488, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1598毫秒', '0', '', '2022-02-15 18:13:53'); INSERT INTO `sys_job_log` VALUES (14489, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2109毫秒', '0', '', '2022-02-15 18:13:53'); INSERT INTO `sys_job_log` VALUES (14490, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1246毫秒', '0', '', '2022-02-15 18:13:54'); INSERT INTO `sys_job_log` VALUES (14491, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:788毫秒', '0', '', '2022-02-15 18:13:54'); INSERT INTO `sys_job_log` VALUES (14492, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:276毫秒', '0', '', '2022-02-15 18:20:00'); INSERT INTO `sys_job_log` VALUES (14493, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-02-15 18:20:00'); INSERT INTO `sys_job_log` VALUES (14494, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:831毫秒', '0', '', '2022-02-15 18:20:00'); INSERT INTO `sys_job_log` VALUES (14495, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:952毫秒', '0', '', '2022-02-15 18:30:00'); INSERT INTO `sys_job_log` VALUES (14496, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3600毫秒', '0', '', '2022-02-15 18:30:03'); INSERT INTO `sys_job_log` VALUES (14497, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:334毫秒', '0', '', '2022-02-15 18:40:00'); INSERT INTO `sys_job_log` VALUES (14498, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:726毫秒', '0', '', '2022-02-15 18:40:00'); INSERT INTO `sys_job_log` VALUES (14499, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1446毫秒', '0', '', '2022-02-15 18:40:01'); INSERT INTO `sys_job_log` VALUES (14500, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:775毫秒', '0', '', '2022-02-15 18:50:00'); INSERT INTO `sys_job_log` VALUES (14501, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1198毫秒', '0', '', '2022-02-15 18:50:01'); INSERT INTO `sys_job_log` VALUES (14502, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:739毫秒', '0', '', '2022-02-15 19:00:00'); INSERT INTO `sys_job_log` VALUES (14503, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:913毫秒', '0', '', '2022-02-15 19:00:00'); INSERT INTO `sys_job_log` VALUES (14504, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2905毫秒', '0', '', '2022-02-15 19:00:02'); INSERT INTO `sys_job_log` VALUES (14505, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1089毫秒', '0', '', '2022-02-15 19:10:01'); INSERT INTO `sys_job_log` VALUES (14506, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1188毫秒', '0', '', '2022-02-15 19:10:01'); INSERT INTO `sys_job_log` VALUES (14507, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:371毫秒', '0', '', '2022-02-15 19:20:00'); INSERT INTO `sys_job_log` VALUES (14508, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:956毫秒', '0', '', '2022-02-15 19:20:00'); INSERT INTO `sys_job_log` VALUES (14509, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:997毫秒', '0', '', '2022-02-15 19:20:01'); INSERT INTO `sys_job_log` VALUES (14510, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:743毫秒', '0', '', '2022-02-15 19:30:00'); INSERT INTO `sys_job_log` VALUES (14511, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1362毫秒', '0', '', '2022-02-15 19:30:01'); INSERT INTO `sys_job_log` VALUES (14512, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:773毫秒', '0', '', '2022-02-15 19:40:00'); INSERT INTO `sys_job_log` VALUES (14513, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1518毫秒', '0', '', '2022-02-15 19:40:01'); INSERT INTO `sys_job_log` VALUES (14514, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3006毫秒', '0', '', '2022-02-15 19:40:03'); INSERT INTO `sys_job_log` VALUES (14515, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:758毫秒', '0', '', '2022-02-15 19:50:00'); INSERT INTO `sys_job_log` VALUES (14516, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1373毫秒', '0', '', '2022-02-15 19:50:01'); INSERT INTO `sys_job_log` VALUES (14517, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:308毫秒', '0', '', '2022-02-15 20:00:00'); INSERT INTO `sys_job_log` VALUES (14518, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-02-15 20:00:00'); INSERT INTO `sys_job_log` VALUES (14519, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1189毫秒', '0', '', '2022-02-15 20:00:01'); INSERT INTO `sys_job_log` VALUES (14520, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:821毫秒', '0', '', '2022-02-15 20:10:00'); INSERT INTO `sys_job_log` VALUES (14521, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2032毫秒', '0', '', '2022-02-15 20:10:02'); INSERT INTO `sys_job_log` VALUES (14522, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3044毫秒', '0', '', '2022-02-15 20:15:06'); INSERT INTO `sys_job_log` VALUES (14523, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2361毫秒', '0', '', '2022-02-15 20:20:02'); INSERT INTO `sys_job_log` VALUES (14524, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2875毫秒', '0', '', '2022-02-15 20:20:02'); INSERT INTO `sys_job_log` VALUES (14525, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3016毫秒', '0', '', '2022-02-15 20:20:03'); INSERT INTO `sys_job_log` VALUES (14526, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1286毫秒', '0', '', '2022-02-15 20:30:01'); INSERT INTO `sys_job_log` VALUES (14527, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1286毫秒', '0', '', '2022-02-15 20:30:01'); INSERT INTO `sys_job_log` VALUES (14528, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1402毫秒', '0', '', '2022-02-15 20:30:01'); INSERT INTO `sys_job_log` VALUES (14529, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:308毫秒', '0', '', '2022-02-15 20:40:00'); INSERT INTO `sys_job_log` VALUES (14530, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1528毫秒', '0', '', '2022-02-15 20:40:01'); INSERT INTO `sys_job_log` VALUES (14531, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1581毫秒', '0', '', '2022-02-15 20:40:01'); INSERT INTO `sys_job_log` VALUES (14532, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:941毫秒', '0', '', '2022-02-15 20:50:00'); INSERT INTO `sys_job_log` VALUES (14533, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:965毫秒', '0', '', '2022-02-15 20:50:00'); INSERT INTO `sys_job_log` VALUES (14534, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-02-15 21:00:00'); INSERT INTO `sys_job_log` VALUES (14535, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1673毫秒', '0', '', '2022-02-15 21:00:01'); INSERT INTO `sys_job_log` VALUES (14536, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-15 21:00:03'); INSERT INTO `sys_job_log` VALUES (14537, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-15 21:00:03'); INSERT INTO `sys_job_log` VALUES (14538, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:741毫秒', '0', '', '2022-02-15 21:10:00'); INSERT INTO `sys_job_log` VALUES (14539, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1826毫秒', '0', '', '2022-02-15 21:10:01'); INSERT INTO `sys_job_log` VALUES (14540, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:420毫秒', '0', '', '2022-02-15 21:20:00'); INSERT INTO `sys_job_log` VALUES (14541, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:901毫秒', '0', '', '2022-02-15 21:20:00'); INSERT INTO `sys_job_log` VALUES (14542, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2105毫秒', '0', '', '2022-02-15 21:20:02'); INSERT INTO `sys_job_log` VALUES (14543, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:167毫秒', '0', '', '2022-02-15 21:30:00'); INSERT INTO `sys_job_log` VALUES (14544, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1246毫秒', '0', '', '2022-02-15 21:30:01'); INSERT INTO `sys_job_log` VALUES (14545, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1733毫秒', '0', '', '2022-02-15 21:30:01'); INSERT INTO `sys_job_log` VALUES (14546, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:821毫秒', '0', '', '2022-02-15 21:40:00'); INSERT INTO `sys_job_log` VALUES (14547, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1583毫秒', '0', '', '2022-02-15 21:40:01'); INSERT INTO `sys_job_log` VALUES (14548, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3009毫秒', '0', '', '2022-02-15 21:40:03'); INSERT INTO `sys_job_log` VALUES (14549, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1060毫秒', '0', '', '2022-02-15 21:50:01'); INSERT INTO `sys_job_log` VALUES (14550, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1555毫秒', '0', '', '2022-02-15 21:50:01'); INSERT INTO `sys_job_log` VALUES (14551, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:55毫秒', '0', '', '2022-02-15 22:00:00'); INSERT INTO `sys_job_log` VALUES (14552, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:455毫秒', '0', '', '2022-02-15 22:00:00'); INSERT INTO `sys_job_log` VALUES (14553, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:887毫秒', '0', '', '2022-02-15 22:00:00'); INSERT INTO `sys_job_log` VALUES (14554, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1014毫秒', '0', '', '2022-02-15 22:00:01'); INSERT INTO `sys_job_log` VALUES (14555, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1222毫秒', '0', '', '2022-02-15 22:10:01'); INSERT INTO `sys_job_log` VALUES (14556, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1237毫秒', '0', '', '2022-02-15 22:10:01'); INSERT INTO `sys_job_log` VALUES (14557, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-15 22:20:03'); INSERT INTO `sys_job_log` VALUES (14558, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3008毫秒', '0', '', '2022-02-15 22:20:03'); INSERT INTO `sys_job_log` VALUES (14559, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7376毫秒', '0', '', '2022-02-15 22:20:07'); INSERT INTO `sys_job_log` VALUES (14560, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:10毫秒', '0', '', '2022-02-15 22:30:00'); INSERT INTO `sys_job_log` VALUES (14561, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:720毫秒', '0', '', '2022-02-15 22:30:00'); INSERT INTO `sys_job_log` VALUES (14562, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:945毫秒', '0', '', '2022-02-15 22:30:00'); INSERT INTO `sys_job_log` VALUES (14563, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:304毫秒', '0', '', '2022-02-15 22:40:00'); INSERT INTO `sys_job_log` VALUES (14564, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:808毫秒', '0', '', '2022-02-15 22:40:00'); INSERT INTO `sys_job_log` VALUES (14565, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1245毫秒', '0', '', '2022-02-15 22:40:01'); INSERT INTO `sys_job_log` VALUES (14566, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1866毫秒', '0', '', '2022-02-16 08:50:01'); INSERT INTO `sys_job_log` VALUES (14567, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2575毫秒', '0', '', '2022-02-16 08:50:02'); INSERT INTO `sys_job_log` VALUES (14568, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:579毫秒', '0', '', '2022-02-16 09:00:00'); INSERT INTO `sys_job_log` VALUES (14569, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1156毫秒', '0', '', '2022-02-16 09:00:01'); INSERT INTO `sys_job_log` VALUES (14570, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1580毫秒', '0', '', '2022-02-16 09:00:01'); INSERT INTO `sys_job_log` VALUES (14571, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3033毫秒', '0', '', '2022-02-16 09:00:03'); INSERT INTO `sys_job_log` VALUES (14572, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:843毫秒', '0', '', '2022-02-16 09:10:00'); INSERT INTO `sys_job_log` VALUES (14573, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2300毫秒', '0', '', '2022-02-16 09:10:02'); INSERT INTO `sys_job_log` VALUES (14574, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:614毫秒', '0', '', '2022-02-16 09:20:00'); INSERT INTO `sys_job_log` VALUES (14575, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2020毫秒', '0', '', '2022-02-16 09:20:02'); INSERT INTO `sys_job_log` VALUES (14576, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3019毫秒', '0', '', '2022-02-16 09:20:03'); INSERT INTO `sys_job_log` VALUES (14577, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:580毫秒', '0', '', '2022-02-16 09:30:00'); INSERT INTO `sys_job_log` VALUES (14578, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1786毫秒', '0', '', '2022-02-16 09:30:01'); INSERT INTO `sys_job_log` VALUES (14579, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-16 09:30:03'); INSERT INTO `sys_job_log` VALUES (14580, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:231毫秒', '0', '', '2022-02-16 09:40:00'); INSERT INTO `sys_job_log` VALUES (14581, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:859毫秒', '0', '', '2022-02-16 09:40:00'); INSERT INTO `sys_job_log` VALUES (14582, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1136毫秒', '0', '', '2022-02-16 09:40:01'); INSERT INTO `sys_job_log` VALUES (14583, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:556毫秒', '0', '', '2022-02-16 09:50:00'); INSERT INTO `sys_job_log` VALUES (14584, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2168毫秒', '0', '', '2022-02-16 09:50:02'); INSERT INTO `sys_job_log` VALUES (14585, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-02-16 10:00:00'); INSERT INTO `sys_job_log` VALUES (14586, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:651毫秒', '0', '', '2022-02-16 10:00:00'); INSERT INTO `sys_job_log` VALUES (14587, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-16 10:00:03'); INSERT INTO `sys_job_log` VALUES (14588, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3011毫秒', '0', '', '2022-02-16 10:00:03'); INSERT INTO `sys_job_log` VALUES (14589, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:872毫秒', '0', '', '2022-02-16 10:10:00'); INSERT INTO `sys_job_log` VALUES (14590, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5602毫秒', '0', '', '2022-02-16 10:10:05'); INSERT INTO `sys_job_log` VALUES (14591, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:678毫秒', '0', '', '2022-02-16 10:20:00'); INSERT INTO `sys_job_log` VALUES (14592, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1204毫秒', '0', '', '2022-02-16 10:20:01'); INSERT INTO `sys_job_log` VALUES (14593, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1480毫秒', '0', '', '2022-02-16 10:20:01'); INSERT INTO `sys_job_log` VALUES (14594, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:606毫秒', '0', '', '2022-02-16 10:30:00'); INSERT INTO `sys_job_log` VALUES (14595, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-16 10:30:03'); INSERT INTO `sys_job_log` VALUES (14596, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4082毫秒', '0', '', '2022-02-16 10:30:04'); INSERT INTO `sys_job_log` VALUES (14597, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:775毫秒', '0', '', '2022-02-16 10:40:00'); INSERT INTO `sys_job_log` VALUES (14598, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1137毫秒', '0', '', '2022-02-16 10:40:01'); INSERT INTO `sys_job_log` VALUES (14599, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2715毫秒', '0', '', '2022-02-16 10:40:02'); INSERT INTO `sys_job_log` VALUES (14600, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:997毫秒', '0', '', '2022-02-16 10:50:01'); INSERT INTO `sys_job_log` VALUES (14601, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2106毫秒', '0', '', '2022-02-16 10:50:02'); INSERT INTO `sys_job_log` VALUES (14602, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:721毫秒', '0', '', '2022-02-16 11:00:00'); INSERT INTO `sys_job_log` VALUES (14603, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1191毫秒', '0', '', '2022-02-16 11:00:01'); INSERT INTO `sys_job_log` VALUES (14604, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3018毫秒', '0', '', '2022-02-16 11:00:03'); INSERT INTO `sys_job_log` VALUES (14605, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3933毫秒', '0', '', '2022-02-16 11:00:03'); INSERT INTO `sys_job_log` VALUES (14606, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:750毫秒', '0', '', '2022-02-16 11:10:00'); INSERT INTO `sys_job_log` VALUES (14607, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1625毫秒', '0', '', '2022-02-16 11:10:01'); INSERT INTO `sys_job_log` VALUES (14608, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:994毫秒', '0', '', '2022-02-16 11:20:01'); INSERT INTO `sys_job_log` VALUES (14609, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1135毫秒', '0', '', '2022-02-16 11:20:01'); INSERT INTO `sys_job_log` VALUES (14610, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-16 11:20:03'); INSERT INTO `sys_job_log` VALUES (14611, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:540毫秒', '0', '', '2022-02-16 11:30:00'); INSERT INTO `sys_job_log` VALUES (14612, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:990毫秒', '0', '', '2022-02-16 11:30:01'); INSERT INTO `sys_job_log` VALUES (14613, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-16 11:30:03'); INSERT INTO `sys_job_log` VALUES (14614, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:534毫秒', '0', '', '2022-02-16 11:40:00'); INSERT INTO `sys_job_log` VALUES (14615, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1154毫秒', '0', '', '2022-02-16 11:40:01'); INSERT INTO `sys_job_log` VALUES (14616, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2172毫秒', '0', '', '2022-02-16 11:40:02'); INSERT INTO `sys_job_log` VALUES (14617, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:615毫秒', '0', '', '2022-02-16 11:50:00'); INSERT INTO `sys_job_log` VALUES (14618, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:990毫秒', '0', '', '2022-02-16 11:50:01'); INSERT INTO `sys_job_log` VALUES (14619, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:66毫秒', '0', '', '2022-02-16 12:00:00'); INSERT INTO `sys_job_log` VALUES (14620, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:579毫秒', '0', '', '2022-02-16 12:00:00'); INSERT INTO `sys_job_log` VALUES (14621, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1634毫秒', '0', '', '2022-02-16 12:00:01'); INSERT INTO `sys_job_log` VALUES (14622, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-16 12:00:03'); INSERT INTO `sys_job_log` VALUES (14623, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:879毫秒', '0', '', '2022-02-16 12:10:00'); INSERT INTO `sys_job_log` VALUES (14624, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1980毫秒', '0', '', '2022-02-16 12:10:01'); INSERT INTO `sys_job_log` VALUES (14625, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-02-16 12:20:00'); INSERT INTO `sys_job_log` VALUES (14626, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1163毫秒', '0', '', '2022-02-16 12:20:01'); INSERT INTO `sys_job_log` VALUES (14627, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1588毫秒', '0', '', '2022-02-16 12:20:01'); INSERT INTO `sys_job_log` VALUES (14628, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:677毫秒', '0', '', '2022-02-16 12:30:00'); INSERT INTO `sys_job_log` VALUES (14629, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-16 12:30:03'); INSERT INTO `sys_job_log` VALUES (14630, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4430毫秒', '0', '', '2022-02-16 12:30:04'); INSERT INTO `sys_job_log` VALUES (14631, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:854毫秒', '0', '', '2022-02-16 12:40:00'); INSERT INTO `sys_job_log` VALUES (14632, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1757毫秒', '0', '', '2022-02-16 12:40:01'); INSERT INTO `sys_job_log` VALUES (14633, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2727毫秒', '0', '', '2022-02-16 12:40:02'); INSERT INTO `sys_job_log` VALUES (14634, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:717毫秒', '0', '', '2022-02-16 12:50:00'); INSERT INTO `sys_job_log` VALUES (14635, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2209毫秒', '0', '', '2022-02-16 12:50:02'); INSERT INTO `sys_job_log` VALUES (14636, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:76毫秒', '0', '', '2022-02-16 13:00:00'); INSERT INTO `sys_job_log` VALUES (14637, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-02-16 13:00:00'); INSERT INTO `sys_job_log` VALUES (14638, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1159毫秒', '0', '', '2022-02-16 13:00:01'); INSERT INTO `sys_job_log` VALUES (14639, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3888毫秒', '0', '', '2022-02-16 13:00:03'); INSERT INTO `sys_job_log` VALUES (14640, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:789毫秒', '0', '', '2022-02-16 13:10:00'); INSERT INTO `sys_job_log` VALUES (14641, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2093毫秒', '0', '', '2022-02-16 13:10:02'); INSERT INTO `sys_job_log` VALUES (14642, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:530毫秒', '0', '', '2022-02-16 13:20:00'); INSERT INTO `sys_job_log` VALUES (14643, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2418毫秒', '0', '', '2022-02-16 13:20:02'); INSERT INTO `sys_job_log` VALUES (14644, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-16 13:20:03'); INSERT INTO `sys_job_log` VALUES (14645, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:996毫秒', '0', '', '2022-02-16 13:30:01'); INSERT INTO `sys_job_log` VALUES (14646, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1116毫秒', '0', '', '2022-02-16 13:30:01'); INSERT INTO `sys_job_log` VALUES (14647, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1979毫秒', '0', '', '2022-02-16 13:30:01'); INSERT INTO `sys_job_log` VALUES (14648, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:231毫秒', '0', '', '2022-02-16 13:40:00'); INSERT INTO `sys_job_log` VALUES (14649, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:702毫秒', '0', '', '2022-02-16 13:40:00'); INSERT INTO `sys_job_log` VALUES (14650, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1195毫秒', '0', '', '2022-02-16 13:40:01'); INSERT INTO `sys_job_log` VALUES (14651, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:939毫秒', '0', '', '2022-02-16 13:50:00'); INSERT INTO `sys_job_log` VALUES (14652, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2193毫秒', '0', '', '2022-02-16 13:50:02'); INSERT INTO `sys_job_log` VALUES (14653, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:611毫秒', '0', '', '2022-02-16 14:00:00'); INSERT INTO `sys_job_log` VALUES (14654, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2486毫秒', '0', '', '2022-02-16 14:00:02'); INSERT INTO `sys_job_log` VALUES (14655, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-16 14:00:03'); INSERT INTO `sys_job_log` VALUES (14656, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-16 14:00:03'); INSERT INTO `sys_job_log` VALUES (14657, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:647毫秒', '0', '', '2022-02-16 14:10:00'); INSERT INTO `sys_job_log` VALUES (14658, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1247毫秒', '0', '', '2022-02-16 14:10:01'); INSERT INTO `sys_job_log` VALUES (14659, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:198毫秒', '0', '', '2022-02-16 14:20:00'); INSERT INTO `sys_job_log` VALUES (14660, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:569毫秒', '0', '', '2022-02-16 14:20:00'); INSERT INTO `sys_job_log` VALUES (14661, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:661毫秒', '0', '', '2022-02-16 14:20:00'); INSERT INTO `sys_job_log` VALUES (14662, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:94毫秒', '0', '', '2022-02-16 14:30:00'); INSERT INTO `sys_job_log` VALUES (14663, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:667毫秒', '0', '', '2022-02-16 14:30:00'); INSERT INTO `sys_job_log` VALUES (14664, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2816毫秒', '0', '', '2022-02-16 14:30:02'); INSERT INTO `sys_job_log` VALUES (14665, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1531毫秒', '0', '', '2022-02-16 14:40:01'); INSERT INTO `sys_job_log` VALUES (14666, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1950毫秒', '0', '', '2022-02-16 14:40:01'); INSERT INTO `sys_job_log` VALUES (14667, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3018毫秒', '0', '', '2022-02-16 14:40:03'); INSERT INTO `sys_job_log` VALUES (14668, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:638毫秒', '0', '', '2022-02-16 14:50:00'); INSERT INTO `sys_job_log` VALUES (14669, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1585毫秒', '0', '', '2022-02-16 14:50:01'); INSERT INTO `sys_job_log` VALUES (14670, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:106毫秒', '0', '', '2022-02-16 15:00:00'); INSERT INTO `sys_job_log` VALUES (14671, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:605毫秒', '0', '', '2022-02-16 15:00:00'); INSERT INTO `sys_job_log` VALUES (14672, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:630毫秒', '0', '', '2022-02-16 15:00:00'); INSERT INTO `sys_job_log` VALUES (14673, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1191毫秒', '0', '', '2022-02-16 15:00:01'); INSERT INTO `sys_job_log` VALUES (14674, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-02-16 15:10:00'); INSERT INTO `sys_job_log` VALUES (14675, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1902毫秒', '0', '', '2022-02-16 15:10:01'); INSERT INTO `sys_job_log` VALUES (14676, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:549毫秒', '0', '', '2022-02-16 15:20:00'); INSERT INTO `sys_job_log` VALUES (14677, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1021毫秒', '0', '', '2022-02-16 15:20:01'); INSERT INTO `sys_job_log` VALUES (14678, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2802毫秒', '0', '', '2022-02-16 15:20:02'); INSERT INTO `sys_job_log` VALUES (14679, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:643毫秒', '0', '', '2022-02-16 15:30:00'); INSERT INTO `sys_job_log` VALUES (14680, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1083毫秒', '0', '', '2022-02-16 15:30:01'); INSERT INTO `sys_job_log` VALUES (14681, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-16 15:30:03'); INSERT INTO `sys_job_log` VALUES (14682, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:226毫秒', '0', '', '2022-02-16 15:40:00'); INSERT INTO `sys_job_log` VALUES (14683, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:874毫秒', '0', '', '2022-02-16 15:40:00'); INSERT INTO `sys_job_log` VALUES (14684, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1186毫秒', '0', '', '2022-02-16 15:40:01'); INSERT INTO `sys_job_log` VALUES (14685, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:693毫秒', '0', '', '2022-02-16 15:50:00'); INSERT INTO `sys_job_log` VALUES (14686, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:762毫秒', '0', '', '2022-02-16 15:50:00'); INSERT INTO `sys_job_log` VALUES (14687, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:662毫秒', '0', '', '2022-02-16 16:00:00'); INSERT INTO `sys_job_log` VALUES (14688, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:698毫秒', '0', '', '2022-02-16 16:00:00'); INSERT INTO `sys_job_log` VALUES (14689, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3015毫秒', '0', '', '2022-02-16 16:00:03'); INSERT INTO `sys_job_log` VALUES (14690, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3010毫秒', '0', '', '2022-02-16 16:00:03'); INSERT INTO `sys_job_log` VALUES (14691, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:800毫秒', '0', '', '2022-02-16 16:10:00'); INSERT INTO `sys_job_log` VALUES (14692, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1580毫秒', '0', '', '2022-02-16 16:10:01'); INSERT INTO `sys_job_log` VALUES (14693, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:655毫秒', '0', '', '2022-02-16 16:20:00'); INSERT INTO `sys_job_log` VALUES (14694, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2619毫秒', '0', '', '2022-02-16 16:20:02'); INSERT INTO `sys_job_log` VALUES (14695, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2999毫秒', '0', '', '2022-02-16 16:20:03'); INSERT INTO `sys_job_log` VALUES (14696, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-02-16 16:30:00'); INSERT INTO `sys_job_log` VALUES (14697, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3012毫秒', '0', '', '2022-02-16 16:30:03'); INSERT INTO `sys_job_log` VALUES (14698, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3006毫秒', '0', '', '2022-02-16 16:30:03'); INSERT INTO `sys_job_log` VALUES (14699, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:636毫秒', '0', '', '2022-02-16 16:40:00'); INSERT INTO `sys_job_log` VALUES (14700, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-16 16:40:03'); INSERT INTO `sys_job_log` VALUES (14701, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3141毫秒', '0', '', '2022-02-16 16:40:03'); INSERT INTO `sys_job_log` VALUES (14702, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-02-16 16:50:00'); INSERT INTO `sys_job_log` VALUES (14703, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2826毫秒', '0', '', '2022-02-16 16:50:02'); INSERT INTO `sys_job_log` VALUES (14704, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:21毫秒', '0', '', '2022-02-16 17:00:00'); INSERT INTO `sys_job_log` VALUES (14705, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:213毫秒', '0', '', '2022-02-16 17:00:00'); INSERT INTO `sys_job_log` VALUES (14706, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:664毫秒', '0', '', '2022-02-16 17:00:00'); INSERT INTO `sys_job_log` VALUES (14707, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1401毫秒', '0', '', '2022-02-16 17:00:01'); INSERT INTO `sys_job_log` VALUES (14708, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:655毫秒', '0', '', '2022-02-16 17:10:00'); INSERT INTO `sys_job_log` VALUES (14709, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1973毫秒', '0', '', '2022-02-16 17:10:01'); INSERT INTO `sys_job_log` VALUES (14710, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-02-16 17:20:00'); INSERT INTO `sys_job_log` VALUES (14711, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1167毫秒', '0', '', '2022-02-16 17:20:01'); INSERT INTO `sys_job_log` VALUES (14712, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-16 17:20:03'); INSERT INTO `sys_job_log` VALUES (14713, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:926毫秒', '0', '', '2022-02-16 17:30:00'); INSERT INTO `sys_job_log` VALUES (14714, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2284毫秒', '0', '', '2022-02-16 17:30:02'); INSERT INTO `sys_job_log` VALUES (14715, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3009毫秒', '0', '', '2022-02-16 17:30:03'); INSERT INTO `sys_job_log` VALUES (14716, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:179毫秒', '0', '', '2022-02-16 17:52:47'); INSERT INTO `sys_job_log` VALUES (14717, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:299毫秒', '0', '', '2022-02-16 17:52:47'); INSERT INTO `sys_job_log` VALUES (14718, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:191毫秒', '0', '', '2022-02-16 17:52:48'); INSERT INTO `sys_job_log` VALUES (14719, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1570毫秒', '0', '', '2022-02-16 17:52:49'); INSERT INTO `sys_job_log` VALUES (14720, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1140毫秒', '0', '', '2022-02-16 17:52:50'); INSERT INTO `sys_job_log` VALUES (14721, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:978毫秒', '0', '', '2022-02-16 18:00:01'); INSERT INTO `sys_job_log` VALUES (14722, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1511毫秒', '0', '', '2022-02-16 18:00:01'); INSERT INTO `sys_job_log` VALUES (14723, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-16 18:00:03'); INSERT INTO `sys_job_log` VALUES (14724, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-16 18:00:03'); INSERT INTO `sys_job_log` VALUES (14725, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1030毫秒', '0', '', '2022-02-16 18:10:01'); INSERT INTO `sys_job_log` VALUES (14726, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3274毫秒', '0', '', '2022-02-16 18:10:03'); INSERT INTO `sys_job_log` VALUES (14727, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:424毫秒', '0', '', '2022-02-16 18:20:00'); INSERT INTO `sys_job_log` VALUES (14728, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:819毫秒', '0', '', '2022-02-16 18:20:00'); INSERT INTO `sys_job_log` VALUES (14729, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2771毫秒', '0', '', '2022-02-16 18:20:02'); INSERT INTO `sys_job_log` VALUES (14730, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1184毫秒', '0', '', '2022-02-16 18:30:01'); INSERT INTO `sys_job_log` VALUES (14731, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1751毫秒', '0', '', '2022-02-16 18:30:01'); INSERT INTO `sys_job_log` VALUES (14732, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3011毫秒', '0', '', '2022-02-16 18:30:03'); INSERT INTO `sys_job_log` VALUES (14733, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-02-16 18:40:00'); INSERT INTO `sys_job_log` VALUES (14734, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2605毫秒', '0', '', '2022-02-16 18:40:02'); INSERT INTO `sys_job_log` VALUES (14735, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2991毫秒', '0', '', '2022-02-16 18:40:03'); INSERT INTO `sys_job_log` VALUES (14736, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:689毫秒', '0', '', '2022-02-16 18:50:00'); INSERT INTO `sys_job_log` VALUES (14737, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2240毫秒', '0', '', '2022-02-16 18:50:02'); INSERT INTO `sys_job_log` VALUES (14738, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:172毫秒', '0', '', '2022-02-16 19:00:00'); INSERT INTO `sys_job_log` VALUES (14739, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:356毫秒', '0', '', '2022-02-16 19:00:00'); INSERT INTO `sys_job_log` VALUES (14740, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1028毫秒', '0', '', '2022-02-16 19:00:01'); INSERT INTO `sys_job_log` VALUES (14741, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1924毫秒', '0', '', '2022-02-16 19:00:01'); INSERT INTO `sys_job_log` VALUES (14742, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-02-16 19:10:00'); INSERT INTO `sys_job_log` VALUES (14743, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2384毫秒', '0', '', '2022-02-16 19:10:02'); INSERT INTO `sys_job_log` VALUES (14744, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:770毫秒', '0', '', '2022-02-16 19:20:00'); INSERT INTO `sys_job_log` VALUES (14745, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2312毫秒', '0', '', '2022-02-16 19:20:02'); INSERT INTO `sys_job_log` VALUES (14746, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-16 19:20:03'); INSERT INTO `sys_job_log` VALUES (14747, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:904毫秒', '0', '', '2022-02-16 19:30:00'); INSERT INTO `sys_job_log` VALUES (14748, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3006毫秒', '0', '', '2022-02-16 19:30:03'); INSERT INTO `sys_job_log` VALUES (14749, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3211毫秒', '0', '', '2022-02-16 19:30:03'); INSERT INTO `sys_job_log` VALUES (14750, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:342毫秒', '0', '', '2022-02-16 19:40:00'); INSERT INTO `sys_job_log` VALUES (14751, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:776毫秒', '0', '', '2022-02-16 19:40:00'); INSERT INTO `sys_job_log` VALUES (14752, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3340毫秒', '0', '', '2022-02-16 19:40:03'); INSERT INTO `sys_job_log` VALUES (14753, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:641毫秒', '0', '', '2022-02-16 19:50:00'); INSERT INTO `sys_job_log` VALUES (14754, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5008毫秒', '0', '', '2022-02-16 19:50:05'); INSERT INTO `sys_job_log` VALUES (14755, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:129毫秒', '0', '', '2022-02-16 20:00:00'); INSERT INTO `sys_job_log` VALUES (14756, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:830毫秒', '0', '', '2022-02-16 20:00:00'); INSERT INTO `sys_job_log` VALUES (14757, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-16 20:00:03'); INSERT INTO `sys_job_log` VALUES (14758, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3149毫秒', '0', '', '2022-02-16 20:00:03'); INSERT INTO `sys_job_log` VALUES (14759, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:896毫秒', '0', '', '2022-02-16 20:10:00'); INSERT INTO `sys_job_log` VALUES (14760, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1361毫秒', '0', '', '2022-02-16 20:10:01'); INSERT INTO `sys_job_log` VALUES (14761, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:296毫秒', '0', '', '2022-02-16 20:20:00'); INSERT INTO `sys_job_log` VALUES (14762, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:635毫秒', '0', '', '2022-02-16 20:20:00'); INSERT INTO `sys_job_log` VALUES (14763, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4099毫秒', '0', '', '2022-02-16 20:20:04'); INSERT INTO `sys_job_log` VALUES (14764, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:719毫秒', '0', '', '2022-02-16 20:30:00'); INSERT INTO `sys_job_log` VALUES (14765, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1296毫秒', '0', '', '2022-02-16 20:30:01'); INSERT INTO `sys_job_log` VALUES (14766, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-16 20:30:03'); INSERT INTO `sys_job_log` VALUES (14767, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:686毫秒', '0', '', '2022-02-16 20:40:00'); INSERT INTO `sys_job_log` VALUES (14768, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2392毫秒', '0', '', '2022-02-16 20:40:02'); INSERT INTO `sys_job_log` VALUES (14769, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-16 20:40:03'); INSERT INTO `sys_job_log` VALUES (14770, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-02-16 20:50:00'); INSERT INTO `sys_job_log` VALUES (14771, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2912毫秒', '0', '', '2022-02-16 20:50:02'); INSERT INTO `sys_job_log` VALUES (14772, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:189毫秒', '0', '', '2022-02-16 21:00:00'); INSERT INTO `sys_job_log` VALUES (14773, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:353毫秒', '0', '', '2022-02-16 21:00:00'); INSERT INTO `sys_job_log` VALUES (14774, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:733毫秒', '0', '', '2022-02-16 21:00:00'); INSERT INTO `sys_job_log` VALUES (14775, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3375毫秒', '0', '', '2022-02-16 21:00:03'); INSERT INTO `sys_job_log` VALUES (14776, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1178毫秒', '0', '', '2022-02-16 21:10:01'); INSERT INTO `sys_job_log` VALUES (14777, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4280毫秒', '0', '', '2022-02-16 21:10:04'); INSERT INTO `sys_job_log` VALUES (14778, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:674毫秒', '0', '', '2022-02-16 21:20:00'); INSERT INTO `sys_job_log` VALUES (14779, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2674毫秒', '0', '', '2022-02-16 21:20:02'); INSERT INTO `sys_job_log` VALUES (14780, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-16 21:20:03'); INSERT INTO `sys_job_log` VALUES (14781, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:719毫秒', '0', '', '2022-02-16 21:30:00'); INSERT INTO `sys_job_log` VALUES (14782, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1915毫秒', '0', '', '2022-02-16 21:30:01'); INSERT INTO `sys_job_log` VALUES (14783, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-16 21:30:03'); INSERT INTO `sys_job_log` VALUES (14784, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:269毫秒', '0', '', '2022-02-16 21:40:00'); INSERT INTO `sys_job_log` VALUES (14785, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:607毫秒', '0', '', '2022-02-16 21:40:00'); INSERT INTO `sys_job_log` VALUES (14786, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2140毫秒', '0', '', '2022-02-16 21:40:02'); INSERT INTO `sys_job_log` VALUES (14787, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:665毫秒', '0', '', '2022-02-16 21:50:00'); INSERT INTO `sys_job_log` VALUES (14788, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1967毫秒', '0', '', '2022-02-16 21:50:01'); INSERT INTO `sys_job_log` VALUES (14789, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:4毫秒', '0', '', '2022-02-16 22:00:00'); INSERT INTO `sys_job_log` VALUES (14790, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-02-16 22:00:00'); INSERT INTO `sys_job_log` VALUES (14791, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2448毫秒', '0', '', '2022-02-16 22:00:02'); INSERT INTO `sys_job_log` VALUES (14792, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-16 22:00:03'); INSERT INTO `sys_job_log` VALUES (14793, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:595毫秒', '0', '', '2022-02-16 22:10:00'); INSERT INTO `sys_job_log` VALUES (14794, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1975毫秒', '0', '', '2022-02-16 22:10:01'); INSERT INTO `sys_job_log` VALUES (14795, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1553毫秒', '0', '', '2022-02-16 22:20:01'); INSERT INTO `sys_job_log` VALUES (14796, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1955毫秒', '0', '', '2022-02-16 22:20:01'); INSERT INTO `sys_job_log` VALUES (14797, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3169毫秒', '0', '', '2022-02-16 22:20:03'); INSERT INTO `sys_job_log` VALUES (14798, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:6毫秒', '0', '', '2022-02-16 22:30:00'); INSERT INTO `sys_job_log` VALUES (14799, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2643毫秒', '0', '', '2022-02-16 22:30:02'); INSERT INTO `sys_job_log` VALUES (14800, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3671毫秒', '0', '', '2022-02-16 22:30:03'); INSERT INTO `sys_job_log` VALUES (14801, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3369毫秒', '0', '', '2022-02-17 08:50:03'); INSERT INTO `sys_job_log` VALUES (14802, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:17558毫秒', '0', '', '2022-02-17 08:50:17'); INSERT INTO `sys_job_log` VALUES (14803, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3012毫秒', '0', '', '2022-02-17 09:00:03'); INSERT INTO `sys_job_log` VALUES (14804, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3006毫秒', '0', '', '2022-02-17 09:00:03'); INSERT INTO `sys_job_log` VALUES (14805, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3030毫秒', '0', '', '2022-02-17 09:00:03'); INSERT INTO `sys_job_log` VALUES (14806, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4902毫秒', '0', '', '2022-02-17 09:00:04'); INSERT INTO `sys_job_log` VALUES (14807, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-02-17 09:10:00'); INSERT INTO `sys_job_log` VALUES (14808, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1479毫秒', '0', '', '2022-02-17 09:10:01'); INSERT INTO `sys_job_log` VALUES (14809, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3048毫秒', '0', '', '2022-02-17 09:16:50'); INSERT INTO `sys_job_log` VALUES (14810, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:677毫秒', '0', '', '2022-02-17 09:20:00'); INSERT INTO `sys_job_log` VALUES (14811, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1047毫秒', '0', '', '2022-02-17 09:20:01'); INSERT INTO `sys_job_log` VALUES (14812, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2308毫秒', '0', '', '2022-02-17 09:20:02'); INSERT INTO `sys_job_log` VALUES (14813, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:856毫秒', '0', '', '2022-02-17 09:20:48'); INSERT INTO `sys_job_log` VALUES (14814, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-17 09:22:50'); INSERT INTO `sys_job_log` VALUES (14815, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 09:25:50'); INSERT INTO `sys_job_log` VALUES (14816, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:631毫秒', '0', '', '2022-02-17 09:30:00'); INSERT INTO `sys_job_log` VALUES (14817, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3008毫秒', '0', '', '2022-02-17 09:30:03'); INSERT INTO `sys_job_log` VALUES (14818, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3555毫秒', '0', '', '2022-02-17 09:30:03'); INSERT INTO `sys_job_log` VALUES (14819, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:185毫秒', '0', '', '2022-02-17 09:40:00'); INSERT INTO `sys_job_log` VALUES (14820, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:916毫秒', '0', '', '2022-02-17 09:40:00'); INSERT INTO `sys_job_log` VALUES (14821, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2310毫秒', '0', '', '2022-02-17 09:40:02'); INSERT INTO `sys_job_log` VALUES (14822, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-02-17 09:50:00'); INSERT INTO `sys_job_log` VALUES (14823, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2054毫秒', '0', '', '2022-02-17 09:50:02'); INSERT INTO `sys_job_log` VALUES (14824, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:164毫秒', '0', '', '2022-02-17 10:00:00'); INSERT INTO `sys_job_log` VALUES (14825, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:594毫秒', '0', '', '2022-02-17 10:00:00'); INSERT INTO `sys_job_log` VALUES (14826, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3010毫秒', '0', '', '2022-02-17 10:00:03'); INSERT INTO `sys_job_log` VALUES (14827, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7502毫秒', '0', '', '2022-02-17 10:00:07'); INSERT INTO `sys_job_log` VALUES (14828, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1245毫秒', '0', '', '2022-02-17 10:10:01'); INSERT INTO `sys_job_log` VALUES (14829, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1746毫秒', '0', '', '2022-02-17 10:10:01'); INSERT INTO `sys_job_log` VALUES (14830, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1182毫秒', '0', '', '2022-02-17 10:20:01'); INSERT INTO `sys_job_log` VALUES (14831, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2728毫秒', '0', '', '2022-02-17 10:20:02'); INSERT INTO `sys_job_log` VALUES (14832, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3393毫秒', '0', '', '2022-02-17 10:20:03'); INSERT INTO `sys_job_log` VALUES (14833, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-02-17 10:30:00'); INSERT INTO `sys_job_log` VALUES (14834, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2329毫秒', '0', '', '2022-02-17 10:30:02'); INSERT INTO `sys_job_log` VALUES (14835, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 10:30:03'); INSERT INTO `sys_job_log` VALUES (14836, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:591毫秒', '0', '', '2022-02-17 10:40:00'); INSERT INTO `sys_job_log` VALUES (14837, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1166毫秒', '0', '', '2022-02-17 10:40:01'); INSERT INTO `sys_job_log` VALUES (14838, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2842毫秒', '0', '', '2022-02-17 10:40:02'); INSERT INTO `sys_job_log` VALUES (14839, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:2052毫秒', '0', '', '2022-02-17 10:49:50'); INSERT INTO `sys_job_log` VALUES (14840, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:618毫秒', '0', '', '2022-02-17 10:50:00'); INSERT INTO `sys_job_log` VALUES (14841, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1368毫秒', '0', '', '2022-02-17 10:50:01'); INSERT INTO `sys_job_log` VALUES (14842, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 10:53:15'); INSERT INTO `sys_job_log` VALUES (14843, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:635毫秒', '0', '', '2022-02-17 10:55:01'); INSERT INTO `sys_job_log` VALUES (14844, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:945毫秒', '0', '', '2022-02-17 11:00:00'); INSERT INTO `sys_job_log` VALUES (14845, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1754毫秒', '0', '', '2022-02-17 11:00:01'); INSERT INTO `sys_job_log` VALUES (14846, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2624毫秒', '0', '', '2022-02-17 11:00:02'); INSERT INTO `sys_job_log` VALUES (14847, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-17 11:00:03'); INSERT INTO `sys_job_log` VALUES (14848, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:560毫秒', '0', '', '2022-02-17 11:05:01'); INSERT INTO `sys_job_log` VALUES (14849, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 11:07:51'); INSERT INTO `sys_job_log` VALUES (14850, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:491毫秒', '0', '', '2022-02-17 11:10:00'); INSERT INTO `sys_job_log` VALUES (14851, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2006毫秒', '0', '', '2022-02-17 11:10:02'); INSERT INTO `sys_job_log` VALUES (14852, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 11:17:15'); INSERT INTO `sys_job_log` VALUES (14853, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:537毫秒', '0', '', '2022-02-17 11:20:00'); INSERT INTO `sys_job_log` VALUES (14854, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1133毫秒', '0', '', '2022-02-17 11:20:01'); INSERT INTO `sys_job_log` VALUES (14855, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1340毫秒', '0', '', '2022-02-17 11:20:01'); INSERT INTO `sys_job_log` VALUES (14856, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-02-17 11:30:00'); INSERT INTO `sys_job_log` VALUES (14857, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1607毫秒', '0', '', '2022-02-17 11:30:01'); INSERT INTO `sys_job_log` VALUES (14858, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3018毫秒', '0', '', '2022-02-17 11:30:03'); INSERT INTO `sys_job_log` VALUES (14859, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:587毫秒', '0', '', '2022-02-17 11:40:00'); INSERT INTO `sys_job_log` VALUES (14860, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2656毫秒', '0', '', '2022-02-17 11:40:02'); INSERT INTO `sys_job_log` VALUES (14861, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4045毫秒', '0', '', '2022-02-17 11:40:04'); INSERT INTO `sys_job_log` VALUES (14862, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-02-17 11:50:00'); INSERT INTO `sys_job_log` VALUES (14863, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4620毫秒', '0', '', '2022-02-17 11:50:04'); INSERT INTO `sys_job_log` VALUES (14864, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:569毫秒', '0', '', '2022-02-17 12:00:00'); INSERT INTO `sys_job_log` VALUES (14865, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1130毫秒', '0', '', '2022-02-17 12:00:01'); INSERT INTO `sys_job_log` VALUES (14866, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 12:00:03'); INSERT INTO `sys_job_log` VALUES (14867, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3439毫秒', '0', '', '2022-02-17 12:00:03'); INSERT INTO `sys_job_log` VALUES (14868, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:581毫秒', '0', '', '2022-02-17 12:10:00'); INSERT INTO `sys_job_log` VALUES (14869, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2704毫秒', '0', '', '2022-02-17 12:10:02'); INSERT INTO `sys_job_log` VALUES (14870, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-02-17 12:20:00'); INSERT INTO `sys_job_log` VALUES (14871, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2599毫秒', '0', '', '2022-02-17 12:20:02'); INSERT INTO `sys_job_log` VALUES (14872, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3008毫秒', '0', '', '2022-02-17 12:20:03'); INSERT INTO `sys_job_log` VALUES (14873, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:900毫秒', '0', '', '2022-02-17 12:30:00'); INSERT INTO `sys_job_log` VALUES (14874, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2321毫秒', '0', '', '2022-02-17 12:30:02'); INSERT INTO `sys_job_log` VALUES (14875, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 12:30:03'); INSERT INTO `sys_job_log` VALUES (14876, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:191毫秒', '0', '', '2022-02-17 12:40:00'); INSERT INTO `sys_job_log` VALUES (14877, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-02-17 12:40:00'); INSERT INTO `sys_job_log` VALUES (14878, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2452毫秒', '0', '', '2022-02-17 12:40:02'); INSERT INTO `sys_job_log` VALUES (14879, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-02-17 12:50:00'); INSERT INTO `sys_job_log` VALUES (14880, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3156毫秒', '0', '', '2022-02-17 12:50:03'); INSERT INTO `sys_job_log` VALUES (14881, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:707毫秒', '0', '', '2022-02-17 13:00:00'); INSERT INTO `sys_job_log` VALUES (14882, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 13:00:03'); INSERT INTO `sys_job_log` VALUES (14883, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 13:00:03'); INSERT INTO `sys_job_log` VALUES (14884, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4164毫秒', '0', '', '2022-02-17 13:00:04'); INSERT INTO `sys_job_log` VALUES (14885, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-02-17 13:10:00'); INSERT INTO `sys_job_log` VALUES (14886, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2432毫秒', '0', '', '2022-02-17 13:10:02'); INSERT INTO `sys_job_log` VALUES (14887, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-02-17 13:20:00'); INSERT INTO `sys_job_log` VALUES (14888, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1154毫秒', '0', '', '2022-02-17 13:20:01'); INSERT INTO `sys_job_log` VALUES (14889, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3575毫秒', '0', '', '2022-02-17 13:20:03'); INSERT INTO `sys_job_log` VALUES (14890, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:526毫秒', '0', '', '2022-02-17 13:30:00'); INSERT INTO `sys_job_log` VALUES (14891, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1666毫秒', '0', '', '2022-02-17 13:30:01'); INSERT INTO `sys_job_log` VALUES (14892, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-17 13:30:03'); INSERT INTO `sys_job_log` VALUES (14893, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:561毫秒', '0', '', '2022-02-17 13:40:00'); INSERT INTO `sys_job_log` VALUES (14894, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1947毫秒', '0', '', '2022-02-17 13:40:01'); INSERT INTO `sys_job_log` VALUES (14895, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2585毫秒', '0', '', '2022-02-17 13:40:02'); INSERT INTO `sys_job_log` VALUES (14896, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:951毫秒', '0', '', '2022-02-17 13:50:00'); INSERT INTO `sys_job_log` VALUES (14897, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1315毫秒', '0', '', '2022-02-17 13:50:01'); INSERT INTO `sys_job_log` VALUES (14898, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:262毫秒', '0', '', '2022-02-17 14:00:00'); INSERT INTO `sys_job_log` VALUES (14899, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:825毫秒', '0', '', '2022-02-17 14:00:00'); INSERT INTO `sys_job_log` VALUES (14900, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2861毫秒', '0', '', '2022-02-17 14:00:02'); INSERT INTO `sys_job_log` VALUES (14901, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3014毫秒', '0', '', '2022-02-17 14:00:03'); INSERT INTO `sys_job_log` VALUES (14902, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1706毫秒', '0', '', '2022-02-17 14:10:01'); INSERT INTO `sys_job_log` VALUES (14903, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3630毫秒', '0', '', '2022-02-17 14:10:03'); INSERT INTO `sys_job_log` VALUES (14904, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:421毫秒', '0', '', '2022-02-17 14:20:00'); INSERT INTO `sys_job_log` VALUES (14905, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:786毫秒', '0', '', '2022-02-17 14:20:00'); INSERT INTO `sys_job_log` VALUES (14906, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3723毫秒', '0', '', '2022-02-17 14:20:03'); INSERT INTO `sys_job_log` VALUES (14907, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2333毫秒', '0', '', '2022-02-17 14:30:02'); INSERT INTO `sys_job_log` VALUES (14908, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3007毫秒', '0', '', '2022-02-17 14:30:03'); INSERT INTO `sys_job_log` VALUES (14909, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4052毫秒', '0', '', '2022-02-17 14:30:04'); INSERT INTO `sys_job_log` VALUES (14910, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1880毫秒', '0', '', '2022-02-17 14:40:01'); INSERT INTO `sys_job_log` VALUES (14911, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2027毫秒', '0', '', '2022-02-17 14:40:02'); INSERT INTO `sys_job_log` VALUES (14912, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2246毫秒', '0', '', '2022-02-17 14:40:02'); INSERT INTO `sys_job_log` VALUES (14913, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1059毫秒', '0', '', '2022-02-17 14:50:01'); INSERT INTO `sys_job_log` VALUES (14914, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1817毫秒', '0', '', '2022-02-17 14:50:01'); INSERT INTO `sys_job_log` VALUES (14915, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3010毫秒', '0', '', '2022-02-17 15:00:03'); INSERT INTO `sys_job_log` VALUES (14916, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3009毫秒', '0', '', '2022-02-17 15:00:03'); INSERT INTO `sys_job_log` VALUES (14917, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-17 15:00:03'); INSERT INTO `sys_job_log` VALUES (14918, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6209毫秒', '0', '', '2022-02-17 15:00:06'); INSERT INTO `sys_job_log` VALUES (14919, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 15:07:53'); INSERT INTO `sys_job_log` VALUES (14920, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:931毫秒', '0', '', '2022-02-17 15:10:00'); INSERT INTO `sys_job_log` VALUES (14921, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5087毫秒', '0', '', '2022-02-17 15:10:05'); INSERT INTO `sys_job_log` VALUES (14922, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2624毫秒', '0', '', '2022-02-17 15:20:02'); INSERT INTO `sys_job_log` VALUES (14923, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 15:20:03'); INSERT INTO `sys_job_log` VALUES (14924, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5327毫秒', '0', '', '2022-02-17 15:20:05'); INSERT INTO `sys_job_log` VALUES (14925, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-17 15:27:29'); INSERT INTO `sys_job_log` VALUES (14926, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 15:29:53'); INSERT INTO `sys_job_log` VALUES (14927, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:776毫秒', '0', '', '2022-02-17 15:30:00'); INSERT INTO `sys_job_log` VALUES (14928, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1566毫秒', '0', '', '2022-02-17 15:30:01'); INSERT INTO `sys_job_log` VALUES (14929, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3002毫秒', '0', '', '2022-02-17 15:30:03'); INSERT INTO `sys_job_log` VALUES (14930, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 15:33:53'); INSERT INTO `sys_job_log` VALUES (14931, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 15:36:53'); INSERT INTO `sys_job_log` VALUES (14932, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 15:38:41'); INSERT INTO `sys_job_log` VALUES (14933, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:256毫秒', '0', '', '2022-02-17 15:40:00'); INSERT INTO `sys_job_log` VALUES (14934, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:722毫秒', '0', '', '2022-02-17 15:40:00'); INSERT INTO `sys_job_log` VALUES (14935, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2198毫秒', '0', '', '2022-02-17 15:40:02'); INSERT INTO `sys_job_log` VALUES (14936, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 15:41:17'); INSERT INTO `sys_job_log` VALUES (14937, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 15:44:29'); INSERT INTO `sys_job_log` VALUES (14938, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:1128毫秒', '0', '', '2022-02-17 15:48:40'); INSERT INTO `sys_job_log` VALUES (14939, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 15:49:53'); INSERT INTO `sys_job_log` VALUES (14940, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:739毫秒', '0', '', '2022-02-17 15:50:00'); INSERT INTO `sys_job_log` VALUES (14941, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1536毫秒', '0', '', '2022-02-17 15:50:01'); INSERT INTO `sys_job_log` VALUES (14942, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 15:52:05'); INSERT INTO `sys_job_log` VALUES (14943, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:16毫秒', '0', '', '2022-02-17 15:52:38'); INSERT INTO `sys_job_log` VALUES (14944, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 15:53:41'); INSERT INTO `sys_job_log` VALUES (14945, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 16:00:03'); INSERT INTO `sys_job_log` VALUES (14946, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 16:00:03'); INSERT INTO `sys_job_log` VALUES (14947, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-17 16:00:03'); INSERT INTO `sys_job_log` VALUES (14948, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 16:00:03'); INSERT INTO `sys_job_log` VALUES (14949, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7702毫秒', '0', '', '2022-02-17 16:00:07'); INSERT INTO `sys_job_log` VALUES (14950, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-17 16:01:42'); INSERT INTO `sys_job_log` VALUES (14951, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-17 16:09:18'); INSERT INTO `sys_job_log` VALUES (14952, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:770毫秒', '0', '', '2022-02-17 16:10:00'); INSERT INTO `sys_job_log` VALUES (14953, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2924毫秒', '0', '', '2022-02-17 16:10:02'); INSERT INTO `sys_job_log` VALUES (14954, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 16:13:06'); INSERT INTO `sys_job_log` VALUES (14955, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:195毫秒', '0', '', '2022-02-17 16:20:00'); INSERT INTO `sys_job_log` VALUES (14956, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-02-17 16:20:00'); INSERT INTO `sys_job_log` VALUES (14957, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:988毫秒', '0', '', '2022-02-17 16:20:00'); INSERT INTO `sys_job_log` VALUES (14958, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:775毫秒', '0', '', '2022-02-17 16:30:00'); INSERT INTO `sys_job_log` VALUES (14959, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3474毫秒', '0', '', '2022-02-17 16:30:03'); INSERT INTO `sys_job_log` VALUES (14960, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:909毫秒', '0', '', '2022-02-17 16:40:00'); INSERT INTO `sys_job_log` VALUES (14961, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1487毫秒', '0', '', '2022-02-17 16:40:01'); INSERT INTO `sys_job_log` VALUES (14962, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2267毫秒', '0', '', '2022-02-17 16:40:02'); INSERT INTO `sys_job_log` VALUES (14963, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1477毫秒', '0', '', '2022-02-17 16:50:01'); INSERT INTO `sys_job_log` VALUES (14964, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2731毫秒', '0', '', '2022-02-17 16:50:02'); INSERT INTO `sys_job_log` VALUES (14965, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1360毫秒', '0', '', '2022-02-17 17:00:01'); INSERT INTO `sys_job_log` VALUES (14966, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1994毫秒', '0', '', '2022-02-17 17:00:02'); INSERT INTO `sys_job_log` VALUES (14967, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-17 17:00:03'); INSERT INTO `sys_job_log` VALUES (14968, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3509毫秒', '0', '', '2022-02-17 17:00:03'); INSERT INTO `sys_job_log` VALUES (14969, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:686毫秒', '0', '', '2022-02-17 17:10:00'); INSERT INTO `sys_job_log` VALUES (14970, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1962毫秒', '0', '', '2022-02-17 17:10:01'); INSERT INTO `sys_job_log` VALUES (14971, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-02-17 17:20:00'); INSERT INTO `sys_job_log` VALUES (14972, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1143毫秒', '0', '', '2022-02-17 17:20:01'); INSERT INTO `sys_job_log` VALUES (14973, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5862毫秒', '0', '', '2022-02-17 17:20:05'); INSERT INTO `sys_job_log` VALUES (14974, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1707毫秒', '0', '', '2022-02-17 17:30:01'); INSERT INTO `sys_job_log` VALUES (14975, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3146毫秒', '0', '', '2022-02-17 17:30:03'); INSERT INTO `sys_job_log` VALUES (14976, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1671毫秒', '0', '', '2022-02-17 17:55:19'); INSERT INTO `sys_job_log` VALUES (14977, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:725毫秒', '0', '', '2022-02-17 17:55:20'); INSERT INTO `sys_job_log` VALUES (14978, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3006毫秒', '0', '', '2022-02-17 17:55:21'); INSERT INTO `sys_job_log` VALUES (14979, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5896毫秒', '0', '', '2022-02-17 17:55:24'); INSERT INTO `sys_job_log` VALUES (14980, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2024毫秒', '0', '', '2022-02-17 17:55:26'); INSERT INTO `sys_job_log` VALUES (14981, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:393毫秒', '0', '', '2022-02-17 18:00:00'); INSERT INTO `sys_job_log` VALUES (14982, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:909毫秒', '0', '', '2022-02-17 18:00:00'); INSERT INTO `sys_job_log` VALUES (14983, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-17 18:00:03'); INSERT INTO `sys_job_log` VALUES (14984, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3887毫秒', '0', '', '2022-02-17 18:00:03'); INSERT INTO `sys_job_log` VALUES (14985, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:725毫秒', '0', '', '2022-02-17 18:10:00'); INSERT INTO `sys_job_log` VALUES (14986, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3530毫秒', '0', '', '2022-02-17 18:10:03'); INSERT INTO `sys_job_log` VALUES (14987, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:433毫秒', '0', '', '2022-02-17 18:20:00'); INSERT INTO `sys_job_log` VALUES (14988, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:835毫秒', '0', '', '2022-02-17 18:20:00'); INSERT INTO `sys_job_log` VALUES (14989, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6122毫秒', '0', '', '2022-02-17 18:20:06'); INSERT INTO `sys_job_log` VALUES (14990, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:817毫秒', '0', '', '2022-02-17 18:30:00'); INSERT INTO `sys_job_log` VALUES (14991, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3272毫秒', '0', '', '2022-02-17 18:30:03'); INSERT INTO `sys_job_log` VALUES (14992, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:820毫秒', '0', '', '2022-02-17 18:40:00'); INSERT INTO `sys_job_log` VALUES (14993, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2258毫秒', '0', '', '2022-02-17 18:40:02'); INSERT INTO `sys_job_log` VALUES (14994, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 18:40:03'); INSERT INTO `sys_job_log` VALUES (14995, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:721毫秒', '0', '', '2022-02-17 18:50:00'); INSERT INTO `sys_job_log` VALUES (14996, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2576毫秒', '0', '', '2022-02-17 18:50:02'); INSERT INTO `sys_job_log` VALUES (14997, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:228毫秒', '0', '', '2022-02-17 19:00:00'); INSERT INTO `sys_job_log` VALUES (14998, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:389毫秒', '0', '', '2022-02-17 19:00:00'); INSERT INTO `sys_job_log` VALUES (14999, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:915毫秒', '0', '', '2022-02-17 19:00:00'); INSERT INTO `sys_job_log` VALUES (15000, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2912毫秒', '0', '', '2022-02-17 19:00:02'); INSERT INTO `sys_job_log` VALUES (15001, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1091毫秒', '0', '', '2022-02-17 19:10:01'); INSERT INTO `sys_job_log` VALUES (15002, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1853毫秒', '0', '', '2022-02-17 19:10:01'); INSERT INTO `sys_job_log` VALUES (15003, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:765毫秒', '0', '', '2022-02-17 19:20:00'); INSERT INTO `sys_job_log` VALUES (15004, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 19:20:03'); INSERT INTO `sys_job_log` VALUES (15005, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4712毫秒', '0', '', '2022-02-17 19:20:04'); INSERT INTO `sys_job_log` VALUES (15006, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1757毫秒', '0', '', '2022-02-17 19:30:01'); INSERT INTO `sys_job_log` VALUES (15007, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2741毫秒', '0', '', '2022-02-17 19:30:02'); INSERT INTO `sys_job_log` VALUES (15008, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:349毫秒', '0', '', '2022-02-17 19:40:00'); INSERT INTO `sys_job_log` VALUES (15009, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:823毫秒', '0', '', '2022-02-17 19:40:00'); INSERT INTO `sys_job_log` VALUES (15010, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1294毫秒', '0', '', '2022-02-17 19:40:01'); INSERT INTO `sys_job_log` VALUES (15011, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:899毫秒', '0', '', '2022-02-17 19:50:00'); INSERT INTO `sys_job_log` VALUES (15012, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2183毫秒', '0', '', '2022-02-17 19:50:02'); INSERT INTO `sys_job_log` VALUES (15013, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:825毫秒', '0', '', '2022-02-17 20:00:00'); INSERT INTO `sys_job_log` VALUES (15014, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1301毫秒', '0', '', '2022-02-17 20:00:01'); INSERT INTO `sys_job_log` VALUES (15015, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 20:00:03'); INSERT INTO `sys_job_log` VALUES (15016, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 20:00:03'); INSERT INTO `sys_job_log` VALUES (15017, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1079毫秒', '0', '', '2022-02-17 20:10:01'); INSERT INTO `sys_job_log` VALUES (15018, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3217毫秒', '0', '', '2022-02-17 20:10:03'); INSERT INTO `sys_job_log` VALUES (15019, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:306毫秒', '0', '', '2022-02-17 20:20:00'); INSERT INTO `sys_job_log` VALUES (15020, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:757毫秒', '0', '', '2022-02-17 20:20:00'); INSERT INTO `sys_job_log` VALUES (15021, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3636毫秒', '0', '', '2022-02-17 20:20:03'); INSERT INTO `sys_job_log` VALUES (15022, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:806毫秒', '0', '', '2022-02-17 20:30:00'); INSERT INTO `sys_job_log` VALUES (15023, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2862毫秒', '0', '', '2022-02-17 20:30:02'); INSERT INTO `sys_job_log` VALUES (15024, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3014毫秒', '0', '', '2022-02-17 20:40:03'); INSERT INTO `sys_job_log` VALUES (15025, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 20:40:03'); INSERT INTO `sys_job_log` VALUES (15026, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6313毫秒', '0', '', '2022-02-17 20:40:06'); INSERT INTO `sys_job_log` VALUES (15027, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:999毫秒', '0', '', '2022-02-17 20:50:01'); INSERT INTO `sys_job_log` VALUES (15028, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3135毫秒', '0', '', '2022-02-17 20:50:03'); INSERT INTO `sys_job_log` VALUES (15029, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:240毫秒', '0', '', '2022-02-17 21:00:00'); INSERT INTO `sys_job_log` VALUES (15030, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:376毫秒', '0', '', '2022-02-17 21:00:00'); INSERT INTO `sys_job_log` VALUES (15031, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:608毫秒', '0', '', '2022-02-17 21:00:00'); INSERT INTO `sys_job_log` VALUES (15032, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4039毫秒', '0', '', '2022-02-17 21:00:04'); INSERT INTO `sys_job_log` VALUES (15033, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1243毫秒', '0', '', '2022-02-17 21:10:01'); INSERT INTO `sys_job_log` VALUES (15034, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1932毫秒', '0', '', '2022-02-17 21:10:01'); INSERT INTO `sys_job_log` VALUES (15035, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:304毫秒', '0', '', '2022-02-17 21:20:00'); INSERT INTO `sys_job_log` VALUES (15036, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:710毫秒', '0', '', '2022-02-17 21:20:00'); INSERT INTO `sys_job_log` VALUES (15037, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2180毫秒', '0', '', '2022-02-17 21:20:02'); INSERT INTO `sys_job_log` VALUES (15038, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:732毫秒', '0', '', '2022-02-17 21:30:00'); INSERT INTO `sys_job_log` VALUES (15039, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2903毫秒', '0', '', '2022-02-17 21:30:02'); INSERT INTO `sys_job_log` VALUES (15040, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:307毫秒', '0', '', '2022-02-17 21:40:00'); INSERT INTO `sys_job_log` VALUES (15041, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:807毫秒', '0', '', '2022-02-17 21:40:00'); INSERT INTO `sys_job_log` VALUES (15042, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3317毫秒', '0', '', '2022-02-17 21:40:03'); INSERT INTO `sys_job_log` VALUES (15043, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3285毫秒', '0', '', '2022-02-17 21:50:03'); INSERT INTO `sys_job_log` VALUES (15044, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5214毫秒', '0', '', '2022-02-17 21:50:05'); INSERT INTO `sys_job_log` VALUES (15045, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:862毫秒', '0', '', '2022-02-17 22:00:00'); INSERT INTO `sys_job_log` VALUES (15046, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3007毫秒', '0', '', '2022-02-17 22:00:03'); INSERT INTO `sys_job_log` VALUES (15047, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3025毫秒', '0', '', '2022-02-17 22:00:03'); INSERT INTO `sys_job_log` VALUES (15048, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6425毫秒', '0', '', '2022-02-17 22:00:06'); INSERT INTO `sys_job_log` VALUES (15049, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:746毫秒', '0', '', '2022-02-17 22:10:00'); INSERT INTO `sys_job_log` VALUES (15050, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2057毫秒', '0', '', '2022-02-17 22:10:02'); INSERT INTO `sys_job_log` VALUES (15051, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:403毫秒', '0', '', '2022-02-17 22:20:00'); INSERT INTO `sys_job_log` VALUES (15052, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:988毫秒', '0', '', '2022-02-17 22:20:01'); INSERT INTO `sys_job_log` VALUES (15053, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2316毫秒', '0', '', '2022-02-17 22:20:02'); INSERT INTO `sys_job_log` VALUES (15054, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1086毫秒', '0', '', '2022-02-17 22:30:01'); INSERT INTO `sys_job_log` VALUES (15055, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1333毫秒', '0', '', '2022-02-17 22:30:01'); INSERT INTO `sys_job_log` VALUES (15056, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-17 22:30:07'); INSERT INTO `sys_job_log` VALUES (15057, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1553毫秒', '0', '', '2022-02-17 22:40:01'); INSERT INTO `sys_job_log` VALUES (15058, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-17 22:40:03'); INSERT INTO `sys_job_log` VALUES (15059, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4321毫秒', '0', '', '2022-02-17 22:40:04'); INSERT INTO `sys_job_log` VALUES (15060, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3084毫秒', '0', '', '2022-02-18 08:37:51'); INSERT INTO `sys_job_log` VALUES (15061, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:316毫秒', '0', '', '2022-02-18 08:40:00'); INSERT INTO `sys_job_log` VALUES (15062, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:996毫秒', '0', '', '2022-02-18 08:40:01'); INSERT INTO `sys_job_log` VALUES (15063, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1912毫秒', '0', '', '2022-02-18 08:40:01'); INSERT INTO `sys_job_log` VALUES (15064, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2640毫秒', '0', '', '2022-02-18 08:50:02'); INSERT INTO `sys_job_log` VALUES (15065, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4779毫秒', '0', '', '2022-02-18 08:50:04'); INSERT INTO `sys_job_log` VALUES (15066, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:166毫秒', '0', '', '2022-02-18 09:00:00'); INSERT INTO `sys_job_log` VALUES (15067, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:541毫秒', '0', '', '2022-02-18 09:00:00'); INSERT INTO `sys_job_log` VALUES (15068, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-02-18 09:00:00'); INSERT INTO `sys_job_log` VALUES (15069, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3581毫秒', '0', '', '2022-02-18 09:00:03'); INSERT INTO `sys_job_log` VALUES (15070, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:522毫秒', '0', '', '2022-02-18 09:10:00'); INSERT INTO `sys_job_log` VALUES (15071, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2092毫秒', '0', '', '2022-02-18 09:10:02'); INSERT INTO `sys_job_log` VALUES (15072, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:184毫秒', '0', '', '2022-02-18 09:20:00'); INSERT INTO `sys_job_log` VALUES (15073, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1553毫秒', '0', '', '2022-02-18 09:20:01'); INSERT INTO `sys_job_log` VALUES (15074, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5326毫秒', '0', '', '2022-02-18 09:20:05'); INSERT INTO `sys_job_log` VALUES (15075, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:527毫秒', '0', '', '2022-02-18 09:30:00'); INSERT INTO `sys_job_log` VALUES (15076, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3917毫秒', '0', '', '2022-02-18 09:30:03'); INSERT INTO `sys_job_log` VALUES (15077, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-02-18 09:40:00'); INSERT INTO `sys_job_log` VALUES (15078, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1140毫秒', '0', '', '2022-02-18 09:40:01'); INSERT INTO `sys_job_log` VALUES (15079, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1894毫秒', '0', '', '2022-02-18 09:40:01'); INSERT INTO `sys_job_log` VALUES (15080, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-02-18 09:50:00'); INSERT INTO `sys_job_log` VALUES (15081, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3083毫秒', '0', '', '2022-02-18 09:50:03'); INSERT INTO `sys_job_log` VALUES (15082, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:175毫秒', '0', '', '2022-02-18 10:00:00'); INSERT INTO `sys_job_log` VALUES (15083, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:564毫秒', '0', '', '2022-02-18 10:00:00'); INSERT INTO `sys_job_log` VALUES (15084, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1037毫秒', '0', '', '2022-02-18 10:00:01'); INSERT INTO `sys_job_log` VALUES (15085, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3015毫秒', '0', '', '2022-02-18 10:00:03'); INSERT INTO `sys_job_log` VALUES (15086, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:707毫秒', '0', '', '2022-02-18 10:10:00'); INSERT INTO `sys_job_log` VALUES (15087, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3935毫秒', '0', '', '2022-02-18 10:10:03'); INSERT INTO `sys_job_log` VALUES (15088, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:176毫秒', '0', '', '2022-02-18 10:20:00'); INSERT INTO `sys_job_log` VALUES (15089, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:530毫秒', '0', '', '2022-02-18 10:20:00'); INSERT INTO `sys_job_log` VALUES (15090, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1919毫秒', '0', '', '2022-02-18 10:20:01'); INSERT INTO `sys_job_log` VALUES (15091, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-02-18 10:30:00'); INSERT INTO `sys_job_log` VALUES (15092, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2070毫秒', '0', '', '2022-02-18 10:30:02'); INSERT INTO `sys_job_log` VALUES (15093, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:542毫秒', '0', '', '2022-02-18 10:40:00'); INSERT INTO `sys_job_log` VALUES (15094, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2516毫秒', '0', '', '2022-02-18 10:40:02'); INSERT INTO `sys_job_log` VALUES (15095, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3006毫秒', '0', '', '2022-02-18 10:40:03'); INSERT INTO `sys_job_log` VALUES (15096, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-02-18 10:50:00'); INSERT INTO `sys_job_log` VALUES (15097, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1308毫秒', '0', '', '2022-02-18 10:50:01'); INSERT INTO `sys_job_log` VALUES (15098, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:329毫秒', '0', '', '2022-02-18 11:00:00'); INSERT INTO `sys_job_log` VALUES (15099, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3005毫秒', '0', '', '2022-02-18 11:00:03'); INSERT INTO `sys_job_log` VALUES (15100, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-18 11:00:03'); INSERT INTO `sys_job_log` VALUES (15101, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3009毫秒', '0', '', '2022-02-18 11:00:03'); INSERT INTO `sys_job_log` VALUES (15102, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9872毫秒', '0', '', '2022-02-18 11:00:09'); INSERT INTO `sys_job_log` VALUES (15103, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:495毫秒', '0', '', '2022-02-18 11:10:00'); INSERT INTO `sys_job_log` VALUES (15104, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3079毫秒', '0', '', '2022-02-18 11:10:03'); INSERT INTO `sys_job_log` VALUES (15105, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-02-18 11:20:00'); INSERT INTO `sys_job_log` VALUES (15106, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1925毫秒', '0', '', '2022-02-18 11:20:01'); INSERT INTO `sys_job_log` VALUES (15107, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3017毫秒', '0', '', '2022-02-18 11:20:03'); INSERT INTO `sys_job_log` VALUES (15108, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1560毫秒', '0', '', '2022-02-18 11:30:01'); INSERT INTO `sys_job_log` VALUES (15109, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2659毫秒', '0', '', '2022-02-18 11:30:02'); INSERT INTO `sys_job_log` VALUES (15110, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:144毫秒', '0', '', '2022-02-18 11:40:00'); INSERT INTO `sys_job_log` VALUES (15111, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:472毫秒', '0', '', '2022-02-18 11:40:00'); INSERT INTO `sys_job_log` VALUES (15112, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1380毫秒', '0', '', '2022-02-18 11:40:01'); INSERT INTO `sys_job_log` VALUES (15113, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:540毫秒', '0', '', '2022-02-18 11:50:00'); INSERT INTO `sys_job_log` VALUES (15114, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5253毫秒', '0', '', '2022-02-18 11:50:05'); INSERT INTO `sys_job_log` VALUES (15115, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:80毫秒', '0', '', '2022-02-18 12:00:00'); INSERT INTO `sys_job_log` VALUES (15116, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:167毫秒', '0', '', '2022-02-18 12:00:00'); INSERT INTO `sys_job_log` VALUES (15117, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:711毫秒', '0', '', '2022-02-18 12:00:00'); INSERT INTO `sys_job_log` VALUES (15118, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3096毫秒', '0', '', '2022-02-18 12:00:03'); INSERT INTO `sys_job_log` VALUES (15119, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-02-18 12:10:00'); INSERT INTO `sys_job_log` VALUES (15120, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:972毫秒', '0', '', '2022-02-18 12:10:00'); INSERT INTO `sys_job_log` VALUES (15121, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:866毫秒', '0', '', '2022-02-18 12:20:00'); INSERT INTO `sys_job_log` VALUES (15122, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3013毫秒', '0', '', '2022-02-18 12:20:03'); INSERT INTO `sys_job_log` VALUES (15123, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4602毫秒', '0', '', '2022-02-18 12:20:04'); INSERT INTO `sys_job_log` VALUES (15124, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-02-18 12:30:00'); INSERT INTO `sys_job_log` VALUES (15125, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2932毫秒', '0', '', '2022-02-18 12:30:02'); INSERT INTO `sys_job_log` VALUES (15126, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:667毫秒', '0', '', '2022-02-18 12:40:00'); INSERT INTO `sys_job_log` VALUES (15127, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1133毫秒', '0', '', '2022-02-18 12:40:01'); INSERT INTO `sys_job_log` VALUES (15128, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2821毫秒', '0', '', '2022-02-18 12:40:02'); INSERT INTO `sys_job_log` VALUES (15129, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-02-18 12:50:00'); INSERT INTO `sys_job_log` VALUES (15130, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4179毫秒', '0', '', '2022-02-18 12:50:04'); INSERT INTO `sys_job_log` VALUES (15131, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:265毫秒', '0', '', '2022-02-18 13:00:00'); INSERT INTO `sys_job_log` VALUES (15132, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:631毫秒', '0', '', '2022-02-18 13:00:00'); INSERT INTO `sys_job_log` VALUES (15133, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3006毫秒', '0', '', '2022-02-18 13:00:03'); INSERT INTO `sys_job_log` VALUES (15134, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3875毫秒', '0', '', '2022-02-18 13:00:03'); INSERT INTO `sys_job_log` VALUES (15135, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3003毫秒', '0', '', '2022-02-18 13:10:03'); INSERT INTO `sys_job_log` VALUES (15136, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:14623毫秒', '0', '', '2022-02-18 13:10:14'); INSERT INTO `sys_job_log` VALUES (15137, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2644毫秒', '0', '', '2022-02-18 13:20:02'); INSERT INTO `sys_job_log` VALUES (15138, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3003毫秒', '0', '', '2022-02-18 13:20:03'); INSERT INTO `sys_job_log` VALUES (15139, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5674毫秒', '0', '', '2022-02-18 13:20:05'); INSERT INTO `sys_job_log` VALUES (15140, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:470毫秒', '0', '', '2022-02-18 13:30:00'); INSERT INTO `sys_job_log` VALUES (15141, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1008毫秒', '0', '', '2022-02-18 13:30:01'); INSERT INTO `sys_job_log` VALUES (15142, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:201毫秒', '0', '', '2022-02-18 13:40:00'); INSERT INTO `sys_job_log` VALUES (15143, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:771毫秒', '0', '', '2022-02-18 13:40:00'); INSERT INTO `sys_job_log` VALUES (15144, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1012毫秒', '0', '', '2022-02-18 13:40:01'); INSERT INTO `sys_job_log` VALUES (15145, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1233毫秒', '0', '', '2022-02-18 13:50:01'); INSERT INTO `sys_job_log` VALUES (15146, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1946毫秒', '0', '', '2022-02-18 13:50:01'); INSERT INTO `sys_job_log` VALUES (15147, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1523毫秒', '0', '', '2022-02-18 14:00:01'); INSERT INTO `sys_job_log` VALUES (15148, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2041毫秒', '0', '', '2022-02-18 14:00:02'); INSERT INTO `sys_job_log` VALUES (15149, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3012毫秒', '0', '', '2022-02-18 14:00:03'); INSERT INTO `sys_job_log` VALUES (15150, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3437毫秒', '0', '', '2022-02-18 14:00:03'); INSERT INTO `sys_job_log` VALUES (15151, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2005毫秒', '0', '', '2022-02-18 14:10:02'); INSERT INTO `sys_job_log` VALUES (15152, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3416毫秒', '0', '', '2022-02-18 14:10:03'); INSERT INTO `sys_job_log` VALUES (15153, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1264毫秒', '0', '', '2022-02-18 14:20:01'); INSERT INTO `sys_job_log` VALUES (15154, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1754毫秒', '0', '', '2022-02-18 14:20:01'); INSERT INTO `sys_job_log` VALUES (15155, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4561毫秒', '0', '', '2022-02-18 14:20:04'); INSERT INTO `sys_job_log` VALUES (15156, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1707毫秒', '0', '', '2022-02-18 14:30:01'); INSERT INTO `sys_job_log` VALUES (15157, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6861毫秒', '0', '', '2022-02-18 14:30:06'); INSERT INTO `sys_job_log` VALUES (15158, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:194毫秒', '0', '', '2022-02-18 14:40:00'); INSERT INTO `sys_job_log` VALUES (15159, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-02-18 14:40:00'); INSERT INTO `sys_job_log` VALUES (15160, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4028毫秒', '0', '', '2022-02-18 14:40:04'); INSERT INTO `sys_job_log` VALUES (15161, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-02-18 14:50:00'); INSERT INTO `sys_job_log` VALUES (15162, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1610毫秒', '0', '', '2022-02-18 14:50:01'); INSERT INTO `sys_job_log` VALUES (15163, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:501毫秒', '0', '', '2022-02-18 15:00:00'); INSERT INTO `sys_job_log` VALUES (15164, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1288毫秒', '0', '', '2022-02-18 15:00:01'); INSERT INTO `sys_job_log` VALUES (15165, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1678毫秒', '0', '', '2022-02-18 15:00:01'); INSERT INTO `sys_job_log` VALUES (15166, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-18 15:00:03'); INSERT INTO `sys_job_log` VALUES (15167, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4640毫秒', '0', '', '2022-02-18 15:00:04'); INSERT INTO `sys_job_log` VALUES (15168, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:974毫秒', '0', '', '2022-02-18 15:10:00'); INSERT INTO `sys_job_log` VALUES (15169, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1532毫秒', '0', '', '2022-02-18 15:10:01'); INSERT INTO `sys_job_log` VALUES (15170, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:984毫秒', '0', '', '2022-02-18 15:20:01'); INSERT INTO `sys_job_log` VALUES (15171, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1494毫秒', '0', '', '2022-02-18 15:20:01'); INSERT INTO `sys_job_log` VALUES (15172, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3052毫秒', '0', '', '2022-02-18 15:20:03'); INSERT INTO `sys_job_log` VALUES (15173, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1854毫秒', '0', '', '2022-02-18 15:30:01'); INSERT INTO `sys_job_log` VALUES (15174, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4885毫秒', '0', '', '2022-02-18 15:30:04'); INSERT INTO `sys_job_log` VALUES (15175, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1161毫秒', '0', '', '2022-02-18 15:40:01'); INSERT INTO `sys_job_log` VALUES (15176, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1268毫秒', '0', '', '2022-02-18 15:40:01'); INSERT INTO `sys_job_log` VALUES (15177, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2696毫秒', '0', '', '2022-02-18 15:40:02'); INSERT INTO `sys_job_log` VALUES (15178, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:551毫秒', '0', '', '2022-02-18 15:50:00'); INSERT INTO `sys_job_log` VALUES (15179, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4976毫秒', '0', '', '2022-02-18 15:50:04'); INSERT INTO `sys_job_log` VALUES (15180, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:777毫秒', '0', '', '2022-02-18 16:00:00'); INSERT INTO `sys_job_log` VALUES (15181, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1185毫秒', '0', '', '2022-02-18 16:00:01'); INSERT INTO `sys_job_log` VALUES (15182, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3019毫秒', '0', '', '2022-02-18 16:00:03'); INSERT INTO `sys_job_log` VALUES (15183, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5984毫秒', '0', '', '2022-02-18 16:00:06'); INSERT INTO `sys_job_log` VALUES (15184, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-02-18 16:10:00'); INSERT INTO `sys_job_log` VALUES (15185, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3531毫秒', '0', '', '2022-02-18 16:10:03'); INSERT INTO `sys_job_log` VALUES (15186, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:191毫秒', '0', '', '2022-02-18 16:20:00'); INSERT INTO `sys_job_log` VALUES (15187, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-02-18 16:20:00'); INSERT INTO `sys_job_log` VALUES (15188, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1770毫秒', '0', '', '2022-02-18 16:20:01'); INSERT INTO `sys_job_log` VALUES (15189, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-02-18 16:30:00'); INSERT INTO `sys_job_log` VALUES (15190, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1779毫秒', '0', '', '2022-02-18 16:30:01'); INSERT INTO `sys_job_log` VALUES (15191, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:779毫秒', '0', '', '2022-02-18 16:40:00'); INSERT INTO `sys_job_log` VALUES (15192, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2480毫秒', '0', '', '2022-02-18 16:40:02'); INSERT INTO `sys_job_log` VALUES (15193, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-18 16:40:03'); INSERT INTO `sys_job_log` VALUES (15194, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:805毫秒', '0', '', '2022-02-18 16:50:00'); INSERT INTO `sys_job_log` VALUES (15195, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1551毫秒', '0', '', '2022-02-18 16:50:01'); INSERT INTO `sys_job_log` VALUES (15196, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:212毫秒', '0', '', '2022-02-18 17:00:00'); INSERT INTO `sys_job_log` VALUES (15197, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:756毫秒', '0', '', '2022-02-18 17:00:00'); INSERT INTO `sys_job_log` VALUES (15198, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2346毫秒', '0', '', '2022-02-18 17:00:02'); INSERT INTO `sys_job_log` VALUES (15199, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-18 17:00:03'); INSERT INTO `sys_job_log` VALUES (15200, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2528毫秒', '0', '', '2022-02-18 17:10:02'); INSERT INTO `sys_job_log` VALUES (15201, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4657毫秒', '0', '', '2022-02-18 17:10:04'); INSERT INTO `sys_job_log` VALUES (15202, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1558毫秒', '0', '', '2022-02-18 17:20:01'); INSERT INTO `sys_job_log` VALUES (15203, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2243毫秒', '0', '', '2022-02-18 17:20:02'); INSERT INTO `sys_job_log` VALUES (15204, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4620毫秒', '0', '', '2022-02-18 17:20:04'); INSERT INTO `sys_job_log` VALUES (15205, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-02-18 17:30:00'); INSERT INTO `sys_job_log` VALUES (15206, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5199毫秒', '0', '', '2022-02-18 17:30:05'); INSERT INTO `sys_job_log` VALUES (15207, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:264毫秒', '0', '', '2022-02-18 17:40:00'); INSERT INTO `sys_job_log` VALUES (15208, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-02-18 17:40:00'); INSERT INTO `sys_job_log` VALUES (15209, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2541毫秒', '0', '', '2022-02-18 17:40:02'); INSERT INTO `sys_job_log` VALUES (15210, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1036毫秒', '0', '', '2022-02-18 17:59:26'); INSERT INTO `sys_job_log` VALUES (15211, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3188毫秒', '0', '', '2022-02-18 17:59:28'); INSERT INTO `sys_job_log` VALUES (15212, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:883毫秒', '0', '', '2022-02-18 18:00:00'); INSERT INTO `sys_job_log` VALUES (15213, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3010毫秒', '0', '', '2022-02-18 18:00:03'); INSERT INTO `sys_job_log` VALUES (15214, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3017毫秒', '0', '', '2022-02-18 18:00:03'); INSERT INTO `sys_job_log` VALUES (15215, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6108毫秒', '0', '', '2022-02-18 18:00:06'); INSERT INTO `sys_job_log` VALUES (15216, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:821毫秒', '0', '', '2022-02-18 18:10:00'); INSERT INTO `sys_job_log` VALUES (15217, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3169毫秒', '0', '', '2022-02-18 18:10:03'); INSERT INTO `sys_job_log` VALUES (15218, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:378毫秒', '0', '', '2022-02-18 18:20:00'); INSERT INTO `sys_job_log` VALUES (15219, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:811毫秒', '0', '', '2022-02-18 18:20:00'); INSERT INTO `sys_job_log` VALUES (15220, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4069毫秒', '0', '', '2022-02-18 18:20:04'); INSERT INTO `sys_job_log` VALUES (15221, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:980毫秒', '0', '', '2022-02-18 18:30:01'); INSERT INTO `sys_job_log` VALUES (15222, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4710毫秒', '0', '', '2022-02-18 18:30:04'); INSERT INTO `sys_job_log` VALUES (15223, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:852毫秒', '0', '', '2022-02-18 18:40:00'); INSERT INTO `sys_job_log` VALUES (15224, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3010毫秒', '0', '', '2022-02-18 18:40:03'); INSERT INTO `sys_job_log` VALUES (15225, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4071毫秒', '0', '', '2022-02-18 18:40:04'); INSERT INTO `sys_job_log` VALUES (15226, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:791毫秒', '0', '', '2022-02-18 18:50:00'); INSERT INTO `sys_job_log` VALUES (15227, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4904毫秒', '0', '', '2022-02-18 18:50:04'); INSERT INTO `sys_job_log` VALUES (15228, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:239毫秒', '0', '', '2022-02-18 19:00:00'); INSERT INTO `sys_job_log` VALUES (15229, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:373毫秒', '0', '', '2022-02-18 19:00:00'); INSERT INTO `sys_job_log` VALUES (15230, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:781毫秒', '0', '', '2022-02-18 19:00:00'); INSERT INTO `sys_job_log` VALUES (15231, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1157毫秒', '0', '', '2022-02-18 19:00:01'); INSERT INTO `sys_job_log` VALUES (15232, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1975毫秒', '0', '', '2022-02-18 19:00:01'); INSERT INTO `sys_job_log` VALUES (15233, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1064毫秒', '0', '', '2022-02-18 19:10:01'); INSERT INTO `sys_job_log` VALUES (15234, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2146毫秒', '0', '', '2022-02-18 19:10:02'); INSERT INTO `sys_job_log` VALUES (15235, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:849毫秒', '0', '', '2022-02-18 19:20:00'); INSERT INTO `sys_job_log` VALUES (15236, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3018毫秒', '0', '', '2022-02-18 19:20:03'); INSERT INTO `sys_job_log` VALUES (15237, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3693毫秒', '0', '', '2022-02-18 19:20:03'); INSERT INTO `sys_job_log` VALUES (15238, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1117毫秒', '0', '', '2022-02-18 19:30:01'); INSERT INTO `sys_job_log` VALUES (15239, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2060毫秒', '0', '', '2022-02-18 19:30:02'); INSERT INTO `sys_job_log` VALUES (15240, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:347毫秒', '0', '', '2022-02-18 21:00:00'); INSERT INTO `sys_job_log` VALUES (15241, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:380毫秒', '0', '', '2022-02-18 21:00:00'); INSERT INTO `sys_job_log` VALUES (15242, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:398毫秒', '0', '', '2022-02-18 21:00:00'); INSERT INTO `sys_job_log` VALUES (15243, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:443毫秒', '0', '', '2022-02-18 21:00:00'); INSERT INTO `sys_job_log` VALUES (15244, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:780毫秒', '0', '', '2022-02-18 21:10:00'); INSERT INTO `sys_job_log` VALUES (15245, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2210毫秒', '0', '', '2022-02-18 21:10:02'); INSERT INTO `sys_job_log` VALUES (15246, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1044毫秒', '0', '', '2022-02-18 21:20:01'); INSERT INTO `sys_job_log` VALUES (15247, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1545毫秒', '0', '', '2022-02-18 21:20:01'); INSERT INTO `sys_job_log` VALUES (15248, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2299毫秒', '0', '', '2022-02-18 21:20:02'); INSERT INTO `sys_job_log` VALUES (15249, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1093毫秒', '0', '', '2022-02-18 21:30:01'); INSERT INTO `sys_job_log` VALUES (15250, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2724毫秒', '0', '', '2022-02-18 21:30:02'); INSERT INTO `sys_job_log` VALUES (15251, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:797毫秒', '0', '', '2022-02-18 21:40:00'); INSERT INTO `sys_job_log` VALUES (15252, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3018毫秒', '0', '', '2022-02-18 21:40:03'); INSERT INTO `sys_job_log` VALUES (15253, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6433毫秒', '0', '', '2022-02-18 21:40:06'); INSERT INTO `sys_job_log` VALUES (15254, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:695毫秒', '0', '', '2022-02-18 21:50:00'); INSERT INTO `sys_job_log` VALUES (15255, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1650毫秒', '0', '', '2022-02-18 21:50:01'); INSERT INTO `sys_job_log` VALUES (15256, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:185毫秒', '0', '', '2022-02-18 22:00:00'); INSERT INTO `sys_job_log` VALUES (15257, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:819毫秒', '0', '', '2022-02-18 22:00:00'); INSERT INTO `sys_job_log` VALUES (15258, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2263毫秒', '0', '', '2022-02-18 22:00:02'); INSERT INTO `sys_job_log` VALUES (15259, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-18 22:00:03'); INSERT INTO `sys_job_log` VALUES (15260, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1087毫秒', '0', '', '2022-02-18 22:10:01'); INSERT INTO `sys_job_log` VALUES (15261, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1918毫秒', '0', '', '2022-02-18 22:10:01'); INSERT INTO `sys_job_log` VALUES (15262, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:333毫秒', '0', '', '2022-02-18 22:20:00'); INSERT INTO `sys_job_log` VALUES (15263, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:689毫秒', '0', '', '2022-02-18 22:20:00'); INSERT INTO `sys_job_log` VALUES (15264, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3682毫秒', '0', '', '2022-02-18 22:20:03'); INSERT INTO `sys_job_log` VALUES (15265, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-02-18 22:30:00'); INSERT INTO `sys_job_log` VALUES (15266, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1593毫秒', '0', '', '2022-02-18 22:30:01'); INSERT INTO `sys_job_log` VALUES (15267, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:328毫秒', '0', '', '2022-02-18 22:40:00'); INSERT INTO `sys_job_log` VALUES (15268, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:981毫秒', '0', '', '2022-02-18 22:40:01'); INSERT INTO `sys_job_log` VALUES (15269, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1585毫秒', '0', '', '2022-02-18 22:40:01'); INSERT INTO `sys_job_log` VALUES (15270, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:850毫秒', '0', '', '2022-02-18 22:50:00'); INSERT INTO `sys_job_log` VALUES (15271, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1345毫秒', '0', '', '2022-02-18 22:50:01'); INSERT INTO `sys_job_log` VALUES (15272, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:218毫秒', '0', '', '2022-02-18 23:00:00'); INSERT INTO `sys_job_log` VALUES (15273, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:765毫秒', '0', '', '2022-02-18 23:00:00'); INSERT INTO `sys_job_log` VALUES (15274, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2267毫秒', '0', '', '2022-02-18 23:00:02'); INSERT INTO `sys_job_log` VALUES (15275, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3014毫秒', '0', '', '2022-02-18 23:00:03'); INSERT INTO `sys_job_log` VALUES (15276, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3027毫秒', '0', '', '2022-02-18 23:00:03'); INSERT INTO `sys_job_log` VALUES (15277, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1863毫秒', '0', '', '2022-02-18 23:10:01'); INSERT INTO `sys_job_log` VALUES (15278, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3095毫秒', '0', '', '2022-02-18 23:10:03'); INSERT INTO `sys_job_log` VALUES (15279, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:370毫秒', '0', '', '2022-02-18 23:20:00'); INSERT INTO `sys_job_log` VALUES (15280, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-02-18 23:20:00'); INSERT INTO `sys_job_log` VALUES (15281, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4552毫秒', '0', '', '2022-02-18 23:20:04'); INSERT INTO `sys_job_log` VALUES (15282, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:905毫秒', '0', '', '2022-02-18 23:30:00'); INSERT INTO `sys_job_log` VALUES (15283, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2096毫秒', '0', '', '2022-02-18 23:30:02'); INSERT INTO `sys_job_log` VALUES (15284, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1231毫秒', '0', '', '2022-02-18 23:40:01'); INSERT INTO `sys_job_log` VALUES (15285, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2561毫秒', '0', '', '2022-02-18 23:40:02'); INSERT INTO `sys_job_log` VALUES (15286, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2941毫秒', '0', '', '2022-02-18 23:40:02'); INSERT INTO `sys_job_log` VALUES (15287, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:748毫秒', '0', '', '2022-02-18 23:50:00'); INSERT INTO `sys_job_log` VALUES (15288, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2395毫秒', '0', '', '2022-02-18 23:50:02'); INSERT INTO `sys_job_log` VALUES (15289, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:573毫秒', '0', '', '2022-02-19 00:00:00'); INSERT INTO `sys_job_log` VALUES (15290, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:906毫秒', '0', '', '2022-02-19 00:00:00'); INSERT INTO `sys_job_log` VALUES (15291, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2044毫秒', '0', '', '2022-02-19 00:00:02'); INSERT INTO `sys_job_log` VALUES (15292, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3006毫秒', '0', '', '2022-02-19 00:00:03'); INSERT INTO `sys_job_log` VALUES (15293, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:529毫秒', '0', '', '2022-02-19 00:00:10'); INSERT INTO `sys_job_log` VALUES (15294, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1005毫秒', '0', '', '2022-02-19 00:10:01'); INSERT INTO `sys_job_log` VALUES (15295, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2132毫秒', '0', '', '2022-02-19 00:10:02'); INSERT INTO `sys_job_log` VALUES (15296, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:793毫秒', '0', '', '2022-02-19 00:20:00'); INSERT INTO `sys_job_log` VALUES (15297, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-19 00:20:03'); INSERT INTO `sys_job_log` VALUES (15298, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4218毫秒', '0', '', '2022-02-19 00:20:04'); INSERT INTO `sys_job_log` VALUES (15299, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1347毫秒', '0', '', '2022-02-19 03:29:28'); INSERT INTO `sys_job_log` VALUES (15300, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:717毫秒', '0', '', '2022-02-19 03:29:29'); INSERT INTO `sys_job_log` VALUES (15301, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:771毫秒', '0', '', '2022-02-19 03:29:30'); INSERT INTO `sys_job_log` VALUES (15302, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3010毫秒', '0', '', '2022-02-19 03:29:30'); INSERT INTO `sys_job_log` VALUES (15303, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3006毫秒', '0', '', '2022-02-19 03:29:30'); INSERT INTO `sys_job_log` VALUES (15304, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3011毫秒', '0', '', '2022-02-19 03:29:30'); INSERT INTO `sys_job_log` VALUES (15305, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3158毫秒', '0', '', '2022-02-19 03:29:30'); INSERT INTO `sys_job_log` VALUES (15306, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:63毫秒', '0', '', '2022-02-19 03:29:30'); INSERT INTO `sys_job_log` VALUES (15307, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:802毫秒', '0', '', '2022-02-19 03:29:30'); INSERT INTO `sys_job_log` VALUES (15308, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:650毫秒', '0', '', '2022-02-19 03:29:31'); INSERT INTO `sys_job_log` VALUES (15309, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1834毫秒', '0', '', '2022-02-19 03:29:32'); INSERT INTO `sys_job_log` VALUES (15310, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-02-19 03:29:32'); INSERT INTO `sys_job_log` VALUES (15311, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:665毫秒', '0', '', '2022-02-19 03:29:32'); INSERT INTO `sys_job_log` VALUES (15312, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2865毫秒', '0', '', '2022-02-19 03:29:33'); INSERT INTO `sys_job_log` VALUES (15313, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3007毫秒', '0', '', '2022-02-19 03:29:33'); INSERT INTO `sys_job_log` VALUES (15314, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:568毫秒', '0', '', '2022-02-19 03:29:33'); INSERT INTO `sys_job_log` VALUES (15315, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:20013996毫秒', '0', '', '2022-02-19 09:03:06'); INSERT INTO `sys_job_log` VALUES (15316, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:20015384毫秒', '0', '', '2022-02-19 09:03:09'); INSERT INTO `sys_job_log` VALUES (15317, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:20020030毫秒', '0', '', '2022-02-19 09:03:12'); INSERT INTO `sys_job_log` VALUES (15318, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3011毫秒', '0', '', '2022-02-19 09:03:15'); INSERT INTO `sys_job_log` VALUES (15319, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3023毫秒', '0', '', '2022-02-19 09:03:16'); INSERT INTO `sys_job_log` VALUES (15320, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3058毫秒', '0', '', '2022-02-19 09:03:17'); INSERT INTO `sys_job_log` VALUES (15321, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3015毫秒', '0', '', '2022-02-19 09:03:18'); INSERT INTO `sys_job_log` VALUES (15322, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3009毫秒', '0', '', '2022-02-19 09:03:19'); INSERT INTO `sys_job_log` VALUES (15323, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3009毫秒', '0', '', '2022-02-19 09:03:19'); INSERT INTO `sys_job_log` VALUES (15324, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3008毫秒', '0', '', '2022-02-19 09:03:23'); INSERT INTO `sys_job_log` VALUES (15325, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3008毫秒', '0', '', '2022-02-19 09:03:25'); INSERT INTO `sys_job_log` VALUES (15326, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3011毫秒', '0', '', '2022-02-19 09:03:26'); INSERT INTO `sys_job_log` VALUES (15327, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3058毫秒', '0', '', '2022-02-19 09:03:28'); INSERT INTO `sys_job_log` VALUES (15328, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3017毫秒', '0', '', '2022-02-19 09:03:28'); INSERT INTO `sys_job_log` VALUES (15329, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:14912毫秒', '0', '', '2022-02-19 09:03:29'); INSERT INTO `sys_job_log` VALUES (15330, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3075毫秒', '0', '', '2022-02-19 09:03:30'); INSERT INTO `sys_job_log` VALUES (15331, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:396毫秒', '0', '', '2022-02-19 09:03:30'); INSERT INTO `sys_job_log` VALUES (15332, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2138毫秒', '0', '', '2022-02-19 09:03:31'); INSERT INTO `sys_job_log` VALUES (15333, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:314毫秒', '0', '', '2022-02-19 09:03:31'); INSERT INTO `sys_job_log` VALUES (15334, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:319毫秒', '0', '', '2022-02-19 09:03:31'); INSERT INTO `sys_job_log` VALUES (15335, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3028毫秒', '0', '', '2022-02-19 09:03:31'); INSERT INTO `sys_job_log` VALUES (15336, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:565毫秒', '0', '', '2022-02-19 09:03:32'); INSERT INTO `sys_job_log` VALUES (15337, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3496毫秒', '0', '', '2022-02-19 09:03:32'); INSERT INTO `sys_job_log` VALUES (15338, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:360毫秒', '0', '', '2022-02-19 09:03:33'); INSERT INTO `sys_job_log` VALUES (15339, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2650毫秒', '0', '', '2022-02-19 09:03:33'); INSERT INTO `sys_job_log` VALUES (15340, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:558毫秒', '0', '', '2022-02-19 09:03:34'); INSERT INTO `sys_job_log` VALUES (15341, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:298毫秒', '0', '', '2022-02-19 09:03:34'); INSERT INTO `sys_job_log` VALUES (15342, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3030毫秒', '0', '', '2022-02-19 09:03:35'); INSERT INTO `sys_job_log` VALUES (15343, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:491毫秒', '0', '', '2022-02-19 09:03:35'); INSERT INTO `sys_job_log` VALUES (15344, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:328毫秒', '0', '', '2022-02-19 09:03:36'); INSERT INTO `sys_job_log` VALUES (15345, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2279毫秒', '0', '', '2022-02-19 09:03:36'); INSERT INTO `sys_job_log` VALUES (15346, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:310毫秒', '0', '', '2022-02-19 09:03:36'); INSERT INTO `sys_job_log` VALUES (15347, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:290毫秒', '0', '', '2022-02-19 09:03:37'); INSERT INTO `sys_job_log` VALUES (15348, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:313毫秒', '0', '', '2022-02-19 09:03:37'); INSERT INTO `sys_job_log` VALUES (15349, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:351毫秒', '0', '', '2022-02-19 09:03:38'); INSERT INTO `sys_job_log` VALUES (15350, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3009毫秒', '0', '', '2022-02-19 09:03:38'); INSERT INTO `sys_job_log` VALUES (15351, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2113毫秒', '0', '', '2022-02-19 09:03:38'); INSERT INTO `sys_job_log` VALUES (15352, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:343毫秒', '0', '', '2022-02-19 09:03:38'); INSERT INTO `sys_job_log` VALUES (15353, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6076毫秒', '0', '', '2022-02-19 09:03:39'); INSERT INTO `sys_job_log` VALUES (15354, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:262毫秒', '0', '', '2022-02-19 09:03:39'); INSERT INTO `sys_job_log` VALUES (15355, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:277毫秒', '0', '', '2022-02-19 09:03:39'); INSERT INTO `sys_job_log` VALUES (15356, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1246毫秒', '0', '', '2022-02-19 09:03:40'); INSERT INTO `sys_job_log` VALUES (15357, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:413毫秒', '0', '', '2022-02-19 09:03:40'); INSERT INTO `sys_job_log` VALUES (15358, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:161毫秒', '0', '', '2022-02-19 09:03:40'); INSERT INTO `sys_job_log` VALUES (15359, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:663毫秒', '0', '', '2022-02-19 09:03:41'); INSERT INTO `sys_job_log` VALUES (15360, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-02-19 09:03:41'); INSERT INTO `sys_job_log` VALUES (15361, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:632毫秒', '0', '', '2022-02-19 09:03:42'); INSERT INTO `sys_job_log` VALUES (15362, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:672毫秒', '0', '', '2022-02-19 09:03:43'); INSERT INTO `sys_job_log` VALUES (15363, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4265毫秒', '0', '', '2022-02-19 09:03:43'); INSERT INTO `sys_job_log` VALUES (15364, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:788毫秒', '0', '', '2022-02-19 09:03:43'); INSERT INTO `sys_job_log` VALUES (15365, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:926毫秒', '0', '', '2022-02-19 09:03:44'); INSERT INTO `sys_job_log` VALUES (15366, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:988毫秒', '0', '', '2022-02-19 09:03:45'); INSERT INTO `sys_job_log` VALUES (15367, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:598毫秒', '0', '', '2022-02-19 09:03:46'); INSERT INTO `sys_job_log` VALUES (15368, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-02-19 09:03:47'); INSERT INTO `sys_job_log` VALUES (15369, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-02-19 09:03:47'); INSERT INTO `sys_job_log` VALUES (15370, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7341毫秒', '0', '', '2022-02-19 09:03:51'); INSERT INTO `sys_job_log` VALUES (15371, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3409毫秒', '0', '', '2022-02-19 09:03:51'); INSERT INTO `sys_job_log` VALUES (15372, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-02-19 09:03:51'); INSERT INTO `sys_job_log` VALUES (15373, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:993毫秒', '0', '', '2022-02-19 09:03:52'); INSERT INTO `sys_job_log` VALUES (15374, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2265毫秒', '0', '', '2022-02-19 09:03:53'); INSERT INTO `sys_job_log` VALUES (15375, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1098毫秒', '0', '', '2022-02-19 09:03:53'); INSERT INTO `sys_job_log` VALUES (15376, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:675毫秒', '0', '', '2022-02-19 09:03:54'); INSERT INTO `sys_job_log` VALUES (15377, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:780毫秒', '0', '', '2022-02-19 09:03:55'); INSERT INTO `sys_job_log` VALUES (15378, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2355毫秒', '0', '', '2022-02-19 09:03:55'); INSERT INTO `sys_job_log` VALUES (15379, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:791毫秒', '0', '', '2022-02-19 09:03:56'); INSERT INTO `sys_job_log` VALUES (15380, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:874毫秒', '0', '', '2022-02-19 09:03:57'); INSERT INTO `sys_job_log` VALUES (15381, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1735毫秒', '0', '', '2022-02-19 09:03:57'); INSERT INTO `sys_job_log` VALUES (15382, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:639毫秒', '0', '', '2022-02-19 09:03:57'); INSERT INTO `sys_job_log` VALUES (15383, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:735毫秒', '0', '', '2022-02-19 09:03:58'); INSERT INTO `sys_job_log` VALUES (15384, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1636毫秒', '0', '', '2022-02-19 09:03:59'); INSERT INTO `sys_job_log` VALUES (15385, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:789毫秒', '0', '', '2022-02-19 09:03:59'); INSERT INTO `sys_job_log` VALUES (15386, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1459毫秒', '0', '', '2022-02-19 09:04:01'); INSERT INTO `sys_job_log` VALUES (15387, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:783毫秒', '0', '', '2022-02-19 09:04:01'); INSERT INTO `sys_job_log` VALUES (15388, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:738毫秒', '0', '', '2022-02-19 09:04:02'); INSERT INTO `sys_job_log` VALUES (15389, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3443毫秒', '0', '', '2022-02-19 09:04:02'); INSERT INTO `sys_job_log` VALUES (15390, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:650毫秒', '0', '', '2022-02-19 09:04:03'); INSERT INTO `sys_job_log` VALUES (15391, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2855毫秒', '0', '', '2022-02-19 09:04:06'); INSERT INTO `sys_job_log` VALUES (15392, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2120毫秒', '0', '', '2022-02-19 09:04:08'); INSERT INTO `sys_job_log` VALUES (15393, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6976毫秒', '0', '', '2022-02-19 09:04:09'); INSERT INTO `sys_job_log` VALUES (15394, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2763毫秒', '0', '', '2022-02-19 09:04:11'); INSERT INTO `sys_job_log` VALUES (15395, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:878毫秒', '0', '', '2022-02-19 09:04:12'); INSERT INTO `sys_job_log` VALUES (15396, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3158毫秒', '0', '', '2022-02-19 09:04:13'); INSERT INTO `sys_job_log` VALUES (15397, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:579毫秒', '0', '', '2022-02-19 09:04:13'); INSERT INTO `sys_job_log` VALUES (15398, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:782毫秒', '0', '', '2022-02-19 09:04:13'); INSERT INTO `sys_job_log` VALUES (15399, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:724毫秒', '0', '', '2022-02-19 09:04:14'); INSERT INTO `sys_job_log` VALUES (15400, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:752毫秒', '0', '', '2022-02-19 09:04:15'); INSERT INTO `sys_job_log` VALUES (15401, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:821毫秒', '0', '', '2022-02-19 09:04:16'); INSERT INTO `sys_job_log` VALUES (15402, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:664毫秒', '0', '', '2022-02-19 09:04:16'); INSERT INTO `sys_job_log` VALUES (15403, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4494毫秒', '0', '', '2022-02-19 09:04:17'); INSERT INTO `sys_job_log` VALUES (15404, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2786毫秒', '0', '', '2022-02-19 09:04:20'); INSERT INTO `sys_job_log` VALUES (15405, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4866毫秒', '0', '', '2022-02-19 09:04:25'); INSERT INTO `sys_job_log` VALUES (15406, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1389毫秒', '0', '', '2022-02-19 09:04:26'); INSERT INTO `sys_job_log` VALUES (15407, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2170毫秒', '0', '', '2022-02-19 09:04:28'); INSERT INTO `sys_job_log` VALUES (15408, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2262毫秒', '0', '', '2022-02-19 09:04:31'); INSERT INTO `sys_job_log` VALUES (15409, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1440毫秒', '0', '', '2022-02-19 09:04:32'); INSERT INTO `sys_job_log` VALUES (15410, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1775毫秒', '0', '', '2022-02-19 09:04:34'); INSERT INTO `sys_job_log` VALUES (15411, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4262毫秒', '0', '', '2022-02-19 09:04:38'); INSERT INTO `sys_job_log` VALUES (15412, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4245毫秒', '0', '', '2022-02-19 09:04:42'); INSERT INTO `sys_job_log` VALUES (15413, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2268毫秒', '0', '', '2022-02-19 09:04:45'); INSERT INTO `sys_job_log` VALUES (15414, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:958毫秒', '0', '', '2022-02-19 09:04:46'); INSERT INTO `sys_job_log` VALUES (15415, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1148毫秒', '0', '', '2022-02-19 09:04:47'); INSERT INTO `sys_job_log` VALUES (15416, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2534毫秒', '0', '', '2022-02-19 09:04:49'); INSERT INTO `sys_job_log` VALUES (15417, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:850毫秒', '0', '', '2022-02-19 09:04:50'); INSERT INTO `sys_job_log` VALUES (15418, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2756毫秒', '0', '', '2022-02-19 09:04:53'); INSERT INTO `sys_job_log` VALUES (15419, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1421毫秒', '0', '', '2022-02-19 09:04:54'); INSERT INTO `sys_job_log` VALUES (15420, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2722毫秒', '0', '', '2022-02-19 09:04:57'); INSERT INTO `sys_job_log` VALUES (15421, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1400毫秒', '0', '', '2022-02-19 09:04:59'); INSERT INTO `sys_job_log` VALUES (15422, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1954毫秒', '0', '', '2022-02-19 09:05:01'); INSERT INTO `sys_job_log` VALUES (15423, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1727毫秒', '0', '', '2022-02-19 09:05:02'); INSERT INTO `sys_job_log` VALUES (15424, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2803毫秒', '0', '', '2022-02-19 09:05:05'); INSERT INTO `sys_job_log` VALUES (15425, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4058毫秒', '0', '', '2022-02-19 09:05:09'); INSERT INTO `sys_job_log` VALUES (15426, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2485毫秒', '0', '', '2022-02-19 09:05:12'); INSERT INTO `sys_job_log` VALUES (15427, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5283毫秒', '0', '', '2022-02-19 09:05:17'); INSERT INTO `sys_job_log` VALUES (15428, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2725毫秒', '0', '', '2022-02-19 09:05:20'); INSERT INTO `sys_job_log` VALUES (15429, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2070毫秒', '0', '', '2022-02-19 09:05:22'); INSERT INTO `sys_job_log` VALUES (15430, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2551毫秒', '0', '', '2022-02-19 09:05:24'); INSERT INTO `sys_job_log` VALUES (15431, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1393毫秒', '0', '', '2022-02-19 09:05:26'); INSERT INTO `sys_job_log` VALUES (15432, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1453毫秒', '0', '', '2022-02-19 09:05:27'); INSERT INTO `sys_job_log` VALUES (15433, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1681毫秒', '0', '', '2022-02-19 09:05:29'); INSERT INTO `sys_job_log` VALUES (15434, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1516毫秒', '0', '', '2022-02-19 09:05:31'); INSERT INTO `sys_job_log` VALUES (15435, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2114毫秒', '0', '', '2022-02-19 09:05:33'); INSERT INTO `sys_job_log` VALUES (15436, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1214毫秒', '0', '', '2022-02-19 09:05:34'); INSERT INTO `sys_job_log` VALUES (15437, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1277毫秒', '0', '', '2022-02-19 09:05:35'); INSERT INTO `sys_job_log` VALUES (15438, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1734毫秒', '0', '', '2022-02-19 09:05:37'); INSERT INTO `sys_job_log` VALUES (15439, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1007毫秒', '0', '', '2022-02-19 09:05:38'); INSERT INTO `sys_job_log` VALUES (15440, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:758毫秒', '0', '', '2022-02-19 09:10:00'); INSERT INTO `sys_job_log` VALUES (15441, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4139毫秒', '0', '', '2022-02-19 09:10:04'); INSERT INTO `sys_job_log` VALUES (15442, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:362毫秒', '0', '', '2022-02-19 09:20:00'); INSERT INTO `sys_job_log` VALUES (15443, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:751毫秒', '0', '', '2022-02-19 09:20:00'); INSERT INTO `sys_job_log` VALUES (15444, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2503毫秒', '0', '', '2022-02-19 09:20:02'); INSERT INTO `sys_job_log` VALUES (15445, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:682毫秒', '0', '', '2022-02-19 09:30:00'); INSERT INTO `sys_job_log` VALUES (15446, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2059毫秒', '0', '', '2022-02-19 09:30:02'); INSERT INTO `sys_job_log` VALUES (15447, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1045毫秒', '0', '', '2022-02-19 09:40:01'); INSERT INTO `sys_job_log` VALUES (15448, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-19 09:40:03'); INSERT INTO `sys_job_log` VALUES (15449, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3301毫秒', '0', '', '2022-02-19 09:40:03'); INSERT INTO `sys_job_log` VALUES (15450, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:658毫秒', '0', '', '2022-02-19 09:50:00'); INSERT INTO `sys_job_log` VALUES (15451, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1405毫秒', '0', '', '2022-02-19 09:50:01'); INSERT INTO `sys_job_log` VALUES (15452, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:426毫秒', '0', '', '2022-02-19 10:00:00'); INSERT INTO `sys_job_log` VALUES (15453, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:446毫秒', '0', '', '2022-02-19 10:00:00'); INSERT INTO `sys_job_log` VALUES (15454, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1002毫秒', '0', '', '2022-02-19 10:00:01'); INSERT INTO `sys_job_log` VALUES (15455, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5326毫秒', '0', '', '2022-02-19 10:00:05'); INSERT INTO `sys_job_log` VALUES (15456, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1008毫秒', '0', '', '2022-02-19 10:10:01'); INSERT INTO `sys_job_log` VALUES (15457, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4558毫秒', '0', '', '2022-02-19 10:10:04'); INSERT INTO `sys_job_log` VALUES (15458, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:830毫秒', '0', '', '2022-02-19 10:20:00'); INSERT INTO `sys_job_log` VALUES (15459, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2517毫秒', '0', '', '2022-02-19 10:20:02'); INSERT INTO `sys_job_log` VALUES (15460, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-19 10:20:03'); INSERT INTO `sys_job_log` VALUES (15461, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1066毫秒', '0', '', '2022-02-19 10:30:01'); INSERT INTO `sys_job_log` VALUES (15462, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3324毫秒', '0', '', '2022-02-19 10:30:03'); INSERT INTO `sys_job_log` VALUES (15463, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:505毫秒', '0', '', '2022-02-19 10:40:00'); INSERT INTO `sys_job_log` VALUES (15464, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:856毫秒', '0', '', '2022-02-19 10:40:00'); INSERT INTO `sys_job_log` VALUES (15465, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7863毫秒', '0', '', '2022-02-19 10:40:07'); INSERT INTO `sys_job_log` VALUES (15466, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:700毫秒', '0', '', '2022-02-19 10:50:00'); INSERT INTO `sys_job_log` VALUES (15467, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9254毫秒', '0', '', '2022-02-19 10:50:09'); INSERT INTO `sys_job_log` VALUES (15468, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:882毫秒', '0', '', '2022-02-19 11:00:00'); INSERT INTO `sys_job_log` VALUES (15469, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:921毫秒', '0', '', '2022-02-19 11:00:00'); INSERT INTO `sys_job_log` VALUES (15470, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-19 11:00:03'); INSERT INTO `sys_job_log` VALUES (15471, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-19 11:00:03'); INSERT INTO `sys_job_log` VALUES (15472, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4314毫秒', '0', '', '2022-02-19 11:00:04'); INSERT INTO `sys_job_log` VALUES (15473, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:874毫秒', '0', '', '2022-02-19 11:10:00'); INSERT INTO `sys_job_log` VALUES (15474, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3138毫秒', '0', '', '2022-02-19 11:10:03'); INSERT INTO `sys_job_log` VALUES (15475, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:484毫秒', '0', '', '2022-02-19 11:20:00'); INSERT INTO `sys_job_log` VALUES (15476, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:851毫秒', '0', '', '2022-02-19 11:20:00'); INSERT INTO `sys_job_log` VALUES (15477, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2569毫秒', '0', '', '2022-02-19 11:20:02'); INSERT INTO `sys_job_log` VALUES (15478, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:624毫秒', '0', '', '2022-02-19 11:30:00'); INSERT INTO `sys_job_log` VALUES (15479, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6931毫秒', '0', '', '2022-02-19 11:30:06'); INSERT INTO `sys_job_log` VALUES (15480, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:780毫秒', '0', '', '2022-02-19 11:40:00'); INSERT INTO `sys_job_log` VALUES (15481, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2560毫秒', '0', '', '2022-02-19 11:40:02'); INSERT INTO `sys_job_log` VALUES (15482, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-19 11:40:03'); INSERT INTO `sys_job_log` VALUES (15483, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1039毫秒', '0', '', '2022-02-19 11:50:01'); INSERT INTO `sys_job_log` VALUES (15484, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4674毫秒', '0', '', '2022-02-19 11:50:04'); INSERT INTO `sys_job_log` VALUES (15485, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:309毫秒', '0', '', '2022-02-19 12:00:00'); INSERT INTO `sys_job_log` VALUES (15486, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:394毫秒', '0', '', '2022-02-19 12:00:00'); INSERT INTO `sys_job_log` VALUES (15487, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:928毫秒', '0', '', '2022-02-19 12:00:00'); INSERT INTO `sys_job_log` VALUES (15488, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4477毫秒', '0', '', '2022-02-19 12:00:04'); INSERT INTO `sys_job_log` VALUES (15489, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:790毫秒', '0', '', '2022-02-19 12:10:00'); INSERT INTO `sys_job_log` VALUES (15490, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3603毫秒', '0', '', '2022-02-19 12:10:03'); INSERT INTO `sys_job_log` VALUES (15491, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:875毫秒', '0', '', '2022-02-19 12:20:00'); INSERT INTO `sys_job_log` VALUES (15492, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1239毫秒', '0', '', '2022-02-19 12:20:01'); INSERT INTO `sys_job_log` VALUES (15493, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-19 12:20:03'); INSERT INTO `sys_job_log` VALUES (15494, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:715毫秒', '0', '', '2022-02-19 12:30:00'); INSERT INTO `sys_job_log` VALUES (15495, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4168毫秒', '0', '', '2022-02-19 12:30:04'); INSERT INTO `sys_job_log` VALUES (15496, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:354毫秒', '0', '', '2022-02-19 12:40:00'); INSERT INTO `sys_job_log` VALUES (15497, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:720毫秒', '0', '', '2022-02-19 12:40:00'); INSERT INTO `sys_job_log` VALUES (15498, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2431毫秒', '0', '', '2022-02-19 12:40:02'); INSERT INTO `sys_job_log` VALUES (15499, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:877毫秒', '0', '', '2022-02-19 12:50:00'); INSERT INTO `sys_job_log` VALUES (15500, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4818毫秒', '0', '', '2022-02-19 12:50:04'); INSERT INTO `sys_job_log` VALUES (15501, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:780毫秒', '0', '', '2022-02-19 13:00:00'); INSERT INTO `sys_job_log` VALUES (15502, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3016毫秒', '0', '', '2022-02-19 13:00:03'); INSERT INTO `sys_job_log` VALUES (15503, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3011毫秒', '0', '', '2022-02-19 13:00:03'); INSERT INTO `sys_job_log` VALUES (15504, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4490毫秒', '0', '', '2022-02-19 13:00:04'); INSERT INTO `sys_job_log` VALUES (15505, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:776毫秒', '0', '', '2022-02-19 13:10:00'); INSERT INTO `sys_job_log` VALUES (15506, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5395毫秒', '0', '', '2022-02-19 13:10:05'); INSERT INTO `sys_job_log` VALUES (15507, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:325毫秒', '0', '', '2022-02-19 13:20:00'); INSERT INTO `sys_job_log` VALUES (15508, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:735毫秒', '0', '', '2022-02-19 13:20:00'); INSERT INTO `sys_job_log` VALUES (15509, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2661毫秒', '0', '', '2022-02-19 13:20:02'); INSERT INTO `sys_job_log` VALUES (15510, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:710毫秒', '0', '', '2022-02-19 13:30:00'); INSERT INTO `sys_job_log` VALUES (15511, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4355毫秒', '0', '', '2022-02-19 13:30:04'); INSERT INTO `sys_job_log` VALUES (15512, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:807毫秒', '0', '', '2022-02-19 13:40:00'); INSERT INTO `sys_job_log` VALUES (15513, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2862毫秒', '0', '', '2022-02-19 13:40:02'); INSERT INTO `sys_job_log` VALUES (15514, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2994毫秒', '0', '', '2022-02-19 13:40:03'); INSERT INTO `sys_job_log` VALUES (15515, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:847毫秒', '0', '', '2022-02-19 13:50:00'); INSERT INTO `sys_job_log` VALUES (15516, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1993毫秒', '0', '', '2022-02-19 13:50:02'); INSERT INTO `sys_job_log` VALUES (15517, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:224毫秒', '0', '', '2022-02-19 14:00:00'); INSERT INTO `sys_job_log` VALUES (15518, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:323毫秒', '0', '', '2022-02-19 14:00:00'); INSERT INTO `sys_job_log` VALUES (15519, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:987毫秒', '0', '', '2022-02-19 14:00:01'); INSERT INTO `sys_job_log` VALUES (15520, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2403毫秒', '0', '', '2022-02-19 14:00:02'); INSERT INTO `sys_job_log` VALUES (15521, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1460毫秒', '0', '', '2022-02-19 14:10:01'); INSERT INTO `sys_job_log` VALUES (15522, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2994毫秒', '0', '', '2022-02-19 14:10:03'); INSERT INTO `sys_job_log` VALUES (15523, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:945毫秒', '0', '', '2022-02-19 14:20:00'); INSERT INTO `sys_job_log` VALUES (15524, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3011毫秒', '0', '', '2022-02-19 14:20:03'); INSERT INTO `sys_job_log` VALUES (15525, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4028毫秒', '0', '', '2022-02-19 14:20:04'); INSERT INTO `sys_job_log` VALUES (15526, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:630毫秒', '0', '', '2022-02-19 14:30:00'); INSERT INTO `sys_job_log` VALUES (15527, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4389毫秒', '0', '', '2022-02-19 14:30:04'); INSERT INTO `sys_job_log` VALUES (15528, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:369毫秒', '0', '', '2022-02-19 14:40:00'); INSERT INTO `sys_job_log` VALUES (15529, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:795毫秒', '0', '', '2022-02-19 14:40:00'); INSERT INTO `sys_job_log` VALUES (15530, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1662毫秒', '0', '', '2022-02-19 14:40:01'); INSERT INTO `sys_job_log` VALUES (15531, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:922毫秒', '0', '', '2022-02-19 14:50:00'); INSERT INTO `sys_job_log` VALUES (15532, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3419毫秒', '0', '', '2022-02-19 14:50:03'); INSERT INTO `sys_job_log` VALUES (15533, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:749毫秒', '0', '', '2022-02-19 15:00:00'); INSERT INTO `sys_job_log` VALUES (15534, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3013毫秒', '0', '', '2022-02-19 15:00:03'); INSERT INTO `sys_job_log` VALUES (15535, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3009毫秒', '0', '', '2022-02-19 15:00:03'); INSERT INTO `sys_job_log` VALUES (15536, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3015毫秒', '0', '', '2022-02-19 15:00:03'); INSERT INTO `sys_job_log` VALUES (15537, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3755毫秒', '0', '', '2022-02-19 15:00:03'); INSERT INTO `sys_job_log` VALUES (15538, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:650毫秒', '0', '', '2022-02-19 15:10:00'); INSERT INTO `sys_job_log` VALUES (15539, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2974毫秒', '0', '', '2022-02-19 15:10:02'); INSERT INTO `sys_job_log` VALUES (15540, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:323毫秒', '0', '', '2022-02-19 15:20:00'); INSERT INTO `sys_job_log` VALUES (15541, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:761毫秒', '0', '', '2022-02-19 15:20:00'); INSERT INTO `sys_job_log` VALUES (15542, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4495毫秒', '0', '', '2022-02-19 15:20:04'); INSERT INTO `sys_job_log` VALUES (15543, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:968毫秒', '0', '', '2022-02-19 15:30:00'); INSERT INTO `sys_job_log` VALUES (15544, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2218毫秒', '0', '', '2022-02-19 15:30:02'); INSERT INTO `sys_job_log` VALUES (15545, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1066毫秒', '0', '', '2022-02-19 15:40:01'); INSERT INTO `sys_job_log` VALUES (15546, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2298毫秒', '0', '', '2022-02-19 15:40:02'); INSERT INTO `sys_job_log` VALUES (15547, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-19 15:40:03'); INSERT INTO `sys_job_log` VALUES (15548, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:741毫秒', '0', '', '2022-02-19 15:50:00'); INSERT INTO `sys_job_log` VALUES (15549, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1817毫秒', '0', '', '2022-02-19 15:50:01'); INSERT INTO `sys_job_log` VALUES (15550, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:234毫秒', '0', '', '2022-02-19 16:00:00'); INSERT INTO `sys_job_log` VALUES (15551, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:371毫秒', '0', '', '2022-02-19 16:00:00'); INSERT INTO `sys_job_log` VALUES (15552, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:836毫秒', '0', '', '2022-02-19 16:00:00'); INSERT INTO `sys_job_log` VALUES (15553, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2130毫秒', '0', '', '2022-02-19 16:00:02'); INSERT INTO `sys_job_log` VALUES (15554, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:711毫秒', '0', '', '2022-02-19 16:10:00'); INSERT INTO `sys_job_log` VALUES (15555, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2386毫秒', '0', '', '2022-02-19 16:10:02'); INSERT INTO `sys_job_log` VALUES (15556, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:657毫秒', '0', '', '2022-02-19 16:20:00'); INSERT INTO `sys_job_log` VALUES (15557, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2261毫秒', '0', '', '2022-02-19 16:20:02'); INSERT INTO `sys_job_log` VALUES (15558, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2996毫秒', '0', '', '2022-02-19 16:20:03'); INSERT INTO `sys_job_log` VALUES (15559, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:654毫秒', '0', '', '2022-02-19 16:30:00'); INSERT INTO `sys_job_log` VALUES (15560, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1775毫秒', '0', '', '2022-02-19 16:30:01'); INSERT INTO `sys_job_log` VALUES (15561, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:283毫秒', '0', '', '2022-02-19 16:40:00'); INSERT INTO `sys_job_log` VALUES (15562, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:857毫秒', '0', '', '2022-02-19 16:40:00'); INSERT INTO `sys_job_log` VALUES (15563, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1380毫秒', '0', '', '2022-02-19 16:40:01'); INSERT INTO `sys_job_log` VALUES (15564, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:863毫秒', '0', '', '2022-02-19 16:50:00'); INSERT INTO `sys_job_log` VALUES (15565, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2037毫秒', '0', '', '2022-02-19 16:50:02'); INSERT INTO `sys_job_log` VALUES (15566, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:748毫秒', '0', '', '2022-02-19 17:00:00'); INSERT INTO `sys_job_log` VALUES (15567, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3015毫秒', '0', '', '2022-02-19 17:00:03'); INSERT INTO `sys_job_log` VALUES (15568, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3010毫秒', '0', '', '2022-02-19 17:00:03'); INSERT INTO `sys_job_log` VALUES (15569, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3293毫秒', '0', '', '2022-02-19 17:00:03'); INSERT INTO `sys_job_log` VALUES (15570, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1200毫秒', '0', '', '2022-02-19 17:10:01'); INSERT INTO `sys_job_log` VALUES (15571, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2238毫秒', '0', '', '2022-02-19 17:10:02'); INSERT INTO `sys_job_log` VALUES (15572, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:302毫秒', '0', '', '2022-02-19 17:20:00'); INSERT INTO `sys_job_log` VALUES (15573, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-02-19 17:20:00'); INSERT INTO `sys_job_log` VALUES (15574, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3419毫秒', '0', '', '2022-02-19 17:20:03'); INSERT INTO `sys_job_log` VALUES (15575, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:996毫秒', '0', '', '2022-02-19 17:30:01'); INSERT INTO `sys_job_log` VALUES (15576, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3287毫秒', '0', '', '2022-02-19 17:30:03'); INSERT INTO `sys_job_log` VALUES (15577, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:733毫秒', '0', '', '2022-02-19 17:40:00'); INSERT INTO `sys_job_log` VALUES (15578, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2979毫秒', '0', '', '2022-02-19 17:40:03'); INSERT INTO `sys_job_log` VALUES (15579, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3741毫秒', '0', '', '2022-02-19 17:40:03'); INSERT INTO `sys_job_log` VALUES (15580, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:726毫秒', '0', '', '2022-02-19 17:50:00'); INSERT INTO `sys_job_log` VALUES (15581, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3503毫秒', '0', '', '2022-02-19 17:50:03'); INSERT INTO `sys_job_log` VALUES (15582, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:214毫秒', '0', '', '2022-02-19 18:00:00'); INSERT INTO `sys_job_log` VALUES (15583, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:334毫秒', '0', '', '2022-02-19 18:00:00'); INSERT INTO `sys_job_log` VALUES (15584, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:750毫秒', '0', '', '2022-02-19 18:00:00'); INSERT INTO `sys_job_log` VALUES (15585, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4036毫秒', '0', '', '2022-02-19 18:00:04'); INSERT INTO `sys_job_log` VALUES (15586, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:925毫秒', '0', '', '2022-02-19 18:10:00'); INSERT INTO `sys_job_log` VALUES (15587, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2443毫秒', '0', '', '2022-02-19 18:10:02'); INSERT INTO `sys_job_log` VALUES (15588, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:286毫秒', '0', '', '2022-02-19 18:20:00'); INSERT INTO `sys_job_log` VALUES (15589, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:660毫秒', '0', '', '2022-02-19 18:20:00'); INSERT INTO `sys_job_log` VALUES (15590, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2787毫秒', '0', '', '2022-02-19 18:20:02'); INSERT INTO `sys_job_log` VALUES (15591, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:636毫秒', '0', '', '2022-02-19 18:30:00'); INSERT INTO `sys_job_log` VALUES (15592, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2214毫秒', '0', '', '2022-02-19 18:30:02'); INSERT INTO `sys_job_log` VALUES (15593, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1104毫秒', '0', '', '2022-02-19 18:40:01'); INSERT INTO `sys_job_log` VALUES (15594, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1649毫秒', '0', '', '2022-02-19 18:40:01'); INSERT INTO `sys_job_log` VALUES (15595, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3853毫秒', '0', '', '2022-02-19 18:40:03'); INSERT INTO `sys_job_log` VALUES (15596, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2454毫秒', '0', '', '2022-02-19 18:50:02'); INSERT INTO `sys_job_log` VALUES (15597, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-02-19 18:50:03'); INSERT INTO `sys_job_log` VALUES (15598, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:760毫秒', '0', '', '2022-02-19 19:00:00'); INSERT INTO `sys_job_log` VALUES (15599, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3008毫秒', '0', '', '2022-02-19 19:00:03'); INSERT INTO `sys_job_log` VALUES (15600, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-19 19:00:03'); INSERT INTO `sys_job_log` VALUES (15601, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3007毫秒', '0', '', '2022-02-19 19:00:03'); INSERT INTO `sys_job_log` VALUES (15602, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-19 19:00:03'); INSERT INTO `sys_job_log` VALUES (15603, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1004毫秒', '0', '', '2022-02-19 19:10:01'); INSERT INTO `sys_job_log` VALUES (15604, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2933毫秒', '0', '', '2022-02-19 19:10:02'); INSERT INTO `sys_job_log` VALUES (15605, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:326毫秒', '0', '', '2022-02-19 19:20:00'); INSERT INTO `sys_job_log` VALUES (15606, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:961毫秒', '0', '', '2022-02-19 19:20:00'); INSERT INTO `sys_job_log` VALUES (15607, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1521毫秒', '0', '', '2022-02-19 19:20:01'); INSERT INTO `sys_job_log` VALUES (15608, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:944毫秒', '0', '', '2022-02-19 19:30:00'); INSERT INTO `sys_job_log` VALUES (15609, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1904毫秒', '0', '', '2022-02-19 19:30:01'); INSERT INTO `sys_job_log` VALUES (15610, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:943毫秒', '0', '', '2022-02-19 19:40:00'); INSERT INTO `sys_job_log` VALUES (15611, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2102毫秒', '0', '', '2022-02-19 19:40:02'); INSERT INTO `sys_job_log` VALUES (15612, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3015毫秒', '0', '', '2022-02-19 19:40:03'); INSERT INTO `sys_job_log` VALUES (15613, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-02-19 19:50:00'); INSERT INTO `sys_job_log` VALUES (15614, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1403毫秒', '0', '', '2022-02-19 19:50:01'); INSERT INTO `sys_job_log` VALUES (15615, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:338毫秒', '0', '', '2022-02-19 20:00:00'); INSERT INTO `sys_job_log` VALUES (15616, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:325毫秒', '0', '', '2022-02-19 20:00:00'); INSERT INTO `sys_job_log` VALUES (15617, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:961毫秒', '0', '', '2022-02-19 20:00:00'); INSERT INTO `sys_job_log` VALUES (15618, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4766毫秒', '0', '', '2022-02-19 20:00:04'); INSERT INTO `sys_job_log` VALUES (15619, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:799毫秒', '0', '', '2022-02-19 20:10:00'); INSERT INTO `sys_job_log` VALUES (15620, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1342毫秒', '0', '', '2022-02-19 20:10:01'); INSERT INTO `sys_job_log` VALUES (15621, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:690毫秒', '0', '', '2022-02-19 20:20:00'); INSERT INTO `sys_job_log` VALUES (15622, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2412毫秒', '0', '', '2022-02-19 20:20:02'); INSERT INTO `sys_job_log` VALUES (15623, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-19 20:20:03'); INSERT INTO `sys_job_log` VALUES (15624, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:625毫秒', '0', '', '2022-02-19 20:30:00'); INSERT INTO `sys_job_log` VALUES (15625, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2090毫秒', '0', '', '2022-02-19 20:30:02'); INSERT INTO `sys_job_log` VALUES (15626, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:272毫秒', '0', '', '2022-02-19 20:40:00'); INSERT INTO `sys_job_log` VALUES (15627, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1712毫秒', '0', '', '2022-02-19 20:40:01'); INSERT INTO `sys_job_log` VALUES (15628, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3987毫秒', '0', '', '2022-02-19 20:40:04'); INSERT INTO `sys_job_log` VALUES (15629, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1164毫秒', '0', '', '2022-02-19 20:50:01'); INSERT INTO `sys_job_log` VALUES (15630, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2875毫秒', '0', '', '2022-02-19 20:50:02'); INSERT INTO `sys_job_log` VALUES (15631, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:760毫秒', '0', '', '2022-02-19 21:00:00'); INSERT INTO `sys_job_log` VALUES (15632, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2068毫秒', '0', '', '2022-02-19 21:00:02'); INSERT INTO `sys_job_log` VALUES (15633, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-19 21:00:03'); INSERT INTO `sys_job_log` VALUES (15634, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-19 21:00:03'); INSERT INTO `sys_job_log` VALUES (15635, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:900毫秒', '0', '', '2022-02-19 21:10:00'); INSERT INTO `sys_job_log` VALUES (15636, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2368毫秒', '0', '', '2022-02-19 21:10:02'); INSERT INTO `sys_job_log` VALUES (15637, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:370毫秒', '0', '', '2022-02-19 21:20:00'); INSERT INTO `sys_job_log` VALUES (15638, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:790毫秒', '0', '', '2022-02-19 21:20:00'); INSERT INTO `sys_job_log` VALUES (15639, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3750毫秒', '0', '', '2022-02-19 21:20:03'); INSERT INTO `sys_job_log` VALUES (15640, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:927毫秒', '0', '', '2022-02-19 21:30:00'); INSERT INTO `sys_job_log` VALUES (15641, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4376毫秒', '0', '', '2022-02-19 21:30:04'); INSERT INTO `sys_job_log` VALUES (15642, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-19 21:40:03'); INSERT INTO `sys_job_log` VALUES (15643, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3003毫秒', '0', '', '2022-02-19 21:40:03'); INSERT INTO `sys_job_log` VALUES (15644, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7746毫秒', '0', '', '2022-02-19 21:40:07'); INSERT INTO `sys_job_log` VALUES (15645, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:786毫秒', '0', '', '2022-02-19 21:50:00'); INSERT INTO `sys_job_log` VALUES (15646, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1608毫秒', '0', '', '2022-02-19 21:50:01'); INSERT INTO `sys_job_log` VALUES (15647, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:212毫秒', '0', '', '2022-02-19 22:00:00'); INSERT INTO `sys_job_log` VALUES (15648, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:314毫秒', '0', '', '2022-02-19 22:00:00'); INSERT INTO `sys_job_log` VALUES (15649, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:744毫秒', '0', '', '2022-02-19 22:00:00'); INSERT INTO `sys_job_log` VALUES (15650, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2160毫秒', '0', '', '2022-02-19 22:00:02'); INSERT INTO `sys_job_log` VALUES (15651, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:699毫秒', '0', '', '2022-02-19 22:10:00'); INSERT INTO `sys_job_log` VALUES (15652, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3089毫秒', '0', '', '2022-02-19 22:10:03'); INSERT INTO `sys_job_log` VALUES (15653, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:748毫秒', '0', '', '2022-02-19 22:20:00'); INSERT INTO `sys_job_log` VALUES (15654, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3015毫秒', '0', '', '2022-02-19 22:20:03'); INSERT INTO `sys_job_log` VALUES (15655, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3250毫秒', '0', '', '2022-02-19 22:20:03'); INSERT INTO `sys_job_log` VALUES (15656, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1844毫秒', '0', '', '2022-02-19 22:30:01'); INSERT INTO `sys_job_log` VALUES (15657, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2228毫秒', '0', '', '2022-02-19 22:30:02'); INSERT INTO `sys_job_log` VALUES (15658, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:354毫秒', '0', '', '2022-02-19 22:40:00'); INSERT INTO `sys_job_log` VALUES (15659, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:751毫秒', '0', '', '2022-02-19 22:40:00'); INSERT INTO `sys_job_log` VALUES (15660, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2416毫秒', '0', '', '2022-02-19 22:40:02'); INSERT INTO `sys_job_log` VALUES (15661, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2183毫秒', '0', '', '2022-02-19 22:50:02'); INSERT INTO `sys_job_log` VALUES (15662, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2868毫秒', '0', '', '2022-02-19 22:50:02'); INSERT INTO `sys_job_log` VALUES (15663, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:7毫秒', '0', '', '2022-02-19 23:00:00'); INSERT INTO `sys_job_log` VALUES (15664, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3毫秒', '0', '', '2022-02-19 23:00:00'); INSERT INTO `sys_job_log` VALUES (15665, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-19 23:00:03'); INSERT INTO `sys_job_log` VALUES (15666, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2997毫秒', '0', '', '2022-02-19 23:00:03'); INSERT INTO `sys_job_log` VALUES (15667, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5075毫秒', '0', '', '2022-02-19 23:00:05'); INSERT INTO `sys_job_log` VALUES (15668, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:901毫秒', '0', '', '2022-02-19 23:10:00'); INSERT INTO `sys_job_log` VALUES (15669, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1605毫秒', '0', '', '2022-02-19 23:10:01'); INSERT INTO `sys_job_log` VALUES (15670, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3315毫秒', '0', '', '2022-02-19 23:20:03'); INSERT INTO `sys_job_log` VALUES (15671, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3313毫秒', '0', '', '2022-02-19 23:20:03'); INSERT INTO `sys_job_log` VALUES (15672, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7747毫秒', '0', '', '2022-02-19 23:20:07'); INSERT INTO `sys_job_log` VALUES (15673, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:989毫秒', '0', '', '2022-02-19 23:30:01'); INSERT INTO `sys_job_log` VALUES (15674, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4027毫秒', '0', '', '2022-02-19 23:30:04'); INSERT INTO `sys_job_log` VALUES (15675, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:716毫秒', '0', '', '2022-02-19 23:40:00'); INSERT INTO `sys_job_log` VALUES (15676, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2971毫秒', '0', '', '2022-02-19 23:40:02'); INSERT INTO `sys_job_log` VALUES (15677, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4962毫秒', '0', '', '2022-02-19 23:40:04'); INSERT INTO `sys_job_log` VALUES (15678, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1915毫秒', '0', '', '2022-02-19 23:50:01'); INSERT INTO `sys_job_log` VALUES (15679, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3350毫秒', '0', '', '2022-02-19 23:50:03'); INSERT INTO `sys_job_log` VALUES (15680, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1220毫秒', '0', '', '2022-02-20 00:00:01'); INSERT INTO `sys_job_log` VALUES (15681, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1605毫秒', '0', '', '2022-02-20 00:00:01'); INSERT INTO `sys_job_log` VALUES (15682, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3030毫秒', '0', '', '2022-02-20 00:00:03'); INSERT INTO `sys_job_log` VALUES (15683, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3250毫秒', '0', '', '2022-02-20 00:00:03'); INSERT INTO `sys_job_log` VALUES (15684, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:451毫秒', '0', '', '2022-02-20 00:00:10'); INSERT INTO `sys_job_log` VALUES (15685, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:800毫秒', '0', '', '2022-02-20 00:10:00'); INSERT INTO `sys_job_log` VALUES (15686, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4580毫秒', '0', '', '2022-02-20 00:10:04'); INSERT INTO `sys_job_log` VALUES (15687, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-02-20 00:20:00'); INSERT INTO `sys_job_log` VALUES (15688, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2309毫秒', '0', '', '2022-02-20 00:20:02'); INSERT INTO `sys_job_log` VALUES (15689, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-20 00:20:03'); INSERT INTO `sys_job_log` VALUES (15690, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:726毫秒', '0', '', '2022-02-20 00:30:00'); INSERT INTO `sys_job_log` VALUES (15691, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2812毫秒', '0', '', '2022-02-20 00:30:02'); INSERT INTO `sys_job_log` VALUES (15692, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:253毫秒', '0', '', '2022-02-20 00:40:00'); INSERT INTO `sys_job_log` VALUES (15693, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:638毫秒', '0', '', '2022-02-20 00:40:00'); INSERT INTO `sys_job_log` VALUES (15694, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2432毫秒', '0', '', '2022-02-20 00:40:02'); INSERT INTO `sys_job_log` VALUES (15695, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:614毫秒', '0', '', '2022-02-20 00:50:00'); INSERT INTO `sys_job_log` VALUES (15696, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1905毫秒', '0', '', '2022-02-20 00:50:01'); INSERT INTO `sys_job_log` VALUES (15697, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:447毫秒', '0', '', '2022-02-20 01:00:00'); INSERT INTO `sys_job_log` VALUES (15698, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:730毫秒', '0', '', '2022-02-20 01:00:00'); INSERT INTO `sys_job_log` VALUES (15699, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2490毫秒', '0', '', '2022-02-20 01:00:02'); INSERT INTO `sys_job_log` VALUES (15700, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3014毫秒', '0', '', '2022-02-20 01:00:03'); INSERT INTO `sys_job_log` VALUES (15701, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:791毫秒', '0', '', '2022-02-20 01:10:00'); INSERT INTO `sys_job_log` VALUES (15702, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3398毫秒', '0', '', '2022-02-20 01:10:03'); INSERT INTO `sys_job_log` VALUES (15703, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1436毫秒', '0', '', '2022-02-20 04:19:55'); INSERT INTO `sys_job_log` VALUES (15704, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1025毫秒', '0', '', '2022-02-20 04:19:56'); INSERT INTO `sys_job_log` VALUES (15705, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2553毫秒', '0', '', '2022-02-20 04:19:56'); INSERT INTO `sys_job_log` VALUES (15706, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3018毫秒', '0', '', '2022-02-20 04:19:57'); INSERT INTO `sys_job_log` VALUES (15707, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3032毫秒', '0', '', '2022-02-20 04:19:57'); INSERT INTO `sys_job_log` VALUES (15708, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:559毫秒', '0', '', '2022-02-20 04:19:57'); INSERT INTO `sys_job_log` VALUES (15709, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3024毫秒', '0', '', '2022-02-20 04:19:57'); INSERT INTO `sys_job_log` VALUES (15710, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:508毫秒', '0', '', '2022-02-20 04:19:58'); INSERT INTO `sys_job_log` VALUES (15711, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:18356392毫秒', '0', '', '2022-02-20 09:25:53'); INSERT INTO `sys_job_log` VALUES (15712, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:18356383毫秒', '0', '', '2022-02-20 09:25:53'); INSERT INTO `sys_job_log` VALUES (15713, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:18356384毫秒', '0', '', '2022-02-20 09:25:54'); INSERT INTO `sys_job_log` VALUES (15714, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:18360886毫秒', '0', '', '2022-02-20 09:25:57'); INSERT INTO `sys_job_log` VALUES (15715, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3017毫秒', '0', '', '2022-02-20 09:25:58'); INSERT INTO `sys_job_log` VALUES (15716, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3017毫秒', '0', '', '2022-02-20 09:25:59'); INSERT INTO `sys_job_log` VALUES (15717, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3018毫秒', '0', '', '2022-02-20 09:26:01'); INSERT INTO `sys_job_log` VALUES (15718, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:1861毫秒', '0', '', '2022-02-20 09:26:04'); INSERT INTO `sys_job_log` VALUES (15719, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1071毫秒', '0', '', '2022-02-20 09:26:08'); INSERT INTO `sys_job_log` VALUES (15720, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3008毫秒', '0', '', '2022-02-20 09:26:09'); INSERT INTO `sys_job_log` VALUES (15721, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:4328毫秒', '0', '', '2022-02-20 09:26:11'); INSERT INTO `sys_job_log` VALUES (15722, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1458毫秒', '0', '', '2022-02-20 09:26:12'); INSERT INTO `sys_job_log` VALUES (15723, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3443毫秒', '0', '', '2022-02-20 09:26:14'); INSERT INTO `sys_job_log` VALUES (15724, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3011毫秒', '0', '', '2022-02-20 09:26:14'); INSERT INTO `sys_job_log` VALUES (15725, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3014毫秒', '0', '', '2022-02-20 09:26:15'); INSERT INTO `sys_job_log` VALUES (15726, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:924毫秒', '0', '', '2022-02-20 09:26:15'); INSERT INTO `sys_job_log` VALUES (15727, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3010毫秒', '0', '', '2022-02-20 09:26:17'); INSERT INTO `sys_job_log` VALUES (15728, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12430毫秒', '0', '', '2022-02-20 09:26:18'); INSERT INTO `sys_job_log` VALUES (15729, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2324毫秒', '0', '', '2022-02-20 09:26:18'); INSERT INTO `sys_job_log` VALUES (15730, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3017毫秒', '0', '', '2022-02-20 09:26:18'); INSERT INTO `sys_job_log` VALUES (15731, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1295毫秒', '0', '', '2022-02-20 09:26:20'); INSERT INTO `sys_job_log` VALUES (15732, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:349毫秒', '0', '', '2022-02-20 09:26:20'); INSERT INTO `sys_job_log` VALUES (15733, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3010毫秒', '0', '', '2022-02-20 09:26:21'); INSERT INTO `sys_job_log` VALUES (15734, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:448毫秒', '0', '', '2022-02-20 09:26:21'); INSERT INTO `sys_job_log` VALUES (15735, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3010毫秒', '0', '', '2022-02-20 09:26:22'); INSERT INTO `sys_job_log` VALUES (15736, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:369毫秒', '0', '', '2022-02-20 09:26:22'); INSERT INTO `sys_job_log` VALUES (15737, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:315毫秒', '0', '', '2022-02-20 09:26:23'); INSERT INTO `sys_job_log` VALUES (15738, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:287毫秒', '0', '', '2022-02-20 09:26:23'); INSERT INTO `sys_job_log` VALUES (15739, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1651毫秒', '0', '', '2022-02-20 09:26:23'); INSERT INTO `sys_job_log` VALUES (15740, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:169毫秒', '0', '', '2022-02-20 09:26:23'); INSERT INTO `sys_job_log` VALUES (15741, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:171毫秒', '0', '', '2022-02-20 09:26:24'); INSERT INTO `sys_job_log` VALUES (15742, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:355毫秒', '0', '', '2022-02-20 09:26:24'); INSERT INTO `sys_job_log` VALUES (15743, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:712毫秒', '0', '', '2022-02-20 09:26:24'); INSERT INTO `sys_job_log` VALUES (15744, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:171毫秒', '0', '', '2022-02-20 09:26:24'); INSERT INTO `sys_job_log` VALUES (15745, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:165毫秒', '0', '', '2022-02-20 09:26:24'); INSERT INTO `sys_job_log` VALUES (15746, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:162毫秒', '0', '', '2022-02-20 09:26:25'); INSERT INTO `sys_job_log` VALUES (15747, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-02-20 09:26:25'); INSERT INTO `sys_job_log` VALUES (15748, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:160毫秒', '0', '', '2022-02-20 09:26:25'); INSERT INTO `sys_job_log` VALUES (15749, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:192毫秒', '0', '', '2022-02-20 09:26:25'); INSERT INTO `sys_job_log` VALUES (15750, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6921毫秒', '0', '', '2022-02-20 09:26:25'); INSERT INTO `sys_job_log` VALUES (15751, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:177毫秒', '0', '', '2022-02-20 09:26:25'); INSERT INTO `sys_job_log` VALUES (15752, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:157毫秒', '0', '', '2022-02-20 09:26:26'); INSERT INTO `sys_job_log` VALUES (15753, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-02-20 09:26:26'); INSERT INTO `sys_job_log` VALUES (15754, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:172毫秒', '0', '', '2022-02-20 09:26:26'); INSERT INTO `sys_job_log` VALUES (15755, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:170毫秒', '0', '', '2022-02-20 09:26:26'); INSERT INTO `sys_job_log` VALUES (15756, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-02-20 09:26:26'); INSERT INTO `sys_job_log` VALUES (15757, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-02-20 09:26:27'); INSERT INTO `sys_job_log` VALUES (15758, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2472毫秒', '0', '', '2022-02-20 09:26:28'); INSERT INTO `sys_job_log` VALUES (15759, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:830毫秒', '0', '', '2022-02-20 09:26:28'); INSERT INTO `sys_job_log` VALUES (15760, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:965毫秒', '0', '', '2022-02-20 09:26:29'); INSERT INTO `sys_job_log` VALUES (15761, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:715毫秒', '0', '', '2022-02-20 09:26:30'); INSERT INTO `sys_job_log` VALUES (15762, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2257毫秒', '0', '', '2022-02-20 09:26:30'); INSERT INTO `sys_job_log` VALUES (15763, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:607毫秒', '0', '', '2022-02-20 09:26:30'); INSERT INTO `sys_job_log` VALUES (15764, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:776毫秒', '0', '', '2022-02-20 09:26:31'); INSERT INTO `sys_job_log` VALUES (15765, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1030毫秒', '0', '', '2022-02-20 09:26:32'); INSERT INTO `sys_job_log` VALUES (15766, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2482毫秒', '0', '', '2022-02-20 09:26:33'); INSERT INTO `sys_job_log` VALUES (15767, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-02-20 09:26:33'); INSERT INTO `sys_job_log` VALUES (15768, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-02-20 09:26:34'); INSERT INTO `sys_job_log` VALUES (15769, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:756毫秒', '0', '', '2022-02-20 09:26:35'); INSERT INTO `sys_job_log` VALUES (15770, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:811毫秒', '0', '', '2022-02-20 09:26:35'); INSERT INTO `sys_job_log` VALUES (15771, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1102毫秒', '0', '', '2022-02-20 09:26:37'); INSERT INTO `sys_job_log` VALUES (15772, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3383毫秒', '0', '', '2022-02-20 09:30:03'); INSERT INTO `sys_job_log` VALUES (15773, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6851毫秒', '0', '', '2022-02-20 09:30:06'); INSERT INTO `sys_job_log` VALUES (15774, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:597毫秒', '0', '', '2022-02-20 09:40:00'); INSERT INTO `sys_job_log` VALUES (15775, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:988毫秒', '0', '', '2022-02-20 09:40:01'); INSERT INTO `sys_job_log` VALUES (15776, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3485毫秒', '0', '', '2022-02-20 09:40:03'); INSERT INTO `sys_job_log` VALUES (15777, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:992毫秒', '0', '', '2022-02-20 09:50:01'); INSERT INTO `sys_job_log` VALUES (15778, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2163毫秒', '0', '', '2022-02-20 09:50:02'); INSERT INTO `sys_job_log` VALUES (15779, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1084毫秒', '0', '', '2022-02-20 10:00:01'); INSERT INTO `sys_job_log` VALUES (15780, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2917毫秒', '0', '', '2022-02-20 10:00:02'); INSERT INTO `sys_job_log` VALUES (15781, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3025毫秒', '0', '', '2022-02-20 10:00:03'); INSERT INTO `sys_job_log` VALUES (15782, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4088毫秒', '0', '', '2022-02-20 10:00:04'); INSERT INTO `sys_job_log` VALUES (15783, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:932毫秒', '0', '', '2022-02-20 10:10:00'); INSERT INTO `sys_job_log` VALUES (15784, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9891毫秒', '0', '', '2022-02-20 10:10:09'); INSERT INTO `sys_job_log` VALUES (15785, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:435毫秒', '0', '', '2022-02-20 10:20:00'); INSERT INTO `sys_job_log` VALUES (15786, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:862毫秒', '0', '', '2022-02-20 10:20:00'); INSERT INTO `sys_job_log` VALUES (15787, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3085毫秒', '0', '', '2022-02-20 10:20:03'); INSERT INTO `sys_job_log` VALUES (15788, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:766毫秒', '0', '', '2022-02-20 10:30:00'); INSERT INTO `sys_job_log` VALUES (15789, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2187毫秒', '0', '', '2022-02-20 10:30:02'); INSERT INTO `sys_job_log` VALUES (15790, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:795毫秒', '0', '', '2022-02-20 10:40:00'); INSERT INTO `sys_job_log` VALUES (15791, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2417毫秒', '0', '', '2022-02-20 10:40:02'); INSERT INTO `sys_job_log` VALUES (15792, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2983毫秒', '0', '', '2022-02-20 10:40:03'); INSERT INTO `sys_job_log` VALUES (15793, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:930毫秒', '0', '', '2022-02-20 10:50:00'); INSERT INTO `sys_job_log` VALUES (15794, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1955毫秒', '0', '', '2022-02-20 10:50:01'); INSERT INTO `sys_job_log` VALUES (15795, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:344毫秒', '0', '', '2022-02-20 11:00:00'); INSERT INTO `sys_job_log` VALUES (15796, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:485毫秒', '0', '', '2022-02-20 11:00:00'); INSERT INTO `sys_job_log` VALUES (15797, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:828毫秒', '0', '', '2022-02-20 11:00:00'); INSERT INTO `sys_job_log` VALUES (15798, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3010毫秒', '0', '', '2022-02-20 11:00:03'); INSERT INTO `sys_job_log` VALUES (15799, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3399毫秒', '0', '', '2022-02-20 11:00:03'); INSERT INTO `sys_job_log` VALUES (15800, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:942毫秒', '0', '', '2022-02-20 11:10:00'); INSERT INTO `sys_job_log` VALUES (15801, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2463毫秒', '0', '', '2022-02-20 11:10:02'); INSERT INTO `sys_job_log` VALUES (15802, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:956毫秒', '0', '', '2022-02-20 11:20:01'); INSERT INTO `sys_job_log` VALUES (15803, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2230毫秒', '0', '', '2022-02-20 11:20:02'); INSERT INTO `sys_job_log` VALUES (15804, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2920毫秒', '0', '', '2022-02-20 11:20:02'); INSERT INTO `sys_job_log` VALUES (15805, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1111毫秒', '0', '', '2022-02-20 11:30:01'); INSERT INTO `sys_job_log` VALUES (15806, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2399毫秒', '0', '', '2022-02-20 11:30:02'); INSERT INTO `sys_job_log` VALUES (15807, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:455毫秒', '0', '', '2022-02-20 11:40:00'); INSERT INTO `sys_job_log` VALUES (15808, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:887毫秒', '0', '', '2022-02-20 11:40:00'); INSERT INTO `sys_job_log` VALUES (15809, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3809毫秒', '0', '', '2022-02-20 11:40:03'); INSERT INTO `sys_job_log` VALUES (15810, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:916毫秒', '0', '', '2022-02-20 11:50:00'); INSERT INTO `sys_job_log` VALUES (15811, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2821毫秒', '0', '', '2022-02-20 11:50:02'); INSERT INTO `sys_job_log` VALUES (15812, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1770毫秒', '0', '', '2022-02-20 12:00:01'); INSERT INTO `sys_job_log` VALUES (15813, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3006毫秒', '0', '', '2022-02-20 12:00:03'); INSERT INTO `sys_job_log` VALUES (15814, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3007毫秒', '0', '', '2022-02-20 12:00:03'); INSERT INTO `sys_job_log` VALUES (15815, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3398毫秒', '0', '', '2022-02-20 12:00:03'); INSERT INTO `sys_job_log` VALUES (15816, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:574毫秒', '0', '', '2022-02-20 12:10:00'); INSERT INTO `sys_job_log` VALUES (15817, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1088毫秒', '0', '', '2022-02-20 12:10:01'); INSERT INTO `sys_job_log` VALUES (15818, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:473毫秒', '0', '', '2022-02-20 12:20:00'); INSERT INTO `sys_job_log` VALUES (15819, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:931毫秒', '0', '', '2022-02-20 12:20:00'); INSERT INTO `sys_job_log` VALUES (15820, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2332毫秒', '0', '', '2022-02-20 12:20:02'); INSERT INTO `sys_job_log` VALUES (15821, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1059毫秒', '0', '', '2022-02-20 12:30:01'); INSERT INTO `sys_job_log` VALUES (15822, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2199毫秒', '0', '', '2022-02-20 12:30:02'); INSERT INTO `sys_job_log` VALUES (15823, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:816毫秒', '0', '', '2022-02-20 12:40:00'); INSERT INTO `sys_job_log` VALUES (15824, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1866毫秒', '0', '', '2022-02-20 12:40:01'); INSERT INTO `sys_job_log` VALUES (15825, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-20 12:40:03'); INSERT INTO `sys_job_log` VALUES (15826, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:801毫秒', '0', '', '2022-02-20 12:50:00'); INSERT INTO `sys_job_log` VALUES (15827, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3890毫秒', '0', '', '2022-02-20 12:50:03'); INSERT INTO `sys_job_log` VALUES (15828, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:487毫秒', '0', '', '2022-02-20 13:00:00'); INSERT INTO `sys_job_log` VALUES (15829, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:464毫秒', '0', '', '2022-02-20 13:00:00'); INSERT INTO `sys_job_log` VALUES (15830, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:917毫秒', '0', '', '2022-02-20 13:00:00'); INSERT INTO `sys_job_log` VALUES (15831, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4173毫秒', '0', '', '2022-02-20 13:00:04'); INSERT INTO `sys_job_log` VALUES (15832, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:873毫秒', '0', '', '2022-02-20 14:20:00'); INSERT INTO `sys_job_log` VALUES (15833, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1557毫秒', '0', '', '2022-02-20 14:20:01'); INSERT INTO `sys_job_log` VALUES (15834, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4022毫秒', '0', '', '2022-02-20 14:20:04'); INSERT INTO `sys_job_log` VALUES (15835, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1178毫秒', '0', '', '2022-02-20 14:30:01'); INSERT INTO `sys_job_log` VALUES (15836, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5172毫秒', '0', '', '2022-02-20 14:30:05'); INSERT INTO `sys_job_log` VALUES (15837, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:453毫秒', '0', '', '2022-02-20 14:40:00'); INSERT INTO `sys_job_log` VALUES (15838, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:985毫秒', '0', '', '2022-02-20 14:40:01'); INSERT INTO `sys_job_log` VALUES (15839, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2742毫秒', '0', '', '2022-02-20 14:40:02'); INSERT INTO `sys_job_log` VALUES (15840, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:962毫秒', '0', '', '2022-02-20 14:50:00'); INSERT INTO `sys_job_log` VALUES (15841, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3386毫秒', '0', '', '2022-02-20 14:50:03'); INSERT INTO `sys_job_log` VALUES (15842, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1396毫秒', '0', '', '2022-02-20 15:00:01'); INSERT INTO `sys_job_log` VALUES (15843, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3011毫秒', '0', '', '2022-02-20 15:00:03'); INSERT INTO `sys_job_log` VALUES (15844, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3027毫秒', '0', '', '2022-02-20 15:00:03'); INSERT INTO `sys_job_log` VALUES (15845, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3052毫秒', '0', '', '2022-02-20 15:00:03'); INSERT INTO `sys_job_log` VALUES (15846, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4218毫秒', '0', '', '2022-02-20 15:00:04'); INSERT INTO `sys_job_log` VALUES (15847, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:541毫秒', '0', '', '2022-02-20 15:10:00'); INSERT INTO `sys_job_log` VALUES (15848, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1049毫秒', '0', '', '2022-02-20 15:10:01'); INSERT INTO `sys_job_log` VALUES (15849, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4866毫秒', '0', '', '2022-02-20 15:10:04'); INSERT INTO `sys_job_log` VALUES (15850, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:414毫秒', '0', '', '2022-02-20 15:20:00'); INSERT INTO `sys_job_log` VALUES (15851, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:954毫秒', '0', '', '2022-02-20 15:20:01'); INSERT INTO `sys_job_log` VALUES (15852, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1721毫秒', '0', '', '2022-02-20 15:20:01'); INSERT INTO `sys_job_log` VALUES (15853, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:939毫秒', '0', '', '2022-02-20 15:30:00'); INSERT INTO `sys_job_log` VALUES (15854, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1441毫秒', '0', '', '2022-02-20 15:30:01'); INSERT INTO `sys_job_log` VALUES (15855, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:781毫秒', '0', '', '2022-02-20 15:40:00'); INSERT INTO `sys_job_log` VALUES (15856, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2455毫秒', '0', '', '2022-02-20 15:40:02'); INSERT INTO `sys_job_log` VALUES (15857, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2944毫秒', '0', '', '2022-02-20 15:40:02'); INSERT INTO `sys_job_log` VALUES (15858, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:825毫秒', '0', '', '2022-02-20 15:50:00'); INSERT INTO `sys_job_log` VALUES (15859, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2101毫秒', '0', '', '2022-02-20 15:50:02'); INSERT INTO `sys_job_log` VALUES (15860, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:334毫秒', '0', '', '2022-02-20 16:00:00'); INSERT INTO `sys_job_log` VALUES (15861, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:767毫秒', '0', '', '2022-02-20 16:00:00'); INSERT INTO `sys_job_log` VALUES (15862, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:824毫秒', '0', '', '2022-02-20 16:00:00'); INSERT INTO `sys_job_log` VALUES (15863, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4892毫秒', '0', '', '2022-02-20 16:00:04'); INSERT INTO `sys_job_log` VALUES (15864, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:676毫秒', '0', '', '2022-02-20 16:10:00'); INSERT INTO `sys_job_log` VALUES (15865, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2138毫秒', '0', '', '2022-02-20 16:10:02'); INSERT INTO `sys_job_log` VALUES (15866, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:682毫秒', '0', '', '2022-02-20 16:20:00'); INSERT INTO `sys_job_log` VALUES (15867, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1733毫秒', '0', '', '2022-02-20 16:20:01'); INSERT INTO `sys_job_log` VALUES (15868, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2898毫秒', '0', '', '2022-02-20 16:20:02'); INSERT INTO `sys_job_log` VALUES (15869, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:662毫秒', '0', '', '2022-02-20 16:30:00'); INSERT INTO `sys_job_log` VALUES (15870, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2140毫秒', '0', '', '2022-02-20 16:30:02'); INSERT INTO `sys_job_log` VALUES (15871, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:278毫秒', '0', '', '2022-02-20 16:40:00'); INSERT INTO `sys_job_log` VALUES (15872, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:734毫秒', '0', '', '2022-02-20 16:40:00'); INSERT INTO `sys_job_log` VALUES (15873, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1771毫秒', '0', '', '2022-02-20 16:40:01'); INSERT INTO `sys_job_log` VALUES (15874, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:990毫秒', '0', '', '2022-02-20 16:50:01'); INSERT INTO `sys_job_log` VALUES (15875, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2330毫秒', '0', '', '2022-02-20 16:50:02'); INSERT INTO `sys_job_log` VALUES (15876, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:865毫秒', '0', '', '2022-02-20 17:00:00'); INSERT INTO `sys_job_log` VALUES (15877, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2751毫秒', '0', '', '2022-02-20 17:00:02'); INSERT INTO `sys_job_log` VALUES (15878, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3018毫秒', '0', '', '2022-02-20 17:00:03'); INSERT INTO `sys_job_log` VALUES (15879, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3007毫秒', '0', '', '2022-02-20 17:00:03'); INSERT INTO `sys_job_log` VALUES (15880, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1200毫秒', '0', '', '2022-02-20 17:10:01'); INSERT INTO `sys_job_log` VALUES (15881, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3479毫秒', '0', '', '2022-02-20 17:10:03'); INSERT INTO `sys_job_log` VALUES (15882, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:354毫秒', '0', '', '2022-02-20 17:20:00'); INSERT INTO `sys_job_log` VALUES (15883, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1218毫秒', '0', '', '2022-02-20 17:20:01'); INSERT INTO `sys_job_log` VALUES (15884, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2035毫秒', '0', '', '2022-02-20 17:20:02'); INSERT INTO `sys_job_log` VALUES (15885, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:891毫秒', '0', '', '2022-02-20 17:30:00'); INSERT INTO `sys_job_log` VALUES (15886, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1713毫秒', '0', '', '2022-02-20 17:30:01'); INSERT INTO `sys_job_log` VALUES (15887, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:446毫秒', '0', '', '2022-02-20 17:40:00'); INSERT INTO `sys_job_log` VALUES (15888, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:839毫秒', '0', '', '2022-02-20 17:40:00'); INSERT INTO `sys_job_log` VALUES (15889, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2217毫秒', '0', '', '2022-02-20 17:40:02'); INSERT INTO `sys_job_log` VALUES (15890, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:755毫秒', '0', '', '2022-02-20 17:50:00'); INSERT INTO `sys_job_log` VALUES (15891, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2697毫秒', '0', '', '2022-02-20 17:50:02'); INSERT INTO `sys_job_log` VALUES (15892, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:270毫秒', '0', '', '2022-02-20 18:00:00'); INSERT INTO `sys_job_log` VALUES (15893, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:806毫秒', '0', '', '2022-02-20 18:00:00'); INSERT INTO `sys_job_log` VALUES (15894, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2084毫秒', '0', '', '2022-02-20 18:00:02'); INSERT INTO `sys_job_log` VALUES (15895, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-20 18:00:03'); INSERT INTO `sys_job_log` VALUES (15896, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:904毫秒', '0', '', '2022-02-20 18:10:00'); INSERT INTO `sys_job_log` VALUES (15897, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2701毫秒', '0', '', '2022-02-20 18:10:02'); INSERT INTO `sys_job_log` VALUES (15898, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:271毫秒', '0', '', '2022-02-20 18:20:00'); INSERT INTO `sys_job_log` VALUES (15899, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:711毫秒', '0', '', '2022-02-20 18:20:00'); INSERT INTO `sys_job_log` VALUES (15900, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2546毫秒', '0', '', '2022-02-20 18:20:02'); INSERT INTO `sys_job_log` VALUES (15901, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3050毫秒', '0', '', '2022-02-20 18:29:20'); INSERT INTO `sys_job_log` VALUES (15902, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3023毫秒', '0', '', '2022-02-20 18:30:03'); INSERT INTO `sys_job_log` VALUES (15903, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4925毫秒', '0', '', '2022-02-20 18:30:04'); INSERT INTO `sys_job_log` VALUES (15904, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:2167毫秒', '0', '', '2022-02-20 18:33:19'); INSERT INTO `sys_job_log` VALUES (15905, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:1508毫秒', '0', '', '2022-02-20 18:34:42'); INSERT INTO `sys_job_log` VALUES (15906, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:620毫秒', '0', '', '2022-02-20 18:38:17'); INSERT INTO `sys_job_log` VALUES (15907, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-20 18:39:52'); INSERT INTO `sys_job_log` VALUES (15908, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1130毫秒', '0', '', '2022-02-20 18:40:01'); INSERT INTO `sys_job_log` VALUES (15909, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3012毫秒', '0', '', '2022-02-20 18:40:03'); INSERT INTO `sys_job_log` VALUES (15910, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4422毫秒', '0', '', '2022-02-20 18:40:04'); INSERT INTO `sys_job_log` VALUES (15911, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-20 18:47:20'); INSERT INTO `sys_job_log` VALUES (15912, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1912毫秒', '0', '', '2022-02-20 18:50:01'); INSERT INTO `sys_job_log` VALUES (15913, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2786毫秒', '0', '', '2022-02-20 18:50:02'); INSERT INTO `sys_job_log` VALUES (15914, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:461毫秒', '0', '', '2022-02-20 19:00:00'); INSERT INTO `sys_job_log` VALUES (15915, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:921毫秒', '0', '', '2022-02-20 19:00:00'); INSERT INTO `sys_job_log` VALUES (15916, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3008毫秒', '0', '', '2022-02-20 19:00:03'); INSERT INTO `sys_job_log` VALUES (15917, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5037毫秒', '0', '', '2022-02-20 19:00:05'); INSERT INTO `sys_job_log` VALUES (15918, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:768毫秒', '0', '', '2022-02-20 19:10:00'); INSERT INTO `sys_job_log` VALUES (15919, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2832毫秒', '0', '', '2022-02-20 19:10:02'); INSERT INTO `sys_job_log` VALUES (15920, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3010毫秒', '0', '', '2022-02-20 19:10:03'); INSERT INTO `sys_job_log` VALUES (15921, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:332毫秒', '0', '', '2022-02-20 19:20:00'); INSERT INTO `sys_job_log` VALUES (15922, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-02-20 19:20:00'); INSERT INTO `sys_job_log` VALUES (15923, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2542毫秒', '0', '', '2022-02-20 19:20:02'); INSERT INTO `sys_job_log` VALUES (15924, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:765毫秒', '0', '', '2022-02-20 19:30:00'); INSERT INTO `sys_job_log` VALUES (15925, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3747毫秒', '0', '', '2022-02-20 19:30:03'); INSERT INTO `sys_job_log` VALUES (15926, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:423毫秒', '0', '', '2022-02-20 19:40:00'); INSERT INTO `sys_job_log` VALUES (15927, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:889毫秒', '0', '', '2022-02-20 19:40:00'); INSERT INTO `sys_job_log` VALUES (15928, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2901毫秒', '0', '', '2022-02-20 19:40:02'); INSERT INTO `sys_job_log` VALUES (15929, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1254毫秒', '0', '', '2022-02-20 19:50:01'); INSERT INTO `sys_job_log` VALUES (15930, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9646毫秒', '0', '', '2022-02-20 19:50:09'); INSERT INTO `sys_job_log` VALUES (15931, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:843毫秒', '0', '', '2022-02-20 20:00:00'); INSERT INTO `sys_job_log` VALUES (15932, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-20 20:00:03'); INSERT INTO `sys_job_log` VALUES (15933, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-02-20 20:00:03'); INSERT INTO `sys_job_log` VALUES (15934, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:18016毫秒', '0', '', '2022-02-20 20:00:18'); INSERT INTO `sys_job_log` VALUES (15935, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3014毫秒', '0', '', '2022-02-20 20:10:03'); INSERT INTO `sys_job_log` VALUES (15936, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:18094毫秒', '0', '', '2022-02-20 20:10:18'); INSERT INTO `sys_job_log` VALUES (15937, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-20 20:20:03'); INSERT INTO `sys_job_log` VALUES (15938, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-02-20 20:20:03'); INSERT INTO `sys_job_log` VALUES (15939, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-20 20:20:03'); INSERT INTO `sys_job_log` VALUES (15940, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:18016毫秒', '0', '', '2022-02-20 20:20:18'); INSERT INTO `sys_job_log` VALUES (15941, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-20 20:24:45'); INSERT INTO `sys_job_log` VALUES (15942, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1440毫秒', '0', '', '2022-02-20 20:30:01'); INSERT INTO `sys_job_log` VALUES (15943, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2036毫秒', '0', '', '2022-02-20 20:30:02'); INSERT INTO `sys_job_log` VALUES (15944, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-20 20:32:57'); INSERT INTO `sys_job_log` VALUES (15945, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:463毫秒', '0', '', '2022-02-20 20:40:00'); INSERT INTO `sys_job_log` VALUES (15946, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:997毫秒', '0', '', '2022-02-20 20:40:01'); INSERT INTO `sys_job_log` VALUES (15947, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2246毫秒', '0', '', '2022-02-20 20:40:02'); INSERT INTO `sys_job_log` VALUES (15948, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:692毫秒', '0', '', '2022-02-20 20:50:00'); INSERT INTO `sys_job_log` VALUES (15949, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2048毫秒', '0', '', '2022-02-20 20:50:02'); INSERT INTO `sys_job_log` VALUES (15950, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:411毫秒', '0', '', '2022-02-20 21:00:00'); INSERT INTO `sys_job_log` VALUES (15951, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1455毫秒', '0', '', '2022-02-20 21:00:01'); INSERT INTO `sys_job_log` VALUES (15952, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1918毫秒', '0', '', '2022-02-20 21:00:01'); INSERT INTO `sys_job_log` VALUES (15953, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3006毫秒', '0', '', '2022-02-20 21:00:03'); INSERT INTO `sys_job_log` VALUES (15954, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2566毫秒', '0', '', '2022-02-20 21:10:02'); INSERT INTO `sys_job_log` VALUES (15955, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4482毫秒', '0', '', '2022-02-20 21:10:04'); INSERT INTO `sys_job_log` VALUES (15956, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:997毫秒', '0', '', '2022-02-20 21:20:01'); INSERT INTO `sys_job_log` VALUES (15957, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2019毫秒', '0', '', '2022-02-20 21:20:02'); INSERT INTO `sys_job_log` VALUES (15958, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-20 21:20:03'); INSERT INTO `sys_job_log` VALUES (15959, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2760毫秒', '0', '', '2022-02-20 21:30:02'); INSERT INTO `sys_job_log` VALUES (15960, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4205毫秒', '0', '', '2022-02-20 21:30:04'); INSERT INTO `sys_job_log` VALUES (15961, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-20 21:37:10'); INSERT INTO `sys_job_log` VALUES (15962, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:454毫秒', '0', '', '2022-02-20 21:40:00'); INSERT INTO `sys_job_log` VALUES (15963, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:935毫秒', '0', '', '2022-02-20 21:40:00'); INSERT INTO `sys_job_log` VALUES (15964, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3010毫秒', '0', '', '2022-02-20 21:40:03'); INSERT INTO `sys_job_log` VALUES (15965, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3013毫秒', '0', '', '2022-02-20 21:41:10'); INSERT INTO `sys_job_log` VALUES (15966, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:802毫秒', '0', '', '2022-02-20 21:50:00'); INSERT INTO `sys_job_log` VALUES (15967, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2720毫秒', '0', '', '2022-02-20 21:50:02'); INSERT INTO `sys_job_log` VALUES (15968, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:11毫秒', '0', '', '2022-02-20 22:00:00'); INSERT INTO `sys_job_log` VALUES (15969, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1030毫秒', '0', '', '2022-02-20 22:00:01'); INSERT INTO `sys_job_log` VALUES (15970, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2819毫秒', '0', '', '2022-02-20 22:00:02'); INSERT INTO `sys_job_log` VALUES (15971, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-20 22:00:03'); INSERT INTO `sys_job_log` VALUES (15972, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:917毫秒', '0', '', '2022-02-20 22:10:00'); INSERT INTO `sys_job_log` VALUES (15973, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1298毫秒', '0', '', '2022-02-20 22:10:01'); INSERT INTO `sys_job_log` VALUES (15974, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1987毫秒', '0', '', '2022-02-20 22:20:02'); INSERT INTO `sys_job_log` VALUES (15975, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2428毫秒', '0', '', '2022-02-20 22:20:02'); INSERT INTO `sys_job_log` VALUES (15976, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4078毫秒', '0', '', '2022-02-20 22:20:04'); INSERT INTO `sys_job_log` VALUES (15977, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:979毫秒', '0', '', '2022-02-20 22:30:00'); INSERT INTO `sys_job_log` VALUES (15978, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2576毫秒', '0', '', '2022-02-20 22:30:02'); INSERT INTO `sys_job_log` VALUES (15979, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:935毫秒', '0', '', '2022-02-20 22:40:00'); INSERT INTO `sys_job_log` VALUES (15980, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-20 22:40:03'); INSERT INTO `sys_job_log` VALUES (15981, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3555毫秒', '0', '', '2022-02-20 22:40:03'); INSERT INTO `sys_job_log` VALUES (15982, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1288毫秒', '0', '', '2022-02-20 22:50:01'); INSERT INTO `sys_job_log` VALUES (15983, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2713毫秒', '0', '', '2022-02-20 22:50:02'); INSERT INTO `sys_job_log` VALUES (15984, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-20 22:51:58'); INSERT INTO `sys_job_log` VALUES (15985, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:411毫秒', '0', '', '2022-02-20 23:00:00'); INSERT INTO `sys_job_log` VALUES (15986, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:913毫秒', '0', '', '2022-02-20 23:00:00'); INSERT INTO `sys_job_log` VALUES (15987, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3052毫秒', '0', '', '2022-02-20 23:00:03'); INSERT INTO `sys_job_log` VALUES (15988, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3018毫秒', '0', '', '2022-02-20 23:00:03'); INSERT INTO `sys_job_log` VALUES (15989, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1138毫秒', '0', '', '2022-02-20 23:10:01'); INSERT INTO `sys_job_log` VALUES (15990, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1265毫秒', '0', '', '2022-02-20 23:10:01'); INSERT INTO `sys_job_log` VALUES (15991, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3018毫秒', '0', '', '2022-02-20 23:10:03'); INSERT INTO `sys_job_log` VALUES (15992, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:821毫秒', '0', '', '2022-02-20 23:20:00'); INSERT INTO `sys_job_log` VALUES (15993, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2611毫秒', '0', '', '2022-02-20 23:20:02'); INSERT INTO `sys_job_log` VALUES (15994, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3009毫秒', '0', '', '2022-02-20 23:20:03'); INSERT INTO `sys_job_log` VALUES (15995, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3568毫秒', '0', '', '2022-02-21 08:50:03'); INSERT INTO `sys_job_log` VALUES (15996, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5127毫秒', '0', '', '2022-02-21 08:50:05'); INSERT INTO `sys_job_log` VALUES (15997, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:197毫秒', '0', '', '2022-02-21 09:00:00'); INSERT INTO `sys_job_log` VALUES (15998, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:569毫秒', '0', '', '2022-02-21 09:00:00'); INSERT INTO `sys_job_log` VALUES (15999, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1379毫秒', '0', '', '2022-02-21 09:00:01'); INSERT INTO `sys_job_log` VALUES (16000, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3024毫秒', '0', '', '2022-02-21 09:00:03'); INSERT INTO `sys_job_log` VALUES (16001, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3009毫秒', '0', '', '2022-02-21 09:10:03'); INSERT INTO `sys_job_log` VALUES (16002, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:782毫秒', '0', '', '2022-02-21 09:10:03'); INSERT INTO `sys_job_log` VALUES (16003, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4554毫秒', '0', '', '2022-02-21 09:10:04'); INSERT INTO `sys_job_log` VALUES (16004, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1150毫秒', '0', '', '2022-02-21 09:10:05'); INSERT INTO `sys_job_log` VALUES (16005, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:199毫秒', '0', '', '2022-02-21 09:20:00'); INSERT INTO `sys_job_log` VALUES (16006, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:550毫秒', '0', '', '2022-02-21 09:20:00'); INSERT INTO `sys_job_log` VALUES (16007, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1782毫秒', '0', '', '2022-02-21 09:20:01'); INSERT INTO `sys_job_log` VALUES (16008, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2965毫秒', '0', '', '2022-02-21 09:30:02'); INSERT INTO `sys_job_log` VALUES (16009, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4267毫秒', '0', '', '2022-02-21 09:30:04'); INSERT INTO `sys_job_log` VALUES (16010, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:264毫秒', '0', '', '2022-02-21 09:40:00'); INSERT INTO `sys_job_log` VALUES (16011, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:726毫秒', '0', '', '2022-02-21 09:40:00'); INSERT INTO `sys_job_log` VALUES (16012, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1974毫秒', '0', '', '2022-02-21 09:40:01'); INSERT INTO `sys_job_log` VALUES (16013, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-02-21 09:50:03'); INSERT INTO `sys_job_log` VALUES (16014, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4389毫秒', '0', '', '2022-02-21 09:50:04'); INSERT INTO `sys_job_log` VALUES (16015, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:195毫秒', '0', '', '2022-02-21 10:00:00'); INSERT INTO `sys_job_log` VALUES (16016, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:655毫秒', '0', '', '2022-02-21 10:00:00'); INSERT INTO `sys_job_log` VALUES (16017, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-21 10:00:03'); INSERT INTO `sys_job_log` VALUES (16018, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4648毫秒', '0', '', '2022-02-21 10:00:04'); INSERT INTO `sys_job_log` VALUES (16019, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1773毫秒', '0', '', '2022-02-21 10:10:01'); INSERT INTO `sys_job_log` VALUES (16020, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6767毫秒', '0', '', '2022-02-21 10:10:06'); INSERT INTO `sys_job_log` VALUES (16021, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2214毫秒', '0', '', '2022-02-21 10:20:02'); INSERT INTO `sys_job_log` VALUES (16022, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3008毫秒', '0', '', '2022-02-21 10:20:03'); INSERT INTO `sys_job_log` VALUES (16023, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4222毫秒', '0', '', '2022-02-21 10:20:04'); INSERT INTO `sys_job_log` VALUES (16024, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1880毫秒', '0', '', '2022-02-21 10:30:01'); INSERT INTO `sys_job_log` VALUES (16025, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4550毫秒', '0', '', '2022-02-21 10:30:04'); INSERT INTO `sys_job_log` VALUES (16026, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1672毫秒', '0', '', '2022-02-21 10:40:01'); INSERT INTO `sys_job_log` VALUES (16027, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2022毫秒', '0', '', '2022-02-21 10:40:02'); INSERT INTO `sys_job_log` VALUES (16028, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4458毫秒', '0', '', '2022-02-21 10:40:04'); INSERT INTO `sys_job_log` VALUES (16029, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2117毫秒', '0', '', '2022-02-21 10:50:02'); INSERT INTO `sys_job_log` VALUES (16030, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7424毫秒', '0', '', '2022-02-21 10:50:07'); INSERT INTO `sys_job_log` VALUES (16031, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1721毫秒', '0', '', '2022-02-21 11:00:01'); INSERT INTO `sys_job_log` VALUES (16032, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2328毫秒', '0', '', '2022-02-21 11:00:02'); INSERT INTO `sys_job_log` VALUES (16033, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-21 11:00:03'); INSERT INTO `sys_job_log` VALUES (16034, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4372毫秒', '0', '', '2022-02-21 11:00:04'); INSERT INTO `sys_job_log` VALUES (16035, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:2769毫秒', '0', '', '2022-02-21 11:02:34'); INSERT INTO `sys_job_log` VALUES (16036, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:3008毫秒', '0', '', '2022-02-21 11:05:10'); INSERT INTO `sys_job_log` VALUES (16037, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:2580毫秒', '0', '', '2022-02-21 11:07:09'); INSERT INTO `sys_job_log` VALUES (16038, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3013毫秒', '0', '', '2022-02-21 11:10:03'); INSERT INTO `sys_job_log` VALUES (16039, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3043毫秒', '0', '', '2022-02-21 11:10:03'); INSERT INTO `sys_job_log` VALUES (16040, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4412毫秒', '0', '', '2022-02-21 11:10:04'); INSERT INTO `sys_job_log` VALUES (16041, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-02-21 11:20:00'); INSERT INTO `sys_job_log` VALUES (16042, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1205毫秒', '0', '', '2022-02-21 11:20:01'); INSERT INTO `sys_job_log` VALUES (16043, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4904毫秒', '0', '', '2022-02-21 11:20:04'); INSERT INTO `sys_job_log` VALUES (16044, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-02-21 11:30:00'); INSERT INTO `sys_job_log` VALUES (16045, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2817毫秒', '0', '', '2022-02-21 11:30:02'); INSERT INTO `sys_job_log` VALUES (16046, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:859毫秒', '0', '', '2022-02-21 11:40:00'); INSERT INTO `sys_job_log` VALUES (16047, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-21 11:40:03'); INSERT INTO `sys_job_log` VALUES (16048, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4271毫秒', '0', '', '2022-02-21 11:40:04'); INSERT INTO `sys_job_log` VALUES (16049, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:799毫秒', '0', '', '2022-02-21 11:50:00'); INSERT INTO `sys_job_log` VALUES (16050, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3023毫秒', '0', '', '2022-02-21 11:50:03'); INSERT INTO `sys_job_log` VALUES (16051, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:756毫秒', '0', '', '2022-02-21 12:00:00'); INSERT INTO `sys_job_log` VALUES (16052, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1254毫秒', '0', '', '2022-02-21 12:00:01'); INSERT INTO `sys_job_log` VALUES (16053, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2730毫秒', '0', '', '2022-02-21 12:00:02'); INSERT INTO `sys_job_log` VALUES (16054, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3008毫秒', '0', '', '2022-02-21 12:00:03'); INSERT INTO `sys_job_log` VALUES (16055, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:821毫秒', '0', '', '2022-02-21 12:10:00'); INSERT INTO `sys_job_log` VALUES (16056, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2195毫秒', '0', '', '2022-02-21 12:10:02'); INSERT INTO `sys_job_log` VALUES (16057, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:551毫秒', '0', '', '2022-02-21 12:20:00'); INSERT INTO `sys_job_log` VALUES (16058, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3018毫秒', '0', '', '2022-02-21 12:20:03'); INSERT INTO `sys_job_log` VALUES (16059, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3012毫秒', '0', '', '2022-02-21 12:20:03'); INSERT INTO `sys_job_log` VALUES (16060, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3283毫秒', '0', '', '2022-02-21 12:20:03'); INSERT INTO `sys_job_log` VALUES (16061, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:654毫秒', '0', '', '2022-02-21 12:30:00'); INSERT INTO `sys_job_log` VALUES (16062, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3359毫秒', '0', '', '2022-02-21 12:30:03'); INSERT INTO `sys_job_log` VALUES (16063, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:237毫秒', '0', '', '2022-02-21 12:40:00'); INSERT INTO `sys_job_log` VALUES (16064, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-02-21 12:40:00'); INSERT INTO `sys_job_log` VALUES (16065, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2413毫秒', '0', '', '2022-02-21 12:40:02'); INSERT INTO `sys_job_log` VALUES (16066, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:514毫秒', '0', '', '2022-02-21 12:50:00'); INSERT INTO `sys_job_log` VALUES (16067, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4842毫秒', '0', '', '2022-02-21 12:50:04'); INSERT INTO `sys_job_log` VALUES (16068, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:491毫秒', '0', '', '2022-02-21 13:00:00'); INSERT INTO `sys_job_log` VALUES (16069, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1026毫秒', '0', '', '2022-02-21 13:00:01'); INSERT INTO `sys_job_log` VALUES (16070, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-21 13:00:03'); INSERT INTO `sys_job_log` VALUES (16071, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-21 13:00:03'); INSERT INTO `sys_job_log` VALUES (16072, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-02-21 13:10:00'); INSERT INTO `sys_job_log` VALUES (16073, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2044毫秒', '0', '', '2022-02-21 13:10:02'); INSERT INTO `sys_job_log` VALUES (16074, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:247毫秒', '0', '', '2022-02-21 13:20:00'); INSERT INTO `sys_job_log` VALUES (16075, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:522毫秒', '0', '', '2022-02-21 13:20:00'); INSERT INTO `sys_job_log` VALUES (16076, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1687毫秒', '0', '', '2022-02-21 13:20:01'); INSERT INTO `sys_job_log` VALUES (16077, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3006毫秒', '0', '', '2022-02-21 13:20:03'); INSERT INTO `sys_job_log` VALUES (16078, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2234毫秒', '0', '', '2022-02-21 13:30:02'); INSERT INTO `sys_job_log` VALUES (16079, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4280毫秒', '0', '', '2022-02-21 13:30:04'); INSERT INTO `sys_job_log` VALUES (16080, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:569毫秒', '0', '', '2022-02-21 13:40:00'); INSERT INTO `sys_job_log` VALUES (16081, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2947毫秒', '0', '', '2022-02-21 13:40:02'); INSERT INTO `sys_job_log` VALUES (16082, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-21 13:40:03'); INSERT INTO `sys_job_log` VALUES (16083, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:610毫秒', '0', '', '2022-02-21 13:50:00'); INSERT INTO `sys_job_log` VALUES (16084, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3973毫秒', '0', '', '2022-02-21 13:50:03'); INSERT INTO `sys_job_log` VALUES (16085, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:267毫秒', '0', '', '2022-02-21 14:00:00'); INSERT INTO `sys_job_log` VALUES (16086, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:694毫秒', '0', '', '2022-02-21 14:00:00'); INSERT INTO `sys_job_log` VALUES (16087, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-21 14:00:03'); INSERT INTO `sys_job_log` VALUES (16088, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4816毫秒', '0', '', '2022-02-21 14:00:04'); INSERT INTO `sys_job_log` VALUES (16089, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-02-21 14:10:00'); INSERT INTO `sys_job_log` VALUES (16090, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3689毫秒', '0', '', '2022-02-21 14:10:03'); INSERT INTO `sys_job_log` VALUES (16091, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2361毫秒', '0', '', '2022-02-21 14:20:02'); INSERT INTO `sys_job_log` VALUES (16092, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3009毫秒', '0', '', '2022-02-21 14:20:03'); INSERT INTO `sys_job_log` VALUES (16093, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3817毫秒', '0', '', '2022-02-21 14:20:03'); INSERT INTO `sys_job_log` VALUES (16094, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:679毫秒', '0', '', '2022-02-21 14:30:00'); INSERT INTO `sys_job_log` VALUES (16095, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2258毫秒', '0', '', '2022-02-21 14:30:02'); INSERT INTO `sys_job_log` VALUES (16096, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:168毫秒', '0', '', '2022-02-21 14:40:00'); INSERT INTO `sys_job_log` VALUES (16097, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:914毫秒', '0', '', '2022-02-21 14:40:00'); INSERT INTO `sys_job_log` VALUES (16098, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1378毫秒', '0', '', '2022-02-21 14:40:01'); INSERT INTO `sys_job_log` VALUES (16099, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:665毫秒', '0', '', '2022-02-21 14:50:00'); INSERT INTO `sys_job_log` VALUES (16100, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4699毫秒', '0', '', '2022-02-21 14:50:04'); INSERT INTO `sys_job_log` VALUES (16101, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:668毫秒', '0', '', '2022-02-21 15:00:00'); INSERT INTO `sys_job_log` VALUES (16102, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1177毫秒', '0', '', '2022-02-21 15:00:01'); INSERT INTO `sys_job_log` VALUES (16103, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3005毫秒', '0', '', '2022-02-21 15:00:03'); INSERT INTO `sys_job_log` VALUES (16104, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3609毫秒', '0', '', '2022-02-21 15:00:03'); INSERT INTO `sys_job_log` VALUES (16105, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:793毫秒', '0', '', '2022-02-21 15:10:00'); INSERT INTO `sys_job_log` VALUES (16106, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3006毫秒', '0', '', '2022-02-21 15:10:03'); INSERT INTO `sys_job_log` VALUES (16107, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4123毫秒', '0', '', '2022-02-21 15:10:04'); INSERT INTO `sys_job_log` VALUES (16108, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:286毫秒', '0', '', '2022-02-21 15:20:00'); INSERT INTO `sys_job_log` VALUES (16109, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:661毫秒', '0', '', '2022-02-21 15:20:00'); INSERT INTO `sys_job_log` VALUES (16110, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2850毫秒', '0', '', '2022-02-21 15:20:02'); INSERT INTO `sys_job_log` VALUES (16111, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-02-21 15:30:00'); INSERT INTO `sys_job_log` VALUES (16112, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5753毫秒', '0', '', '2022-02-21 15:30:05'); INSERT INTO `sys_job_log` VALUES (16113, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:221毫秒', '0', '', '2022-02-21 15:40:00'); INSERT INTO `sys_job_log` VALUES (16114, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-02-21 15:40:00'); INSERT INTO `sys_job_log` VALUES (16115, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3716毫秒', '0', '', '2022-02-21 15:40:03'); INSERT INTO `sys_job_log` VALUES (16116, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:714毫秒', '0', '', '2022-02-21 15:50:00'); INSERT INTO `sys_job_log` VALUES (16117, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5449毫秒', '0', '', '2022-02-21 15:50:05'); INSERT INTO `sys_job_log` VALUES (16118, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-21 15:53:49'); INSERT INTO `sys_job_log` VALUES (16119, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:938毫秒', '0', '', '2022-02-21 16:00:00'); INSERT INTO `sys_job_log` VALUES (16120, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-21 16:00:03'); INSERT INTO `sys_job_log` VALUES (16121, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-21 16:00:03'); INSERT INTO `sys_job_log` VALUES (16122, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6358毫秒', '0', '', '2022-02-21 16:00:06'); INSERT INTO `sys_job_log` VALUES (16123, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-02-21 16:10:00'); INSERT INTO `sys_job_log` VALUES (16124, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1720毫秒', '0', '', '2022-02-21 16:10:01'); INSERT INTO `sys_job_log` VALUES (16125, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:227毫秒', '0', '', '2022-02-21 16:20:00'); INSERT INTO `sys_job_log` VALUES (16126, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:581毫秒', '0', '', '2022-02-21 16:20:00'); INSERT INTO `sys_job_log` VALUES (16127, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3547毫秒', '0', '', '2022-02-21 16:20:03'); INSERT INTO `sys_job_log` VALUES (16128, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-02-21 16:30:00'); INSERT INTO `sys_job_log` VALUES (16129, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1863毫秒', '0', '', '2022-02-21 16:30:01'); INSERT INTO `sys_job_log` VALUES (16130, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:534毫秒', '0', '', '2022-02-21 16:40:00'); INSERT INTO `sys_job_log` VALUES (16131, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1087毫秒', '0', '', '2022-02-21 16:40:01'); INSERT INTO `sys_job_log` VALUES (16132, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-21 16:40:03'); INSERT INTO `sys_job_log` VALUES (16133, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:612毫秒', '0', '', '2022-02-21 16:50:00'); INSERT INTO `sys_job_log` VALUES (16134, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2517毫秒', '0', '', '2022-02-21 16:50:02'); INSERT INTO `sys_job_log` VALUES (16135, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:261毫秒', '0', '', '2022-02-21 17:00:00'); INSERT INTO `sys_job_log` VALUES (16136, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:672毫秒', '0', '', '2022-02-21 17:00:00'); INSERT INTO `sys_job_log` VALUES (16137, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3207毫秒', '0', '', '2022-02-21 17:00:03'); INSERT INTO `sys_job_log` VALUES (16138, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:941毫秒', '0', '', '2022-02-21 17:10:00'); INSERT INTO `sys_job_log` VALUES (16139, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3683毫秒', '0', '', '2022-02-21 17:10:03'); INSERT INTO `sys_job_log` VALUES (16140, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:610毫秒', '0', '', '2022-02-21 17:20:00'); INSERT INTO `sys_job_log` VALUES (16141, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2518毫秒', '0', '', '2022-02-21 17:20:02'); INSERT INTO `sys_job_log` VALUES (16142, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-21 17:20:03'); INSERT INTO `sys_job_log` VALUES (16143, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-21 17:20:03'); INSERT INTO `sys_job_log` VALUES (16144, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3004毫秒', '0', '', '2022-02-21 17:30:03'); INSERT INTO `sys_job_log` VALUES (16145, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5507毫秒', '0', '', '2022-02-21 17:30:05'); INSERT INTO `sys_job_log` VALUES (16146, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1050毫秒', '0', '', '2022-02-21 18:05:11'); INSERT INTO `sys_job_log` VALUES (16147, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:674毫秒', '0', '', '2022-02-21 18:05:12'); INSERT INTO `sys_job_log` VALUES (16148, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1821毫秒', '0', '', '2022-02-21 18:05:12'); INSERT INTO `sys_job_log` VALUES (16149, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:517毫秒', '0', '', '2022-02-21 18:05:12'); INSERT INTO `sys_job_log` VALUES (16150, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-21 18:05:13'); INSERT INTO `sys_job_log` VALUES (16151, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3004毫秒', '0', '', '2022-02-21 18:05:13'); INSERT INTO `sys_job_log` VALUES (16152, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:222毫秒', '0', '', '2022-02-21 18:05:13'); INSERT INTO `sys_job_log` VALUES (16153, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1942毫秒', '0', '', '2022-02-21 18:05:14'); INSERT INTO `sys_job_log` VALUES (16154, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1286毫秒', '0', '', '2022-02-21 18:05:15'); INSERT INTO `sys_job_log` VALUES (16155, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:868毫秒', '0', '', '2022-02-21 18:10:00'); INSERT INTO `sys_job_log` VALUES (16156, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3056毫秒', '0', '', '2022-02-21 18:10:03'); INSERT INTO `sys_job_log` VALUES (16157, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:442毫秒', '0', '', '2022-02-21 18:20:00'); INSERT INTO `sys_job_log` VALUES (16158, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1009毫秒', '0', '', '2022-02-21 18:20:01'); INSERT INTO `sys_job_log` VALUES (16159, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2396毫秒', '0', '', '2022-02-21 18:20:02'); INSERT INTO `sys_job_log` VALUES (16160, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:838毫秒', '0', '', '2022-02-21 18:30:00'); INSERT INTO `sys_job_log` VALUES (16161, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2728毫秒', '0', '', '2022-02-21 18:30:02'); INSERT INTO `sys_job_log` VALUES (16162, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:677毫秒', '0', '', '2022-02-21 18:40:00'); INSERT INTO `sys_job_log` VALUES (16163, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1823毫秒', '0', '', '2022-02-21 18:40:01'); INSERT INTO `sys_job_log` VALUES (16164, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-21 18:40:03'); INSERT INTO `sys_job_log` VALUES (16165, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:871毫秒', '0', '', '2022-02-21 18:50:00'); INSERT INTO `sys_job_log` VALUES (16166, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2507毫秒', '0', '', '2022-02-21 18:50:02'); INSERT INTO `sys_job_log` VALUES (16167, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:326毫秒', '0', '', '2022-02-21 19:00:00'); INSERT INTO `sys_job_log` VALUES (16168, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:865毫秒', '0', '', '2022-02-21 19:00:00'); INSERT INTO `sys_job_log` VALUES (16169, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3412毫秒', '0', '', '2022-02-21 19:00:03'); INSERT INTO `sys_job_log` VALUES (16170, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:773毫秒', '0', '', '2022-02-21 19:10:00'); INSERT INTO `sys_job_log` VALUES (16171, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3017毫秒', '0', '', '2022-02-21 19:10:03'); INSERT INTO `sys_job_log` VALUES (16172, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3330毫秒', '0', '', '2022-02-21 19:10:03'); INSERT INTO `sys_job_log` VALUES (16173, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:381毫秒', '0', '', '2022-02-21 19:20:00'); INSERT INTO `sys_job_log` VALUES (16174, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1071毫秒', '0', '', '2022-02-21 19:20:01'); INSERT INTO `sys_job_log` VALUES (16175, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3395毫秒', '0', '', '2022-02-21 19:20:03'); INSERT INTO `sys_job_log` VALUES (16176, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:731毫秒', '0', '', '2022-02-21 19:30:00'); INSERT INTO `sys_job_log` VALUES (16177, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3033毫秒', '0', '', '2022-02-21 19:30:03'); INSERT INTO `sys_job_log` VALUES (16178, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:416毫秒', '0', '', '2022-02-21 19:40:00'); INSERT INTO `sys_job_log` VALUES (16179, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1118毫秒', '0', '', '2022-02-21 19:40:01'); INSERT INTO `sys_job_log` VALUES (16180, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2801毫秒', '0', '', '2022-02-21 19:40:02'); INSERT INTO `sys_job_log` VALUES (16181, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1317毫秒', '0', '', '2022-02-21 19:50:01'); INSERT INTO `sys_job_log` VALUES (16182, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2677毫秒', '0', '', '2022-02-21 19:50:02'); INSERT INTO `sys_job_log` VALUES (16183, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1066毫秒', '0', '', '2022-02-21 20:00:01'); INSERT INTO `sys_job_log` VALUES (16184, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2159毫秒', '0', '', '2022-02-21 20:00:02'); INSERT INTO `sys_job_log` VALUES (16185, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3013毫秒', '0', '', '2022-02-21 20:00:03'); INSERT INTO `sys_job_log` VALUES (16186, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3016毫秒', '0', '', '2022-02-21 20:00:03'); INSERT INTO `sys_job_log` VALUES (16187, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1057毫秒', '0', '', '2022-02-21 20:10:01'); INSERT INTO `sys_job_log` VALUES (16188, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1517毫秒', '0', '', '2022-02-21 20:10:01'); INSERT INTO `sys_job_log` VALUES (16189, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-21 20:20:03'); INSERT INTO `sys_job_log` VALUES (16190, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3005毫秒', '0', '', '2022-02-21 20:20:03'); INSERT INTO `sys_job_log` VALUES (16191, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10585毫秒', '0', '', '2022-02-21 20:20:10'); INSERT INTO `sys_job_log` VALUES (16192, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-02-21 20:30:00'); INSERT INTO `sys_job_log` VALUES (16193, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2135毫秒', '0', '', '2022-02-21 20:30:02'); INSERT INTO `sys_job_log` VALUES (16194, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:703毫秒', '0', '', '2022-02-21 20:40:00'); INSERT INTO `sys_job_log` VALUES (16195, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1782毫秒', '0', '', '2022-02-21 20:40:01'); INSERT INTO `sys_job_log` VALUES (16196, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-21 20:40:03'); INSERT INTO `sys_job_log` VALUES (16197, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:942毫秒', '0', '', '2022-02-21 20:50:00'); INSERT INTO `sys_job_log` VALUES (16198, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1936毫秒', '0', '', '2022-02-21 20:50:01'); INSERT INTO `sys_job_log` VALUES (16199, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:668毫秒', '0', '', '2022-02-21 21:20:00'); INSERT INTO `sys_job_log` VALUES (16200, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1165毫秒', '0', '', '2022-02-21 21:20:01'); INSERT INTO `sys_job_log` VALUES (16201, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2848毫秒', '0', '', '2022-02-21 21:20:02'); INSERT INTO `sys_job_log` VALUES (16202, '36壁纸网-爬虫-定时任务', 'SYSTEM', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3203毫秒', '0', '', '2022-02-21 21:20:03'); INSERT INTO `sys_job_log` VALUES (16203, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1072毫秒', '0', '', '2022-02-21 21:30:01'); INSERT INTO `sys_job_log` VALUES (16204, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2645毫秒', '0', '', '2022-02-21 21:30:02'); INSERT INTO `sys_job_log` VALUES (16205, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2047毫秒', '0', '', '2022-02-21 21:40:02'); INSERT INTO `sys_job_log` VALUES (16206, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2462毫秒', '0', '', '2022-02-21 21:40:02'); INSERT INTO `sys_job_log` VALUES (16207, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3816毫秒', '0', '', '2022-02-21 21:40:03'); INSERT INTO `sys_job_log` VALUES (16208, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:783毫秒', '0', '', '2022-02-21 21:50:00'); INSERT INTO `sys_job_log` VALUES (16209, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2218毫秒', '0', '', '2022-02-21 21:50:02'); INSERT INTO `sys_job_log` VALUES (16210, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:640毫秒', '0', '', '2022-02-21 22:00:00'); INSERT INTO `sys_job_log` VALUES (16211, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:711毫秒', '0', '', '2022-02-21 22:00:00'); INSERT INTO `sys_job_log` VALUES (16212, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3006毫秒', '0', '', '2022-02-21 22:00:03'); INSERT INTO `sys_job_log` VALUES (16213, '新浪新闻-爬虫-定时任务', 'SYSTEM', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3009毫秒', '0', '', '2022-02-21 22:00:03'); INSERT INTO `sys_job_log` VALUES (16214, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4103毫秒', '0', '', '2022-02-21 22:00:04'); INSERT INTO `sys_job_log` VALUES (16215, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:788毫秒', '0', '', '2022-02-21 22:10:00'); INSERT INTO `sys_job_log` VALUES (16216, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3432毫秒', '0', '', '2022-02-21 22:10:03'); INSERT INTO `sys_job_log` VALUES (16217, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:344毫秒', '0', '', '2022-02-21 22:20:00'); INSERT INTO `sys_job_log` VALUES (16218, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1183毫秒', '0', '', '2022-02-21 22:20:01'); INSERT INTO `sys_job_log` VALUES (16219, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1935毫秒', '0', '', '2022-02-21 22:20:01'); INSERT INTO `sys_job_log` VALUES (16220, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:936毫秒', '0', '', '2022-02-21 22:30:00'); INSERT INTO `sys_job_log` VALUES (16221, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2117毫秒', '0', '', '2022-02-21 22:30:02'); INSERT INTO `sys_job_log` VALUES (16222, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-02-21 22:40:00'); INSERT INTO `sys_job_log` VALUES (16223, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2515毫秒', '0', '', '2022-02-21 22:40:02'); INSERT INTO `sys_job_log` VALUES (16224, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2915毫秒', '0', '', '2022-02-21 22:40:02'); INSERT INTO `sys_job_log` VALUES (16225, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:721毫秒', '0', '', '2022-02-21 22:50:00'); INSERT INTO `sys_job_log` VALUES (16226, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2870毫秒', '0', '', '2022-02-21 22:50:02'); INSERT INTO `sys_job_log` VALUES (16227, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:373毫秒', '0', '', '2022-02-21 23:00:00'); INSERT INTO `sys_job_log` VALUES (16228, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:771毫秒', '0', '', '2022-02-21 23:00:00'); INSERT INTO `sys_job_log` VALUES (16229, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2486毫秒', '0', '', '2022-02-21 23:00:02'); INSERT INTO `sys_job_log` VALUES (16230, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:836毫秒', '0', '', '2022-02-21 23:10:00'); INSERT INTO `sys_job_log` VALUES (16231, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1838毫秒', '0', '', '2022-02-21 23:10:01'); INSERT INTO `sys_job_log` VALUES (16232, '文案网-爬虫-定时任务', 'SYSTEM', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3015毫秒', '0', '', '2022-02-21 23:10:03'); INSERT INTO `sys_job_log` VALUES (16233, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:773毫秒', '0', '', '2022-02-21 23:20:00'); INSERT INTO `sys_job_log` VALUES (16234, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3015毫秒', '0', '', '2022-02-21 23:20:03'); INSERT INTO `sys_job_log` VALUES (16235, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3072毫秒', '0', '', '2022-02-21 23:20:03'); INSERT INTO `sys_job_log` VALUES (16236, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3126毫秒', '0', '', '2022-02-22 08:40:04'); INSERT INTO `sys_job_log` VALUES (16237, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3083毫秒', '0', '', '2022-02-22 08:40:04'); INSERT INTO `sys_job_log` VALUES (16238, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8762毫秒', '0', '', '2022-02-22 08:40:08'); INSERT INTO `sys_job_log` VALUES (16239, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:867毫秒', '0', '', '2022-02-22 08:50:00'); INSERT INTO `sys_job_log` VALUES (16240, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3752毫秒', '0', '', '2022-02-22 08:50:03'); INSERT INTO `sys_job_log` VALUES (16241, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2265毫秒', '0', '', '2022-02-22 09:00:02'); INSERT INTO `sys_job_log` VALUES (16242, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2675毫秒', '0', '', '2022-02-22 09:00:02'); INSERT INTO `sys_job_log` VALUES (16243, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4758毫秒', '0', '', '2022-02-22 09:00:04'); INSERT INTO `sys_job_log` VALUES (16244, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3003毫秒', '0', '', '2022-02-22 09:10:03'); INSERT INTO `sys_job_log` VALUES (16245, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5162毫秒', '0', '', '2022-02-22 09:10:05'); INSERT INTO `sys_job_log` VALUES (16246, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:598毫秒', '0', '', '2022-02-22 09:20:00'); INSERT INTO `sys_job_log` VALUES (16247, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-22 09:20:03'); INSERT INTO `sys_job_log` VALUES (16248, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3614毫秒', '0', '', '2022-02-22 09:20:03'); INSERT INTO `sys_job_log` VALUES (16249, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:642毫秒', '0', '', '2022-02-22 09:30:00'); INSERT INTO `sys_job_log` VALUES (16250, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2453毫秒', '0', '', '2022-02-22 09:30:02'); INSERT INTO `sys_job_log` VALUES (16251, '天气预报定时任务', 'SYSTEM', 'WeatherTask.execute', '天气预报定时任务 总共耗时:245毫秒', '0', '', '2022-02-22 09:40:00'); INSERT INTO `sys_job_log` VALUES (16252, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-02-22 09:40:00'); INSERT INTO `sys_job_log` VALUES (16253, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3701毫秒', '0', '', '2022-02-22 09:40:03'); INSERT INTO `sys_job_log` VALUES (16254, '热搜榜定时任务', 'SYSTEM', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2054毫秒', '0', '', '2022-02-22 09:50:02'); INSERT INTO `sys_job_log` VALUES (16255, '文案调用任务', 'SYSTEM', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7338毫秒', '0', '', '2022-02-22 09:50:07'); INSERT INTO `sys_job_log` VALUES (16256, '微信搜狗-爬虫-定时任务', 'SYSTEM', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2139毫秒', '0', '', '2022-02-22 09:56:10'); INSERT INTO `sys_job_log` VALUES (16257, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:803毫秒', '0', '', '2022-02-22 10:00:00'); INSERT INTO `sys_job_log` VALUES (16258, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1233毫秒', '0', '', '2022-02-22 10:00:01'); INSERT INTO `sys_job_log` VALUES (16259, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6747毫秒', '0', '', '2022-02-22 10:00:06'); INSERT INTO `sys_job_log` VALUES (16260, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:631毫秒', '0', '', '2022-02-22 10:10:00'); INSERT INTO `sys_job_log` VALUES (16261, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10658毫秒', '0', '', '2022-02-22 10:10:10'); INSERT INTO `sys_job_log` VALUES (16262, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:539毫秒', '0', '', '2022-02-22 10:20:00'); INSERT INTO `sys_job_log` VALUES (16263, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1163毫秒', '0', '', '2022-02-22 10:20:01'); INSERT INTO `sys_job_log` VALUES (16264, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4359毫秒', '0', '', '2022-02-22 10:20:04'); INSERT INTO `sys_job_log` VALUES (16265, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1063毫秒', '0', '', '2022-02-22 10:30:01'); INSERT INTO `sys_job_log` VALUES (16266, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2570毫秒', '0', '', '2022-02-22 10:30:02'); INSERT INTO `sys_job_log` VALUES (16267, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:170毫秒', '0', '', '2022-02-22 10:40:00'); INSERT INTO `sys_job_log` VALUES (16268, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:514毫秒', '0', '', '2022-02-22 10:40:00'); INSERT INTO `sys_job_log` VALUES (16269, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3223毫秒', '0', '', '2022-02-22 10:40:03'); INSERT INTO `sys_job_log` VALUES (16270, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:507毫秒', '0', '', '2022-02-22 10:50:00'); INSERT INTO `sys_job_log` VALUES (16271, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3997毫秒', '0', '', '2022-02-22 10:50:04'); INSERT INTO `sys_job_log` VALUES (16272, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2298毫秒', '0', '', '2022-02-22 11:00:02'); INSERT INTO `sys_job_log` VALUES (16273, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2677毫秒', '0', '', '2022-02-22 11:00:02'); INSERT INTO `sys_job_log` VALUES (16274, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4522毫秒', '0', '', '2022-02-22 11:00:04'); INSERT INTO `sys_job_log` VALUES (16275, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:364毫秒', '0', '', '2022-02-22 11:30:00'); INSERT INTO `sys_job_log` VALUES (16276, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:401毫秒', '0', '', '2022-02-22 11:30:00'); INSERT INTO `sys_job_log` VALUES (16277, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1521毫秒', '0', '', '2022-02-22 11:50:01'); INSERT INTO `sys_job_log` VALUES (16278, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4240毫秒', '0', '', '2022-02-22 11:50:04'); INSERT INTO `sys_job_log` VALUES (16279, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:182毫秒', '0', '', '2022-02-22 12:00:00'); INSERT INTO `sys_job_log` VALUES (16280, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:536毫秒', '0', '', '2022-02-22 12:00:00'); INSERT INTO `sys_job_log` VALUES (16281, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3028毫秒', '0', '', '2022-02-22 12:00:03'); INSERT INTO `sys_job_log` VALUES (16282, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5030毫秒', '0', '', '2022-02-22 12:00:05'); INSERT INTO `sys_job_log` VALUES (16283, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:766毫秒', '0', '', '2022-02-22 12:10:00'); INSERT INTO `sys_job_log` VALUES (16284, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3329毫秒', '0', '', '2022-02-22 12:10:03'); INSERT INTO `sys_job_log` VALUES (16285, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1946毫秒', '0', '', '2022-02-22 12:15:31'); INSERT INTO `sys_job_log` VALUES (16286, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1243毫秒', '0', '', '2022-02-22 12:20:01'); INSERT INTO `sys_job_log` VALUES (16287, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3016毫秒', '0', '', '2022-02-22 12:20:03'); INSERT INTO `sys_job_log` VALUES (16288, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4361毫秒', '0', '', '2022-02-22 12:20:04'); INSERT INTO `sys_job_log` VALUES (16289, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1576毫秒', '0', '', '2022-02-22 12:30:01'); INSERT INTO `sys_job_log` VALUES (16290, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3357毫秒', '0', '', '2022-02-22 12:30:03'); INSERT INTO `sys_job_log` VALUES (16291, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:220毫秒', '0', '', '2022-02-22 12:40:00'); INSERT INTO `sys_job_log` VALUES (16292, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:529毫秒', '0', '', '2022-02-22 12:40:00'); INSERT INTO `sys_job_log` VALUES (16293, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4033毫秒', '0', '', '2022-02-22 12:40:04'); INSERT INTO `sys_job_log` VALUES (16294, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:886毫秒', '0', '', '2022-02-22 12:50:00'); INSERT INTO `sys_job_log` VALUES (16295, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3300毫秒', '0', '', '2022-02-22 12:50:03'); INSERT INTO `sys_job_log` VALUES (16296, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:489毫秒', '0', '', '2022-02-22 13:00:00'); INSERT INTO `sys_job_log` VALUES (16297, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3005毫秒', '0', '', '2022-02-22 13:00:03'); INSERT INTO `sys_job_log` VALUES (16298, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-22 13:00:03'); INSERT INTO `sys_job_log` VALUES (16299, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-02-22 13:10:00'); INSERT INTO `sys_job_log` VALUES (16300, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9277毫秒', '0', '', '2022-02-22 13:10:09'); INSERT INTO `sys_job_log` VALUES (16301, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:514毫秒', '0', '', '2022-02-22 13:20:00'); INSERT INTO `sys_job_log` VALUES (16302, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1177毫秒', '0', '', '2022-02-22 13:20:01'); INSERT INTO `sys_job_log` VALUES (16303, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2916毫秒', '0', '', '2022-02-22 13:20:02'); INSERT INTO `sys_job_log` VALUES (16304, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1532毫秒', '0', '', '2022-02-22 13:30:01'); INSERT INTO `sys_job_log` VALUES (16305, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3711毫秒', '0', '', '2022-02-22 13:30:03'); INSERT INTO `sys_job_log` VALUES (16306, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:205毫秒', '0', '', '2022-02-22 13:40:00'); INSERT INTO `sys_job_log` VALUES (16307, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:650毫秒', '0', '', '2022-02-22 13:40:00'); INSERT INTO `sys_job_log` VALUES (16308, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2514毫秒', '0', '', '2022-02-22 13:40:02'); INSERT INTO `sys_job_log` VALUES (16309, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1730毫秒', '0', '', '2022-02-22 13:50:01'); INSERT INTO `sys_job_log` VALUES (16310, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2984毫秒', '0', '', '2022-02-22 13:50:02'); INSERT INTO `sys_job_log` VALUES (16311, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:175毫秒', '0', '', '2022-02-22 14:00:00'); INSERT INTO `sys_job_log` VALUES (16312, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:436毫秒', '0', '', '2022-02-22 14:00:00'); INSERT INTO `sys_job_log` VALUES (16313, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2251毫秒', '0', '', '2022-02-22 14:00:02'); INSERT INTO `sys_job_log` VALUES (16314, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:726毫秒', '0', '', '2022-02-22 14:10:00'); INSERT INTO `sys_job_log` VALUES (16315, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2316毫秒', '0', '', '2022-02-22 14:10:02'); INSERT INTO `sys_job_log` VALUES (16316, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:469毫秒', '0', '', '2022-02-22 14:20:00'); INSERT INTO `sys_job_log` VALUES (16317, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1174毫秒', '0', '', '2022-02-22 14:20:01'); INSERT INTO `sys_job_log` VALUES (16318, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2871毫秒', '0', '', '2022-02-22 14:20:02'); INSERT INTO `sys_job_log` VALUES (16319, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-02-22 14:30:00'); INSERT INTO `sys_job_log` VALUES (16320, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3124毫秒', '0', '', '2022-02-22 14:30:03'); INSERT INTO `sys_job_log` VALUES (16321, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:477毫秒', '0', '', '2022-02-22 14:40:00'); INSERT INTO `sys_job_log` VALUES (16322, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3005毫秒', '0', '', '2022-02-22 14:40:03'); INSERT INTO `sys_job_log` VALUES (16323, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5588毫秒', '0', '', '2022-02-22 14:40:05'); INSERT INTO `sys_job_log` VALUES (16324, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2544毫秒', '0', '', '2022-02-22 14:50:02'); INSERT INTO `sys_job_log` VALUES (16325, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3664毫秒', '0', '', '2022-02-22 14:50:03'); INSERT INTO `sys_job_log` VALUES (16326, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:165毫秒', '0', '', '2022-02-22 15:00:00'); INSERT INTO `sys_job_log` VALUES (16327, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:519毫秒', '0', '', '2022-02-22 15:00:00'); INSERT INTO `sys_job_log` VALUES (16328, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3007毫秒', '0', '', '2022-02-22 15:00:03'); INSERT INTO `sys_job_log` VALUES (16329, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5332毫秒', '0', '', '2022-02-22 15:00:05'); INSERT INTO `sys_job_log` VALUES (16330, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:643毫秒', '0', '', '2022-02-22 15:10:00'); INSERT INTO `sys_job_log` VALUES (16331, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2250毫秒', '0', '', '2022-02-22 15:10:02'); INSERT INTO `sys_job_log` VALUES (16332, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3012毫秒', '0', '', '2022-02-22 15:10:03'); INSERT INTO `sys_job_log` VALUES (16333, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:801毫秒', '0', '', '2022-02-22 15:15:30'); INSERT INTO `sys_job_log` VALUES (16334, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:491毫秒', '0', '', '2022-02-22 15:20:00'); INSERT INTO `sys_job_log` VALUES (16335, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-22 15:20:03'); INSERT INTO `sys_job_log` VALUES (16336, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3067毫秒', '0', '', '2022-02-22 15:20:03'); INSERT INTO `sys_job_log` VALUES (16337, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2127毫秒', '0', '', '2022-02-22 15:30:02'); INSERT INTO `sys_job_log` VALUES (16338, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4151毫秒', '0', '', '2022-02-22 15:30:04'); INSERT INTO `sys_job_log` VALUES (16339, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1834毫秒', '0', '', '2022-02-22 15:40:01'); INSERT INTO `sys_job_log` VALUES (16340, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2134毫秒', '0', '', '2022-02-22 15:40:02'); INSERT INTO `sys_job_log` VALUES (16341, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4613毫秒', '0', '', '2022-02-22 15:40:04'); INSERT INTO `sys_job_log` VALUES (16342, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3005毫秒', '0', '', '2022-02-22 15:50:03'); INSERT INTO `sys_job_log` VALUES (16343, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6142毫秒', '0', '', '2022-02-22 15:50:06'); INSERT INTO `sys_job_log` VALUES (16344, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:674毫秒', '0', '', '2022-02-22 16:00:00'); INSERT INTO `sys_job_log` VALUES (16345, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3017毫秒', '0', '', '2022-02-22 16:00:03'); INSERT INTO `sys_job_log` VALUES (16346, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4199毫秒', '0', '', '2022-02-22 16:00:04'); INSERT INTO `sys_job_log` VALUES (16347, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-02-22 16:10:00'); INSERT INTO `sys_job_log` VALUES (16348, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1928毫秒', '0', '', '2022-02-22 16:10:01'); INSERT INTO `sys_job_log` VALUES (16349, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2245毫秒', '0', '', '2022-02-22 16:15:32'); INSERT INTO `sys_job_log` VALUES (16350, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-02-22 16:20:00'); INSERT INTO `sys_job_log` VALUES (16351, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3004毫秒', '0', '', '2022-02-22 16:20:03'); INSERT INTO `sys_job_log` VALUES (16352, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4071毫秒', '0', '', '2022-02-22 16:20:04'); INSERT INTO `sys_job_log` VALUES (16353, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1617毫秒', '0', '', '2022-02-22 16:30:01'); INSERT INTO `sys_job_log` VALUES (16354, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2720毫秒', '0', '', '2022-02-22 16:30:02'); INSERT INTO `sys_job_log` VALUES (16355, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:462毫秒', '0', '', '2022-02-22 16:40:00'); INSERT INTO `sys_job_log` VALUES (16356, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1167毫秒', '0', '', '2022-02-22 16:40:01'); INSERT INTO `sys_job_log` VALUES (16357, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1996毫秒', '0', '', '2022-02-22 16:40:02'); INSERT INTO `sys_job_log` VALUES (16358, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:495毫秒', '0', '', '2022-02-22 16:50:00'); INSERT INTO `sys_job_log` VALUES (16359, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2935毫秒', '0', '', '2022-02-22 16:50:02'); INSERT INTO `sys_job_log` VALUES (16360, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:200毫秒', '0', '', '2022-02-22 17:00:00'); INSERT INTO `sys_job_log` VALUES (16361, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:501毫秒', '0', '', '2022-02-22 17:00:00'); INSERT INTO `sys_job_log` VALUES (16362, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3650毫秒', '0', '', '2022-02-22 17:00:03'); INSERT INTO `sys_job_log` VALUES (16363, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3003毫秒', '0', '', '2022-02-22 17:10:03'); INSERT INTO `sys_job_log` VALUES (16364, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4568毫秒', '0', '', '2022-02-22 17:10:04'); INSERT INTO `sys_job_log` VALUES (16365, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2151毫秒', '0', '', '2022-02-22 17:15:32'); INSERT INTO `sys_job_log` VALUES (16366, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:707毫秒', '0', '', '2022-02-22 17:20:00'); INSERT INTO `sys_job_log` VALUES (16367, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1026毫秒', '0', '', '2022-02-22 17:20:01'); INSERT INTO `sys_job_log` VALUES (16368, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2891毫秒', '0', '', '2022-02-22 17:20:02'); INSERT INTO `sys_job_log` VALUES (16369, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1808毫秒', '0', '', '2022-02-22 17:30:01'); INSERT INTO `sys_job_log` VALUES (16370, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4808毫秒', '0', '', '2022-02-22 17:30:04'); INSERT INTO `sys_job_log` VALUES (16371, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3362毫秒', '0', '', '2022-02-22 19:20:03'); INSERT INTO `sys_job_log` VALUES (16372, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3369毫秒', '0', '', '2022-02-22 19:20:03'); INSERT INTO `sys_job_log` VALUES (16373, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7502毫秒', '0', '', '2022-02-22 19:20:07'); INSERT INTO `sys_job_log` VALUES (16374, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:905毫秒', '0', '', '2022-02-22 19:30:00'); INSERT INTO `sys_job_log` VALUES (16375, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2556毫秒', '0', '', '2022-02-22 19:30:02'); INSERT INTO `sys_job_log` VALUES (16376, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:368毫秒', '0', '', '2022-02-22 19:40:00'); INSERT INTO `sys_job_log` VALUES (16377, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:769毫秒', '0', '', '2022-02-22 19:40:00'); INSERT INTO `sys_job_log` VALUES (16378, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3759毫秒', '0', '', '2022-02-22 19:40:03'); INSERT INTO `sys_job_log` VALUES (16379, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1032毫秒', '0', '', '2022-02-22 19:50:01'); INSERT INTO `sys_job_log` VALUES (16380, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3052毫秒', '0', '', '2022-02-22 19:50:03'); INSERT INTO `sys_job_log` VALUES (16381, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:198毫秒', '0', '', '2022-02-22 20:00:00'); INSERT INTO `sys_job_log` VALUES (16382, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-02-22 20:00:00'); INSERT INTO `sys_job_log` VALUES (16383, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3083毫秒', '0', '', '2022-02-22 20:00:03'); INSERT INTO `sys_job_log` VALUES (16384, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-02-22 20:10:00'); INSERT INTO `sys_job_log` VALUES (16385, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4144毫秒', '0', '', '2022-02-22 20:10:04'); INSERT INTO `sys_job_log` VALUES (16386, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3024毫秒', '0', '', '2022-02-22 20:15:33'); INSERT INTO `sys_job_log` VALUES (16387, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:397毫秒', '0', '', '2022-02-22 20:20:00'); INSERT INTO `sys_job_log` VALUES (16388, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:927毫秒', '0', '', '2022-02-22 20:20:00'); INSERT INTO `sys_job_log` VALUES (16389, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3006毫秒', '0', '', '2022-02-22 20:20:03'); INSERT INTO `sys_job_log` VALUES (16390, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3148毫秒', '0', '', '2022-02-22 20:20:03'); INSERT INTO `sys_job_log` VALUES (16391, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:995毫秒', '0', '', '2022-02-22 20:30:01'); INSERT INTO `sys_job_log` VALUES (16392, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3421毫秒', '0', '', '2022-02-22 20:30:03'); INSERT INTO `sys_job_log` VALUES (16393, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:275毫秒', '0', '', '2022-02-22 20:40:00'); INSERT INTO `sys_job_log` VALUES (16394, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:577毫秒', '0', '', '2022-02-22 20:40:00'); INSERT INTO `sys_job_log` VALUES (16395, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2002毫秒', '0', '', '2022-02-22 20:40:02'); INSERT INTO `sys_job_log` VALUES (16396, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:853毫秒', '0', '', '2022-02-22 20:50:00'); INSERT INTO `sys_job_log` VALUES (16397, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4013毫秒', '0', '', '2022-02-22 20:50:04'); INSERT INTO `sys_job_log` VALUES (16398, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:412毫秒', '0', '', '2022-02-22 21:00:00'); INSERT INTO `sys_job_log` VALUES (16399, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:756毫秒', '0', '', '2022-02-22 21:00:00'); INSERT INTO `sys_job_log` VALUES (16400, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2543毫秒', '0', '', '2022-02-22 21:00:02'); INSERT INTO `sys_job_log` VALUES (16401, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3008毫秒', '0', '', '2022-02-22 21:00:03'); INSERT INTO `sys_job_log` VALUES (16402, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:719毫秒', '0', '', '2022-02-22 21:10:00'); INSERT INTO `sys_job_log` VALUES (16403, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2683毫秒', '0', '', '2022-02-22 21:10:02'); INSERT INTO `sys_job_log` VALUES (16404, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3007毫秒', '0', '', '2022-02-22 21:10:03'); INSERT INTO `sys_job_log` VALUES (16405, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:544毫秒', '0', '', '2022-02-22 21:15:30'); INSERT INTO `sys_job_log` VALUES (16406, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1514毫秒', '0', '', '2022-02-22 21:20:01'); INSERT INTO `sys_job_log` VALUES (16407, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1901毫秒', '0', '', '2022-02-22 21:20:01'); INSERT INTO `sys_job_log` VALUES (16408, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4794毫秒', '0', '', '2022-02-22 21:20:04'); INSERT INTO `sys_job_log` VALUES (16409, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1784毫秒', '0', '', '2022-02-22 21:30:01'); INSERT INTO `sys_job_log` VALUES (16410, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3545毫秒', '0', '', '2022-02-22 21:30:03'); INSERT INTO `sys_job_log` VALUES (16411, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2377毫秒', '0', '', '2022-02-22 21:40:02'); INSERT INTO `sys_job_log` VALUES (16412, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-22 21:40:03'); INSERT INTO `sys_job_log` VALUES (16413, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4300毫秒', '0', '', '2022-02-22 21:40:04'); INSERT INTO `sys_job_log` VALUES (16414, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1741毫秒', '0', '', '2022-02-22 21:50:01'); INSERT INTO `sys_job_log` VALUES (16415, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3039毫秒', '0', '', '2022-02-22 21:50:03'); INSERT INTO `sys_job_log` VALUES (16416, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:457毫秒', '0', '', '2022-02-22 22:00:00'); INSERT INTO `sys_job_log` VALUES (16417, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:850毫秒', '0', '', '2022-02-22 22:00:00'); INSERT INTO `sys_job_log` VALUES (16418, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:3007毫秒', '0', '', '2022-02-22 22:00:03'); INSERT INTO `sys_job_log` VALUES (16419, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3867毫秒', '0', '', '2022-02-22 22:00:03'); INSERT INTO `sys_job_log` VALUES (16420, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1116毫秒', '0', '', '2022-02-22 22:10:01'); INSERT INTO `sys_job_log` VALUES (16421, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2364毫秒', '0', '', '2022-02-22 22:10:02'); INSERT INTO `sys_job_log` VALUES (16422, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:557毫秒', '0', '', '2022-02-22 22:15:30'); INSERT INTO `sys_job_log` VALUES (16423, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1811毫秒', '0', '', '2022-02-22 22:20:01'); INSERT INTO `sys_job_log` VALUES (16424, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3003毫秒', '0', '', '2022-02-22 22:20:03'); INSERT INTO `sys_job_log` VALUES (16425, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7000毫秒', '0', '', '2022-02-22 22:20:07'); INSERT INTO `sys_job_log` VALUES (16426, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-02-22 22:30:00'); INSERT INTO `sys_job_log` VALUES (16427, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2729毫秒', '0', '', '2022-02-22 22:30:02'); INSERT INTO `sys_job_log` VALUES (16428, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:3003毫秒', '0', '', '2022-02-22 22:31:04'); INSERT INTO `sys_job_log` VALUES (16429, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:350毫秒', '0', '', '2022-02-22 22:40:00'); INSERT INTO `sys_job_log` VALUES (16430, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:715毫秒', '0', '', '2022-02-22 22:40:00'); INSERT INTO `sys_job_log` VALUES (16431, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2853毫秒', '0', '', '2022-02-22 22:40:02'); INSERT INTO `sys_job_log` VALUES (16432, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2508毫秒', '0', '', '2022-02-22 22:50:02'); INSERT INTO `sys_job_log` VALUES (16433, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5050毫秒', '0', '', '2022-02-22 22:50:05'); INSERT INTO `sys_job_log` VALUES (16434, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3277毫秒', '0', '', '2022-02-23 08:50:03'); INSERT INTO `sys_job_log` VALUES (16435, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:16617毫秒', '0', '', '2022-02-23 08:50:16'); INSERT INTO `sys_job_log` VALUES (16436, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1815毫秒', '0', '', '2022-02-23 09:00:01'); INSERT INTO `sys_job_log` VALUES (16437, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2172毫秒', '0', '', '2022-02-23 09:00:02'); INSERT INTO `sys_job_log` VALUES (16438, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3027毫秒', '0', '', '2022-02-23 09:00:03'); INSERT INTO `sys_job_log` VALUES (16439, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5768毫秒', '0', '', '2022-02-23 09:00:05'); INSERT INTO `sys_job_log` VALUES (16440, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1875毫秒', '0', '', '2022-02-23 09:10:01'); INSERT INTO `sys_job_log` VALUES (16441, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3012毫秒', '0', '', '2022-02-23 09:10:03'); INSERT INTO `sys_job_log` VALUES (16442, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3950毫秒', '0', '', '2022-02-23 09:10:03'); INSERT INTO `sys_job_log` VALUES (16443, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4965毫秒', '0', '', '2022-02-23 09:11:49'); INSERT INTO `sys_job_log` VALUES (16444, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:3011毫秒', '0', '', '2022-02-23 09:13:35'); INSERT INTO `sys_job_log` VALUES (16445, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:3542毫秒', '0', '', '2022-02-23 09:15:12'); INSERT INTO `sys_job_log` VALUES (16446, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2024毫秒', '0', '', '2022-02-23 09:15:32'); INSERT INTO `sys_job_log` VALUES (16447, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:769毫秒', '0', '', '2022-02-23 09:20:00'); INSERT INTO `sys_job_log` VALUES (16448, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2017毫秒', '0', '', '2022-02-23 09:20:02'); INSERT INTO `sys_job_log` VALUES (16449, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4068毫秒', '0', '', '2022-02-23 09:20:04'); INSERT INTO `sys_job_log` VALUES (16450, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:593毫秒', '0', '', '2022-02-23 09:26:38'); INSERT INTO `sys_job_log` VALUES (16451, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1984毫秒', '0', '', '2022-02-23 09:30:02'); INSERT INTO `sys_job_log` VALUES (16452, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3612毫秒', '0', '', '2022-02-23 09:30:03'); INSERT INTO `sys_job_log` VALUES (16453, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2006毫秒', '0', '', '2022-02-23 09:40:02'); INSERT INTO `sys_job_log` VALUES (16454, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2003毫秒', '0', '', '2022-02-23 09:40:02'); INSERT INTO `sys_job_log` VALUES (16455, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3404毫秒', '0', '', '2022-02-23 09:40:03'); INSERT INTO `sys_job_log` VALUES (16456, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:10776毫秒', '0', '', '2022-02-23 09:42:12'); INSERT INTO `sys_job_log` VALUES (16457, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:10毫秒', '0', '', '2022-02-23 09:49:47'); INSERT INTO `sys_job_log` VALUES (16458, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1892毫秒', '0', '', '2022-02-23 09:50:01'); INSERT INTO `sys_job_log` VALUES (16459, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4549毫秒', '0', '', '2022-02-23 09:50:04'); INSERT INTO `sys_job_log` VALUES (16460, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:20毫秒', '0', '', '2022-02-23 09:51:13'); INSERT INTO `sys_job_log` VALUES (16461, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:5756毫秒', '0', '', '2022-02-23 09:56:43'); INSERT INTO `sys_job_log` VALUES (16462, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:1381毫秒', '0', '', '2022-02-23 09:57:51'); INSERT INTO `sys_job_log` VALUES (16463, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1194毫秒', '0', '', '2022-02-23 10:00:01'); INSERT INTO `sys_job_log` VALUES (16464, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1328毫秒', '0', '', '2022-02-23 10:00:01'); INSERT INTO `sys_job_log` VALUES (16465, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5250毫秒', '0', '', '2022-02-23 10:00:05'); INSERT INTO `sys_job_log` VALUES (16466, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:15毫秒', '0', '', '2022-02-23 10:02:25'); INSERT INTO `sys_job_log` VALUES (16467, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:538毫秒', '0', '', '2022-02-23 10:10:00'); INSERT INTO `sys_job_log` VALUES (16468, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5090毫秒', '0', '', '2022-02-23 10:10:05'); INSERT INTO `sys_job_log` VALUES (16469, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2398毫秒', '0', '', '2022-02-23 10:15:32'); INSERT INTO `sys_job_log` VALUES (16470, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:180毫秒', '0', '', '2022-02-23 10:20:00'); INSERT INTO `sys_job_log` VALUES (16471, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:503毫秒', '0', '', '2022-02-23 10:20:00'); INSERT INTO `sys_job_log` VALUES (16472, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11611毫秒', '0', '', '2022-02-23 10:20:11'); INSERT INTO `sys_job_log` VALUES (16473, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1656毫秒', '0', '', '2022-02-23 10:30:01'); INSERT INTO `sys_job_log` VALUES (16474, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3141毫秒', '0', '', '2022-02-23 10:30:03'); INSERT INTO `sys_job_log` VALUES (16475, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:526毫秒', '0', '', '2022-02-23 10:40:00'); INSERT INTO `sys_job_log` VALUES (16476, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1146毫秒', '0', '', '2022-02-23 10:40:01'); INSERT INTO `sys_job_log` VALUES (16477, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2368毫秒', '0', '', '2022-02-23 10:40:02'); INSERT INTO `sys_job_log` VALUES (16478, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1644毫秒', '0', '', '2022-02-23 10:50:01'); INSERT INTO `sys_job_log` VALUES (16479, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3703毫秒', '0', '', '2022-02-23 10:50:03'); INSERT INTO `sys_job_log` VALUES (16480, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:364毫秒', '0', '', '2022-02-23 11:00:00'); INSERT INTO `sys_job_log` VALUES (16481, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:615毫秒', '0', '', '2022-02-23 11:00:00'); INSERT INTO `sys_job_log` VALUES (16482, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5362毫秒', '0', '', '2022-02-23 11:00:05'); INSERT INTO `sys_job_log` VALUES (16483, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:899毫秒', '0', '', '2022-02-23 11:10:00'); INSERT INTO `sys_job_log` VALUES (16484, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5462毫秒', '0', '', '2022-02-23 11:10:05'); INSERT INTO `sys_job_log` VALUES (16485, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:385毫秒', '0', '', '2022-02-23 11:15:30'); INSERT INTO `sys_job_log` VALUES (16486, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:505毫秒', '0', '', '2022-02-23 11:20:00'); INSERT INTO `sys_job_log` VALUES (16487, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-23 11:20:02'); INSERT INTO `sys_job_log` VALUES (16488, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5075毫秒', '0', '', '2022-02-23 11:20:05'); INSERT INTO `sys_job_log` VALUES (16489, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:523毫秒', '0', '', '2022-02-23 11:30:00'); INSERT INTO `sys_job_log` VALUES (16490, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4010毫秒', '0', '', '2022-02-23 11:30:04'); INSERT INTO `sys_job_log` VALUES (16491, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-02-23 11:40:00'); INSERT INTO `sys_job_log` VALUES (16492, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1131毫秒', '0', '', '2022-02-23 11:40:01'); INSERT INTO `sys_job_log` VALUES (16493, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3649毫秒', '0', '', '2022-02-23 11:40:03'); INSERT INTO `sys_job_log` VALUES (16494, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2004毫秒', '0', '', '2022-02-23 11:50:02'); INSERT INTO `sys_job_log` VALUES (16495, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4223毫秒', '0', '', '2022-02-23 11:50:04'); INSERT INTO `sys_job_log` VALUES (16496, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1781毫秒', '0', '', '2022-02-23 12:00:01'); INSERT INTO `sys_job_log` VALUES (16497, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-23 12:00:02'); INSERT INTO `sys_job_log` VALUES (16498, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4550毫秒', '0', '', '2022-02-23 12:00:04'); INSERT INTO `sys_job_log` VALUES (16499, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2006毫秒', '0', '', '2022-02-23 12:10:02'); INSERT INTO `sys_job_log` VALUES (16500, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5512毫秒', '0', '', '2022-02-23 12:10:05'); INSERT INTO `sys_job_log` VALUES (16501, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:534毫秒', '0', '', '2022-02-23 12:15:30'); INSERT INTO `sys_job_log` VALUES (16502, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-02-23 12:20:00'); INSERT INTO `sys_job_log` VALUES (16503, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1150毫秒', '0', '', '2022-02-23 12:20:01'); INSERT INTO `sys_job_log` VALUES (16504, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5906毫秒', '0', '', '2022-02-23 12:20:05'); INSERT INTO `sys_job_log` VALUES (16505, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1592407毫秒', '0', '', '2022-02-23 12:26:32'); INSERT INTO `sys_job_log` VALUES (16506, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-02-23 12:30:00'); INSERT INTO `sys_job_log` VALUES (16507, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6029毫秒', '0', '', '2022-02-23 12:30:06'); INSERT INTO `sys_job_log` VALUES (16508, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:664毫秒', '0', '', '2022-02-23 12:40:00'); INSERT INTO `sys_job_log` VALUES (16509, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2008毫秒', '0', '', '2022-02-23 12:40:02'); INSERT INTO `sys_job_log` VALUES (16510, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2972毫秒', '0', '', '2022-02-23 12:40:02'); INSERT INTO `sys_job_log` VALUES (16511, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:491毫秒', '0', '', '2022-02-23 12:50:00'); INSERT INTO `sys_job_log` VALUES (16512, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2704毫秒', '0', '', '2022-02-23 12:50:02'); INSERT INTO `sys_job_log` VALUES (16513, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:190毫秒', '0', '', '2022-02-23 13:00:00'); INSERT INTO `sys_job_log` VALUES (16514, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:479毫秒', '0', '', '2022-02-23 13:00:00'); INSERT INTO `sys_job_log` VALUES (16515, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6270毫秒', '0', '', '2022-02-23 13:00:06'); INSERT INTO `sys_job_log` VALUES (16516, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:608毫秒', '0', '', '2022-02-23 13:10:00'); INSERT INTO `sys_job_log` VALUES (16517, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3341毫秒', '0', '', '2022-02-23 13:10:03'); INSERT INTO `sys_job_log` VALUES (16518, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2415毫秒', '0', '', '2022-02-23 13:15:32'); INSERT INTO `sys_job_log` VALUES (16519, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:526毫秒', '0', '', '2022-02-23 13:20:00'); INSERT INTO `sys_job_log` VALUES (16520, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-02-23 13:20:02'); INSERT INTO `sys_job_log` VALUES (16521, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5655毫秒', '0', '', '2022-02-23 13:20:05'); INSERT INTO `sys_job_log` VALUES (16522, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2300毫秒', '0', '', '2022-02-23 13:40:02'); INSERT INTO `sys_job_log` VALUES (16523, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2295毫秒', '0', '', '2022-02-23 13:40:02'); INSERT INTO `sys_job_log` VALUES (16524, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4951毫秒', '0', '', '2022-02-23 13:40:04'); INSERT INTO `sys_job_log` VALUES (16525, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-02-23 13:50:00'); INSERT INTO `sys_job_log` VALUES (16526, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5301毫秒', '0', '', '2022-02-23 13:50:05'); INSERT INTO `sys_job_log` VALUES (16527, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1707毫秒', '0', '', '2022-02-23 14:00:01'); INSERT INTO `sys_job_log` VALUES (16528, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2002毫秒', '0', '', '2022-02-23 14:00:02'); INSERT INTO `sys_job_log` VALUES (16529, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4380毫秒', '0', '', '2022-02-23 14:00:04'); INSERT INTO `sys_job_log` VALUES (16530, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2002毫秒', '0', '', '2022-02-23 14:10:02'); INSERT INTO `sys_job_log` VALUES (16531, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4787毫秒', '0', '', '2022-02-23 14:10:04'); INSERT INTO `sys_job_log` VALUES (16532, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:4206毫秒', '0', '', '2022-02-23 14:15:34'); INSERT INTO `sys_job_log` VALUES (16533, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1399毫秒', '0', '', '2022-02-23 14:20:01'); INSERT INTO `sys_job_log` VALUES (16534, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2002毫秒', '0', '', '2022-02-23 14:20:02'); INSERT INTO `sys_job_log` VALUES (16535, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9501毫秒', '0', '', '2022-02-23 14:20:09'); INSERT INTO `sys_job_log` VALUES (16536, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1483毫秒', '0', '', '2022-02-23 14:30:01'); INSERT INTO `sys_job_log` VALUES (16537, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9062毫秒', '0', '', '2022-02-23 14:30:09'); INSERT INTO `sys_job_log` VALUES (16538, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:671毫秒', '0', '', '2022-02-23 14:40:00'); INSERT INTO `sys_job_log` VALUES (16539, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2002毫秒', '0', '', '2022-02-23 14:40:02'); INSERT INTO `sys_job_log` VALUES (16540, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2777毫秒', '0', '', '2022-02-23 14:40:02'); INSERT INTO `sys_job_log` VALUES (16541, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:936毫秒', '0', '', '2022-02-23 14:48:57'); INSERT INTO `sys_job_log` VALUES (16542, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1219毫秒', '0', '', '2022-02-23 14:50:01'); INSERT INTO `sys_job_log` VALUES (16543, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3819毫秒', '0', '', '2022-02-23 14:50:03'); INSERT INTO `sys_job_log` VALUES (16544, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1580毫秒', '0', '', '2022-02-23 15:00:01'); INSERT INTO `sys_job_log` VALUES (16545, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2004毫秒', '0', '', '2022-02-23 15:00:02'); INSERT INTO `sys_job_log` VALUES (16546, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6802毫秒', '0', '', '2022-02-23 15:00:06'); INSERT INTO `sys_job_log` VALUES (16547, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1793毫秒', '0', '', '2022-02-23 15:10:01'); INSERT INTO `sys_job_log` VALUES (16548, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4546毫秒', '0', '', '2022-02-23 15:10:04'); INSERT INTO `sys_job_log` VALUES (16549, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:120007毫秒', '0', '', '2022-02-23 15:12:00'); INSERT INTO `sys_job_log` VALUES (16550, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:740499毫秒', '0', '', '2022-02-23 15:12:20'); INSERT INTO `sys_job_log` VALUES (16551, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2655毫秒', '0', '', '2022-02-23 15:15:32'); INSERT INTO `sys_job_log` VALUES (16552, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-23 15:20:02'); INSERT INTO `sys_job_log` VALUES (16553, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2003毫秒', '0', '', '2022-02-23 15:20:02'); INSERT INTO `sys_job_log` VALUES (16554, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4749毫秒', '0', '', '2022-02-23 15:20:04'); INSERT INTO `sys_job_log` VALUES (16555, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:742毫秒', '0', '', '2022-02-23 15:25:57'); INSERT INTO `sys_job_log` VALUES (16556, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1960毫秒', '0', '', '2022-02-23 15:30:01'); INSERT INTO `sys_job_log` VALUES (16557, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5581毫秒', '0', '', '2022-02-23 15:30:05'); INSERT INTO `sys_job_log` VALUES (16558, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:219毫秒', '0', '', '2022-02-23 15:40:00'); INSERT INTO `sys_job_log` VALUES (16559, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:542毫秒', '0', '', '2022-02-23 15:40:00'); INSERT INTO `sys_job_log` VALUES (16560, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3389毫秒', '0', '', '2022-02-23 15:40:03'); INSERT INTO `sys_job_log` VALUES (16561, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:573毫秒', '0', '', '2022-02-23 15:50:00'); INSERT INTO `sys_job_log` VALUES (16562, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4455毫秒', '0', '', '2022-02-23 15:50:04'); INSERT INTO `sys_job_log` VALUES (16563, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-02-23 16:00:00'); INSERT INTO `sys_job_log` VALUES (16564, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-23 16:00:02'); INSERT INTO `sys_job_log` VALUES (16565, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3738毫秒', '0', '', '2022-02-23 16:00:03'); INSERT INTO `sys_job_log` VALUES (16566, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1589毫秒', '0', '', '2022-02-23 16:10:01'); INSERT INTO `sys_job_log` VALUES (16567, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6535毫秒', '0', '', '2022-02-23 16:10:06'); INSERT INTO `sys_job_log` VALUES (16568, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2542毫秒', '0', '', '2022-02-23 16:15:32'); INSERT INTO `sys_job_log` VALUES (16569, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:211毫秒', '0', '', '2022-02-23 16:20:00'); INSERT INTO `sys_job_log` VALUES (16570, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-02-23 16:20:00'); INSERT INTO `sys_job_log` VALUES (16571, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3613毫秒', '0', '', '2022-02-23 16:20:03'); INSERT INTO `sys_job_log` VALUES (16572, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:656毫秒', '0', '', '2022-02-23 16:30:00'); INSERT INTO `sys_job_log` VALUES (16573, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6852毫秒', '0', '', '2022-02-23 16:30:06'); INSERT INTO `sys_job_log` VALUES (16574, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:591毫秒', '0', '', '2022-02-23 16:40:00'); INSERT INTO `sys_job_log` VALUES (16575, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-23 16:40:02'); INSERT INTO `sys_job_log` VALUES (16576, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3596毫秒', '0', '', '2022-02-23 16:40:03'); INSERT INTO `sys_job_log` VALUES (16577, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-02-23 16:50:00'); INSERT INTO `sys_job_log` VALUES (16578, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3371毫秒', '0', '', '2022-02-23 16:50:03'); INSERT INTO `sys_job_log` VALUES (16579, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-02-23 17:00:00'); INSERT INTO `sys_job_log` VALUES (16580, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1167毫秒', '0', '', '2022-02-23 17:00:01'); INSERT INTO `sys_job_log` VALUES (16581, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7487毫秒', '0', '', '2022-02-23 17:00:07'); INSERT INTO `sys_job_log` VALUES (16582, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:630毫秒', '0', '', '2022-02-24 09:00:00'); INSERT INTO `sys_job_log` VALUES (16583, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1253毫秒', '0', '', '2022-02-24 09:00:01'); INSERT INTO `sys_job_log` VALUES (16584, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:3355毫秒', '0', '', '2022-02-24 09:00:03'); INSERT INTO `sys_job_log` VALUES (16585, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4984毫秒', '0', '', '2022-02-24 09:00:05'); INSERT INTO `sys_job_log` VALUES (16586, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1499毫秒', '0', '', '2022-02-24 09:10:01'); INSERT INTO `sys_job_log` VALUES (16587, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2608毫秒', '0', '', '2022-02-24 09:10:02'); INSERT INTO `sys_job_log` VALUES (16588, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:40877毫秒', '0', '', '2022-02-24 09:10:40'); INSERT INTO `sys_job_log` VALUES (16589, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2027毫秒', '0', '', '2022-02-24 09:15:32'); INSERT INTO `sys_job_log` VALUES (16590, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:177毫秒', '0', '', '2022-02-24 09:20:00'); INSERT INTO `sys_job_log` VALUES (16591, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:463毫秒', '0', '', '2022-02-24 09:20:00'); INSERT INTO `sys_job_log` VALUES (16592, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8842毫秒', '0', '', '2022-02-24 09:20:08'); INSERT INTO `sys_job_log` VALUES (16593, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1427826毫秒', '0', '', '2022-02-24 09:25:59'); INSERT INTO `sys_job_log` VALUES (16594, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:489毫秒', '0', '', '2022-02-24 09:30:00'); INSERT INTO `sys_job_log` VALUES (16595, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4389毫秒', '0', '', '2022-02-24 09:30:04'); INSERT INTO `sys_job_log` VALUES (16596, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:467毫秒', '0', '', '2022-02-24 09:40:00'); INSERT INTO `sys_job_log` VALUES (16597, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-02-24 09:40:02'); INSERT INTO `sys_job_log` VALUES (16598, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2091毫秒', '0', '', '2022-02-24 09:40:02'); INSERT INTO `sys_job_log` VALUES (16599, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:630毫秒', '0', '', '2022-02-24 09:50:00'); INSERT INTO `sys_job_log` VALUES (16600, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4662毫秒', '0', '', '2022-02-24 09:50:04'); INSERT INTO `sys_job_log` VALUES (16601, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:426毫秒', '0', '', '2022-02-24 10:00:00'); INSERT INTO `sys_job_log` VALUES (16602, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1141毫秒', '0', '', '2022-02-24 10:00:01'); INSERT INTO `sys_job_log` VALUES (16603, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4338毫秒', '0', '', '2022-02-24 10:00:04'); INSERT INTO `sys_job_log` VALUES (16604, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:572毫秒', '0', '', '2022-02-24 10:10:00'); INSERT INTO `sys_job_log` VALUES (16605, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10701毫秒', '0', '', '2022-02-24 10:10:10'); INSERT INTO `sys_job_log` VALUES (16606, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1490毫秒', '0', '', '2022-02-24 10:15:31'); INSERT INTO `sys_job_log` VALUES (16607, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:460毫秒', '0', '', '2022-02-24 10:20:00'); INSERT INTO `sys_job_log` VALUES (16608, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-24 10:20:02'); INSERT INTO `sys_job_log` VALUES (16609, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4555毫秒', '0', '', '2022-02-24 10:20:04'); INSERT INTO `sys_job_log` VALUES (16610, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:497毫秒', '0', '', '2022-02-24 10:30:00'); INSERT INTO `sys_job_log` VALUES (16611, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3518毫秒', '0', '', '2022-02-24 10:30:03'); INSERT INTO `sys_job_log` VALUES (16612, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:461毫秒', '0', '', '2022-02-24 10:40:00'); INSERT INTO `sys_job_log` VALUES (16613, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1138毫秒', '0', '', '2022-02-24 10:40:01'); INSERT INTO `sys_job_log` VALUES (16614, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3116毫秒', '0', '', '2022-02-24 10:40:03'); INSERT INTO `sys_job_log` VALUES (16615, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:480毫秒', '0', '', '2022-02-24 10:50:00'); INSERT INTO `sys_job_log` VALUES (16616, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3778毫秒', '0', '', '2022-02-24 10:50:03'); INSERT INTO `sys_job_log` VALUES (16617, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:478毫秒', '0', '', '2022-02-24 11:00:00'); INSERT INTO `sys_job_log` VALUES (16618, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-24 11:00:02'); INSERT INTO `sys_job_log` VALUES (16619, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3744毫秒', '0', '', '2022-02-24 11:00:03'); INSERT INTO `sys_job_log` VALUES (16620, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-02-24 11:10:00'); INSERT INTO `sys_job_log` VALUES (16621, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2773毫秒', '0', '', '2022-02-24 11:10:02'); INSERT INTO `sys_job_log` VALUES (16622, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:385毫秒', '0', '', '2022-02-24 11:15:30'); INSERT INTO `sys_job_log` VALUES (16623, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:482毫秒', '0', '', '2022-02-24 11:20:00'); INSERT INTO `sys_job_log` VALUES (16624, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1187毫秒', '0', '', '2022-02-24 11:20:01'); INSERT INTO `sys_job_log` VALUES (16625, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3928毫秒', '0', '', '2022-02-24 11:20:03'); INSERT INTO `sys_job_log` VALUES (16626, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:483毫秒', '0', '', '2022-02-24 11:30:00'); INSERT INTO `sys_job_log` VALUES (16627, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3529毫秒', '0', '', '2022-02-24 11:30:03'); INSERT INTO `sys_job_log` VALUES (16628, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:516毫秒', '0', '', '2022-02-24 11:40:00'); INSERT INTO `sys_job_log` VALUES (16629, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-02-24 11:40:02'); INSERT INTO `sys_job_log` VALUES (16630, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4010毫秒', '0', '', '2022-02-24 11:40:04'); INSERT INTO `sys_job_log` VALUES (16631, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:746毫秒', '0', '', '2022-02-24 11:50:00'); INSERT INTO `sys_job_log` VALUES (16632, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2602毫秒', '0', '', '2022-02-24 11:50:02'); INSERT INTO `sys_job_log` VALUES (16633, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:36毫秒', '0', '', '2022-02-24 11:53:03'); INSERT INTO `sys_job_log` VALUES (16634, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-02-24 12:00:00'); INSERT INTO `sys_job_log` VALUES (16635, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1155毫秒', '0', '', '2022-02-24 12:00:01'); INSERT INTO `sys_job_log` VALUES (16636, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4847毫秒', '0', '', '2022-02-24 12:00:04'); INSERT INTO `sys_job_log` VALUES (16637, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1558毫秒', '0', '', '2022-02-24 12:10:01'); INSERT INTO `sys_job_log` VALUES (16638, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6103毫秒', '0', '', '2022-02-24 12:10:06'); INSERT INTO `sys_job_log` VALUES (16639, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:344毫秒', '0', '', '2022-02-24 12:15:30'); INSERT INTO `sys_job_log` VALUES (16640, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-02-24 12:20:00'); INSERT INTO `sys_job_log` VALUES (16641, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2005毫秒', '0', '', '2022-02-24 12:20:02'); INSERT INTO `sys_job_log` VALUES (16642, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3049毫秒', '0', '', '2022-02-24 12:20:03'); INSERT INTO `sys_job_log` VALUES (16643, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1674958毫秒', '0', '', '2022-02-24 12:27:54'); INSERT INTO `sys_job_log` VALUES (16644, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:870毫秒', '0', '', '2022-02-24 12:30:00'); INSERT INTO `sys_job_log` VALUES (16645, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3237毫秒', '0', '', '2022-02-24 12:30:03'); INSERT INTO `sys_job_log` VALUES (16646, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-02-24 12:40:00'); INSERT INTO `sys_job_log` VALUES (16647, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1150毫秒', '0', '', '2022-02-24 12:40:01'); INSERT INTO `sys_job_log` VALUES (16648, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1515毫秒', '0', '', '2022-02-24 12:40:01'); INSERT INTO `sys_job_log` VALUES (16649, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:597毫秒', '0', '', '2022-02-24 12:50:00'); INSERT INTO `sys_job_log` VALUES (16650, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3525毫秒', '0', '', '2022-02-24 12:50:03'); INSERT INTO `sys_job_log` VALUES (16651, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:577毫秒', '0', '', '2022-02-24 13:00:00'); INSERT INTO `sys_job_log` VALUES (16652, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2007毫秒', '0', '', '2022-02-24 13:00:02'); INSERT INTO `sys_job_log` VALUES (16653, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2127毫秒', '0', '', '2022-02-24 13:00:02'); INSERT INTO `sys_job_log` VALUES (16654, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:875毫秒', '0', '', '2022-02-24 13:10:00'); INSERT INTO `sys_job_log` VALUES (16655, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4046毫秒', '0', '', '2022-02-24 13:10:04'); INSERT INTO `sys_job_log` VALUES (16656, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:934毫秒', '0', '', '2022-02-24 13:15:30'); INSERT INTO `sys_job_log` VALUES (16657, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:588毫秒', '0', '', '2022-02-24 13:20:00'); INSERT INTO `sys_job_log` VALUES (16658, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1464毫秒', '0', '', '2022-02-24 13:20:01'); INSERT INTO `sys_job_log` VALUES (16659, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2140毫秒', '0', '', '2022-02-24 13:20:02'); INSERT INTO `sys_job_log` VALUES (16660, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:523毫秒', '0', '', '2022-02-24 13:30:00'); INSERT INTO `sys_job_log` VALUES (16661, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3118毫秒', '0', '', '2022-02-24 13:30:03'); INSERT INTO `sys_job_log` VALUES (16662, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:610毫秒', '0', '', '2022-02-24 13:40:00'); INSERT INTO `sys_job_log` VALUES (16663, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-02-24 13:40:02'); INSERT INTO `sys_job_log` VALUES (16664, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2367毫秒', '0', '', '2022-02-24 13:40:02'); INSERT INTO `sys_job_log` VALUES (16665, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:899毫秒', '0', '', '2022-02-24 13:50:00'); INSERT INTO `sys_job_log` VALUES (16666, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3433毫秒', '0', '', '2022-02-24 13:50:03'); INSERT INTO `sys_job_log` VALUES (16667, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:182毫秒', '0', '', '2022-02-24 14:00:00'); INSERT INTO `sys_job_log` VALUES (16668, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:553毫秒', '0', '', '2022-02-24 14:00:00'); INSERT INTO `sys_job_log` VALUES (16669, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2817毫秒', '0', '', '2022-02-24 14:00:02'); INSERT INTO `sys_job_log` VALUES (16670, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:575毫秒', '0', '', '2022-02-24 14:10:00'); INSERT INTO `sys_job_log` VALUES (16671, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3065毫秒', '0', '', '2022-02-24 14:10:03'); INSERT INTO `sys_job_log` VALUES (16672, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:565毫秒', '0', '', '2022-02-24 14:15:30'); INSERT INTO `sys_job_log` VALUES (16673, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-02-24 14:20:00'); INSERT INTO `sys_job_log` VALUES (16674, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1141毫秒', '0', '', '2022-02-24 14:20:01'); INSERT INTO `sys_job_log` VALUES (16675, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2724毫秒', '0', '', '2022-02-24 14:20:02'); INSERT INTO `sys_job_log` VALUES (16676, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:590毫秒', '0', '', '2022-02-24 14:30:00'); INSERT INTO `sys_job_log` VALUES (16677, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1290毫秒', '0', '', '2022-02-24 14:30:01'); INSERT INTO `sys_job_log` VALUES (16678, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:368毫秒', '0', '', '2022-02-24 14:40:00'); INSERT INTO `sys_job_log` VALUES (16679, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:729毫秒', '0', '', '2022-02-24 14:40:00'); INSERT INTO `sys_job_log` VALUES (16680, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3466毫秒', '0', '', '2022-02-24 14:40:03'); INSERT INTO `sys_job_log` VALUES (16681, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:524毫秒', '0', '', '2022-02-24 14:50:00'); INSERT INTO `sys_job_log` VALUES (16682, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2610毫秒', '0', '', '2022-02-24 14:50:02'); INSERT INTO `sys_job_log` VALUES (16683, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:725毫秒', '0', '', '2022-02-24 15:00:00'); INSERT INTO `sys_job_log` VALUES (16684, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1177毫秒', '0', '', '2022-02-24 15:00:01'); INSERT INTO `sys_job_log` VALUES (16685, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3142毫秒', '0', '', '2022-02-24 15:00:03'); INSERT INTO `sys_job_log` VALUES (16686, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:257毫秒', '0', '', '2022-02-24 15:10:00'); INSERT INTO `sys_job_log` VALUES (16687, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:819毫秒', '0', '', '2022-02-24 15:10:00'); INSERT INTO `sys_job_log` VALUES (16688, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1775毫秒', '0', '', '2022-02-24 15:10:01'); INSERT INTO `sys_job_log` VALUES (16689, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:488毫秒', '0', '', '2022-02-24 15:15:30'); INSERT INTO `sys_job_log` VALUES (16690, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:260毫秒', '0', '', '2022-02-24 15:20:00'); INSERT INTO `sys_job_log` VALUES (16691, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:587毫秒', '0', '', '2022-02-24 15:20:00'); INSERT INTO `sys_job_log` VALUES (16692, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3690毫秒', '0', '', '2022-02-24 15:20:03'); INSERT INTO `sys_job_log` VALUES (16693, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1363539毫秒', '0', '', '2022-02-24 15:22:43'); INSERT INTO `sys_job_log` VALUES (16694, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:551毫秒', '0', '', '2022-02-24 15:30:00'); INSERT INTO `sys_job_log` VALUES (16695, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2917毫秒', '0', '', '2022-02-24 15:30:02'); INSERT INTO `sys_job_log` VALUES (16696, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:179毫秒', '0', '', '2022-02-24 15:40:00'); INSERT INTO `sys_job_log` VALUES (16697, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:493毫秒', '0', '', '2022-02-24 15:40:00'); INSERT INTO `sys_job_log` VALUES (16698, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2015毫秒', '0', '', '2022-02-24 15:40:02'); INSERT INTO `sys_job_log` VALUES (16699, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-02-24 15:50:00'); INSERT INTO `sys_job_log` VALUES (16700, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2150毫秒', '0', '', '2022-02-24 15:50:02'); INSERT INTO `sys_job_log` VALUES (16701, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-02-24 16:00:00'); INSERT INTO `sys_job_log` VALUES (16702, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-24 16:00:02'); INSERT INTO `sys_job_log` VALUES (16703, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3706毫秒', '0', '', '2022-02-24 16:00:03'); INSERT INTO `sys_job_log` VALUES (16704, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:849毫秒', '0', '', '2022-02-24 16:10:00'); INSERT INTO `sys_job_log` VALUES (16705, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2797毫秒', '0', '', '2022-02-24 16:10:02'); INSERT INTO `sys_job_log` VALUES (16706, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2190毫秒', '0', '', '2022-02-24 16:15:32'); INSERT INTO `sys_job_log` VALUES (16707, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:222毫秒', '0', '', '2022-02-24 16:20:00'); INSERT INTO `sys_job_log` VALUES (16708, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:534毫秒', '0', '', '2022-02-24 16:20:00'); INSERT INTO `sys_job_log` VALUES (16709, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3959毫秒', '0', '', '2022-02-24 16:20:03'); INSERT INTO `sys_job_log` VALUES (16710, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:580毫秒', '0', '', '2022-02-24 16:30:00'); INSERT INTO `sys_job_log` VALUES (16711, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2734毫秒', '0', '', '2022-02-24 16:30:02'); INSERT INTO `sys_job_log` VALUES (16712, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-02-24 16:40:00'); INSERT INTO `sys_job_log` VALUES (16713, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1172毫秒', '0', '', '2022-02-24 16:40:01'); INSERT INTO `sys_job_log` VALUES (16714, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4319毫秒', '0', '', '2022-02-24 16:40:04'); INSERT INTO `sys_job_log` VALUES (16715, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:845毫秒', '0', '', '2022-02-24 16:50:00'); INSERT INTO `sys_job_log` VALUES (16716, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2664毫秒', '0', '', '2022-02-24 16:50:02'); INSERT INTO `sys_job_log` VALUES (16717, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:177毫秒', '0', '', '2022-02-24 17:00:00'); INSERT INTO `sys_job_log` VALUES (16718, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:647毫秒', '0', '', '2022-02-24 17:00:00'); INSERT INTO `sys_job_log` VALUES (16719, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7908毫秒', '0', '', '2022-02-24 17:00:07'); INSERT INTO `sys_job_log` VALUES (16720, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-02-24 17:10:00'); INSERT INTO `sys_job_log` VALUES (16721, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1716毫秒', '0', '', '2022-02-24 17:10:01'); INSERT INTO `sys_job_log` VALUES (16722, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1175毫秒', '0', '', '2022-02-24 17:15:31'); INSERT INTO `sys_job_log` VALUES (16723, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:516毫秒', '0', '', '2022-02-24 17:20:00'); INSERT INTO `sys_job_log` VALUES (16724, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2017毫秒', '0', '', '2022-02-24 17:20:02'); INSERT INTO `sys_job_log` VALUES (16725, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3105毫秒', '0', '', '2022-02-24 17:20:03'); INSERT INTO `sys_job_log` VALUES (16726, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-02-24 17:30:00'); INSERT INTO `sys_job_log` VALUES (16727, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3039毫秒', '0', '', '2022-02-24 17:30:03'); INSERT INTO `sys_job_log` VALUES (16728, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2200毫秒', '0', '', '2022-02-24 19:15:32'); INSERT INTO `sys_job_log` VALUES (16729, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:956毫秒', '0', '', '2022-02-24 19:20:00'); INSERT INTO `sys_job_log` VALUES (16730, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1524毫秒', '0', '', '2022-02-24 19:20:01'); INSERT INTO `sys_job_log` VALUES (16731, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3145毫秒', '0', '', '2022-02-24 19:20:03'); INSERT INTO `sys_job_log` VALUES (16732, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1395毫秒', '0', '', '2022-02-24 19:30:01'); INSERT INTO `sys_job_log` VALUES (16733, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3626毫秒', '0', '', '2022-02-24 19:30:03'); INSERT INTO `sys_job_log` VALUES (16734, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1311毫秒', '0', '', '2022-02-24 19:40:01'); INSERT INTO `sys_job_log` VALUES (16735, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1817毫秒', '0', '', '2022-02-24 19:40:01'); INSERT INTO `sys_job_log` VALUES (16736, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3172毫秒', '0', '', '2022-02-24 19:40:03'); INSERT INTO `sys_job_log` VALUES (16737, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2007毫秒', '0', '', '2022-02-24 19:50:02'); INSERT INTO `sys_job_log` VALUES (16738, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4255毫秒', '0', '', '2022-02-24 19:50:04'); INSERT INTO `sys_job_log` VALUES (16739, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:905毫秒', '0', '', '2022-02-24 20:00:00'); INSERT INTO `sys_job_log` VALUES (16740, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-02-24 20:00:02'); INSERT INTO `sys_job_log` VALUES (16741, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3691毫秒', '0', '', '2022-02-24 20:00:03'); INSERT INTO `sys_job_log` VALUES (16742, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:848毫秒', '0', '', '2022-02-24 20:10:00'); INSERT INTO `sys_job_log` VALUES (16743, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3957毫秒', '0', '', '2022-02-24 20:10:03'); INSERT INTO `sys_job_log` VALUES (16744, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1008毫秒', '0', '', '2022-02-24 20:15:31'); INSERT INTO `sys_job_log` VALUES (16745, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:454毫秒', '0', '', '2022-02-24 20:20:00'); INSERT INTO `sys_job_log` VALUES (16746, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:910毫秒', '0', '', '2022-02-24 20:20:00'); INSERT INTO `sys_job_log` VALUES (16747, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3453毫秒', '0', '', '2022-02-24 20:20:03'); INSERT INTO `sys_job_log` VALUES (16748, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2012毫秒', '0', '', '2022-02-24 20:30:02'); INSERT INTO `sys_job_log` VALUES (16749, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8855毫秒', '0', '', '2022-02-24 20:30:08'); INSERT INTO `sys_job_log` VALUES (16750, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:900008毫秒', '0', '', '2022-02-24 20:35:00'); INSERT INTO `sys_job_log` VALUES (16751, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-24 20:40:02'); INSERT INTO `sys_job_log` VALUES (16752, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2022毫秒', '0', '', '2022-02-24 20:40:02'); INSERT INTO `sys_job_log` VALUES (16753, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3613毫秒', '0', '', '2022-02-24 20:40:03'); INSERT INTO `sys_job_log` VALUES (16754, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2015毫秒', '0', '', '2022-02-24 20:50:02'); INSERT INTO `sys_job_log` VALUES (16755, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8822毫秒', '0', '', '2022-02-24 20:50:08'); INSERT INTO `sys_job_log` VALUES (16756, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:438毫秒', '0', '', '2022-02-24 21:00:00'); INSERT INTO `sys_job_log` VALUES (16757, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:869毫秒', '0', '', '2022-02-24 21:00:00'); INSERT INTO `sys_job_log` VALUES (16758, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2744毫秒', '0', '', '2022-02-24 21:00:02'); INSERT INTO `sys_job_log` VALUES (16759, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:479584毫秒', '0', '', '2022-02-24 21:07:59'); INSERT INTO `sys_job_log` VALUES (16760, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:939毫秒', '0', '', '2022-02-24 21:10:00'); INSERT INTO `sys_job_log` VALUES (16761, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2958毫秒', '0', '', '2022-02-24 21:10:02'); INSERT INTO `sys_job_log` VALUES (16762, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:53125毫秒', '0', '', '2022-02-24 21:10:53'); INSERT INTO `sys_job_log` VALUES (16763, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:480毫秒', '0', '', '2022-02-24 21:15:30'); INSERT INTO `sys_job_log` VALUES (16764, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:656毫秒', '0', '', '2022-02-24 21:20:00'); INSERT INTO `sys_job_log` VALUES (16765, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-24 21:20:02'); INSERT INTO `sys_job_log` VALUES (16766, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2685毫秒', '0', '', '2022-02-24 21:20:02'); INSERT INTO `sys_job_log` VALUES (16767, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-02-24 21:30:00'); INSERT INTO `sys_job_log` VALUES (16768, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2491毫秒', '0', '', '2022-02-24 21:30:02'); INSERT INTO `sys_job_log` VALUES (16769, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:340毫秒', '0', '', '2022-02-24 21:40:00'); INSERT INTO `sys_job_log` VALUES (16770, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:793毫秒', '0', '', '2022-02-24 21:40:00'); INSERT INTO `sys_job_log` VALUES (16771, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3509毫秒', '0', '', '2022-02-24 21:40:03'); INSERT INTO `sys_job_log` VALUES (16772, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:740毫秒', '0', '', '2022-02-24 21:50:00'); INSERT INTO `sys_job_log` VALUES (16773, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2226毫秒', '0', '', '2022-02-24 21:50:02'); INSERT INTO `sys_job_log` VALUES (16774, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:70毫秒', '0', '', '2022-02-24 22:00:00'); INSERT INTO `sys_job_log` VALUES (16775, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1466毫秒', '0', '', '2022-02-24 22:00:01'); INSERT INTO `sys_job_log` VALUES (16776, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2008毫秒', '0', '', '2022-02-24 22:00:02'); INSERT INTO `sys_job_log` VALUES (16777, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3973毫秒', '0', '', '2022-02-24 22:00:03'); INSERT INTO `sys_job_log` VALUES (16778, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1130毫秒', '0', '', '2022-02-24 22:10:01'); INSERT INTO `sys_job_log` VALUES (16779, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3190毫秒', '0', '', '2022-02-24 22:10:03'); INSERT INTO `sys_job_log` VALUES (16780, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:461毫秒', '0', '', '2022-02-24 22:15:30'); INSERT INTO `sys_job_log` VALUES (16781, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:281毫秒', '0', '', '2022-02-24 22:20:00'); INSERT INTO `sys_job_log` VALUES (16782, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-02-24 22:20:00'); INSERT INTO `sys_job_log` VALUES (16783, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2539毫秒', '0', '', '2022-02-24 22:20:02'); INSERT INTO `sys_job_log` VALUES (16784, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:900004毫秒', '0', '', '2022-02-24 22:29:20'); INSERT INTO `sys_job_log` VALUES (16785, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1761毫秒', '0', '', '2022-02-24 22:30:01'); INSERT INTO `sys_job_log` VALUES (16786, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4272毫秒', '0', '', '2022-02-24 22:30:04'); INSERT INTO `sys_job_log` VALUES (16787, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:368毫秒', '0', '', '2022-02-24 22:40:00'); INSERT INTO `sys_job_log` VALUES (16788, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:632毫秒', '0', '', '2022-02-24 22:40:00'); INSERT INTO `sys_job_log` VALUES (16789, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3304毫秒', '0', '', '2022-02-24 22:40:03'); INSERT INTO `sys_job_log` VALUES (16790, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1763毫秒', '0', '', '2022-02-25 08:40:01'); INSERT INTO `sys_job_log` VALUES (16791, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2020毫秒', '0', '', '2022-02-25 08:40:02'); INSERT INTO `sys_job_log` VALUES (16792, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5688毫秒', '0', '', '2022-02-25 08:40:05'); INSERT INTO `sys_job_log` VALUES (16793, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2010毫秒', '0', '', '2022-02-25 08:50:02'); INSERT INTO `sys_job_log` VALUES (16794, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9390毫秒', '0', '', '2022-02-25 08:50:09'); INSERT INTO `sys_job_log` VALUES (16795, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:900035毫秒', '0', '', '2022-02-25 08:53:58'); INSERT INTO `sys_job_log` VALUES (16796, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-02-25 09:00:02'); INSERT INTO `sys_job_log` VALUES (16797, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2017毫秒', '0', '', '2022-02-25 09:00:02'); INSERT INTO `sys_job_log` VALUES (16798, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10419毫秒', '0', '', '2022-02-25 09:00:10'); INSERT INTO `sys_job_log` VALUES (16799, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2004毫秒', '0', '', '2022-02-25 09:10:02'); INSERT INTO `sys_job_log` VALUES (16800, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:14967毫秒', '0', '', '2022-02-25 09:10:14'); INSERT INTO `sys_job_log` VALUES (16801, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:120009毫秒', '0', '', '2022-02-25 09:12:00'); INSERT INTO `sys_job_log` VALUES (16802, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10006毫秒', '0', '', '2022-02-25 09:15:40'); INSERT INTO `sys_job_log` VALUES (16803, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-25 09:20:02'); INSERT INTO `sys_job_log` VALUES (16804, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2003毫秒', '0', '', '2022-02-25 09:20:02'); INSERT INTO `sys_job_log` VALUES (16805, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11344毫秒', '0', '', '2022-02-25 09:20:11'); INSERT INTO `sys_job_log` VALUES (16806, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1800008毫秒', '0', '', '2022-02-25 09:30:00'); INSERT INTO `sys_job_log` VALUES (16807, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:728毫秒', '0', '', '2022-02-25 09:30:00'); INSERT INTO `sys_job_log` VALUES (16808, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8893毫秒', '0', '', '2022-02-25 09:30:08'); INSERT INTO `sys_job_log` VALUES (16809, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:204毫秒', '0', '', '2022-02-25 09:40:00'); INSERT INTO `sys_job_log` VALUES (16810, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-02-25 09:40:00'); INSERT INTO `sys_job_log` VALUES (16811, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4315毫秒', '0', '', '2022-02-25 09:40:04'); INSERT INTO `sys_job_log` VALUES (16812, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:466毫秒', '0', '', '2022-02-25 09:50:00'); INSERT INTO `sys_job_log` VALUES (16813, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2986毫秒', '0', '', '2022-02-25 09:50:02'); INSERT INTO `sys_job_log` VALUES (16814, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1185毫秒', '0', '', '2022-02-25 10:00:01'); INSERT INTO `sys_job_log` VALUES (16815, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2002毫秒', '0', '', '2022-02-25 10:00:02'); INSERT INTO `sys_job_log` VALUES (16816, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4678毫秒', '0', '', '2022-02-25 10:00:04'); INSERT INTO `sys_job_log` VALUES (16817, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1598毫秒', '0', '', '2022-02-25 10:10:01'); INSERT INTO `sys_job_log` VALUES (16818, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3176毫秒', '0', '', '2022-02-25 10:10:03'); INSERT INTO `sys_job_log` VALUES (16819, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:495毫秒', '0', '', '2022-02-25 10:15:30'); INSERT INTO `sys_job_log` VALUES (16820, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-02-25 10:20:00'); INSERT INTO `sys_job_log` VALUES (16821, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1176毫秒', '0', '', '2022-02-25 10:20:01'); INSERT INTO `sys_job_log` VALUES (16822, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4607毫秒', '0', '', '2022-02-25 10:20:04'); INSERT INTO `sys_job_log` VALUES (16823, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:524毫秒', '0', '', '2022-02-25 10:30:00'); INSERT INTO `sys_job_log` VALUES (16824, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6994毫秒', '0', '', '2022-02-25 10:30:07'); INSERT INTO `sys_job_log` VALUES (16825, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:569毫秒', '0', '', '2022-02-25 10:40:00'); INSERT INTO `sys_job_log` VALUES (16826, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1137毫秒', '0', '', '2022-02-25 10:40:01'); INSERT INTO `sys_job_log` VALUES (16827, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6214毫秒', '0', '', '2022-02-25 10:40:06'); INSERT INTO `sys_job_log` VALUES (16828, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:480毫秒', '0', '', '2022-02-25 10:50:00'); INSERT INTO `sys_job_log` VALUES (16829, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3224毫秒', '0', '', '2022-02-25 10:50:03'); INSERT INTO `sys_job_log` VALUES (16830, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:729毫秒', '0', '', '2022-02-25 11:00:00'); INSERT INTO `sys_job_log` VALUES (16831, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1146毫秒', '0', '', '2022-02-25 11:00:01'); INSERT INTO `sys_job_log` VALUES (16832, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5315毫秒', '0', '', '2022-02-25 11:00:05'); INSERT INTO `sys_job_log` VALUES (16833, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:478毫秒', '0', '', '2022-02-25 11:10:00'); INSERT INTO `sys_job_log` VALUES (16834, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4878毫秒', '0', '', '2022-02-25 11:10:04'); INSERT INTO `sys_job_log` VALUES (16835, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2481毫秒', '0', '', '2022-02-25 11:15:32'); INSERT INTO `sys_job_log` VALUES (16836, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:445毫秒', '0', '', '2022-02-25 11:20:00'); INSERT INTO `sys_job_log` VALUES (16837, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-25 11:20:02'); INSERT INTO `sys_job_log` VALUES (16838, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3402毫秒', '0', '', '2022-02-25 11:20:03'); INSERT INTO `sys_job_log` VALUES (16839, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:441毫秒', '0', '', '2022-02-25 11:30:00'); INSERT INTO `sys_job_log` VALUES (16840, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3010毫秒', '0', '', '2022-02-25 11:30:03'); INSERT INTO `sys_job_log` VALUES (16841, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:269毫秒', '0', '', '2022-02-25 11:40:00'); INSERT INTO `sys_job_log` VALUES (16842, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:611毫秒', '0', '', '2022-02-25 11:40:00'); INSERT INTO `sys_job_log` VALUES (16843, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3096毫秒', '0', '', '2022-02-25 11:40:03'); INSERT INTO `sys_job_log` VALUES (16844, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:406毫秒', '0', '', '2022-02-25 11:50:00'); INSERT INTO `sys_job_log` VALUES (16845, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2441毫秒', '0', '', '2022-02-25 11:50:02'); INSERT INTO `sys_job_log` VALUES (16846, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:461毫秒', '0', '', '2022-02-25 12:00:00'); INSERT INTO `sys_job_log` VALUES (16847, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1177毫秒', '0', '', '2022-02-25 12:00:01'); INSERT INTO `sys_job_log` VALUES (16848, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1393毫秒', '0', '', '2022-02-25 12:00:01'); INSERT INTO `sys_job_log` VALUES (16849, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2007毫秒', '0', '', '2022-02-25 12:10:02'); INSERT INTO `sys_job_log` VALUES (16850, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7294毫秒', '0', '', '2022-02-25 12:10:07'); INSERT INTO `sys_job_log` VALUES (16851, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2750毫秒', '0', '', '2022-02-25 12:15:32'); INSERT INTO `sys_job_log` VALUES (16852, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:417毫秒', '0', '', '2022-02-25 12:20:00'); INSERT INTO `sys_job_log` VALUES (16853, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:836毫秒', '0', '', '2022-02-25 12:20:00'); INSERT INTO `sys_job_log` VALUES (16854, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5837毫秒', '0', '', '2022-02-25 12:20:05'); INSERT INTO `sys_job_log` VALUES (16855, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1727919毫秒', '0', '', '2022-02-25 12:28:47'); INSERT INTO `sys_job_log` VALUES (16856, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:492毫秒', '0', '', '2022-02-25 12:30:00'); INSERT INTO `sys_job_log` VALUES (16857, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3448毫秒', '0', '', '2022-02-25 12:30:03'); INSERT INTO `sys_job_log` VALUES (16858, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:496毫秒', '0', '', '2022-02-25 12:40:00'); INSERT INTO `sys_job_log` VALUES (16859, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-02-25 12:40:02'); INSERT INTO `sys_job_log` VALUES (16860, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2967毫秒', '0', '', '2022-02-25 12:40:02'); INSERT INTO `sys_job_log` VALUES (16861, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-02-25 12:50:00'); INSERT INTO `sys_job_log` VALUES (16862, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2384毫秒', '0', '', '2022-02-25 12:50:02'); INSERT INTO `sys_job_log` VALUES (16863, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:454毫秒', '0', '', '2022-02-25 13:00:00'); INSERT INTO `sys_job_log` VALUES (16864, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1186毫秒', '0', '', '2022-02-25 13:00:01'); INSERT INTO `sys_job_log` VALUES (16865, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3691毫秒', '0', '', '2022-02-25 13:00:03'); INSERT INTO `sys_job_log` VALUES (16866, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-02-25 13:10:00'); INSERT INTO `sys_job_log` VALUES (16867, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2502毫秒', '0', '', '2022-02-25 13:10:02'); INSERT INTO `sys_job_log` VALUES (16868, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:439毫秒', '0', '', '2022-02-25 13:15:30'); INSERT INTO `sys_job_log` VALUES (16869, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:438毫秒', '0', '', '2022-02-25 13:31:29'); INSERT INTO `sys_job_log` VALUES (16870, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:420毫秒', '0', '', '2022-02-25 13:31:29'); INSERT INTO `sys_job_log` VALUES (16871, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-02-25 13:31:30'); INSERT INTO `sys_job_log` VALUES (16872, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4345毫秒', '0', '', '2022-02-25 13:31:32'); INSERT INTO `sys_job_log` VALUES (16873, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2340毫秒', '0', '', '2022-02-25 13:31:35'); INSERT INTO `sys_job_log` VALUES (16874, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:497毫秒', '0', '', '2022-02-25 13:40:00'); INSERT INTO `sys_job_log` VALUES (16875, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1175毫秒', '0', '', '2022-02-25 13:40:01'); INSERT INTO `sys_job_log` VALUES (16876, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4263毫秒', '0', '', '2022-02-25 13:40:04'); INSERT INTO `sys_job_log` VALUES (16877, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:609毫秒', '0', '', '2022-02-25 13:50:00'); INSERT INTO `sys_job_log` VALUES (16878, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3193毫秒', '0', '', '2022-02-25 13:50:03'); INSERT INTO `sys_job_log` VALUES (16879, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:139毫秒', '0', '', '2022-02-25 14:00:00'); INSERT INTO `sys_job_log` VALUES (16880, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-02-25 14:00:00'); INSERT INTO `sys_job_log` VALUES (16881, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4646毫秒', '0', '', '2022-02-25 14:00:04'); INSERT INTO `sys_job_log` VALUES (16882, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:606毫秒', '0', '', '2022-02-25 14:10:00'); INSERT INTO `sys_job_log` VALUES (16883, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8991毫秒', '0', '', '2022-02-25 14:10:09'); INSERT INTO `sys_job_log` VALUES (16884, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2548毫秒', '0', '', '2022-02-25 14:15:32'); INSERT INTO `sys_job_log` VALUES (16885, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:55毫秒', '0', '', '2022-02-25 14:19:50'); INSERT INTO `sys_job_log` VALUES (16886, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:162毫秒', '0', '', '2022-02-25 14:20:00'); INSERT INTO `sys_job_log` VALUES (16887, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:454毫秒', '0', '', '2022-02-25 14:20:00'); INSERT INTO `sys_job_log` VALUES (16888, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3185毫秒', '0', '', '2022-02-25 14:20:03'); INSERT INTO `sys_job_log` VALUES (16889, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-02-25 14:30:00'); INSERT INTO `sys_job_log` VALUES (16890, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3303毫秒', '0', '', '2022-02-25 14:30:03'); INSERT INTO `sys_job_log` VALUES (16891, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:549毫秒', '0', '', '2022-02-25 14:40:00'); INSERT INTO `sys_job_log` VALUES (16892, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1443毫秒', '0', '', '2022-02-25 14:40:01'); INSERT INTO `sys_job_log` VALUES (16893, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-25 14:40:02'); INSERT INTO `sys_job_log` VALUES (16894, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:512毫秒', '0', '', '2022-02-25 14:50:00'); INSERT INTO `sys_job_log` VALUES (16895, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4044毫秒', '0', '', '2022-02-25 14:50:04'); INSERT INTO `sys_job_log` VALUES (16896, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:624毫秒', '0', '', '2022-02-25 15:00:00'); INSERT INTO `sys_job_log` VALUES (16897, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1156毫秒', '0', '', '2022-02-25 15:00:01'); INSERT INTO `sys_job_log` VALUES (16898, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4895毫秒', '0', '', '2022-02-25 15:00:04'); INSERT INTO `sys_job_log` VALUES (16899, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:774毫秒', '0', '', '2022-02-25 15:10:00'); INSERT INTO `sys_job_log` VALUES (16900, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5364毫秒', '0', '', '2022-02-25 15:10:05'); INSERT INTO `sys_job_log` VALUES (16901, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:48930毫秒', '0', '', '2022-02-25 15:10:48'); INSERT INTO `sys_job_log` VALUES (16902, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:525毫秒', '0', '', '2022-02-25 15:15:30'); INSERT INTO `sys_job_log` VALUES (16903, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:538毫秒', '0', '', '2022-02-25 15:20:00'); INSERT INTO `sys_job_log` VALUES (16904, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-25 15:20:02'); INSERT INTO `sys_job_log` VALUES (16905, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2791毫秒', '0', '', '2022-02-25 15:20:02'); INSERT INTO `sys_job_log` VALUES (16906, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1364894毫秒', '0', '', '2022-02-25 15:22:44'); INSERT INTO `sys_job_log` VALUES (16907, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:502毫秒', '0', '', '2022-02-25 15:30:00'); INSERT INTO `sys_job_log` VALUES (16908, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3468毫秒', '0', '', '2022-02-25 15:30:03'); INSERT INTO `sys_job_log` VALUES (16909, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:475毫秒', '0', '', '2022-02-25 15:40:00'); INSERT INTO `sys_job_log` VALUES (16910, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1135毫秒', '0', '', '2022-02-25 15:40:01'); INSERT INTO `sys_job_log` VALUES (16911, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1414毫秒', '0', '', '2022-02-25 15:40:01'); INSERT INTO `sys_job_log` VALUES (16912, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:799毫秒', '0', '', '2022-02-25 15:50:00'); INSERT INTO `sys_job_log` VALUES (16913, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2908毫秒', '0', '', '2022-02-25 15:50:02'); INSERT INTO `sys_job_log` VALUES (16914, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:632毫秒', '0', '', '2022-02-25 16:00:00'); INSERT INTO `sys_job_log` VALUES (16915, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2002毫秒', '0', '', '2022-02-25 16:00:02'); INSERT INTO `sys_job_log` VALUES (16916, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5397毫秒', '0', '', '2022-02-25 16:00:05'); INSERT INTO `sys_job_log` VALUES (16917, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-02-25 16:10:00'); INSERT INTO `sys_job_log` VALUES (16918, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4199毫秒', '0', '', '2022-02-25 16:10:04'); INSERT INTO `sys_job_log` VALUES (16919, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1837毫秒', '0', '', '2022-02-25 16:15:31'); INSERT INTO `sys_job_log` VALUES (16920, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:188毫秒', '0', '', '2022-02-25 16:20:00'); INSERT INTO `sys_job_log` VALUES (16921, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:766毫秒', '0', '', '2022-02-25 16:20:00'); INSERT INTO `sys_job_log` VALUES (16922, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7824毫秒', '0', '', '2022-02-25 16:20:07'); INSERT INTO `sys_job_log` VALUES (16923, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-02-25 16:30:00'); INSERT INTO `sys_job_log` VALUES (16924, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3240毫秒', '0', '', '2022-02-25 16:30:03'); INSERT INTO `sys_job_log` VALUES (16925, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:147毫秒', '0', '', '2022-02-25 16:40:00'); INSERT INTO `sys_job_log` VALUES (16926, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:467毫秒', '0', '', '2022-02-25 16:40:00'); INSERT INTO `sys_job_log` VALUES (16927, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4961毫秒', '0', '', '2022-02-25 16:40:04'); INSERT INTO `sys_job_log` VALUES (16928, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:765毫秒', '0', '', '2022-02-25 16:50:00'); INSERT INTO `sys_job_log` VALUES (16929, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1742毫秒', '0', '', '2022-02-25 16:50:01'); INSERT INTO `sys_job_log` VALUES (16930, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:374毫秒', '0', '', '2022-02-25 17:00:00'); INSERT INTO `sys_job_log` VALUES (16931, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:719毫秒', '0', '', '2022-02-25 17:00:00'); INSERT INTO `sys_job_log` VALUES (16932, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5535毫秒', '0', '', '2022-02-25 17:00:05'); INSERT INTO `sys_job_log` VALUES (16933, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:778毫秒', '0', '', '2022-02-25 17:10:00'); INSERT INTO `sys_job_log` VALUES (16934, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3673毫秒', '0', '', '2022-02-25 17:10:03'); INSERT INTO `sys_job_log` VALUES (16935, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1640毫秒', '0', '', '2022-02-25 17:15:31'); INSERT INTO `sys_job_log` VALUES (16936, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:611毫秒', '0', '', '2022-02-25 17:20:00'); INSERT INTO `sys_job_log` VALUES (16937, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2005毫秒', '0', '', '2022-02-25 17:20:02'); INSERT INTO `sys_job_log` VALUES (16938, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5066毫秒', '0', '', '2022-02-25 17:20:05'); INSERT INTO `sys_job_log` VALUES (16939, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:509毫秒', '0', '', '2022-02-25 22:00:00'); INSERT INTO `sys_job_log` VALUES (16940, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:978毫秒', '0', '', '2022-02-25 22:00:01'); INSERT INTO `sys_job_log` VALUES (16941, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2248毫秒', '0', '', '2022-02-25 22:00:02'); INSERT INTO `sys_job_log` VALUES (16942, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5511毫秒', '0', '', '2022-02-25 22:00:05'); INSERT INTO `sys_job_log` VALUES (16943, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-02-25 22:10:00'); INSERT INTO `sys_job_log` VALUES (16944, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2100毫秒', '0', '', '2022-02-25 22:10:02'); INSERT INTO `sys_job_log` VALUES (16945, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1321毫秒', '0', '', '2022-02-25 22:15:31'); INSERT INTO `sys_job_log` VALUES (16946, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:334毫秒', '0', '', '2022-02-25 22:20:00'); INSERT INTO `sys_job_log` VALUES (16947, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:639毫秒', '0', '', '2022-02-25 22:20:00'); INSERT INTO `sys_job_log` VALUES (16948, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2881毫秒', '0', '', '2022-02-25 22:20:02'); INSERT INTO `sys_job_log` VALUES (16949, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:808毫秒', '0', '', '2022-02-25 22:30:00'); INSERT INTO `sys_job_log` VALUES (16950, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2289毫秒', '0', '', '2022-02-25 22:30:02'); INSERT INTO `sys_job_log` VALUES (16951, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:798毫秒', '0', '', '2022-02-25 22:40:00'); INSERT INTO `sys_job_log` VALUES (16952, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2007毫秒', '0', '', '2022-02-25 22:40:02'); INSERT INTO `sys_job_log` VALUES (16953, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3534毫秒', '0', '', '2022-02-25 22:40:03'); INSERT INTO `sys_job_log` VALUES (16954, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:878毫秒', '0', '', '2022-02-25 22:50:00'); INSERT INTO `sys_job_log` VALUES (16955, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2940毫秒', '0', '', '2022-02-25 22:50:02'); INSERT INTO `sys_job_log` VALUES (16956, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:273毫秒', '0', '', '2022-02-25 23:00:00'); INSERT INTO `sys_job_log` VALUES (16957, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:610毫秒', '0', '', '2022-02-25 23:00:00'); INSERT INTO `sys_job_log` VALUES (16958, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2375毫秒', '0', '', '2022-02-25 23:00:02'); INSERT INTO `sys_job_log` VALUES (16959, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:925毫秒', '0', '', '2022-02-25 23:10:00'); INSERT INTO `sys_job_log` VALUES (16960, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3277毫秒', '0', '', '2022-02-25 23:10:03'); INSERT INTO `sys_job_log` VALUES (16961, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:689毫秒', '0', '', '2022-02-25 23:15:30'); INSERT INTO `sys_job_log` VALUES (16962, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:158毫秒', '0', '', '2022-02-25 23:20:00'); INSERT INTO `sys_job_log` VALUES (16963, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:525毫秒', '0', '', '2022-02-25 23:20:00'); INSERT INTO `sys_job_log` VALUES (16964, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2859毫秒', '0', '', '2022-02-25 23:20:02'); INSERT INTO `sys_job_log` VALUES (16965, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:754毫秒', '0', '', '2022-02-25 23:30:00'); INSERT INTO `sys_job_log` VALUES (16966, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2749毫秒', '0', '', '2022-02-25 23:30:02'); INSERT INTO `sys_job_log` VALUES (16967, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1531毫秒', '0', '', '2022-02-26 11:10:01'); INSERT INTO `sys_job_log` VALUES (16968, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4215毫秒', '0', '', '2022-02-26 11:10:04'); INSERT INTO `sys_job_log` VALUES (16969, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1134毫秒', '0', '', '2022-02-26 11:15:31'); INSERT INTO `sys_job_log` VALUES (16970, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:349毫秒', '0', '', '2022-02-26 11:20:00'); INSERT INTO `sys_job_log` VALUES (16971, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:676毫秒', '0', '', '2022-02-26 11:20:00'); INSERT INTO `sys_job_log` VALUES (16972, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3087毫秒', '0', '', '2022-02-26 11:20:03'); INSERT INTO `sys_job_log` VALUES (16973, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:710毫秒', '0', '', '2022-02-26 11:30:00'); INSERT INTO `sys_job_log` VALUES (16974, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2728毫秒', '0', '', '2022-02-26 11:30:02'); INSERT INTO `sys_job_log` VALUES (16975, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-02-26 11:40:00'); INSERT INTO `sys_job_log` VALUES (16976, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2008毫秒', '0', '', '2022-02-26 11:40:02'); INSERT INTO `sys_job_log` VALUES (16977, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3018毫秒', '0', '', '2022-02-26 11:40:03'); INSERT INTO `sys_job_log` VALUES (16978, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1215毫秒', '0', '', '2022-02-26 11:50:01'); INSERT INTO `sys_job_log` VALUES (16979, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1527毫秒', '0', '', '2022-02-26 11:50:01'); INSERT INTO `sys_job_log` VALUES (16980, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:411毫秒', '0', '', '2022-02-26 12:00:00'); INSERT INTO `sys_job_log` VALUES (16981, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:822毫秒', '0', '', '2022-02-26 12:00:00'); INSERT INTO `sys_job_log` VALUES (16982, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4298毫秒', '0', '', '2022-02-26 12:00:04'); INSERT INTO `sys_job_log` VALUES (16983, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:433313毫秒', '0', '', '2022-02-26 12:07:13'); INSERT INTO `sys_job_log` VALUES (16984, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-02-26 12:10:00'); INSERT INTO `sys_job_log` VALUES (16985, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3277毫秒', '0', '', '2022-02-26 12:10:03'); INSERT INTO `sys_job_log` VALUES (16986, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:495毫秒', '0', '', '2022-02-26 12:15:30'); INSERT INTO `sys_job_log` VALUES (16987, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-02-26 12:20:00'); INSERT INTO `sys_job_log` VALUES (16988, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2002毫秒', '0', '', '2022-02-26 12:20:02'); INSERT INTO `sys_job_log` VALUES (16989, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4660毫秒', '0', '', '2022-02-26 12:20:04'); INSERT INTO `sys_job_log` VALUES (16990, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-02-26 12:30:00'); INSERT INTO `sys_job_log` VALUES (16991, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2967毫秒', '0', '', '2022-02-26 12:30:02'); INSERT INTO `sys_job_log` VALUES (16992, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:256毫秒', '0', '', '2022-02-26 12:40:00'); INSERT INTO `sys_job_log` VALUES (16993, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-02-26 12:40:00'); INSERT INTO `sys_job_log` VALUES (16994, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2289毫秒', '0', '', '2022-02-26 12:40:02'); INSERT INTO `sys_job_log` VALUES (16995, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:629毫秒', '0', '', '2022-02-26 14:00:18'); INSERT INTO `sys_job_log` VALUES (16996, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-02-26 14:00:18'); INSERT INTO `sys_job_log` VALUES (16997, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:427毫秒', '0', '', '2022-02-26 14:00:18'); INSERT INTO `sys_job_log` VALUES (16998, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-02-26 14:00:19'); INSERT INTO `sys_job_log` VALUES (16999, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1353毫秒', '0', '', '2022-02-26 14:00:19'); INSERT INTO `sys_job_log` VALUES (17000, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1244毫秒', '0', '', '2022-02-26 14:00:21'); INSERT INTO `sys_job_log` VALUES (17001, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-26 14:00:21'); INSERT INTO `sys_job_log` VALUES (17002, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:460毫秒', '0', '', '2022-02-26 14:00:21'); INSERT INTO `sys_job_log` VALUES (17003, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4313毫秒', '0', '', '2022-02-26 14:00:21'); INSERT INTO `sys_job_log` VALUES (17004, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:551毫秒', '0', '', '2022-02-26 14:00:22'); INSERT INTO `sys_job_log` VALUES (17005, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:505毫秒', '0', '', '2022-02-26 14:00:22'); INSERT INTO `sys_job_log` VALUES (17006, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:448毫秒', '0', '', '2022-02-26 14:00:23'); INSERT INTO `sys_job_log` VALUES (17007, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2002毫秒', '0', '', '2022-02-26 14:00:23'); INSERT INTO `sys_job_log` VALUES (17008, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:144毫秒', '0', '', '2022-02-26 14:00:23'); INSERT INTO `sys_job_log` VALUES (17009, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12307毫秒', '0', '', '2022-02-26 14:00:34'); INSERT INTO `sys_job_log` VALUES (17010, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5060毫秒', '0', '', '2022-02-26 14:00:39'); INSERT INTO `sys_job_log` VALUES (17011, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4884毫秒', '0', '', '2022-02-26 14:00:44'); INSERT INTO `sys_job_log` VALUES (17012, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4939毫秒', '0', '', '2022-02-26 14:00:49'); INSERT INTO `sys_job_log` VALUES (17013, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5062毫秒', '0', '', '2022-02-26 14:00:54'); INSERT INTO `sys_job_log` VALUES (17014, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4869毫秒', '0', '', '2022-02-26 14:00:59'); INSERT INTO `sys_job_log` VALUES (17015, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6770毫秒', '0', '', '2022-02-26 14:01:05'); INSERT INTO `sys_job_log` VALUES (17016, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1047毫秒', '0', '', '2022-02-26 14:10:01'); INSERT INTO `sys_job_log` VALUES (17017, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2557毫秒', '0', '', '2022-02-26 14:10:02'); INSERT INTO `sys_job_log` VALUES (17018, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:497毫秒', '0', '', '2022-02-26 14:15:30'); INSERT INTO `sys_job_log` VALUES (17019, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:385毫秒', '0', '', '2022-02-26 14:20:00'); INSERT INTO `sys_job_log` VALUES (17020, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:764毫秒', '0', '', '2022-02-26 14:20:00'); INSERT INTO `sys_job_log` VALUES (17021, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8141毫秒', '0', '', '2022-02-26 14:20:08'); INSERT INTO `sys_job_log` VALUES (17022, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:706毫秒', '0', '', '2022-02-26 14:30:00'); INSERT INTO `sys_job_log` VALUES (17023, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2288毫秒', '0', '', '2022-02-26 14:30:02'); INSERT INTO `sys_job_log` VALUES (17024, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:478毫秒', '0', '', '2022-02-26 14:40:00'); INSERT INTO `sys_job_log` VALUES (17025, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-26 14:40:02'); INSERT INTO `sys_job_log` VALUES (17026, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4761毫秒', '0', '', '2022-02-26 14:40:04'); INSERT INTO `sys_job_log` VALUES (17027, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:483毫秒', '0', '', '2022-02-26 14:50:00'); INSERT INTO `sys_job_log` VALUES (17028, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2670毫秒', '0', '', '2022-02-26 14:50:02'); INSERT INTO `sys_job_log` VALUES (17029, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:266毫秒', '0', '', '2022-02-26 15:00:00'); INSERT INTO `sys_job_log` VALUES (17030, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-02-26 15:00:00'); INSERT INTO `sys_job_log` VALUES (17031, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3592毫秒', '0', '', '2022-02-26 15:00:03'); INSERT INTO `sys_job_log` VALUES (17032, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:704毫秒', '0', '', '2022-02-26 15:10:00'); INSERT INTO `sys_job_log` VALUES (17033, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3069毫秒', '0', '', '2022-02-26 15:10:03'); INSERT INTO `sys_job_log` VALUES (17034, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:639857毫秒', '0', '', '2022-02-26 15:10:39'); INSERT INTO `sys_job_log` VALUES (17035, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:49783毫秒', '0', '', '2022-02-26 15:10:49'); INSERT INTO `sys_job_log` VALUES (17036, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:499毫秒', '0', '', '2022-02-26 15:15:30'); INSERT INTO `sys_job_log` VALUES (17037, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:574毫秒', '0', '', '2022-02-26 15:20:00'); INSERT INTO `sys_job_log` VALUES (17038, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-26 15:20:02'); INSERT INTO `sys_job_log` VALUES (17039, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2440毫秒', '0', '', '2022-02-26 15:20:02'); INSERT INTO `sys_job_log` VALUES (17040, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-02-26 15:30:00'); INSERT INTO `sys_job_log` VALUES (17041, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2990毫秒', '0', '', '2022-02-26 15:30:02'); INSERT INTO `sys_job_log` VALUES (17042, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:324毫秒', '0', '', '2022-02-26 15:40:00'); INSERT INTO `sys_job_log` VALUES (17043, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:611毫秒', '0', '', '2022-02-26 15:40:00'); INSERT INTO `sys_job_log` VALUES (17044, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2059毫秒', '0', '', '2022-02-26 15:40:02'); INSERT INTO `sys_job_log` VALUES (17045, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:561毫秒', '0', '', '2022-02-26 15:50:00'); INSERT INTO `sys_job_log` VALUES (17046, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2301毫秒', '0', '', '2022-02-26 15:50:02'); INSERT INTO `sys_job_log` VALUES (17047, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:702毫秒', '0', '', '2022-02-26 16:00:00'); INSERT INTO `sys_job_log` VALUES (17048, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2002毫秒', '0', '', '2022-02-26 16:00:02'); INSERT INTO `sys_job_log` VALUES (17049, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3623毫秒', '0', '', '2022-02-26 16:00:03'); INSERT INTO `sys_job_log` VALUES (17050, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:740毫秒', '0', '', '2022-02-26 16:10:00'); INSERT INTO `sys_job_log` VALUES (17051, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3753毫秒', '0', '', '2022-02-26 16:10:03'); INSERT INTO `sys_job_log` VALUES (17052, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:504毫秒', '0', '', '2022-02-26 16:15:30'); INSERT INTO `sys_job_log` VALUES (17053, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:335毫秒', '0', '', '2022-02-26 16:20:00'); INSERT INTO `sys_job_log` VALUES (17054, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:608毫秒', '0', '', '2022-02-26 16:20:00'); INSERT INTO `sys_job_log` VALUES (17055, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2011毫秒', '0', '', '2022-02-26 16:20:02'); INSERT INTO `sys_job_log` VALUES (17056, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:751毫秒', '0', '', '2022-02-26 16:30:00'); INSERT INTO `sys_job_log` VALUES (17057, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3217毫秒', '0', '', '2022-02-26 16:30:03'); INSERT INTO `sys_job_log` VALUES (17058, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-02-26 16:40:00'); INSERT INTO `sys_job_log` VALUES (17059, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-26 16:40:02'); INSERT INTO `sys_job_log` VALUES (17060, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3095毫秒', '0', '', '2022-02-26 16:40:03'); INSERT INTO `sys_job_log` VALUES (17061, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:575毫秒', '0', '', '2022-02-26 16:50:00'); INSERT INTO `sys_job_log` VALUES (17062, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2119毫秒', '0', '', '2022-02-26 16:50:02'); INSERT INTO `sys_job_log` VALUES (17063, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:246毫秒', '0', '', '2022-02-26 17:00:00'); INSERT INTO `sys_job_log` VALUES (17064, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:568毫秒', '0', '', '2022-02-26 17:00:00'); INSERT INTO `sys_job_log` VALUES (17065, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4448毫秒', '0', '', '2022-02-26 17:00:04'); INSERT INTO `sys_job_log` VALUES (17066, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:831毫秒', '0', '', '2022-02-26 17:10:00'); INSERT INTO `sys_job_log` VALUES (17067, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2202毫秒', '0', '', '2022-02-26 17:10:02'); INSERT INTO `sys_job_log` VALUES (17068, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1257毫秒', '0', '', '2022-02-26 17:15:31'); INSERT INTO `sys_job_log` VALUES (17069, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2002毫秒', '0', '', '2022-02-26 17:20:02'); INSERT INTO `sys_job_log` VALUES (17070, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2005毫秒', '0', '', '2022-02-26 17:20:02'); INSERT INTO `sys_job_log` VALUES (17071, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5478毫秒', '0', '', '2022-02-26 17:20:05'); INSERT INTO `sys_job_log` VALUES (17072, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1752毫秒', '0', '', '2022-02-26 17:30:01'); INSERT INTO `sys_job_log` VALUES (17073, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3591毫秒', '0', '', '2022-02-26 17:30:03'); INSERT INTO `sys_job_log` VALUES (17074, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1307毫秒', '0', '', '2022-02-26 17:40:01'); INSERT INTO `sys_job_log` VALUES (17075, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1642毫秒', '0', '', '2022-02-26 17:40:01'); INSERT INTO `sys_job_log` VALUES (17076, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3536毫秒', '0', '', '2022-02-26 17:40:03'); INSERT INTO `sys_job_log` VALUES (17077, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2002毫秒', '0', '', '2022-02-26 17:50:02'); INSERT INTO `sys_job_log` VALUES (17078, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3505毫秒', '0', '', '2022-02-26 17:50:03'); INSERT INTO `sys_job_log` VALUES (17079, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:611毫秒', '0', '', '2022-02-26 18:00:00'); INSERT INTO `sys_job_log` VALUES (17080, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1021毫秒', '0', '', '2022-02-26 18:00:01'); INSERT INTO `sys_job_log` VALUES (17081, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6463毫秒', '0', '', '2022-02-26 18:00:06'); INSERT INTO `sys_job_log` VALUES (17082, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:471948毫秒', '0', '', '2022-02-26 18:07:51'); INSERT INTO `sys_job_log` VALUES (17083, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:963毫秒', '0', '', '2022-02-26 18:10:00'); INSERT INTO `sys_job_log` VALUES (17084, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3183毫秒', '0', '', '2022-02-26 18:10:03'); INSERT INTO `sys_job_log` VALUES (17085, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:636毫秒', '0', '', '2022-02-26 18:15:30'); INSERT INTO `sys_job_log` VALUES (17086, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:1063毫秒', '0', '', '2022-02-26 18:16:56'); INSERT INTO `sys_job_log` VALUES (17087, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:1243毫秒', '0', '', '2022-02-26 18:17:56'); INSERT INTO `sys_job_log` VALUES (17088, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:854毫秒', '0', '', '2022-02-26 18:20:00'); INSERT INTO `sys_job_log` VALUES (17089, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1503毫秒', '0', '', '2022-02-26 18:20:01'); INSERT INTO `sys_job_log` VALUES (17090, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5330毫秒', '0', '', '2022-02-26 18:20:05'); INSERT INTO `sys_job_log` VALUES (17091, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:800毫秒', '0', '', '2022-02-26 18:21:56'); INSERT INTO `sys_job_log` VALUES (17092, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1508毫秒', '0', '', '2022-02-26 18:30:01'); INSERT INTO `sys_job_log` VALUES (17093, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2944毫秒', '0', '', '2022-02-26 18:30:02'); INSERT INTO `sys_job_log` VALUES (17094, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:542毫秒', '0', '', '2022-02-26 18:40:00'); INSERT INTO `sys_job_log` VALUES (17095, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:923毫秒', '0', '', '2022-02-26 18:40:00'); INSERT INTO `sys_job_log` VALUES (17096, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2956毫秒', '0', '', '2022-02-26 18:40:02'); INSERT INTO `sys_job_log` VALUES (17097, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2002毫秒', '0', '', '2022-02-26 18:50:02'); INSERT INTO `sys_job_log` VALUES (17098, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:15335毫秒', '0', '', '2022-02-26 18:50:15'); INSERT INTO `sys_job_log` VALUES (17099, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-26 19:00:02'); INSERT INTO `sys_job_log` VALUES (17100, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2003毫秒', '0', '', '2022-02-26 19:00:02'); INSERT INTO `sys_job_log` VALUES (17101, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9745毫秒', '0', '', '2022-02-26 19:00:09'); INSERT INTO `sys_job_log` VALUES (17102, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:766毫秒', '0', '', '2022-02-26 19:10:00'); INSERT INTO `sys_job_log` VALUES (17103, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2994毫秒', '0', '', '2022-02-26 19:10:03'); INSERT INTO `sys_job_log` VALUES (17104, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:477毫秒', '0', '', '2022-02-26 19:15:30'); INSERT INTO `sys_job_log` VALUES (17105, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:427毫秒', '0', '', '2022-02-26 19:20:00'); INSERT INTO `sys_job_log` VALUES (17106, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:885毫秒', '0', '', '2022-02-26 19:20:00'); INSERT INTO `sys_job_log` VALUES (17107, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4268毫秒', '0', '', '2022-02-26 19:20:04'); INSERT INTO `sys_job_log` VALUES (17108, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:942毫秒', '0', '', '2022-02-26 19:30:00'); INSERT INTO `sys_job_log` VALUES (17109, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1687毫秒', '0', '', '2022-02-26 19:30:01'); INSERT INTO `sys_job_log` VALUES (17110, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-26 19:40:02'); INSERT INTO `sys_job_log` VALUES (17111, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2003毫秒', '0', '', '2022-02-26 19:40:02'); INSERT INTO `sys_job_log` VALUES (17112, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10549毫秒', '0', '', '2022-02-26 19:40:10'); INSERT INTO `sys_job_log` VALUES (17113, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:734毫秒', '0', '', '2022-02-26 19:50:00'); INSERT INTO `sys_job_log` VALUES (17114, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3656毫秒', '0', '', '2022-02-26 19:50:03'); INSERT INTO `sys_job_log` VALUES (17115, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:358毫秒', '0', '', '2022-02-26 20:00:00'); INSERT INTO `sys_job_log` VALUES (17116, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:822毫秒', '0', '', '2022-02-26 20:00:00'); INSERT INTO `sys_job_log` VALUES (17117, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2455毫秒', '0', '', '2022-02-26 20:00:02'); INSERT INTO `sys_job_log` VALUES (17118, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:975毫秒', '0', '', '2022-02-26 20:10:00'); INSERT INTO `sys_job_log` VALUES (17119, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4928毫秒', '0', '', '2022-02-26 20:10:04'); INSERT INTO `sys_job_log` VALUES (17120, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10008毫秒', '0', '', '2022-02-26 20:15:40'); INSERT INTO `sys_job_log` VALUES (17121, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-26 20:20:02'); INSERT INTO `sys_job_log` VALUES (17122, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2002毫秒', '0', '', '2022-02-26 20:20:02'); INSERT INTO `sys_job_log` VALUES (17123, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5844毫秒', '0', '', '2022-02-26 20:20:05'); INSERT INTO `sys_job_log` VALUES (17124, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:108991毫秒', '0', '', '2022-02-26 20:21:49'); INSERT INTO `sys_job_log` VALUES (17125, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:948毫秒', '0', '', '2022-02-26 20:30:00'); INSERT INTO `sys_job_log` VALUES (17126, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3872毫秒', '0', '', '2022-02-26 20:30:03'); INSERT INTO `sys_job_log` VALUES (17127, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:488毫秒', '0', '', '2022-02-26 20:40:00'); INSERT INTO `sys_job_log` VALUES (17128, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:890毫秒', '0', '', '2022-02-26 20:40:00'); INSERT INTO `sys_job_log` VALUES (17129, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3704毫秒', '0', '', '2022-02-26 20:40:03'); INSERT INTO `sys_job_log` VALUES (17130, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:966毫秒', '0', '', '2022-02-26 20:50:00'); INSERT INTO `sys_job_log` VALUES (17131, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2996毫秒', '0', '', '2022-02-26 20:50:03'); INSERT INTO `sys_job_log` VALUES (17132, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:802毫秒', '0', '', '2022-02-26 21:00:00'); INSERT INTO `sys_job_log` VALUES (17133, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-02-26 21:00:02'); INSERT INTO `sys_job_log` VALUES (17134, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3820毫秒', '0', '', '2022-02-26 21:00:03'); INSERT INTO `sys_job_log` VALUES (17135, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2002毫秒', '0', '', '2022-02-26 21:10:02'); INSERT INTO `sys_job_log` VALUES (17136, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:3112毫秒', '0', '', '2022-02-26 21:10:03'); INSERT INTO `sys_job_log` VALUES (17137, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8375毫秒', '0', '', '2022-02-26 21:10:08'); INSERT INTO `sys_job_log` VALUES (17138, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:638044毫秒', '0', '', '2022-02-26 21:10:38'); INSERT INTO `sys_job_log` VALUES (17139, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:489毫秒', '0', '', '2022-02-26 21:15:30'); INSERT INTO `sys_job_log` VALUES (17140, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:416毫秒', '0', '', '2022-02-26 21:20:00'); INSERT INTO `sys_job_log` VALUES (17141, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:768毫秒', '0', '', '2022-02-26 21:20:00'); INSERT INTO `sys_job_log` VALUES (17142, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3170毫秒', '0', '', '2022-02-26 21:20:03'); INSERT INTO `sys_job_log` VALUES (17143, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:923毫秒', '0', '', '2022-02-26 21:30:00'); INSERT INTO `sys_job_log` VALUES (17144, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3535毫秒', '0', '', '2022-02-26 21:30:03'); INSERT INTO `sys_job_log` VALUES (17145, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:790毫秒', '0', '', '2022-02-26 21:40:00'); INSERT INTO `sys_job_log` VALUES (17146, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-02-26 21:40:02'); INSERT INTO `sys_job_log` VALUES (17147, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4509毫秒', '0', '', '2022-02-26 21:40:04'); INSERT INTO `sys_job_log` VALUES (17148, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:745毫秒', '0', '', '2022-02-26 21:50:00'); INSERT INTO `sys_job_log` VALUES (17149, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3121毫秒', '0', '', '2022-02-26 21:50:03'); INSERT INTO `sys_job_log` VALUES (17150, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:22毫秒', '0', '', '2022-02-26 22:00:00'); INSERT INTO `sys_job_log` VALUES (17151, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:337毫秒', '0', '', '2022-02-26 22:00:00'); INSERT INTO `sys_job_log` VALUES (17152, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1438毫秒', '0', '', '2022-02-26 22:00:01'); INSERT INTO `sys_job_log` VALUES (17153, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5599毫秒', '0', '', '2022-02-26 22:00:05'); INSERT INTO `sys_job_log` VALUES (17154, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2003毫秒', '0', '', '2022-02-26 22:10:02'); INSERT INTO `sys_job_log` VALUES (17155, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4366毫秒', '0', '', '2022-02-26 22:10:04'); INSERT INTO `sys_job_log` VALUES (17156, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:504毫秒', '0', '', '2022-02-26 22:15:30'); INSERT INTO `sys_job_log` VALUES (17157, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-26 22:20:02'); INSERT INTO `sys_job_log` VALUES (17158, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2002毫秒', '0', '', '2022-02-26 22:20:02'); INSERT INTO `sys_job_log` VALUES (17159, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5732毫秒', '0', '', '2022-02-26 22:20:05'); INSERT INTO `sys_job_log` VALUES (17160, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:859毫秒', '0', '', '2022-02-26 22:30:00'); INSERT INTO `sys_job_log` VALUES (17161, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2390毫秒', '0', '', '2022-02-26 22:30:02'); INSERT INTO `sys_job_log` VALUES (17162, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:347毫秒', '0', '', '2022-02-26 22:40:00'); INSERT INTO `sys_job_log` VALUES (17163, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:844毫秒', '0', '', '2022-02-26 22:40:00'); INSERT INTO `sys_job_log` VALUES (17164, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3672毫秒', '0', '', '2022-02-26 22:40:03'); INSERT INTO `sys_job_log` VALUES (17165, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:508毫秒', '0', '', '2022-02-26 22:50:00'); INSERT INTO `sys_job_log` VALUES (17166, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2625毫秒', '0', '', '2022-02-26 22:50:02'); INSERT INTO `sys_job_log` VALUES (17167, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2029毫秒', '0', '', '2022-02-27 09:09:45'); INSERT INTO `sys_job_log` VALUES (17168, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2006毫秒', '0', '', '2022-02-27 09:09:46'); INSERT INTO `sys_job_log` VALUES (17169, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2709毫秒', '0', '', '2022-02-27 09:09:47'); INSERT INTO `sys_job_log` VALUES (17170, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:3090毫秒', '0', '', '2022-02-27 09:09:47'); INSERT INTO `sys_job_log` VALUES (17171, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1450毫秒', '0', '', '2022-02-27 09:09:47'); INSERT INTO `sys_job_log` VALUES (17172, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-27 09:09:48'); INSERT INTO `sys_job_log` VALUES (17173, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1382毫秒', '0', '', '2022-02-27 09:09:49'); INSERT INTO `sys_job_log` VALUES (17174, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:991毫秒', '0', '', '2022-02-27 09:09:50'); INSERT INTO `sys_job_log` VALUES (17175, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-27 09:09:50'); INSERT INTO `sys_job_log` VALUES (17176, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:219毫秒', '0', '', '2022-02-27 09:09:50'); INSERT INTO `sys_job_log` VALUES (17177, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:197毫秒', '0', '', '2022-02-27 09:09:50'); INSERT INTO `sys_job_log` VALUES (17178, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:254毫秒', '0', '', '2022-02-27 09:09:51'); INSERT INTO `sys_job_log` VALUES (17179, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:916毫秒', '0', '', '2022-02-27 09:09:51'); INSERT INTO `sys_job_log` VALUES (17180, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7534毫秒', '0', '', '2022-02-27 09:09:51'); INSERT INTO `sys_job_log` VALUES (17181, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:236毫秒', '0', '', '2022-02-27 09:09:51'); INSERT INTO `sys_job_log` VALUES (17182, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:190毫秒', '0', '', '2022-02-27 09:09:51'); INSERT INTO `sys_job_log` VALUES (17183, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:210毫秒', '0', '', '2022-02-27 09:09:51'); INSERT INTO `sys_job_log` VALUES (17184, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:758毫秒', '0', '', '2022-02-27 09:09:52'); INSERT INTO `sys_job_log` VALUES (17185, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:208毫秒', '0', '', '2022-02-27 09:09:52'); INSERT INTO `sys_job_log` VALUES (17186, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:164毫秒', '0', '', '2022-02-27 09:09:52'); INSERT INTO `sys_job_log` VALUES (17187, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:191毫秒', '0', '', '2022-02-27 09:09:52'); INSERT INTO `sys_job_log` VALUES (17188, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:214毫秒', '0', '', '2022-02-27 09:09:52'); INSERT INTO `sys_job_log` VALUES (17189, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:722毫秒', '0', '', '2022-02-27 09:09:52'); INSERT INTO `sys_job_log` VALUES (17190, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:188毫秒', '0', '', '2022-02-27 09:09:53'); INSERT INTO `sys_job_log` VALUES (17191, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:199毫秒', '0', '', '2022-02-27 09:09:53'); INSERT INTO `sys_job_log` VALUES (17192, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:240毫秒', '0', '', '2022-02-27 09:09:53'); INSERT INTO `sys_job_log` VALUES (17193, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:731毫秒', '0', '', '2022-02-27 09:09:53'); INSERT INTO `sys_job_log` VALUES (17194, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:185毫秒', '0', '', '2022-02-27 09:09:53'); INSERT INTO `sys_job_log` VALUES (17195, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:182毫秒', '0', '', '2022-02-27 09:09:54'); INSERT INTO `sys_job_log` VALUES (17196, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:201毫秒', '0', '', '2022-02-27 09:09:54'); INSERT INTO `sys_job_log` VALUES (17197, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:677毫秒', '0', '', '2022-02-27 09:09:54'); INSERT INTO `sys_job_log` VALUES (17198, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:218毫秒', '0', '', '2022-02-27 09:09:54'); INSERT INTO `sys_job_log` VALUES (17199, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:173毫秒', '0', '', '2022-02-27 09:09:54'); INSERT INTO `sys_job_log` VALUES (17200, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:218毫秒', '0', '', '2022-02-27 09:09:54'); INSERT INTO `sys_job_log` VALUES (17201, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-02-27 09:09:55'); INSERT INTO `sys_job_log` VALUES (17202, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:208毫秒', '0', '', '2022-02-27 09:09:55'); INSERT INTO `sys_job_log` VALUES (17203, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1077毫秒', '0', '', '2022-02-27 09:09:56'); INSERT INTO `sys_job_log` VALUES (17204, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5179毫秒', '0', '', '2022-02-27 09:09:56'); INSERT INTO `sys_job_log` VALUES (17205, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10004毫秒', '0', '', '2022-02-27 09:09:57'); INSERT INTO `sys_job_log` VALUES (17206, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2002毫秒', '0', '', '2022-02-27 09:09:57'); INSERT INTO `sys_job_log` VALUES (17207, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:871毫秒', '0', '', '2022-02-27 09:09:57'); INSERT INTO `sys_job_log` VALUES (17208, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:181毫秒', '0', '', '2022-02-27 09:09:57'); INSERT INTO `sys_job_log` VALUES (17209, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:205毫秒', '0', '', '2022-02-27 09:09:57'); INSERT INTO `sys_job_log` VALUES (17210, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:674毫秒', '0', '', '2022-02-27 09:09:57'); INSERT INTO `sys_job_log` VALUES (17211, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:726毫秒', '0', '', '2022-02-27 09:09:57'); INSERT INTO `sys_job_log` VALUES (17212, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:173毫秒', '0', '', '2022-02-27 09:09:57'); INSERT INTO `sys_job_log` VALUES (17213, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:208毫秒', '0', '', '2022-02-27 09:09:58'); INSERT INTO `sys_job_log` VALUES (17214, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:176毫秒', '0', '', '2022-02-27 09:09:58'); INSERT INTO `sys_job_log` VALUES (17215, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:205毫秒', '0', '', '2022-02-27 09:09:58'); INSERT INTO `sys_job_log` VALUES (17216, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:969毫秒', '0', '', '2022-02-27 09:09:58'); INSERT INTO `sys_job_log` VALUES (17217, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1003毫秒', '0', '', '2022-02-27 09:09:58'); INSERT INTO `sys_job_log` VALUES (17218, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-02-27 09:09:59'); INSERT INTO `sys_job_log` VALUES (17219, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:929毫秒', '0', '', '2022-02-27 09:09:59'); INSERT INTO `sys_job_log` VALUES (17220, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:573毫秒', '0', '', '2022-02-27 09:10:00'); INSERT INTO `sys_job_log` VALUES (17221, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1031毫秒', '0', '', '2022-02-27 09:10:00'); INSERT INTO `sys_job_log` VALUES (17222, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:961毫秒', '0', '', '2022-02-27 09:10:01'); INSERT INTO `sys_job_log` VALUES (17223, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:798毫秒', '0', '', '2022-02-27 09:10:01'); INSERT INTO `sys_job_log` VALUES (17224, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:575毫秒', '0', '', '2022-02-27 09:10:01'); INSERT INTO `sys_job_log` VALUES (17225, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:615毫秒', '0', '', '2022-02-27 09:10:02'); INSERT INTO `sys_job_log` VALUES (17226, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-02-27 09:10:02'); INSERT INTO `sys_job_log` VALUES (17227, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:609毫秒', '0', '', '2022-02-27 09:10:03'); INSERT INTO `sys_job_log` VALUES (17228, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6969毫秒', '0', '', '2022-02-27 09:10:03'); INSERT INTO `sys_job_log` VALUES (17229, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1826毫秒', '0', '', '2022-02-27 09:10:03'); INSERT INTO `sys_job_log` VALUES (17230, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:560毫秒', '0', '', '2022-02-27 09:10:03'); INSERT INTO `sys_job_log` VALUES (17231, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-02-27 09:10:04'); INSERT INTO `sys_job_log` VALUES (17232, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:572毫秒', '0', '', '2022-02-27 09:10:05'); INSERT INTO `sys_job_log` VALUES (17233, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1603毫秒', '0', '', '2022-02-27 09:10:05'); INSERT INTO `sys_job_log` VALUES (17234, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:511毫秒', '0', '', '2022-02-27 09:10:05'); INSERT INTO `sys_job_log` VALUES (17235, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:527毫秒', '0', '', '2022-02-27 09:10:06'); INSERT INTO `sys_job_log` VALUES (17236, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:517毫秒', '0', '', '2022-02-27 09:10:06'); INSERT INTO `sys_job_log` VALUES (17237, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:508毫秒', '0', '', '2022-02-27 09:10:07'); INSERT INTO `sys_job_log` VALUES (17238, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:528毫秒', '0', '', '2022-02-27 09:10:07'); INSERT INTO `sys_job_log` VALUES (17239, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4488毫秒', '0', '', '2022-02-27 09:10:08'); INSERT INTO `sys_job_log` VALUES (17240, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:536毫秒', '0', '', '2022-02-27 09:10:08'); INSERT INTO `sys_job_log` VALUES (17241, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-02-27 09:10:08'); INSERT INTO `sys_job_log` VALUES (17242, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-02-27 09:10:09'); INSERT INTO `sys_job_log` VALUES (17243, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:546毫秒', '0', '', '2022-02-27 09:10:10'); INSERT INTO `sys_job_log` VALUES (17244, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-02-27 09:10:10'); INSERT INTO `sys_job_log` VALUES (17245, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3109毫秒', '0', '', '2022-02-27 09:10:11'); INSERT INTO `sys_job_log` VALUES (17246, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:770毫秒', '0', '', '2022-02-27 09:10:11'); INSERT INTO `sys_job_log` VALUES (17247, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-02-27 09:10:12'); INSERT INTO `sys_job_log` VALUES (17248, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-02-27 09:10:12'); INSERT INTO `sys_job_log` VALUES (17249, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:620毫秒', '0', '', '2022-02-27 09:10:13'); INSERT INTO `sys_job_log` VALUES (17250, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-02-27 09:10:13'); INSERT INTO `sys_job_log` VALUES (17251, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2665毫秒', '0', '', '2022-02-27 09:10:13'); INSERT INTO `sys_job_log` VALUES (17252, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:656毫秒', '0', '', '2022-02-27 09:10:14'); INSERT INTO `sys_job_log` VALUES (17253, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:564毫秒', '0', '', '2022-02-27 09:10:15'); INSERT INTO `sys_job_log` VALUES (17254, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:553毫秒', '0', '', '2022-02-27 09:10:15'); INSERT INTO `sys_job_log` VALUES (17255, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:580毫秒', '0', '', '2022-02-27 09:10:16'); INSERT INTO `sys_job_log` VALUES (17256, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2638毫秒', '0', '', '2022-02-27 09:10:16'); INSERT INTO `sys_job_log` VALUES (17257, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:550毫秒', '0', '', '2022-02-27 09:10:16'); INSERT INTO `sys_job_log` VALUES (17258, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:592毫秒', '0', '', '2022-02-27 09:10:17'); INSERT INTO `sys_job_log` VALUES (17259, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:569毫秒', '0', '', '2022-02-27 09:10:18'); INSERT INTO `sys_job_log` VALUES (17260, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-02-27 09:10:18'); INSERT INTO `sys_job_log` VALUES (17261, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2252毫秒', '0', '', '2022-02-27 09:10:18'); INSERT INTO `sys_job_log` VALUES (17262, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:588毫秒', '0', '', '2022-02-27 09:10:19'); INSERT INTO `sys_job_log` VALUES (17263, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:568毫秒', '0', '', '2022-02-27 09:10:19'); INSERT INTO `sys_job_log` VALUES (17264, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:595毫秒', '0', '', '2022-02-27 09:10:20'); INSERT INTO `sys_job_log` VALUES (17265, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:550毫秒', '0', '', '2022-02-27 09:10:21'); INSERT INTO `sys_job_log` VALUES (17266, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:514毫秒', '0', '', '2022-02-27 09:10:21'); INSERT INTO `sys_job_log` VALUES (17267, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:556毫秒', '0', '', '2022-02-27 09:10:22'); INSERT INTO `sys_job_log` VALUES (17268, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:561毫秒', '0', '', '2022-02-27 09:10:22'); INSERT INTO `sys_job_log` VALUES (17269, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-02-27 09:10:23'); INSERT INTO `sys_job_log` VALUES (17270, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:582毫秒', '0', '', '2022-02-27 09:10:23'); INSERT INTO `sys_job_log` VALUES (17271, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5124毫秒', '0', '', '2022-02-27 09:10:23'); INSERT INTO `sys_job_log` VALUES (17272, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-02-27 09:10:24'); INSERT INTO `sys_job_log` VALUES (17273, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:574毫秒', '0', '', '2022-02-27 09:10:25'); INSERT INTO `sys_job_log` VALUES (17274, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:577毫秒', '0', '', '2022-02-27 09:10:25'); INSERT INTO `sys_job_log` VALUES (17275, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-02-27 09:10:26'); INSERT INTO `sys_job_log` VALUES (17276, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-02-27 09:10:26'); INSERT INTO `sys_job_log` VALUES (17277, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-02-27 09:10:27'); INSERT INTO `sys_job_log` VALUES (17278, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:816毫秒', '0', '', '2022-02-27 09:10:28'); INSERT INTO `sys_job_log` VALUES (17279, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4718毫秒', '0', '', '2022-02-27 09:10:28'); INSERT INTO `sys_job_log` VALUES (17280, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-02-27 09:10:29'); INSERT INTO `sys_job_log` VALUES (17281, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2048毫秒', '0', '', '2022-02-27 09:10:30'); INSERT INTO `sys_job_log` VALUES (17282, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1965毫秒', '0', '', '2022-02-27 09:10:32'); INSERT INTO `sys_job_log` VALUES (17283, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2866毫秒', '0', '', '2022-02-27 09:10:35'); INSERT INTO `sys_job_log` VALUES (17284, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2453毫秒', '0', '', '2022-02-27 09:10:38'); INSERT INTO `sys_job_log` VALUES (17285, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2361毫秒', '0', '', '2022-02-27 09:10:40'); INSERT INTO `sys_job_log` VALUES (17286, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2019毫秒', '0', '', '2022-02-27 09:10:42'); INSERT INTO `sys_job_log` VALUES (17287, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3307毫秒', '0', '', '2022-02-27 09:10:45'); INSERT INTO `sys_job_log` VALUES (17288, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1960毫秒', '0', '', '2022-02-27 09:10:47'); INSERT INTO `sys_job_log` VALUES (17289, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3447毫秒', '0', '', '2022-02-27 09:10:51'); INSERT INTO `sys_job_log` VALUES (17290, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:69446毫秒', '0', '', '2022-02-27 09:10:54'); INSERT INTO `sys_job_log` VALUES (17291, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4473毫秒', '0', '', '2022-02-27 09:10:55'); INSERT INTO `sys_job_log` VALUES (17292, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2619毫秒', '0', '', '2022-02-27 09:10:58'); INSERT INTO `sys_job_log` VALUES (17293, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1388毫秒', '0', '', '2022-02-27 09:10:59'); INSERT INTO `sys_job_log` VALUES (17294, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3274毫秒', '0', '', '2022-02-27 09:11:03'); INSERT INTO `sys_job_log` VALUES (17295, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2866毫秒', '0', '', '2022-02-27 09:11:06'); INSERT INTO `sys_job_log` VALUES (17296, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1666毫秒', '0', '', '2022-02-27 09:11:07'); INSERT INTO `sys_job_log` VALUES (17297, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2739毫秒', '0', '', '2022-02-27 09:11:10'); INSERT INTO `sys_job_log` VALUES (17298, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2138毫秒', '0', '', '2022-02-27 09:11:12'); INSERT INTO `sys_job_log` VALUES (17299, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3300毫秒', '0', '', '2022-02-27 09:11:16'); INSERT INTO `sys_job_log` VALUES (17300, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3615毫秒', '0', '', '2022-02-27 09:11:19'); INSERT INTO `sys_job_log` VALUES (17301, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2167毫秒', '0', '', '2022-02-27 09:11:21'); INSERT INTO `sys_job_log` VALUES (17302, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1724毫秒', '0', '', '2022-02-27 09:11:23'); INSERT INTO `sys_job_log` VALUES (17303, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1688毫秒', '0', '', '2022-02-27 09:11:25'); INSERT INTO `sys_job_log` VALUES (17304, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1618毫秒', '0', '', '2022-02-27 09:11:26'); INSERT INTO `sys_job_log` VALUES (17305, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1691毫秒', '0', '', '2022-02-27 09:11:28'); INSERT INTO `sys_job_log` VALUES (17306, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2546毫秒', '0', '', '2022-02-27 09:11:31'); INSERT INTO `sys_job_log` VALUES (17307, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2832毫秒', '0', '', '2022-02-27 09:11:34'); INSERT INTO `sys_job_log` VALUES (17308, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2903毫秒', '0', '', '2022-02-27 09:11:37'); INSERT INTO `sys_job_log` VALUES (17309, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1942毫秒', '0', '', '2022-02-27 09:11:38'); INSERT INTO `sys_job_log` VALUES (17310, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1528毫秒', '0', '', '2022-02-27 09:11:40'); INSERT INTO `sys_job_log` VALUES (17311, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3698毫秒', '0', '', '2022-02-27 09:11:44'); INSERT INTO `sys_job_log` VALUES (17312, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1648毫秒', '0', '', '2022-02-27 09:11:45'); INSERT INTO `sys_job_log` VALUES (17313, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1965毫秒', '0', '', '2022-02-27 09:11:47'); INSERT INTO `sys_job_log` VALUES (17314, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1937毫秒', '0', '', '2022-02-27 09:11:49'); INSERT INTO `sys_job_log` VALUES (17315, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1761毫秒', '0', '', '2022-02-27 09:11:51'); INSERT INTO `sys_job_log` VALUES (17316, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:58863毫秒', '0', '', '2022-02-27 09:11:53'); INSERT INTO `sys_job_log` VALUES (17317, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3117毫秒', '0', '', '2022-02-27 09:11:54'); INSERT INTO `sys_job_log` VALUES (17318, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1941毫秒', '0', '', '2022-02-27 09:11:56'); INSERT INTO `sys_job_log` VALUES (17319, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2936毫秒', '0', '', '2022-02-27 09:11:59'); INSERT INTO `sys_job_log` VALUES (17320, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2212毫秒', '0', '', '2022-02-27 09:12:01'); INSERT INTO `sys_job_log` VALUES (17321, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2901毫秒', '0', '', '2022-02-27 09:12:04'); INSERT INTO `sys_job_log` VALUES (17322, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4196毫秒', '0', '', '2022-02-27 09:12:08'); INSERT INTO `sys_job_log` VALUES (17323, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2862毫秒', '0', '', '2022-02-27 09:12:11'); INSERT INTO `sys_job_log` VALUES (17324, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1752毫秒', '0', '', '2022-02-27 09:12:13'); INSERT INTO `sys_job_log` VALUES (17325, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1370毫秒', '0', '', '2022-02-27 09:12:14'); INSERT INTO `sys_job_log` VALUES (17326, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2309毫秒', '0', '', '2022-02-27 09:12:17'); INSERT INTO `sys_job_log` VALUES (17327, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3868毫秒', '0', '', '2022-02-27 09:12:21'); INSERT INTO `sys_job_log` VALUES (17328, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1735毫秒', '0', '', '2022-02-27 09:12:22'); INSERT INTO `sys_job_log` VALUES (17329, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4235毫秒', '0', '', '2022-02-27 09:12:27'); INSERT INTO `sys_job_log` VALUES (17330, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3221毫秒', '0', '', '2022-02-27 09:12:30'); INSERT INTO `sys_job_log` VALUES (17331, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2046毫秒', '0', '', '2022-02-27 09:12:32'); INSERT INTO `sys_job_log` VALUES (17332, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2467毫秒', '0', '', '2022-02-27 09:12:34'); INSERT INTO `sys_job_log` VALUES (17333, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3408毫秒', '0', '', '2022-02-27 09:12:38'); INSERT INTO `sys_job_log` VALUES (17334, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1347毫秒', '0', '', '2022-02-27 09:12:39'); INSERT INTO `sys_job_log` VALUES (17335, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:551毫秒', '0', '', '2022-02-27 09:15:30'); INSERT INTO `sys_job_log` VALUES (17336, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:530039毫秒', '0', '', '2022-02-27 09:18:34'); INSERT INTO `sys_job_log` VALUES (17337, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:389毫秒', '0', '', '2022-02-27 09:20:00'); INSERT INTO `sys_job_log` VALUES (17338, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:951毫秒', '0', '', '2022-02-27 09:20:00'); INSERT INTO `sys_job_log` VALUES (17339, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7258毫秒', '0', '', '2022-02-27 09:20:07'); INSERT INTO `sys_job_log` VALUES (17340, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:162029毫秒', '0', '', '2022-02-27 09:21:16'); INSERT INTO `sys_job_log` VALUES (17341, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:433152毫秒', '0', '', '2022-02-27 09:28:29'); INSERT INTO `sys_job_log` VALUES (17342, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:709毫秒', '0', '', '2022-02-27 09:30:00'); INSERT INTO `sys_job_log` VALUES (17343, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3752毫秒', '0', '', '2022-02-27 09:30:03'); INSERT INTO `sys_job_log` VALUES (17344, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:190019毫秒', '0', '', '2022-02-27 09:31:39'); INSERT INTO `sys_job_log` VALUES (17345, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:680毫秒', '0', '', '2022-02-27 09:40:00'); INSERT INTO `sys_job_log` VALUES (17346, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-27 09:40:02'); INSERT INTO `sys_job_log` VALUES (17347, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3415毫秒', '0', '', '2022-02-27 09:40:03'); INSERT INTO `sys_job_log` VALUES (17348, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:932毫秒', '0', '', '2022-02-27 09:50:00'); INSERT INTO `sys_job_log` VALUES (17349, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2829毫秒', '0', '', '2022-02-27 09:50:02'); INSERT INTO `sys_job_log` VALUES (17350, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:332毫秒', '0', '', '2022-02-27 10:00:00'); INSERT INTO `sys_job_log` VALUES (17351, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:942毫秒', '0', '', '2022-02-27 10:00:00'); INSERT INTO `sys_job_log` VALUES (17352, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7837毫秒', '0', '', '2022-02-27 10:00:07'); INSERT INTO `sys_job_log` VALUES (17353, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:879毫秒', '0', '', '2022-02-27 10:10:00'); INSERT INTO `sys_job_log` VALUES (17354, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3853毫秒', '0', '', '2022-02-27 10:10:03'); INSERT INTO `sys_job_log` VALUES (17355, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:507毫秒', '0', '', '2022-02-27 10:15:30'); INSERT INTO `sys_job_log` VALUES (17356, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:699毫秒', '0', '', '2022-02-27 10:20:00'); INSERT INTO `sys_job_log` VALUES (17357, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-02-27 10:20:02'); INSERT INTO `sys_job_log` VALUES (17358, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7111毫秒', '0', '', '2022-02-27 10:20:07'); INSERT INTO `sys_job_log` VALUES (17359, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:733毫秒', '0', '', '2022-02-27 10:30:00'); INSERT INTO `sys_job_log` VALUES (17360, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2703毫秒', '0', '', '2022-02-27 10:30:02'); INSERT INTO `sys_job_log` VALUES (17361, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:292毫秒', '0', '', '2022-02-27 10:40:00'); INSERT INTO `sys_job_log` VALUES (17362, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:709毫秒', '0', '', '2022-02-27 10:40:00'); INSERT INTO `sys_job_log` VALUES (17363, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3020毫秒', '0', '', '2022-02-27 10:40:03'); INSERT INTO `sys_job_log` VALUES (17364, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-02-27 10:50:00'); INSERT INTO `sys_job_log` VALUES (17365, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1605毫秒', '0', '', '2022-02-27 10:50:01'); INSERT INTO `sys_job_log` VALUES (17366, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-02-27 11:00:00'); INSERT INTO `sys_job_log` VALUES (17367, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-02-27 11:00:02'); INSERT INTO `sys_job_log` VALUES (17368, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2793毫秒', '0', '', '2022-02-27 11:00:02'); INSERT INTO `sys_job_log` VALUES (17369, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:986毫秒', '0', '', '2022-02-27 11:10:01'); INSERT INTO `sys_job_log` VALUES (17370, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8585毫秒', '0', '', '2022-02-27 11:10:08'); INSERT INTO `sys_job_log` VALUES (17371, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:511毫秒', '0', '', '2022-02-27 11:15:30'); INSERT INTO `sys_job_log` VALUES (17372, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:353毫秒', '0', '', '2022-02-27 11:20:00'); INSERT INTO `sys_job_log` VALUES (17373, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:760毫秒', '0', '', '2022-02-27 11:20:00'); INSERT INTO `sys_job_log` VALUES (17374, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3407毫秒', '0', '', '2022-02-27 11:20:03'); INSERT INTO `sys_job_log` VALUES (17375, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:800毫秒', '0', '', '2022-02-27 11:30:00'); INSERT INTO `sys_job_log` VALUES (17376, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3351毫秒', '0', '', '2022-02-27 11:30:03'); INSERT INTO `sys_job_log` VALUES (17377, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2262毫秒', '0', '', '2022-02-27 19:30:02'); INSERT INTO `sys_job_log` VALUES (17378, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5311毫秒', '0', '', '2022-02-27 19:30:05'); INSERT INTO `sys_job_log` VALUES (17379, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:541毫秒', '0', '', '2022-02-27 19:40:00'); INSERT INTO `sys_job_log` VALUES (17380, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:897毫秒', '0', '', '2022-02-27 19:40:00'); INSERT INTO `sys_job_log` VALUES (17381, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1975毫秒', '0', '', '2022-02-27 19:40:01'); INSERT INTO `sys_job_log` VALUES (17382, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:992毫秒', '0', '', '2022-02-27 19:50:01'); INSERT INTO `sys_job_log` VALUES (17383, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2868毫秒', '0', '', '2022-02-27 19:50:02'); INSERT INTO `sys_job_log` VALUES (17384, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:731毫秒', '0', '', '2022-02-27 20:00:00'); INSERT INTO `sys_job_log` VALUES (17385, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2007毫秒', '0', '', '2022-02-27 20:00:02'); INSERT INTO `sys_job_log` VALUES (17386, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4553毫秒', '0', '', '2022-02-27 20:00:04'); INSERT INTO `sys_job_log` VALUES (17387, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:820毫秒', '0', '', '2022-02-27 20:10:00'); INSERT INTO `sys_job_log` VALUES (17388, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5702毫秒', '0', '', '2022-02-27 20:10:05'); INSERT INTO `sys_job_log` VALUES (17389, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2413毫秒', '0', '', '2022-02-27 20:15:32'); INSERT INTO `sys_job_log` VALUES (17390, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:407毫秒', '0', '', '2022-02-27 20:20:00'); INSERT INTO `sys_job_log` VALUES (17391, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:774毫秒', '0', '', '2022-02-27 20:20:00'); INSERT INTO `sys_job_log` VALUES (17392, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3292毫秒', '0', '', '2022-02-27 20:20:03'); INSERT INTO `sys_job_log` VALUES (17393, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:73490毫秒', '0', '', '2022-02-27 20:21:13'); INSERT INTO `sys_job_log` VALUES (17394, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:636毫秒', '0', '', '2022-02-27 20:30:00'); INSERT INTO `sys_job_log` VALUES (17395, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2270毫秒', '0', '', '2022-02-27 20:30:02'); INSERT INTO `sys_job_log` VALUES (17396, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:876毫秒', '0', '', '2022-02-27 20:40:00'); INSERT INTO `sys_job_log` VALUES (17397, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-27 20:40:02'); INSERT INTO `sys_job_log` VALUES (17398, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3222毫秒', '0', '', '2022-02-27 20:40:03'); INSERT INTO `sys_job_log` VALUES (17399, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:614毫秒', '0', '', '2022-02-27 20:50:00'); INSERT INTO `sys_job_log` VALUES (17400, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3198毫秒', '0', '', '2022-02-27 20:50:03'); INSERT INTO `sys_job_log` VALUES (17401, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:380毫秒', '0', '', '2022-02-27 21:00:00'); INSERT INTO `sys_job_log` VALUES (17402, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:813毫秒', '0', '', '2022-02-27 21:00:00'); INSERT INTO `sys_job_log` VALUES (17403, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3154毫秒', '0', '', '2022-02-27 21:00:03'); INSERT INTO `sys_job_log` VALUES (17404, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:484714毫秒', '0', '', '2022-02-27 21:08:04'); INSERT INTO `sys_job_log` VALUES (17405, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:897毫秒', '0', '', '2022-02-27 21:10:00'); INSERT INTO `sys_job_log` VALUES (17406, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2842毫秒', '0', '', '2022-02-27 21:10:02'); INSERT INTO `sys_job_log` VALUES (17407, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:50178毫秒', '0', '', '2022-02-27 21:10:50'); INSERT INTO `sys_job_log` VALUES (17408, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:513毫秒', '0', '', '2022-02-27 21:15:30'); INSERT INTO `sys_job_log` VALUES (17409, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:632毫秒', '0', '', '2022-02-27 21:20:00'); INSERT INTO `sys_job_log` VALUES (17410, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-27 21:20:02'); INSERT INTO `sys_job_log` VALUES (17411, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4723毫秒', '0', '', '2022-02-27 21:20:04'); INSERT INTO `sys_job_log` VALUES (17412, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:948毫秒', '0', '', '2022-02-27 21:30:00'); INSERT INTO `sys_job_log` VALUES (17413, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2757毫秒', '0', '', '2022-02-27 21:30:02'); INSERT INTO `sys_job_log` VALUES (17414, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:304毫秒', '0', '', '2022-02-27 21:40:00'); INSERT INTO `sys_job_log` VALUES (17415, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-02-27 21:40:00'); INSERT INTO `sys_job_log` VALUES (17416, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2772毫秒', '0', '', '2022-02-27 21:40:02'); INSERT INTO `sys_job_log` VALUES (17417, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-02-27 21:50:00'); INSERT INTO `sys_job_log` VALUES (17418, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3593毫秒', '0', '', '2022-02-27 21:50:03'); INSERT INTO `sys_job_log` VALUES (17419, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:526毫秒', '0', '', '2022-02-27 22:00:00'); INSERT INTO `sys_job_log` VALUES (17420, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1216毫秒', '0', '', '2022-02-27 22:00:01'); INSERT INTO `sys_job_log` VALUES (17421, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-27 22:00:02'); INSERT INTO `sys_job_log` VALUES (17422, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3833毫秒', '0', '', '2022-02-27 22:00:03'); INSERT INTO `sys_job_log` VALUES (17423, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:289毫秒', '0', '', '2022-02-28 08:50:00'); INSERT INTO `sys_job_log` VALUES (17424, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:313毫秒', '0', '', '2022-02-28 08:50:00'); INSERT INTO `sys_job_log` VALUES (17425, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:832毫秒', '0', '', '2022-02-28 09:00:00'); INSERT INTO `sys_job_log` VALUES (17426, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1201毫秒', '0', '', '2022-02-28 09:00:01'); INSERT INTO `sys_job_log` VALUES (17427, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2854毫秒', '0', '', '2022-02-28 09:00:02'); INSERT INTO `sys_job_log` VALUES (17428, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-02-28 09:10:00'); INSERT INTO `sys_job_log` VALUES (17429, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7924毫秒', '0', '', '2022-02-28 09:10:07'); INSERT INTO `sys_job_log` VALUES (17430, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:42050毫秒', '0', '', '2022-02-28 09:10:42'); INSERT INTO `sys_job_log` VALUES (17431, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:762毫秒', '0', '', '2022-02-28 09:15:30'); INSERT INTO `sys_job_log` VALUES (17432, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1075527毫秒', '0', '', '2022-02-28 09:17:55'); INSERT INTO `sys_job_log` VALUES (17433, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-02-28 09:20:00'); INSERT INTO `sys_job_log` VALUES (17434, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-28 09:20:02'); INSERT INTO `sys_job_log` VALUES (17435, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4840毫秒', '0', '', '2022-02-28 09:20:04'); INSERT INTO `sys_job_log` VALUES (17436, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1509毫秒', '0', '', '2022-02-28 09:30:01'); INSERT INTO `sys_job_log` VALUES (17437, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4368毫秒', '0', '', '2022-02-28 09:30:04'); INSERT INTO `sys_job_log` VALUES (17438, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:559毫秒', '0', '', '2022-02-28 09:40:00'); INSERT INTO `sys_job_log` VALUES (17439, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2008毫秒', '0', '', '2022-02-28 09:40:02'); INSERT INTO `sys_job_log` VALUES (17440, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7230毫秒', '0', '', '2022-02-28 09:40:07'); INSERT INTO `sys_job_log` VALUES (17441, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:739毫秒', '0', '', '2022-02-28 09:50:00'); INSERT INTO `sys_job_log` VALUES (17442, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7492毫秒', '0', '', '2022-02-28 09:50:07'); INSERT INTO `sys_job_log` VALUES (17443, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-02-28 10:00:00'); INSERT INTO `sys_job_log` VALUES (17444, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1146毫秒', '0', '', '2022-02-28 10:00:01'); INSERT INTO `sys_job_log` VALUES (17445, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3260毫秒', '0', '', '2022-02-28 10:00:03'); INSERT INTO `sys_job_log` VALUES (17446, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-02-28 10:10:00'); INSERT INTO `sys_job_log` VALUES (17447, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7107毫秒', '0', '', '2022-02-28 10:10:07'); INSERT INTO `sys_job_log` VALUES (17448, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1392毫秒', '0', '', '2022-02-28 10:15:31'); INSERT INTO `sys_job_log` VALUES (17449, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-02-28 10:20:00'); INSERT INTO `sys_job_log` VALUES (17450, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-28 10:20:02'); INSERT INTO `sys_job_log` VALUES (17451, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7264毫秒', '0', '', '2022-02-28 10:20:07'); INSERT INTO `sys_job_log` VALUES (17452, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1533毫秒', '0', '', '2022-02-28 10:30:01'); INSERT INTO `sys_job_log` VALUES (17453, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5540毫秒', '0', '', '2022-02-28 10:30:05'); INSERT INTO `sys_job_log` VALUES (17454, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2005毫秒', '0', '', '2022-02-28 10:40:02'); INSERT INTO `sys_job_log` VALUES (17455, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2003毫秒', '0', '', '2022-02-28 10:40:02'); INSERT INTO `sys_job_log` VALUES (17456, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4935毫秒', '0', '', '2022-02-28 10:40:04'); INSERT INTO `sys_job_log` VALUES (17457, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:529毫秒', '0', '', '2022-02-28 10:50:00'); INSERT INTO `sys_job_log` VALUES (17458, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4545毫秒', '0', '', '2022-02-28 10:50:04'); INSERT INTO `sys_job_log` VALUES (17459, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:514毫秒', '0', '', '2022-02-28 11:00:00'); INSERT INTO `sys_job_log` VALUES (17460, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2005毫秒', '0', '', '2022-02-28 11:00:02'); INSERT INTO `sys_job_log` VALUES (17461, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4754毫秒', '0', '', '2022-02-28 11:00:04'); INSERT INTO `sys_job_log` VALUES (17462, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1650毫秒', '0', '', '2022-02-28 11:10:01'); INSERT INTO `sys_job_log` VALUES (17463, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3454毫秒', '0', '', '2022-02-28 11:10:03'); INSERT INTO `sys_job_log` VALUES (17464, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2450毫秒', '0', '', '2022-02-28 11:15:32'); INSERT INTO `sys_job_log` VALUES (17465, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:248毫秒', '0', '', '2022-02-28 11:20:00'); INSERT INTO `sys_job_log` VALUES (17466, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:533毫秒', '0', '', '2022-02-28 11:20:00'); INSERT INTO `sys_job_log` VALUES (17467, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5780毫秒', '0', '', '2022-02-28 11:20:05'); INSERT INTO `sys_job_log` VALUES (17468, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:501毫秒', '0', '', '2022-02-28 11:30:00'); INSERT INTO `sys_job_log` VALUES (17469, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4775毫秒', '0', '', '2022-02-28 11:30:04'); INSERT INTO `sys_job_log` VALUES (17470, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:487毫秒', '0', '', '2022-02-28 11:40:00'); INSERT INTO `sys_job_log` VALUES (17471, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-28 11:40:02'); INSERT INTO `sys_job_log` VALUES (17472, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4531毫秒', '0', '', '2022-02-28 11:40:04'); INSERT INTO `sys_job_log` VALUES (17473, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:595毫秒', '0', '', '2022-02-28 11:50:00'); INSERT INTO `sys_job_log` VALUES (17474, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5547毫秒', '0', '', '2022-02-28 11:50:05'); INSERT INTO `sys_job_log` VALUES (17475, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-02-28 12:00:00'); INSERT INTO `sys_job_log` VALUES (17476, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1124毫秒', '0', '', '2022-02-28 12:00:01'); INSERT INTO `sys_job_log` VALUES (17477, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2842毫秒', '0', '', '2022-02-28 12:00:02'); INSERT INTO `sys_job_log` VALUES (17478, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:424603毫秒', '0', '', '2022-02-28 12:07:04'); INSERT INTO `sys_job_log` VALUES (17479, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:499毫秒', '0', '', '2022-02-28 12:10:00'); INSERT INTO `sys_job_log` VALUES (17480, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4549毫秒', '0', '', '2022-02-28 12:10:04'); INSERT INTO `sys_job_log` VALUES (17481, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1495毫秒', '0', '', '2022-02-28 12:15:31'); INSERT INTO `sys_job_log` VALUES (17482, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:674毫秒', '0', '', '2022-02-28 12:20:00'); INSERT INTO `sys_job_log` VALUES (17483, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-02-28 12:20:02'); INSERT INTO `sys_job_log` VALUES (17484, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5962毫秒', '0', '', '2022-02-28 12:20:05'); INSERT INTO `sys_job_log` VALUES (17485, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:636毫秒', '0', '', '2022-02-28 12:30:00'); INSERT INTO `sys_job_log` VALUES (17486, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4654毫秒', '0', '', '2022-02-28 12:30:04'); INSERT INTO `sys_job_log` VALUES (17487, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:188毫秒', '0', '', '2022-02-28 12:40:00'); INSERT INTO `sys_job_log` VALUES (17488, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:742毫秒', '0', '', '2022-02-28 12:40:00'); INSERT INTO `sys_job_log` VALUES (17489, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4543毫秒', '0', '', '2022-02-28 12:40:04'); INSERT INTO `sys_job_log` VALUES (17490, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:498毫秒', '0', '', '2022-02-28 12:50:00'); INSERT INTO `sys_job_log` VALUES (17491, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3199毫秒', '0', '', '2022-02-28 12:50:03'); INSERT INTO `sys_job_log` VALUES (17492, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1636毫秒', '0', '', '2022-02-28 13:00:01'); INSERT INTO `sys_job_log` VALUES (17493, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2007毫秒', '0', '', '2022-02-28 13:00:02'); INSERT INTO `sys_job_log` VALUES (17494, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6153毫秒', '0', '', '2022-02-28 13:00:06'); INSERT INTO `sys_job_log` VALUES (17495, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:642毫秒', '0', '', '2022-02-28 13:10:00'); INSERT INTO `sys_job_log` VALUES (17496, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2972毫秒', '0', '', '2022-02-28 13:10:02'); INSERT INTO `sys_job_log` VALUES (17497, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2456毫秒', '0', '', '2022-02-28 13:15:32'); INSERT INTO `sys_job_log` VALUES (17498, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:207毫秒', '0', '', '2022-02-28 13:20:00'); INSERT INTO `sys_job_log` VALUES (17499, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:515毫秒', '0', '', '2022-02-28 13:20:00'); INSERT INTO `sys_job_log` VALUES (17500, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5325毫秒', '0', '', '2022-02-28 13:20:05'); INSERT INTO `sys_job_log` VALUES (17501, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:472毫秒', '0', '', '2022-02-28 13:36:13'); INSERT INTO `sys_job_log` VALUES (17502, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2880毫秒', '0', '', '2022-02-28 13:36:15'); INSERT INTO `sys_job_log` VALUES (17503, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1582毫秒', '0', '', '2022-02-28 13:40:01'); INSERT INTO `sys_job_log` VALUES (17504, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-02-28 13:40:02'); INSERT INTO `sys_job_log` VALUES (17505, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4956毫秒', '0', '', '2022-02-28 13:40:04'); INSERT INTO `sys_job_log` VALUES (17506, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1615毫秒', '0', '', '2022-02-28 13:50:01'); INSERT INTO `sys_job_log` VALUES (17507, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4023毫秒', '0', '', '2022-02-28 13:50:04'); INSERT INTO `sys_job_log` VALUES (17508, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:194毫秒', '0', '', '2022-02-28 14:00:00'); INSERT INTO `sys_job_log` VALUES (17509, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-02-28 14:00:00'); INSERT INTO `sys_job_log` VALUES (17510, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8662毫秒', '0', '', '2022-02-28 14:00:08'); INSERT INTO `sys_job_log` VALUES (17511, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-02-28 14:10:00'); INSERT INTO `sys_job_log` VALUES (17512, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5434毫秒', '0', '', '2022-02-28 14:10:05'); INSERT INTO `sys_job_log` VALUES (17513, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2451毫秒', '0', '', '2022-02-28 14:15:32'); INSERT INTO `sys_job_log` VALUES (17514, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:530毫秒', '0', '', '2022-02-28 14:20:00'); INSERT INTO `sys_job_log` VALUES (17515, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-28 14:20:02'); INSERT INTO `sys_job_log` VALUES (17516, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6901毫秒', '0', '', '2022-02-28 14:20:06'); INSERT INTO `sys_job_log` VALUES (17517, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:632毫秒', '0', '', '2022-02-28 14:30:00'); INSERT INTO `sys_job_log` VALUES (17518, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6574毫秒', '0', '', '2022-02-28 14:30:06'); INSERT INTO `sys_job_log` VALUES (17519, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1199毫秒', '0', '', '2022-02-28 14:40:01'); INSERT INTO `sys_job_log` VALUES (17520, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1695毫秒', '0', '', '2022-02-28 14:40:01'); INSERT INTO `sys_job_log` VALUES (17521, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4063毫秒', '0', '', '2022-02-28 14:40:04'); INSERT INTO `sys_job_log` VALUES (17522, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1608毫秒', '0', '', '2022-02-28 14:50:01'); INSERT INTO `sys_job_log` VALUES (17523, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3429毫秒', '0', '', '2022-02-28 14:50:03'); INSERT INTO `sys_job_log` VALUES (17524, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-02-28 15:00:00'); INSERT INTO `sys_job_log` VALUES (17525, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1169毫秒', '0', '', '2022-02-28 15:00:01'); INSERT INTO `sys_job_log` VALUES (17526, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8061毫秒', '0', '', '2022-02-28 15:00:08'); INSERT INTO `sys_job_log` VALUES (17527, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:304毫秒', '0', '', '2022-02-28 15:10:00'); INSERT INTO `sys_job_log` VALUES (17528, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-02-28 15:10:00'); INSERT INTO `sys_job_log` VALUES (17529, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3427毫秒', '0', '', '2022-02-28 15:10:03'); INSERT INTO `sys_job_log` VALUES (17530, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:441毫秒', '0', '', '2022-02-28 15:15:30'); INSERT INTO `sys_job_log` VALUES (17531, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:944885毫秒', '0', '', '2022-02-28 15:15:44'); INSERT INTO `sys_job_log` VALUES (17532, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:569毫秒', '0', '', '2022-02-28 15:20:00'); INSERT INTO `sys_job_log` VALUES (17533, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1161毫秒', '0', '', '2022-02-28 15:20:01'); INSERT INTO `sys_job_log` VALUES (17534, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10574毫秒', '0', '', '2022-02-28 15:20:10'); INSERT INTO `sys_job_log` VALUES (17535, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:771毫秒', '0', '', '2022-02-28 15:30:00'); INSERT INTO `sys_job_log` VALUES (17536, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3772毫秒', '0', '', '2022-02-28 15:30:03'); INSERT INTO `sys_job_log` VALUES (17537, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:490毫秒', '0', '', '2022-02-28 15:40:00'); INSERT INTO `sys_job_log` VALUES (17538, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1477毫秒', '0', '', '2022-02-28 15:40:01'); INSERT INTO `sys_job_log` VALUES (17539, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2004毫秒', '0', '', '2022-02-28 15:40:02'); INSERT INTO `sys_job_log` VALUES (17540, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-02-28 15:50:00'); INSERT INTO `sys_job_log` VALUES (17541, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1478毫秒', '0', '', '2022-02-28 15:50:01'); INSERT INTO `sys_job_log` VALUES (17542, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-02-28 16:00:00'); INSERT INTO `sys_job_log` VALUES (17543, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1202毫秒', '0', '', '2022-02-28 16:00:01'); INSERT INTO `sys_job_log` VALUES (17544, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6860毫秒', '0', '', '2022-02-28 16:00:06'); INSERT INTO `sys_job_log` VALUES (17545, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:934毫秒', '0', '', '2022-02-28 16:10:00'); INSERT INTO `sys_job_log` VALUES (17546, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4362毫秒', '0', '', '2022-02-28 16:10:04'); INSERT INTO `sys_job_log` VALUES (17547, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2516毫秒', '0', '', '2022-02-28 16:15:32'); INSERT INTO `sys_job_log` VALUES (17548, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:123毫秒', '0', '', '2022-02-28 16:20:00'); INSERT INTO `sys_job_log` VALUES (17549, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:519毫秒', '0', '', '2022-02-28 16:20:00'); INSERT INTO `sys_job_log` VALUES (17550, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3432毫秒', '0', '', '2022-02-28 16:20:03'); INSERT INTO `sys_job_log` VALUES (17551, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-02-28 16:30:00'); INSERT INTO `sys_job_log` VALUES (17552, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8162毫秒', '0', '', '2022-02-28 16:30:08'); INSERT INTO `sys_job_log` VALUES (17553, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:140毫秒', '0', '', '2022-02-28 16:40:00'); INSERT INTO `sys_job_log` VALUES (17554, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-02-28 16:40:00'); INSERT INTO `sys_job_log` VALUES (17555, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2238毫秒', '0', '', '2022-02-28 16:40:02'); INSERT INTO `sys_job_log` VALUES (17556, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:514毫秒', '0', '', '2022-02-28 16:50:00'); INSERT INTO `sys_job_log` VALUES (17557, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3065毫秒', '0', '', '2022-02-28 16:50:03'); INSERT INTO `sys_job_log` VALUES (17558, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:599毫秒', '0', '', '2022-02-28 17:00:00'); INSERT INTO `sys_job_log` VALUES (17559, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1455毫秒', '0', '', '2022-02-28 17:00:01'); INSERT INTO `sys_job_log` VALUES (17560, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2003毫秒', '0', '', '2022-02-28 17:00:02'); INSERT INTO `sys_job_log` VALUES (17561, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:573毫秒', '0', '', '2022-02-28 17:10:00'); INSERT INTO `sys_job_log` VALUES (17562, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7964毫秒', '0', '', '2022-02-28 17:10:07'); INSERT INTO `sys_job_log` VALUES (17563, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:425毫秒', '0', '', '2022-02-28 17:15:30'); INSERT INTO `sys_job_log` VALUES (17564, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:521毫秒', '0', '', '2022-02-28 17:20:00'); INSERT INTO `sys_job_log` VALUES (17565, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:779毫秒', '0', '', '2022-02-28 17:20:00'); INSERT INTO `sys_job_log` VALUES (17566, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1813毫秒', '0', '', '2022-02-28 17:20:01'); INSERT INTO `sys_job_log` VALUES (17567, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2319毫秒', '0', '', '2022-03-01 08:40:02'); INSERT INTO `sys_job_log` VALUES (17568, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2313毫秒', '0', '', '2022-03-01 08:40:02'); INSERT INTO `sys_job_log` VALUES (17569, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7957毫秒', '0', '', '2022-03-01 08:40:07'); INSERT INTO `sys_job_log` VALUES (17570, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:870毫秒', '0', '', '2022-03-01 08:50:00'); INSERT INTO `sys_job_log` VALUES (17571, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3119毫秒', '0', '', '2022-03-01 08:50:03'); INSERT INTO `sys_job_log` VALUES (17572, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:676毫秒', '0', '', '2022-03-01 09:00:00'); INSERT INTO `sys_job_log` VALUES (17573, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1150毫秒', '0', '', '2022-03-01 09:00:01'); INSERT INTO `sys_job_log` VALUES (17574, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3509毫秒', '0', '', '2022-03-01 09:00:03'); INSERT INTO `sys_job_log` VALUES (17575, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:511毫秒', '0', '', '2022-03-01 09:10:00'); INSERT INTO `sys_job_log` VALUES (17576, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9039毫秒', '0', '', '2022-03-01 09:10:09'); INSERT INTO `sys_job_log` VALUES (17577, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:41535毫秒', '0', '', '2022-03-01 09:10:41'); INSERT INTO `sys_job_log` VALUES (17578, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:826596毫秒', '0', '', '2022-03-01 09:13:46'); INSERT INTO `sys_job_log` VALUES (17579, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:4066毫秒', '0', '', '2022-03-01 09:15:34'); INSERT INTO `sys_job_log` VALUES (17580, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:157毫秒', '0', '', '2022-03-01 09:20:00'); INSERT INTO `sys_job_log` VALUES (17581, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:439毫秒', '0', '', '2022-03-01 09:20:00'); INSERT INTO `sys_job_log` VALUES (17582, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5131毫秒', '0', '', '2022-03-01 09:20:05'); INSERT INTO `sys_job_log` VALUES (17583, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1571毫秒', '0', '', '2022-03-01 09:30:01'); INSERT INTO `sys_job_log` VALUES (17584, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7911毫秒', '0', '', '2022-03-01 09:30:07'); INSERT INTO `sys_job_log` VALUES (17585, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:516毫秒', '0', '', '2022-03-01 09:40:00'); INSERT INTO `sys_job_log` VALUES (17586, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1148毫秒', '0', '', '2022-03-01 09:40:01'); INSERT INTO `sys_job_log` VALUES (17587, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4263毫秒', '0', '', '2022-03-01 09:40:04'); INSERT INTO `sys_job_log` VALUES (17588, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:459毫秒', '0', '', '2022-03-01 09:50:00'); INSERT INTO `sys_job_log` VALUES (17589, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5713毫秒', '0', '', '2022-03-01 09:50:05'); INSERT INTO `sys_job_log` VALUES (17590, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:189毫秒', '0', '', '2022-03-01 10:00:00'); INSERT INTO `sys_job_log` VALUES (17591, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:475毫秒', '0', '', '2022-03-01 10:00:00'); INSERT INTO `sys_job_log` VALUES (17592, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5022毫秒', '0', '', '2022-03-01 10:00:05'); INSERT INTO `sys_job_log` VALUES (17593, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2004毫秒', '0', '', '2022-03-01 10:10:02'); INSERT INTO `sys_job_log` VALUES (17594, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10509毫秒', '0', '', '2022-03-01 10:10:10'); INSERT INTO `sys_job_log` VALUES (17595, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:92毫秒', '0', '', '2022-03-01 10:11:04'); INSERT INTO `sys_job_log` VALUES (17596, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1519毫秒', '0', '', '2022-03-01 10:15:31'); INSERT INTO `sys_job_log` VALUES (17597, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:22213毫秒', '0', '', '2022-03-01 10:16:39'); INSERT INTO `sys_job_log` VALUES (17598, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:461毫秒', '0', '', '2022-03-01 10:20:00'); INSERT INTO `sys_job_log` VALUES (17599, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2023毫秒', '0', '', '2022-03-01 10:20:02'); INSERT INTO `sys_job_log` VALUES (17600, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3247毫秒', '0', '', '2022-03-01 10:20:03'); INSERT INTO `sys_job_log` VALUES (17601, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:838毫秒', '0', '', '2022-03-01 10:30:00'); INSERT INTO `sys_job_log` VALUES (17602, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6542毫秒', '0', '', '2022-03-01 10:30:06'); INSERT INTO `sys_job_log` VALUES (17603, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:826毫秒', '0', '', '2022-03-01 10:40:00'); INSERT INTO `sys_job_log` VALUES (17604, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1141毫秒', '0', '', '2022-03-01 10:40:01'); INSERT INTO `sys_job_log` VALUES (17605, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4251毫秒', '0', '', '2022-03-01 10:40:04'); INSERT INTO `sys_job_log` VALUES (17606, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:2394毫秒', '0', '', '2022-03-01 10:44:23'); INSERT INTO `sys_job_log` VALUES (17607, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:751毫秒', '0', '', '2022-03-01 10:50:00'); INSERT INTO `sys_job_log` VALUES (17608, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3492毫秒', '0', '', '2022-03-01 10:50:03'); INSERT INTO `sys_job_log` VALUES (17609, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:360毫秒', '0', '', '2022-03-01 11:00:00'); INSERT INTO `sys_job_log` VALUES (17610, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-03-01 11:00:00'); INSERT INTO `sys_job_log` VALUES (17611, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4957毫秒', '0', '', '2022-03-01 11:00:04'); INSERT INTO `sys_job_log` VALUES (17612, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-03-01 11:10:00'); INSERT INTO `sys_job_log` VALUES (17613, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6155毫秒', '0', '', '2022-03-01 11:10:06'); INSERT INTO `sys_job_log` VALUES (17614, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1529毫秒', '0', '', '2022-03-01 11:15:31'); INSERT INTO `sys_job_log` VALUES (17615, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:580毫秒', '0', '', '2022-03-01 11:20:00'); INSERT INTO `sys_job_log` VALUES (17616, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2019毫秒', '0', '', '2022-03-01 11:20:02'); INSERT INTO `sys_job_log` VALUES (17617, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4334毫秒', '0', '', '2022-03-01 11:20:04'); INSERT INTO `sys_job_log` VALUES (17618, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1525毫秒', '0', '', '2022-03-01 11:30:01'); INSERT INTO `sys_job_log` VALUES (17619, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4474毫秒', '0', '', '2022-03-01 11:30:04'); INSERT INTO `sys_job_log` VALUES (17620, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:185毫秒', '0', '', '2022-03-01 11:40:00'); INSERT INTO `sys_job_log` VALUES (17621, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-03-01 11:40:00'); INSERT INTO `sys_job_log` VALUES (17622, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:13617毫秒', '0', '', '2022-03-01 11:40:13'); INSERT INTO `sys_job_log` VALUES (17623, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-03-01 11:50:00'); INSERT INTO `sys_job_log` VALUES (17624, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5812毫秒', '0', '', '2022-03-01 11:50:05'); INSERT INTO `sys_job_log` VALUES (17625, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:155毫秒', '0', '', '2022-03-01 12:00:00'); INSERT INTO `sys_job_log` VALUES (17626, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:453毫秒', '0', '', '2022-03-01 12:00:00'); INSERT INTO `sys_job_log` VALUES (17627, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4610毫秒', '0', '', '2022-03-01 12:00:04'); INSERT INTO `sys_job_log` VALUES (17628, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1692毫秒', '0', '', '2022-03-01 12:10:01'); INSERT INTO `sys_job_log` VALUES (17629, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5890毫秒', '0', '', '2022-03-01 12:10:05'); INSERT INTO `sys_job_log` VALUES (17630, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:788707毫秒', '0', '', '2022-03-01 12:13:08'); INSERT INTO `sys_job_log` VALUES (17631, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1529毫秒', '0', '', '2022-03-01 12:15:31'); INSERT INTO `sys_job_log` VALUES (17632, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-03-01 12:20:00'); INSERT INTO `sys_job_log` VALUES (17633, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1185毫秒', '0', '', '2022-03-01 12:20:01'); INSERT INTO `sys_job_log` VALUES (17634, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5638毫秒', '0', '', '2022-03-01 12:20:05'); INSERT INTO `sys_job_log` VALUES (17635, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:715毫秒', '0', '', '2022-03-01 12:30:00'); INSERT INTO `sys_job_log` VALUES (17636, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4278毫秒', '0', '', '2022-03-01 12:30:04'); INSERT INTO `sys_job_log` VALUES (17637, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:568毫秒', '0', '', '2022-03-01 12:40:00'); INSERT INTO `sys_job_log` VALUES (17638, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2039毫秒', '0', '', '2022-03-01 12:40:02'); INSERT INTO `sys_job_log` VALUES (17639, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2606毫秒', '0', '', '2022-03-01 12:40:02'); INSERT INTO `sys_job_log` VALUES (17640, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1615毫秒', '0', '', '2022-03-01 12:50:01'); INSERT INTO `sys_job_log` VALUES (17641, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5724毫秒', '0', '', '2022-03-01 12:50:05'); INSERT INTO `sys_job_log` VALUES (17642, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:456毫秒', '0', '', '2022-03-01 13:00:00'); INSERT INTO `sys_job_log` VALUES (17643, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-03-01 13:00:00'); INSERT INTO `sys_job_log` VALUES (17644, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5274毫秒', '0', '', '2022-03-01 13:00:05'); INSERT INTO `sys_job_log` VALUES (17645, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1256毫秒', '0', '', '2022-03-01 13:10:01'); INSERT INTO `sys_job_log` VALUES (17646, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4317毫秒', '0', '', '2022-03-01 13:10:04'); INSERT INTO `sys_job_log` VALUES (17647, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2485毫秒', '0', '', '2022-03-01 13:15:32'); INSERT INTO `sys_job_log` VALUES (17648, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:671毫秒', '0', '', '2022-03-01 13:20:00'); INSERT INTO `sys_job_log` VALUES (17649, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2043毫秒', '0', '', '2022-03-01 13:20:02'); INSERT INTO `sys_job_log` VALUES (17650, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6098毫秒', '0', '', '2022-03-01 13:20:06'); INSERT INTO `sys_job_log` VALUES (17651, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-03-01 13:30:00'); INSERT INTO `sys_job_log` VALUES (17652, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4276毫秒', '0', '', '2022-03-01 13:30:04'); INSERT INTO `sys_job_log` VALUES (17653, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-03-01 13:40:00'); INSERT INTO `sys_job_log` VALUES (17654, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1169毫秒', '0', '', '2022-03-01 13:40:01'); INSERT INTO `sys_job_log` VALUES (17655, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6249毫秒', '0', '', '2022-03-01 13:40:06'); INSERT INTO `sys_job_log` VALUES (17656, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:564毫秒', '0', '', '2022-03-01 13:50:00'); INSERT INTO `sys_job_log` VALUES (17657, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7604毫秒', '0', '', '2022-03-01 13:50:07'); INSERT INTO `sys_job_log` VALUES (17658, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:625毫秒', '0', '', '2022-03-01 14:00:00'); INSERT INTO `sys_job_log` VALUES (17659, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1175毫秒', '0', '', '2022-03-01 14:00:01'); INSERT INTO `sys_job_log` VALUES (17660, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6905毫秒', '0', '', '2022-03-01 14:00:06'); INSERT INTO `sys_job_log` VALUES (17661, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:694毫秒', '0', '', '2022-03-01 14:10:00'); INSERT INTO `sys_job_log` VALUES (17662, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3819毫秒', '0', '', '2022-03-01 14:10:03'); INSERT INTO `sys_job_log` VALUES (17663, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2699毫秒', '0', '', '2022-03-01 14:15:32'); INSERT INTO `sys_job_log` VALUES (17664, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-03-01 14:20:00'); INSERT INTO `sys_job_log` VALUES (17665, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1201毫秒', '0', '', '2022-03-01 14:20:01'); INSERT INTO `sys_job_log` VALUES (17666, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6963毫秒', '0', '', '2022-03-01 14:20:06'); INSERT INTO `sys_job_log` VALUES (17667, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1591毫秒', '0', '', '2022-03-01 14:30:01'); INSERT INTO `sys_job_log` VALUES (17668, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5828毫秒', '0', '', '2022-03-01 14:30:05'); INSERT INTO `sys_job_log` VALUES (17669, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:222毫秒', '0', '', '2022-03-01 14:40:00'); INSERT INTO `sys_job_log` VALUES (17670, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:661毫秒', '0', '', '2022-03-01 14:40:00'); INSERT INTO `sys_job_log` VALUES (17671, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5320毫秒', '0', '', '2022-03-01 14:40:05'); INSERT INTO `sys_job_log` VALUES (17672, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1626毫秒', '0', '', '2022-03-01 14:50:01'); INSERT INTO `sys_job_log` VALUES (17673, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3725毫秒', '0', '', '2022-03-01 14:50:03'); INSERT INTO `sys_job_log` VALUES (17674, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:535毫秒', '0', '', '2022-03-01 15:00:00'); INSERT INTO `sys_job_log` VALUES (17675, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-01 15:00:02'); INSERT INTO `sys_job_log` VALUES (17676, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4074毫秒', '0', '', '2022-03-01 15:00:04'); INSERT INTO `sys_job_log` VALUES (17677, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:526毫秒', '0', '', '2022-03-01 15:10:00'); INSERT INTO `sys_job_log` VALUES (17678, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7395毫秒', '0', '', '2022-03-01 15:10:07'); INSERT INTO `sys_job_log` VALUES (17679, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:55098毫秒', '0', '', '2022-03-01 15:10:55'); INSERT INTO `sys_job_log` VALUES (17680, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1538毫秒', '0', '', '2022-03-01 15:15:31'); INSERT INTO `sys_job_log` VALUES (17681, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:971560毫秒', '0', '', '2022-03-01 15:16:11'); INSERT INTO `sys_job_log` VALUES (17682, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2363毫秒', '0', '', '2022-03-01 15:20:02'); INSERT INTO `sys_job_log` VALUES (17683, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2376毫秒', '0', '', '2022-03-01 15:20:02'); INSERT INTO `sys_job_log` VALUES (17684, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9488毫秒', '0', '', '2022-03-01 15:20:09'); INSERT INTO `sys_job_log` VALUES (17685, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:899毫秒', '0', '', '2022-03-01 15:30:00'); INSERT INTO `sys_job_log` VALUES (17686, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7102毫秒', '0', '', '2022-03-01 15:30:07'); INSERT INTO `sys_job_log` VALUES (17687, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:888毫秒', '0', '', '2022-03-01 15:40:00'); INSERT INTO `sys_job_log` VALUES (17688, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-03-01 15:40:02'); INSERT INTO `sys_job_log` VALUES (17689, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2993毫秒', '0', '', '2022-03-01 15:40:03'); INSERT INTO `sys_job_log` VALUES (17690, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2426毫秒', '0', '', '2022-03-01 15:50:02'); INSERT INTO `sys_job_log` VALUES (17691, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6613毫秒', '0', '', '2022-03-01 15:50:06'); INSERT INTO `sys_job_log` VALUES (17692, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2025毫秒', '0', '', '2022-03-01 16:00:02'); INSERT INTO `sys_job_log` VALUES (17693, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2038毫秒', '0', '', '2022-03-01 16:00:02'); INSERT INTO `sys_job_log` VALUES (17694, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5872毫秒', '0', '', '2022-03-01 16:00:05'); INSERT INTO `sys_job_log` VALUES (17695, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:912毫秒', '0', '', '2022-03-01 16:10:00'); INSERT INTO `sys_job_log` VALUES (17696, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4099毫秒', '0', '', '2022-03-01 16:10:04'); INSERT INTO `sys_job_log` VALUES (17697, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2370毫秒', '0', '', '2022-03-01 16:15:32'); INSERT INTO `sys_job_log` VALUES (17698, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:267毫秒', '0', '', '2022-03-01 16:20:00'); INSERT INTO `sys_job_log` VALUES (17699, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:554毫秒', '0', '', '2022-03-01 16:20:00'); INSERT INTO `sys_job_log` VALUES (17700, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4002毫秒', '0', '', '2022-03-01 16:20:04'); INSERT INTO `sys_job_log` VALUES (17701, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-03-01 16:30:00'); INSERT INTO `sys_job_log` VALUES (17702, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5569毫秒', '0', '', '2022-03-01 16:30:05'); INSERT INTO `sys_job_log` VALUES (17703, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-03-01 16:40:00'); INSERT INTO `sys_job_log` VALUES (17704, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-01 16:40:02'); INSERT INTO `sys_job_log` VALUES (17705, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3710毫秒', '0', '', '2022-03-01 16:40:03'); INSERT INTO `sys_job_log` VALUES (17706, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:812毫秒', '0', '', '2022-03-01 16:50:00'); INSERT INTO `sys_job_log` VALUES (17707, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3287毫秒', '0', '', '2022-03-01 16:50:03'); INSERT INTO `sys_job_log` VALUES (17708, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-03-01 17:00:00'); INSERT INTO `sys_job_log` VALUES (17709, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1196毫秒', '0', '', '2022-03-01 17:00:01'); INSERT INTO `sys_job_log` VALUES (17710, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6769毫秒', '0', '', '2022-03-01 17:00:06'); INSERT INTO `sys_job_log` VALUES (17711, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:692毫秒', '0', '', '2022-03-01 17:10:00'); INSERT INTO `sys_job_log` VALUES (17712, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4566毫秒', '0', '', '2022-03-01 17:10:04'); INSERT INTO `sys_job_log` VALUES (17713, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:476毫秒', '0', '', '2022-03-01 17:15:30'); INSERT INTO `sys_job_log` VALUES (17714, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:150毫秒', '0', '', '2022-03-01 17:20:00'); INSERT INTO `sys_job_log` VALUES (17715, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:502毫秒', '0', '', '2022-03-01 17:20:00'); INSERT INTO `sys_job_log` VALUES (17716, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8769毫秒', '0', '', '2022-03-01 17:20:08'); INSERT INTO `sys_job_log` VALUES (17717, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:760毫秒', '0', '', '2022-03-01 17:30:00'); INSERT INTO `sys_job_log` VALUES (17718, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2523毫秒', '0', '', '2022-03-01 17:30:02'); INSERT INTO `sys_job_log` VALUES (17719, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:490毫秒', '0', '', '2022-03-01 22:00:00'); INSERT INTO `sys_job_log` VALUES (17720, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:721毫秒', '0', '', '2022-03-01 22:00:00'); INSERT INTO `sys_job_log` VALUES (17721, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2183毫秒', '0', '', '2022-03-01 22:00:02'); INSERT INTO `sys_job_log` VALUES (17722, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5698毫秒', '0', '', '2022-03-01 22:00:05'); INSERT INTO `sys_job_log` VALUES (17723, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-03-01 22:10:00'); INSERT INTO `sys_job_log` VALUES (17724, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2981毫秒', '0', '', '2022-03-01 22:10:02'); INSERT INTO `sys_job_log` VALUES (17725, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2297毫秒', '0', '', '2022-03-01 22:15:32'); INSERT INTO `sys_job_log` VALUES (17726, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:376毫秒', '0', '', '2022-03-01 22:20:00'); INSERT INTO `sys_job_log` VALUES (17727, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1130毫秒', '0', '', '2022-03-01 22:20:01'); INSERT INTO `sys_job_log` VALUES (17728, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3914毫秒', '0', '', '2022-03-01 22:20:03'); INSERT INTO `sys_job_log` VALUES (17729, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:821毫秒', '0', '', '2022-03-01 22:30:00'); INSERT INTO `sys_job_log` VALUES (17730, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2597毫秒', '0', '', '2022-03-01 22:30:02'); INSERT INTO `sys_job_log` VALUES (17731, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:358毫秒', '0', '', '2022-03-01 22:40:00'); INSERT INTO `sys_job_log` VALUES (17732, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:641毫秒', '0', '', '2022-03-01 22:40:00'); INSERT INTO `sys_job_log` VALUES (17733, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2394毫秒', '0', '', '2022-03-01 22:40:02'); INSERT INTO `sys_job_log` VALUES (17734, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1404毫秒', '0', '', '2022-03-02 08:40:01'); INSERT INTO `sys_job_log` VALUES (17735, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1510毫秒', '0', '', '2022-03-02 08:40:01'); INSERT INTO `sys_job_log` VALUES (17736, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3966毫秒', '0', '', '2022-03-02 08:40:03'); INSERT INTO `sys_job_log` VALUES (17737, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:566毫秒', '0', '', '2022-03-02 08:50:00'); INSERT INTO `sys_job_log` VALUES (17738, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3076毫秒', '0', '', '2022-03-02 08:50:03'); INSERT INTO `sys_job_log` VALUES (17739, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:177毫秒', '0', '', '2022-03-02 09:00:00'); INSERT INTO `sys_job_log` VALUES (17740, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:498毫秒', '0', '', '2022-03-02 09:00:00'); INSERT INTO `sys_job_log` VALUES (17741, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8099毫秒', '0', '', '2022-03-02 09:00:08'); INSERT INTO `sys_job_log` VALUES (17742, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:634毫秒', '0', '', '2022-03-02 09:10:00'); INSERT INTO `sys_job_log` VALUES (17743, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3773毫秒', '0', '', '2022-03-02 09:10:03'); INSERT INTO `sys_job_log` VALUES (17744, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:42953毫秒', '0', '', '2022-03-02 09:10:42'); INSERT INTO `sys_job_log` VALUES (17745, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3085毫秒', '0', '', '2022-03-02 09:15:33'); INSERT INTO `sys_job_log` VALUES (17746, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:984389毫秒', '0', '', '2022-03-02 09:16:24'); INSERT INTO `sys_job_log` VALUES (17747, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:161毫秒', '0', '', '2022-03-02 09:20:00'); INSERT INTO `sys_job_log` VALUES (17748, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:497毫秒', '0', '', '2022-03-02 09:20:00'); INSERT INTO `sys_job_log` VALUES (17749, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4506毫秒', '0', '', '2022-03-02 09:20:04'); INSERT INTO `sys_job_log` VALUES (17750, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:509毫秒', '0', '', '2022-03-02 09:30:00'); INSERT INTO `sys_job_log` VALUES (17751, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5084毫秒', '0', '', '2022-03-02 09:30:05'); INSERT INTO `sys_job_log` VALUES (17752, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1160毫秒', '0', '', '2022-03-02 09:40:01'); INSERT INTO `sys_job_log` VALUES (17753, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1911毫秒', '0', '', '2022-03-02 09:40:01'); INSERT INTO `sys_job_log` VALUES (17754, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4101毫秒', '0', '', '2022-03-02 09:40:04'); INSERT INTO `sys_job_log` VALUES (17755, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:508毫秒', '0', '', '2022-03-02 09:50:00'); INSERT INTO `sys_job_log` VALUES (17756, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2485毫秒', '0', '', '2022-03-02 09:50:02'); INSERT INTO `sys_job_log` VALUES (17757, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:431毫秒', '0', '', '2022-03-02 10:00:00'); INSERT INTO `sys_job_log` VALUES (17758, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-02 10:00:02'); INSERT INTO `sys_job_log` VALUES (17759, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3284毫秒', '0', '', '2022-03-02 10:00:03'); INSERT INTO `sys_job_log` VALUES (17760, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:540毫秒', '0', '', '2022-03-02 10:10:00'); INSERT INTO `sys_job_log` VALUES (17761, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8129毫秒', '0', '', '2022-03-02 10:10:08'); INSERT INTO `sys_job_log` VALUES (17762, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:407毫秒', '0', '', '2022-03-02 10:15:30'); INSERT INTO `sys_job_log` VALUES (17763, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:454毫秒', '0', '', '2022-03-02 10:20:00'); INSERT INTO `sys_job_log` VALUES (17764, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1196毫秒', '0', '', '2022-03-02 10:20:01'); INSERT INTO `sys_job_log` VALUES (17765, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11659毫秒', '0', '', '2022-03-02 10:20:11'); INSERT INTO `sys_job_log` VALUES (17766, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2013毫秒', '0', '', '2022-03-02 10:30:02'); INSERT INTO `sys_job_log` VALUES (17767, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:485毫秒', '0', '', '2022-03-02 10:30:02'); INSERT INTO `sys_job_log` VALUES (17768, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7967毫秒', '0', '', '2022-03-02 10:30:07'); INSERT INTO `sys_job_log` VALUES (17769, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8733毫秒', '0', '', '2022-03-02 10:30:16'); INSERT INTO `sys_job_log` VALUES (17770, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1154毫秒', '0', '', '2022-03-02 10:40:01'); INSERT INTO `sys_job_log` VALUES (17771, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:141毫秒', '0', '', '2022-03-02 10:40:01'); INSERT INTO `sys_job_log` VALUES (17772, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1464毫秒', '0', '', '2022-03-02 10:40:01'); INSERT INTO `sys_job_log` VALUES (17773, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:427毫秒', '0', '', '2022-03-02 10:40:01'); INSERT INTO `sys_job_log` VALUES (17774, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3514毫秒', '0', '', '2022-03-02 10:40:03'); INSERT INTO `sys_job_log` VALUES (17775, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5307毫秒', '0', '', '2022-03-02 10:40:08'); INSERT INTO `sys_job_log` VALUES (17776, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:784毫秒', '0', '', '2022-03-02 10:50:00'); INSERT INTO `sys_job_log` VALUES (17777, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5021毫秒', '0', '', '2022-03-02 10:50:05'); INSERT INTO `sys_job_log` VALUES (17778, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:451毫秒', '0', '', '2022-03-02 11:00:00'); INSERT INTO `sys_job_log` VALUES (17779, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1168毫秒', '0', '', '2022-03-02 11:00:01'); INSERT INTO `sys_job_log` VALUES (17780, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9702毫秒', '0', '', '2022-03-02 11:00:09'); INSERT INTO `sys_job_log` VALUES (17781, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:484毫秒', '0', '', '2022-03-02 11:10:00'); INSERT INTO `sys_job_log` VALUES (17782, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4504毫秒', '0', '', '2022-03-02 11:10:04'); INSERT INTO `sys_job_log` VALUES (17783, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1994毫秒', '0', '', '2022-03-02 11:15:32'); INSERT INTO `sys_job_log` VALUES (17784, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-03-02 11:20:00'); INSERT INTO `sys_job_log` VALUES (17785, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2024毫秒', '0', '', '2022-03-02 11:20:02'); INSERT INTO `sys_job_log` VALUES (17786, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4707毫秒', '0', '', '2022-03-02 11:20:04'); INSERT INTO `sys_job_log` VALUES (17787, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:464毫秒', '0', '', '2022-03-02 11:30:00'); INSERT INTO `sys_job_log` VALUES (17788, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4959毫秒', '0', '', '2022-03-02 11:30:04'); INSERT INTO `sys_job_log` VALUES (17789, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:156毫秒', '0', '', '2022-03-02 11:40:00'); INSERT INTO `sys_job_log` VALUES (17790, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:436毫秒', '0', '', '2022-03-02 11:40:00'); INSERT INTO `sys_job_log` VALUES (17791, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5172毫秒', '0', '', '2022-03-02 11:40:05'); INSERT INTO `sys_job_log` VALUES (17792, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:597毫秒', '0', '', '2022-03-02 11:50:00'); INSERT INTO `sys_job_log` VALUES (17793, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3411毫秒', '0', '', '2022-03-02 11:50:03'); INSERT INTO `sys_job_log` VALUES (17794, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:75毫秒', '0', '', '2022-03-02 12:00:00'); INSERT INTO `sys_job_log` VALUES (17795, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:448毫秒', '0', '', '2022-03-02 12:00:00'); INSERT INTO `sys_job_log` VALUES (17796, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-02 12:00:02'); INSERT INTO `sys_job_log` VALUES (17797, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9372毫秒', '0', '', '2022-03-02 12:00:09'); INSERT INTO `sys_job_log` VALUES (17798, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:906毫秒', '0', '', '2022-03-02 12:10:00'); INSERT INTO `sys_job_log` VALUES (17799, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2676毫秒', '0', '', '2022-03-02 12:10:02'); INSERT INTO `sys_job_log` VALUES (17800, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:6254毫秒', '0', '', '2022-03-02 12:15:36'); INSERT INTO `sys_job_log` VALUES (17801, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:491毫秒', '0', '', '2022-03-02 12:20:00'); INSERT INTO `sys_job_log` VALUES (17802, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1169毫秒', '0', '', '2022-03-02 12:20:01'); INSERT INTO `sys_job_log` VALUES (17803, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4322毫秒', '0', '', '2022-03-02 12:20:04'); INSERT INTO `sys_job_log` VALUES (17804, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:530毫秒', '0', '', '2022-03-02 12:30:00'); INSERT INTO `sys_job_log` VALUES (17805, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8607毫秒', '0', '', '2022-03-02 12:30:08'); INSERT INTO `sys_job_log` VALUES (17806, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:501毫秒', '0', '', '2022-03-02 12:40:00'); INSERT INTO `sys_job_log` VALUES (17807, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2033毫秒', '0', '', '2022-03-02 12:40:02'); INSERT INTO `sys_job_log` VALUES (17808, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3682毫秒', '0', '', '2022-03-02 12:40:03'); INSERT INTO `sys_job_log` VALUES (17809, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:813毫秒', '0', '', '2022-03-02 12:50:00'); INSERT INTO `sys_job_log` VALUES (17810, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7992毫秒', '0', '', '2022-03-02 12:50:08'); INSERT INTO `sys_job_log` VALUES (17811, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:482毫秒', '0', '', '2022-03-02 13:00:00'); INSERT INTO `sys_job_log` VALUES (17812, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1192毫秒', '0', '', '2022-03-02 13:00:01'); INSERT INTO `sys_job_log` VALUES (17813, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9297毫秒', '0', '', '2022-03-02 13:00:09'); INSERT INTO `sys_job_log` VALUES (17814, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1659毫秒', '0', '', '2022-03-02 13:10:01'); INSERT INTO `sys_job_log` VALUES (17815, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3973毫秒', '0', '', '2022-03-02 13:10:04'); INSERT INTO `sys_job_log` VALUES (17816, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2583毫秒', '0', '', '2022-03-02 13:15:32'); INSERT INTO `sys_job_log` VALUES (17817, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:630毫秒', '0', '', '2022-03-02 13:20:00'); INSERT INTO `sys_job_log` VALUES (17818, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2032毫秒', '0', '', '2022-03-02 13:20:02'); INSERT INTO `sys_job_log` VALUES (17819, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3765毫秒', '0', '', '2022-03-02 13:20:03'); INSERT INTO `sys_job_log` VALUES (17820, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:672毫秒', '0', '', '2022-03-02 13:30:00'); INSERT INTO `sys_job_log` VALUES (17821, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3578毫秒', '0', '', '2022-03-02 13:30:03'); INSERT INTO `sys_job_log` VALUES (17822, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:525毫秒', '0', '', '2022-03-02 13:40:00'); INSERT INTO `sys_job_log` VALUES (17823, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1142毫秒', '0', '', '2022-03-02 13:40:01'); INSERT INTO `sys_job_log` VALUES (17824, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2478毫秒', '0', '', '2022-03-02 13:40:02'); INSERT INTO `sys_job_log` VALUES (17825, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:693毫秒', '0', '', '2022-03-02 13:50:00'); INSERT INTO `sys_job_log` VALUES (17826, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2413毫秒', '0', '', '2022-03-02 13:50:02'); INSERT INTO `sys_job_log` VALUES (17827, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-03-02 14:00:00'); INSERT INTO `sys_job_log` VALUES (17828, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-02 14:00:02'); INSERT INTO `sys_job_log` VALUES (17829, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4628毫秒', '0', '', '2022-03-02 14:00:04'); INSERT INTO `sys_job_log` VALUES (17830, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:727毫秒', '0', '', '2022-03-02 14:10:00'); INSERT INTO `sys_job_log` VALUES (17831, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6162毫秒', '0', '', '2022-03-02 14:10:06'); INSERT INTO `sys_job_log` VALUES (17832, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1450毫秒', '0', '', '2022-03-02 14:15:31'); INSERT INTO `sys_job_log` VALUES (17833, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:228毫秒', '0', '', '2022-03-02 14:20:00'); INSERT INTO `sys_job_log` VALUES (17834, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:530毫秒', '0', '', '2022-03-02 14:20:00'); INSERT INTO `sys_job_log` VALUES (17835, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6231毫秒', '0', '', '2022-03-02 14:20:06'); INSERT INTO `sys_job_log` VALUES (17836, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-03-02 14:30:00'); INSERT INTO `sys_job_log` VALUES (17837, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5181毫秒', '0', '', '2022-03-02 14:30:05'); INSERT INTO `sys_job_log` VALUES (17838, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:135毫秒', '0', '', '2022-03-02 14:40:00'); INSERT INTO `sys_job_log` VALUES (17839, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:550毫秒', '0', '', '2022-03-02 14:40:00'); INSERT INTO `sys_job_log` VALUES (17840, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9640毫秒', '0', '', '2022-03-02 14:40:09'); INSERT INTO `sys_job_log` VALUES (17841, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:534毫秒', '0', '', '2022-03-02 14:50:00'); INSERT INTO `sys_job_log` VALUES (17842, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9006毫秒', '0', '', '2022-03-02 14:50:09'); INSERT INTO `sys_job_log` VALUES (17843, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:551毫秒', '0', '', '2022-03-02 15:00:00'); INSERT INTO `sys_job_log` VALUES (17844, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1158毫秒', '0', '', '2022-03-02 15:00:01'); INSERT INTO `sys_job_log` VALUES (17845, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9813毫秒', '0', '', '2022-03-02 15:00:09'); INSERT INTO `sys_job_log` VALUES (17846, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:480毫秒', '0', '', '2022-03-02 15:10:00'); INSERT INTO `sys_job_log` VALUES (17847, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:735毫秒', '0', '', '2022-03-02 15:10:00'); INSERT INTO `sys_job_log` VALUES (17848, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3309毫秒', '0', '', '2022-03-02 15:10:03'); INSERT INTO `sys_job_log` VALUES (17849, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1414毫秒', '0', '', '2022-03-02 15:15:31'); INSERT INTO `sys_job_log` VALUES (17850, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:953604毫秒', '0', '', '2022-03-02 15:15:53'); INSERT INTO `sys_job_log` VALUES (17851, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:598毫秒', '0', '', '2022-03-02 15:20:00'); INSERT INTO `sys_job_log` VALUES (17852, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1444毫秒', '0', '', '2022-03-02 15:20:01'); INSERT INTO `sys_job_log` VALUES (17853, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-02 15:20:02'); INSERT INTO `sys_job_log` VALUES (17854, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:461毫秒', '0', '', '2022-03-02 15:30:00'); INSERT INTO `sys_job_log` VALUES (17855, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3387毫秒', '0', '', '2022-03-02 15:30:03'); INSERT INTO `sys_job_log` VALUES (17856, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:149毫秒', '0', '', '2022-03-02 15:40:00'); INSERT INTO `sys_job_log` VALUES (17857, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:470毫秒', '0', '', '2022-03-02 15:40:00'); INSERT INTO `sys_job_log` VALUES (17858, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2208毫秒', '0', '', '2022-03-02 15:40:02'); INSERT INTO `sys_job_log` VALUES (17859, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:614毫秒', '0', '', '2022-03-02 15:50:00'); INSERT INTO `sys_job_log` VALUES (17860, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3476毫秒', '0', '', '2022-03-02 15:50:03'); INSERT INTO `sys_job_log` VALUES (17861, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:245毫秒', '0', '', '2022-03-02 16:00:00'); INSERT INTO `sys_job_log` VALUES (17862, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-03-02 16:00:00'); INSERT INTO `sys_job_log` VALUES (17863, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6901毫秒', '0', '', '2022-03-02 16:00:06'); INSERT INTO `sys_job_log` VALUES (17864, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-03-02 16:10:00'); INSERT INTO `sys_job_log` VALUES (17865, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4345毫秒', '0', '', '2022-03-02 16:10:04'); INSERT INTO `sys_job_log` VALUES (17866, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:374毫秒', '0', '', '2022-03-02 16:15:30'); INSERT INTO `sys_job_log` VALUES (17867, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:515毫秒', '0', '', '2022-03-02 16:20:00'); INSERT INTO `sys_job_log` VALUES (17868, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1165毫秒', '0', '', '2022-03-02 16:20:01'); INSERT INTO `sys_job_log` VALUES (17869, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5057毫秒', '0', '', '2022-03-02 16:20:05'); INSERT INTO `sys_job_log` VALUES (17870, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:484毫秒', '0', '', '2022-03-02 16:30:00'); INSERT INTO `sys_job_log` VALUES (17871, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3207毫秒', '0', '', '2022-03-02 16:30:03'); INSERT INTO `sys_job_log` VALUES (17872, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:512毫秒', '0', '', '2022-03-02 16:40:00'); INSERT INTO `sys_job_log` VALUES (17873, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-02 16:40:02'); INSERT INTO `sys_job_log` VALUES (17874, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5369毫秒', '0', '', '2022-03-02 16:40:05'); INSERT INTO `sys_job_log` VALUES (17875, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-03-02 16:50:00'); INSERT INTO `sys_job_log` VALUES (17876, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6016毫秒', '0', '', '2022-03-02 16:50:06'); INSERT INTO `sys_job_log` VALUES (17877, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-03-02 17:00:00'); INSERT INTO `sys_job_log` VALUES (17878, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1167毫秒', '0', '', '2022-03-02 17:00:01'); INSERT INTO `sys_job_log` VALUES (17879, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8810毫秒', '0', '', '2022-03-02 17:00:08'); INSERT INTO `sys_job_log` VALUES (17880, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:956毫秒', '0', '', '2022-03-02 17:10:00'); INSERT INTO `sys_job_log` VALUES (17881, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5041毫秒', '0', '', '2022-03-02 17:10:05'); INSERT INTO `sys_job_log` VALUES (17882, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:394毫秒', '0', '', '2022-03-02 17:15:30'); INSERT INTO `sys_job_log` VALUES (17883, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:720毫秒', '0', '', '2022-03-02 17:20:00'); INSERT INTO `sys_job_log` VALUES (17884, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-02 17:20:02'); INSERT INTO `sys_job_log` VALUES (17885, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5930毫秒', '0', '', '2022-03-02 17:20:05'); INSERT INTO `sys_job_log` VALUES (17886, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2366毫秒', '0', '', '2022-03-02 21:10:02'); INSERT INTO `sys_job_log` VALUES (17887, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5809毫秒', '0', '', '2022-03-02 21:10:05'); INSERT INTO `sys_job_log` VALUES (17888, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:53766毫秒', '0', '', '2022-03-02 21:10:53'); INSERT INTO `sys_job_log` VALUES (17889, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:800毫秒', '0', '', '2022-03-02 21:15:30'); INSERT INTO `sys_job_log` VALUES (17890, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:431毫秒', '0', '', '2022-03-02 21:20:00'); INSERT INTO `sys_job_log` VALUES (17891, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:847毫秒', '0', '', '2022-03-02 21:20:00'); INSERT INTO `sys_job_log` VALUES (17892, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2839毫秒', '0', '', '2022-03-02 21:20:02'); INSERT INTO `sys_job_log` VALUES (17893, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1039毫秒', '0', '', '2022-03-02 21:30:01'); INSERT INTO `sys_job_log` VALUES (17894, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3860毫秒', '0', '', '2022-03-02 21:30:03'); INSERT INTO `sys_job_log` VALUES (17895, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:432毫秒', '0', '', '2022-03-02 21:40:00'); INSERT INTO `sys_job_log` VALUES (17896, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:780毫秒', '0', '', '2022-03-02 21:40:00'); INSERT INTO `sys_job_log` VALUES (17897, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4190毫秒', '0', '', '2022-03-02 21:40:04'); INSERT INTO `sys_job_log` VALUES (17898, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:670毫秒', '0', '', '2022-03-02 21:50:00'); INSERT INTO `sys_job_log` VALUES (17899, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4466毫秒', '0', '', '2022-03-02 21:50:04'); INSERT INTO `sys_job_log` VALUES (17900, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:71毫秒', '0', '', '2022-03-02 22:20:47'); INSERT INTO `sys_job_log` VALUES (17901, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1027毫秒', '0', '', '2022-03-02 22:20:48'); INSERT INTO `sys_job_log` VALUES (17902, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1391毫秒', '0', '', '2022-03-02 22:20:48'); INSERT INTO `sys_job_log` VALUES (17903, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:467毫秒', '0', '', '2022-03-02 22:20:49'); INSERT INTO `sys_job_log` VALUES (17904, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-03-02 22:20:49'); INSERT INTO `sys_job_log` VALUES (17905, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:474毫秒', '0', '', '2022-03-02 22:20:49'); INSERT INTO `sys_job_log` VALUES (17906, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3264毫秒', '0', '', '2022-03-02 22:20:50'); INSERT INTO `sys_job_log` VALUES (17907, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2017毫秒', '0', '', '2022-03-02 22:20:51'); INSERT INTO `sys_job_log` VALUES (17908, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10485毫秒', '0', '', '2022-03-02 22:21:01'); INSERT INTO `sys_job_log` VALUES (17909, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4987毫秒', '0', '', '2022-03-02 22:21:06'); INSERT INTO `sys_job_log` VALUES (17910, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-03-02 22:30:00'); INSERT INTO `sys_job_log` VALUES (17911, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3635毫秒', '0', '', '2022-03-02 22:30:03'); INSERT INTO `sys_job_log` VALUES (17912, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:423毫秒', '0', '', '2022-03-02 22:40:00'); INSERT INTO `sys_job_log` VALUES (17913, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:878毫秒', '0', '', '2022-03-02 22:40:00'); INSERT INTO `sys_job_log` VALUES (17914, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5753毫秒', '0', '', '2022-03-02 22:40:05'); INSERT INTO `sys_job_log` VALUES (17915, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1560毫秒', '0', '', '2022-03-02 22:50:01'); INSERT INTO `sys_job_log` VALUES (17916, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4200毫秒', '0', '', '2022-03-02 22:50:04'); INSERT INTO `sys_job_log` VALUES (17917, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:316毫秒', '0', '', '2022-03-02 23:00:00'); INSERT INTO `sys_job_log` VALUES (17918, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:540毫秒', '0', '', '2022-03-02 23:00:00'); INSERT INTO `sys_job_log` VALUES (17919, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8106毫秒', '0', '', '2022-03-02 23:00:08'); INSERT INTO `sys_job_log` VALUES (17920, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:905毫秒', '0', '', '2022-03-02 23:10:00'); INSERT INTO `sys_job_log` VALUES (17921, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3281毫秒', '0', '', '2022-03-02 23:10:03'); INSERT INTO `sys_job_log` VALUES (17922, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:575毫秒', '0', '', '2022-03-02 23:15:30'); INSERT INTO `sys_job_log` VALUES (17923, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:447毫秒', '0', '', '2022-03-02 23:20:00'); INSERT INTO `sys_job_log` VALUES (17924, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:741毫秒', '0', '', '2022-03-02 23:20:00'); INSERT INTO `sys_job_log` VALUES (17925, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4683毫秒', '0', '', '2022-03-02 23:20:04'); INSERT INTO `sys_job_log` VALUES (17926, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-03-02 23:30:00'); INSERT INTO `sys_job_log` VALUES (17927, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2848毫秒', '0', '', '2022-03-02 23:30:02'); INSERT INTO `sys_job_log` VALUES (17928, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-03-02 23:40:00'); INSERT INTO `sys_job_log` VALUES (17929, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-02 23:40:02'); INSERT INTO `sys_job_log` VALUES (17930, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2212毫秒', '0', '', '2022-03-02 23:40:02'); INSERT INTO `sys_job_log` VALUES (17931, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:580毫秒', '0', '', '2022-03-02 23:50:00'); INSERT INTO `sys_job_log` VALUES (17932, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3833毫秒', '0', '', '2022-03-02 23:50:03'); INSERT INTO `sys_job_log` VALUES (17933, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1549毫秒', '0', '', '2022-03-03 08:40:01'); INSERT INTO `sys_job_log` VALUES (17934, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2265毫秒', '0', '', '2022-03-03 08:40:02'); INSERT INTO `sys_job_log` VALUES (17935, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4064毫秒', '0', '', '2022-03-03 08:40:04'); INSERT INTO `sys_job_log` VALUES (17936, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:655毫秒', '0', '', '2022-03-03 08:50:00'); INSERT INTO `sys_job_log` VALUES (17937, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8777毫秒', '0', '', '2022-03-03 08:50:08'); INSERT INTO `sys_job_log` VALUES (17938, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:559毫秒', '0', '', '2022-03-03 09:00:00'); INSERT INTO `sys_job_log` VALUES (17939, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1227毫秒', '0', '', '2022-03-03 09:00:01'); INSERT INTO `sys_job_log` VALUES (17940, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7988毫秒', '0', '', '2022-03-03 09:00:08'); INSERT INTO `sys_job_log` VALUES (17941, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:964毫秒', '0', '', '2022-03-03 09:10:00'); INSERT INTO `sys_job_log` VALUES (17942, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7318毫秒', '0', '', '2022-03-03 09:10:07'); INSERT INTO `sys_job_log` VALUES (17943, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:47766毫秒', '0', '', '2022-03-03 09:10:47'); INSERT INTO `sys_job_log` VALUES (17944, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:680328毫秒', '0', '', '2022-03-03 09:11:20'); INSERT INTO `sys_job_log` VALUES (17945, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2294毫秒', '0', '', '2022-03-03 09:15:32'); INSERT INTO `sys_job_log` VALUES (17946, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-03-03 09:20:00'); INSERT INTO `sys_job_log` VALUES (17947, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2019毫秒', '0', '', '2022-03-03 09:20:02'); INSERT INTO `sys_job_log` VALUES (17948, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4959毫秒', '0', '', '2022-03-03 09:20:04'); INSERT INTO `sys_job_log` VALUES (17949, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:527毫秒', '0', '', '2022-03-03 09:30:00'); INSERT INTO `sys_job_log` VALUES (17950, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3279毫秒', '0', '', '2022-03-03 09:30:03'); INSERT INTO `sys_job_log` VALUES (17951, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2844毫秒', '0', '', '2022-03-03 09:40:02'); INSERT INTO `sys_job_log` VALUES (17952, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2836毫秒', '0', '', '2022-03-03 09:40:02'); INSERT INTO `sys_job_log` VALUES (17953, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5265毫秒', '0', '', '2022-03-03 09:40:05'); INSERT INTO `sys_job_log` VALUES (17954, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1631毫秒', '0', '', '2022-03-03 09:50:01'); INSERT INTO `sys_job_log` VALUES (17955, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3954毫秒', '0', '', '2022-03-03 09:50:03'); INSERT INTO `sys_job_log` VALUES (17956, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:535毫秒', '0', '', '2022-03-03 10:00:00'); INSERT INTO `sys_job_log` VALUES (17957, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-03-03 10:00:02'); INSERT INTO `sys_job_log` VALUES (17958, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4331毫秒', '0', '', '2022-03-03 10:00:04'); INSERT INTO `sys_job_log` VALUES (17959, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1940毫秒', '0', '', '2022-03-03 10:10:01'); INSERT INTO `sys_job_log` VALUES (17960, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6822毫秒', '0', '', '2022-03-03 10:10:06'); INSERT INTO `sys_job_log` VALUES (17961, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1948毫秒', '0', '', '2022-03-03 10:15:31'); INSERT INTO `sys_job_log` VALUES (17962, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1250毫秒', '0', '', '2022-03-03 10:20:01'); INSERT INTO `sys_job_log` VALUES (17963, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1561毫秒', '0', '', '2022-03-03 10:20:01'); INSERT INTO `sys_job_log` VALUES (17964, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2422毫秒', '0', '', '2022-03-03 10:20:02'); INSERT INTO `sys_job_log` VALUES (17965, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:561毫秒', '0', '', '2022-03-03 10:30:00'); INSERT INTO `sys_job_log` VALUES (17966, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10086毫秒', '0', '', '2022-03-03 10:30:10'); INSERT INTO `sys_job_log` VALUES (17967, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:514毫秒', '0', '', '2022-03-03 10:40:00'); INSERT INTO `sys_job_log` VALUES (17968, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-03 10:40:02'); INSERT INTO `sys_job_log` VALUES (17969, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3148毫秒', '0', '', '2022-03-03 10:40:03'); INSERT INTO `sys_job_log` VALUES (17970, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1638毫秒', '0', '', '2022-03-03 10:50:01'); INSERT INTO `sys_job_log` VALUES (17971, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3403毫秒', '0', '', '2022-03-03 10:50:03'); INSERT INTO `sys_job_log` VALUES (17972, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:242毫秒', '0', '', '2022-03-03 11:00:00'); INSERT INTO `sys_job_log` VALUES (17973, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-03-03 11:00:00'); INSERT INTO `sys_job_log` VALUES (17974, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5284毫秒', '0', '', '2022-03-03 11:00:05'); INSERT INTO `sys_job_log` VALUES (17975, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:438毫秒', '0', '', '2022-03-03 11:10:00'); INSERT INTO `sys_job_log` VALUES (17976, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2183毫秒', '0', '', '2022-03-03 11:10:02'); INSERT INTO `sys_job_log` VALUES (17977, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1586毫秒', '0', '', '2022-03-03 11:15:31'); INSERT INTO `sys_job_log` VALUES (17978, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:504毫秒', '0', '', '2022-03-03 11:20:00'); INSERT INTO `sys_job_log` VALUES (17979, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1195毫秒', '0', '', '2022-03-03 11:20:01'); INSERT INTO `sys_job_log` VALUES (17980, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5819毫秒', '0', '', '2022-03-03 11:20:05'); INSERT INTO `sys_job_log` VALUES (17981, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:500毫秒', '0', '', '2022-03-03 11:30:00'); INSERT INTO `sys_job_log` VALUES (17982, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3246毫秒', '0', '', '2022-03-03 11:30:03'); INSERT INTO `sys_job_log` VALUES (17983, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:525毫秒', '0', '', '2022-03-03 11:40:00'); INSERT INTO `sys_job_log` VALUES (17984, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1235毫秒', '0', '', '2022-03-03 11:40:01'); INSERT INTO `sys_job_log` VALUES (17985, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3480毫秒', '0', '', '2022-03-03 11:40:03'); INSERT INTO `sys_job_log` VALUES (17986, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-03-03 11:50:00'); INSERT INTO `sys_job_log` VALUES (17987, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1472毫秒', '0', '', '2022-03-03 11:50:01'); INSERT INTO `sys_job_log` VALUES (17988, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:172毫秒', '0', '', '2022-03-03 12:00:00'); INSERT INTO `sys_job_log` VALUES (17989, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:211毫秒', '0', '', '2022-03-03 12:00:00'); INSERT INTO `sys_job_log` VALUES (17990, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:518毫秒', '0', '', '2022-03-03 12:00:00'); INSERT INTO `sys_job_log` VALUES (17991, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1423毫秒', '0', '', '2022-03-03 12:00:01'); INSERT INTO `sys_job_log` VALUES (17992, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:671毫秒', '0', '', '2022-03-03 12:10:00'); INSERT INTO `sys_job_log` VALUES (17993, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8017毫秒', '0', '', '2022-03-03 12:10:08'); INSERT INTO `sys_job_log` VALUES (17994, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2667毫秒', '0', '', '2022-03-03 12:15:32'); INSERT INTO `sys_job_log` VALUES (17995, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:529毫秒', '0', '', '2022-03-03 12:20:00'); INSERT INTO `sys_job_log` VALUES (17996, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1231毫秒', '0', '', '2022-03-03 12:20:01'); INSERT INTO `sys_job_log` VALUES (17997, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3370毫秒', '0', '', '2022-03-03 12:20:03'); INSERT INTO `sys_job_log` VALUES (17998, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-03-03 12:30:00'); INSERT INTO `sys_job_log` VALUES (17999, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7296毫秒', '0', '', '2022-03-03 12:30:07'); INSERT INTO `sys_job_log` VALUES (18000, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1525毫秒', '0', '', '2022-03-03 12:40:01'); INSERT INTO `sys_job_log` VALUES (18001, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2040毫秒', '0', '', '2022-03-03 12:40:02'); INSERT INTO `sys_job_log` VALUES (18002, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5071毫秒', '0', '', '2022-03-03 12:40:05'); INSERT INTO `sys_job_log` VALUES (18003, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-03-03 12:50:00'); INSERT INTO `sys_job_log` VALUES (18004, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6357毫秒', '0', '', '2022-03-03 12:50:06'); INSERT INTO `sys_job_log` VALUES (18005, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-03-03 13:00:00'); INSERT INTO `sys_job_log` VALUES (18006, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1192毫秒', '0', '', '2022-03-03 13:00:01'); INSERT INTO `sys_job_log` VALUES (18007, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8227毫秒', '0', '', '2022-03-03 13:00:08'); INSERT INTO `sys_job_log` VALUES (18008, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-03-03 13:10:00'); INSERT INTO `sys_job_log` VALUES (18009, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6918毫秒', '0', '', '2022-03-03 13:10:06'); INSERT INTO `sys_job_log` VALUES (18010, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1658毫秒', '0', '', '2022-03-03 13:15:31'); INSERT INTO `sys_job_log` VALUES (18011, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:480毫秒', '0', '', '2022-03-03 13:20:00'); INSERT INTO `sys_job_log` VALUES (18012, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2029毫秒', '0', '', '2022-03-03 13:20:02'); INSERT INTO `sys_job_log` VALUES (18013, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2748毫秒', '0', '', '2022-03-03 13:20:02'); INSERT INTO `sys_job_log` VALUES (18014, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-03-03 13:30:00'); INSERT INTO `sys_job_log` VALUES (18015, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4344毫秒', '0', '', '2022-03-03 13:30:04'); INSERT INTO `sys_job_log` VALUES (18016, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:558毫秒', '0', '', '2022-03-03 13:40:00'); INSERT INTO `sys_job_log` VALUES (18017, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1188毫秒', '0', '', '2022-03-03 13:40:01'); INSERT INTO `sys_job_log` VALUES (18018, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3386毫秒', '0', '', '2022-03-03 13:40:03'); INSERT INTO `sys_job_log` VALUES (18019, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1801毫秒', '0', '', '2022-03-03 13:50:01'); INSERT INTO `sys_job_log` VALUES (18020, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4615毫秒', '0', '', '2022-03-03 13:50:04'); INSERT INTO `sys_job_log` VALUES (18021, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:280毫秒', '0', '', '2022-03-03 14:00:00'); INSERT INTO `sys_job_log` VALUES (18022, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-03-03 14:00:00'); INSERT INTO `sys_job_log` VALUES (18023, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3688毫秒', '0', '', '2022-03-03 14:00:03'); INSERT INTO `sys_job_log` VALUES (18024, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-03-03 14:10:00'); INSERT INTO `sys_job_log` VALUES (18025, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8758毫秒', '0', '', '2022-03-03 14:10:08'); INSERT INTO `sys_job_log` VALUES (18026, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1824毫秒', '0', '', '2022-03-03 14:15:31'); INSERT INTO `sys_job_log` VALUES (18027, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-03-03 14:20:00'); INSERT INTO `sys_job_log` VALUES (18028, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1214毫秒', '0', '', '2022-03-03 14:20:01'); INSERT INTO `sys_job_log` VALUES (18029, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5150毫秒', '0', '', '2022-03-03 14:20:05'); INSERT INTO `sys_job_log` VALUES (18030, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:587毫秒', '0', '', '2022-03-03 14:30:00'); INSERT INTO `sys_job_log` VALUES (18031, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5410毫秒', '0', '', '2022-03-03 14:30:05'); INSERT INTO `sys_job_log` VALUES (18032, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1239毫秒', '0', '', '2022-03-03 14:40:01'); INSERT INTO `sys_job_log` VALUES (18033, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1911毫秒', '0', '', '2022-03-03 14:40:01'); INSERT INTO `sys_job_log` VALUES (18034, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7995毫秒', '0', '', '2022-03-03 14:40:08'); INSERT INTO `sys_job_log` VALUES (18035, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:704毫秒', '0', '', '2022-03-03 14:50:00'); INSERT INTO `sys_job_log` VALUES (18036, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4359毫秒', '0', '', '2022-03-03 14:50:04'); INSERT INTO `sys_job_log` VALUES (18037, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:405毫秒', '0', '', '2022-03-03 15:00:00'); INSERT INTO `sys_job_log` VALUES (18038, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:739毫秒', '0', '', '2022-03-03 15:00:00'); INSERT INTO `sys_job_log` VALUES (18039, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1703毫秒', '0', '', '2022-03-03 15:00:01'); INSERT INTO `sys_job_log` VALUES (18040, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:949毫秒', '0', '', '2022-03-03 15:10:00'); INSERT INTO `sys_job_log` VALUES (18041, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:1320毫秒', '0', '', '2022-03-03 15:10:01'); INSERT INTO `sys_job_log` VALUES (18042, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4890毫秒', '0', '', '2022-03-03 15:10:04'); INSERT INTO `sys_job_log` VALUES (18043, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:877995毫秒', '0', '', '2022-03-03 15:14:38'); INSERT INTO `sys_job_log` VALUES (18044, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:518毫秒', '0', '', '2022-03-03 15:15:30'); INSERT INTO `sys_job_log` VALUES (18045, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-03-03 15:20:00'); INSERT INTO `sys_job_log` VALUES (18046, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1256毫秒', '0', '', '2022-03-03 15:20:01'); INSERT INTO `sys_job_log` VALUES (18047, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3200毫秒', '0', '', '2022-03-03 15:20:03'); INSERT INTO `sys_job_log` VALUES (18048, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-03-03 15:30:00'); INSERT INTO `sys_job_log` VALUES (18049, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1849毫秒', '0', '', '2022-03-03 15:30:01'); INSERT INTO `sys_job_log` VALUES (18050, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-03-03 15:40:00'); INSERT INTO `sys_job_log` VALUES (18051, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1201毫秒', '0', '', '2022-03-03 15:40:01'); INSERT INTO `sys_job_log` VALUES (18052, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6023毫秒', '0', '', '2022-03-03 15:40:06'); INSERT INTO `sys_job_log` VALUES (18053, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-03-03 15:50:00'); INSERT INTO `sys_job_log` VALUES (18054, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6541毫秒', '0', '', '2022-03-03 15:50:06'); INSERT INTO `sys_job_log` VALUES (18055, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:265毫秒', '0', '', '2022-03-03 16:00:00'); INSERT INTO `sys_job_log` VALUES (18056, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:723毫秒', '0', '', '2022-03-03 16:00:00'); INSERT INTO `sys_job_log` VALUES (18057, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5880毫秒', '0', '', '2022-03-03 16:00:05'); INSERT INTO `sys_job_log` VALUES (18058, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-03-03 16:10:00'); INSERT INTO `sys_job_log` VALUES (18059, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8303毫秒', '0', '', '2022-03-03 16:10:08'); INSERT INTO `sys_job_log` VALUES (18060, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1545毫秒', '0', '', '2022-03-03 16:15:31'); INSERT INTO `sys_job_log` VALUES (18061, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:244毫秒', '0', '', '2022-03-03 16:20:00'); INSERT INTO `sys_job_log` VALUES (18062, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-03-03 16:20:00'); INSERT INTO `sys_job_log` VALUES (18063, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7080毫秒', '0', '', '2022-03-03 16:20:07'); INSERT INTO `sys_job_log` VALUES (18064, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:712毫秒', '0', '', '2022-03-03 16:30:00'); INSERT INTO `sys_job_log` VALUES (18065, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4387毫秒', '0', '', '2022-03-03 16:30:04'); INSERT INTO `sys_job_log` VALUES (18066, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:625毫秒', '0', '', '2022-03-03 16:40:00'); INSERT INTO `sys_job_log` VALUES (18067, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1255毫秒', '0', '', '2022-03-03 16:40:01'); INSERT INTO `sys_job_log` VALUES (18068, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6884毫秒', '0', '', '2022-03-03 16:40:06'); INSERT INTO `sys_job_log` VALUES (18069, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:624毫秒', '0', '', '2022-03-03 16:50:00'); INSERT INTO `sys_job_log` VALUES (18070, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6959毫秒', '0', '', '2022-03-03 16:50:06'); INSERT INTO `sys_job_log` VALUES (18071, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:558毫秒', '0', '', '2022-03-03 17:00:00'); INSERT INTO `sys_job_log` VALUES (18072, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-03 17:00:02'); INSERT INTO `sys_job_log` VALUES (18073, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8167毫秒', '0', '', '2022-03-03 17:00:08'); INSERT INTO `sys_job_log` VALUES (18074, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:594毫秒', '0', '', '2022-03-03 17:10:00'); INSERT INTO `sys_job_log` VALUES (18075, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3715毫秒', '0', '', '2022-03-03 17:10:03'); INSERT INTO `sys_job_log` VALUES (18076, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2641毫秒', '0', '', '2022-03-03 17:15:32'); INSERT INTO `sys_job_log` VALUES (18077, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-03-03 17:20:00'); INSERT INTO `sys_job_log` VALUES (18078, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-03 17:20:02'); INSERT INTO `sys_job_log` VALUES (18079, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5494毫秒', '0', '', '2022-03-03 17:20:05'); INSERT INTO `sys_job_log` VALUES (18080, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:859毫秒', '0', '', '2022-03-03 17:30:00'); INSERT INTO `sys_job_log` VALUES (18081, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3573毫秒', '0', '', '2022-03-03 17:30:03'); INSERT INTO `sys_job_log` VALUES (18082, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1373毫秒', '0', '', '2022-03-03 18:10:01'); INSERT INTO `sys_job_log` VALUES (18083, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5911毫秒', '0', '', '2022-03-03 18:10:05'); INSERT INTO `sys_job_log` VALUES (18084, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2191毫秒', '0', '', '2022-03-03 18:15:32'); INSERT INTO `sys_job_log` VALUES (18085, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:327毫秒', '0', '', '2022-03-03 18:20:00'); INSERT INTO `sys_job_log` VALUES (18086, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:714毫秒', '0', '', '2022-03-03 18:20:00'); INSERT INTO `sys_job_log` VALUES (18087, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7272毫秒', '0', '', '2022-03-03 18:20:07'); INSERT INTO `sys_job_log` VALUES (18088, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:678毫秒', '0', '', '2022-03-03 18:30:00'); INSERT INTO `sys_job_log` VALUES (18089, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3446毫秒', '0', '', '2022-03-03 18:30:03'); INSERT INTO `sys_job_log` VALUES (18090, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:342毫秒', '0', '', '2022-03-03 18:40:00'); INSERT INTO `sys_job_log` VALUES (18091, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:885毫秒', '0', '', '2022-03-03 18:40:00'); INSERT INTO `sys_job_log` VALUES (18092, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8401毫秒', '0', '', '2022-03-03 18:40:08'); INSERT INTO `sys_job_log` VALUES (18093, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:987毫秒', '0', '', '2022-03-03 18:50:01'); INSERT INTO `sys_job_log` VALUES (18094, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5570毫秒', '0', '', '2022-03-03 18:50:05'); INSERT INTO `sys_job_log` VALUES (18095, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1213毫秒', '0', '', '2022-03-03 19:00:01'); INSERT INTO `sys_job_log` VALUES (18096, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2021毫秒', '0', '', '2022-03-03 19:00:02'); INSERT INTO `sys_job_log` VALUES (18097, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5576毫秒', '0', '', '2022-03-03 19:00:05'); INSERT INTO `sys_job_log` VALUES (18098, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-03-03 19:10:00'); INSERT INTO `sys_job_log` VALUES (18099, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4389毫秒', '0', '', '2022-03-03 19:10:04'); INSERT INTO `sys_job_log` VALUES (18100, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:824毫秒', '0', '', '2022-03-03 19:15:30'); INSERT INTO `sys_job_log` VALUES (18101, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:390毫秒', '0', '', '2022-03-03 19:20:00'); INSERT INTO `sys_job_log` VALUES (18102, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:910毫秒', '0', '', '2022-03-03 19:20:00'); INSERT INTO `sys_job_log` VALUES (18103, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5176毫秒', '0', '', '2022-03-03 19:20:05'); INSERT INTO `sys_job_log` VALUES (18104, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:788毫秒', '0', '', '2022-03-03 20:45:34'); INSERT INTO `sys_job_log` VALUES (18105, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:946毫秒', '0', '', '2022-03-03 20:45:34'); INSERT INTO `sys_job_log` VALUES (18106, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:767毫秒', '0', '', '2022-03-03 20:45:35'); INSERT INTO `sys_job_log` VALUES (18107, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-03 20:45:35'); INSERT INTO `sys_job_log` VALUES (18108, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:468毫秒', '0', '', '2022-03-03 20:45:35'); INSERT INTO `sys_job_log` VALUES (18109, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:449毫秒', '0', '', '2022-03-03 20:45:35'); INSERT INTO `sys_job_log` VALUES (18110, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:439毫秒', '0', '', '2022-03-03 20:45:36'); INSERT INTO `sys_job_log` VALUES (18111, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:460毫秒', '0', '', '2022-03-03 20:45:36'); INSERT INTO `sys_job_log` VALUES (18112, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1617毫秒', '0', '', '2022-03-03 20:45:36'); INSERT INTO `sys_job_log` VALUES (18113, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:182毫秒', '0', '', '2022-03-03 20:45:37'); INSERT INTO `sys_job_log` VALUES (18114, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:190毫秒', '0', '', '2022-03-03 20:45:37'); INSERT INTO `sys_job_log` VALUES (18115, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:478毫秒', '0', '', '2022-03-03 20:45:37'); INSERT INTO `sys_job_log` VALUES (18116, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:453毫秒', '0', '', '2022-03-03 20:45:37'); INSERT INTO `sys_job_log` VALUES (18117, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6226毫秒', '0', '', '2022-03-03 20:45:39'); INSERT INTO `sys_job_log` VALUES (18118, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5064毫秒', '0', '', '2022-03-03 20:45:44'); INSERT INTO `sys_job_log` VALUES (18119, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4026毫秒', '0', '', '2022-03-03 20:45:48'); INSERT INTO `sys_job_log` VALUES (18120, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2559毫秒', '0', '', '2022-03-03 20:45:51'); INSERT INTO `sys_job_log` VALUES (18121, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3153毫秒', '0', '', '2022-03-03 20:45:54'); INSERT INTO `sys_job_log` VALUES (18122, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1571毫秒', '0', '', '2022-03-03 20:45:55'); INSERT INTO `sys_job_log` VALUES (18123, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5058毫秒', '0', '', '2022-03-03 20:46:01'); INSERT INTO `sys_job_log` VALUES (18124, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2880毫秒', '0', '', '2022-03-03 20:46:03'); INSERT INTO `sys_job_log` VALUES (18125, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:73480毫秒', '0', '', '2022-03-03 20:46:46'); INSERT INTO `sys_job_log` VALUES (18126, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-03-03 20:50:00'); INSERT INTO `sys_job_log` VALUES (18127, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7123毫秒', '0', '', '2022-03-03 20:50:07'); INSERT INTO `sys_job_log` VALUES (18128, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:421毫秒', '0', '', '2022-03-03 21:00:00'); INSERT INTO `sys_job_log` VALUES (18129, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:726毫秒', '0', '', '2022-03-03 21:00:00'); INSERT INTO `sys_job_log` VALUES (18130, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8903毫秒', '0', '', '2022-03-03 21:00:08'); INSERT INTO `sys_job_log` VALUES (18131, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:482727毫秒', '0', '', '2022-03-03 21:08:02'); INSERT INTO `sys_job_log` VALUES (18132, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:947毫秒', '0', '', '2022-03-03 21:10:00'); INSERT INTO `sys_job_log` VALUES (18133, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5556毫秒', '0', '', '2022-03-03 21:10:05'); INSERT INTO `sys_job_log` VALUES (18134, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:49981毫秒', '0', '', '2022-03-03 21:10:50'); INSERT INTO `sys_job_log` VALUES (18135, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:576毫秒', '0', '', '2022-03-03 21:15:30'); INSERT INTO `sys_job_log` VALUES (18136, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:631毫秒', '0', '', '2022-03-03 21:20:00'); INSERT INTO `sys_job_log` VALUES (18137, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-03-03 21:20:02'); INSERT INTO `sys_job_log` VALUES (18138, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4434毫秒', '0', '', '2022-03-03 21:20:04'); INSERT INTO `sys_job_log` VALUES (18139, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-03-03 21:30:00'); INSERT INTO `sys_job_log` VALUES (18140, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3597毫秒', '0', '', '2022-03-03 21:30:03'); INSERT INTO `sys_job_log` VALUES (18141, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:322毫秒', '0', '', '2022-03-03 21:40:00'); INSERT INTO `sys_job_log` VALUES (18142, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:631毫秒', '0', '', '2022-03-03 21:40:00'); INSERT INTO `sys_job_log` VALUES (18143, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2650毫秒', '0', '', '2022-03-03 21:40:02'); INSERT INTO `sys_job_log` VALUES (18144, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1114毫秒', '0', '', '2022-03-03 21:50:01'); INSERT INTO `sys_job_log` VALUES (18145, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3250毫秒', '0', '', '2022-03-03 21:50:03'); INSERT INTO `sys_job_log` VALUES (18146, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:64毫秒', '0', '', '2022-03-03 22:00:00'); INSERT INTO `sys_job_log` VALUES (18147, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1462毫秒', '0', '', '2022-03-03 22:00:01'); INSERT INTO `sys_job_log` VALUES (18148, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-03 22:00:02'); INSERT INTO `sys_job_log` VALUES (18149, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5500毫秒', '0', '', '2022-03-03 22:00:05'); INSERT INTO `sys_job_log` VALUES (18150, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-03-03 22:10:00'); INSERT INTO `sys_job_log` VALUES (18151, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7532毫秒', '0', '', '2022-03-03 22:10:07'); INSERT INTO `sys_job_log` VALUES (18152, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:564毫秒', '0', '', '2022-03-03 22:15:30'); INSERT INTO `sys_job_log` VALUES (18153, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:258毫秒', '0', '', '2022-03-03 22:20:00'); INSERT INTO `sys_job_log` VALUES (18154, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:477毫秒', '0', '', '2022-03-03 22:20:00'); INSERT INTO `sys_job_log` VALUES (18155, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7205毫秒', '0', '', '2022-03-03 22:20:07'); INSERT INTO `sys_job_log` VALUES (18156, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:935毫秒', '0', '', '2022-03-03 22:30:00'); INSERT INTO `sys_job_log` VALUES (18157, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4070毫秒', '0', '', '2022-03-03 22:30:04'); INSERT INTO `sys_job_log` VALUES (18158, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:623毫秒', '0', '', '2022-03-03 22:40:00'); INSERT INTO `sys_job_log` VALUES (18159, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-03 22:40:02'); INSERT INTO `sys_job_log` VALUES (18160, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5383毫秒', '0', '', '2022-03-03 22:40:05'); INSERT INTO `sys_job_log` VALUES (18161, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:661毫秒', '0', '', '2022-03-03 22:50:00'); INSERT INTO `sys_job_log` VALUES (18162, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5267毫秒', '0', '', '2022-03-03 22:50:05'); INSERT INTO `sys_job_log` VALUES (18163, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:300毫秒', '0', '', '2022-03-03 23:00:00'); INSERT INTO `sys_job_log` VALUES (18164, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:583毫秒', '0', '', '2022-03-03 23:00:00'); INSERT INTO `sys_job_log` VALUES (18165, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8174毫秒', '0', '', '2022-03-03 23:00:08'); INSERT INTO `sys_job_log` VALUES (18166, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-03-03 23:10:00'); INSERT INTO `sys_job_log` VALUES (18167, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2123毫秒', '0', '', '2022-03-03 23:10:02'); INSERT INTO `sys_job_log` VALUES (18168, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:514毫秒', '0', '', '2022-03-03 23:15:30'); INSERT INTO `sys_job_log` VALUES (18169, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:333毫秒', '0', '', '2022-03-03 23:20:00'); INSERT INTO `sys_job_log` VALUES (18170, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:865毫秒', '0', '', '2022-03-03 23:20:00'); INSERT INTO `sys_job_log` VALUES (18171, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2552毫秒', '0', '', '2022-03-03 23:20:02'); INSERT INTO `sys_job_log` VALUES (18172, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1472毫秒', '0', '', '2022-03-04 08:40:01'); INSERT INTO `sys_job_log` VALUES (18173, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1483毫秒', '0', '', '2022-03-04 08:40:01'); INSERT INTO `sys_job_log` VALUES (18174, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5694毫秒', '0', '', '2022-03-04 08:40:05'); INSERT INTO `sys_job_log` VALUES (18175, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:594毫秒', '0', '', '2022-03-04 08:50:00'); INSERT INTO `sys_job_log` VALUES (18176, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4843毫秒', '0', '', '2022-03-04 08:50:04'); INSERT INTO `sys_job_log` VALUES (18177, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:527毫秒', '0', '', '2022-03-04 09:00:00'); INSERT INTO `sys_job_log` VALUES (18178, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1188毫秒', '0', '', '2022-03-04 09:00:01'); INSERT INTO `sys_job_log` VALUES (18179, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2294毫秒', '0', '', '2022-03-04 09:00:02'); INSERT INTO `sys_job_log` VALUES (18180, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:546毫秒', '0', '', '2022-03-04 09:10:00'); INSERT INTO `sys_job_log` VALUES (18181, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5730毫秒', '0', '', '2022-03-04 09:10:05'); INSERT INTO `sys_job_log` VALUES (18182, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:47293毫秒', '0', '', '2022-03-04 09:10:47'); INSERT INTO `sys_job_log` VALUES (18183, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:640毫秒', '0', '', '2022-03-04 09:15:30'); INSERT INTO `sys_job_log` VALUES (18184, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:626毫秒', '0', '', '2022-03-04 09:20:00'); INSERT INTO `sys_job_log` VALUES (18185, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1591毫秒', '0', '', '2022-03-04 09:20:01'); INSERT INTO `sys_job_log` VALUES (18186, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2027毫秒', '0', '', '2022-03-04 09:20:02'); INSERT INTO `sys_job_log` VALUES (18187, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1249601毫秒', '0', '', '2022-03-04 09:20:49'); INSERT INTO `sys_job_log` VALUES (18188, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:531毫秒', '0', '', '2022-03-04 09:30:00'); INSERT INTO `sys_job_log` VALUES (18189, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3181毫秒', '0', '', '2022-03-04 09:30:03'); INSERT INTO `sys_job_log` VALUES (18190, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:493毫秒', '0', '', '2022-03-04 09:40:00'); INSERT INTO `sys_job_log` VALUES (18191, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1195毫秒', '0', '', '2022-03-04 09:40:01'); INSERT INTO `sys_job_log` VALUES (18192, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2049毫秒', '0', '', '2022-03-04 09:40:02'); INSERT INTO `sys_job_log` VALUES (18193, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:550毫秒', '0', '', '2022-03-04 09:50:00'); INSERT INTO `sys_job_log` VALUES (18194, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3321毫秒', '0', '', '2022-03-04 09:50:03'); INSERT INTO `sys_job_log` VALUES (18195, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:519毫秒', '0', '', '2022-03-04 10:00:00'); INSERT INTO `sys_job_log` VALUES (18196, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2028毫秒', '0', '', '2022-03-04 10:00:02'); INSERT INTO `sys_job_log` VALUES (18197, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4292毫秒', '0', '', '2022-03-04 10:00:04'); INSERT INTO `sys_job_log` VALUES (18198, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-03-04 10:10:00'); INSERT INTO `sys_job_log` VALUES (18199, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10151毫秒', '0', '', '2022-03-04 10:10:10'); INSERT INTO `sys_job_log` VALUES (18200, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1467毫秒', '0', '', '2022-03-04 10:15:31'); INSERT INTO `sys_job_log` VALUES (18201, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-03-04 10:20:00'); INSERT INTO `sys_job_log` VALUES (18202, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1180毫秒', '0', '', '2022-03-04 10:20:01'); INSERT INTO `sys_job_log` VALUES (18203, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6277毫秒', '0', '', '2022-03-04 10:20:06'); INSERT INTO `sys_job_log` VALUES (18204, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-03-04 10:30:00'); INSERT INTO `sys_job_log` VALUES (18205, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4795毫秒', '0', '', '2022-03-04 10:30:04'); INSERT INTO `sys_job_log` VALUES (18206, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:951毫秒', '0', '', '2022-03-04 10:40:00'); INSERT INTO `sys_job_log` VALUES (18207, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2030毫秒', '0', '', '2022-03-04 10:40:02'); INSERT INTO `sys_job_log` VALUES (18208, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8746毫秒', '0', '', '2022-03-04 10:40:08'); INSERT INTO `sys_job_log` VALUES (18209, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-03-04 10:50:00'); INSERT INTO `sys_job_log` VALUES (18210, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8008毫秒', '0', '', '2022-03-04 10:50:08'); INSERT INTO `sys_job_log` VALUES (18211, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:179毫秒', '0', '', '2022-03-04 11:00:00'); INSERT INTO `sys_job_log` VALUES (18212, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:471毫秒', '0', '', '2022-03-04 11:00:00'); INSERT INTO `sys_job_log` VALUES (18213, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8130毫秒', '0', '', '2022-03-04 11:00:08'); INSERT INTO `sys_job_log` VALUES (18214, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:620毫秒', '0', '', '2022-03-04 11:10:00'); INSERT INTO `sys_job_log` VALUES (18215, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11853毫秒', '0', '', '2022-03-04 11:10:11'); INSERT INTO `sys_job_log` VALUES (18216, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1422毫秒', '0', '', '2022-03-04 11:15:31'); INSERT INTO `sys_job_log` VALUES (18217, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:722毫秒', '0', '', '2022-03-04 11:20:00'); INSERT INTO `sys_job_log` VALUES (18218, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2039毫秒', '0', '', '2022-03-04 11:20:02'); INSERT INTO `sys_job_log` VALUES (18219, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9885毫秒', '0', '', '2022-03-04 11:20:09'); INSERT INTO `sys_job_log` VALUES (18220, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:540毫秒', '0', '', '2022-03-04 11:30:00'); INSERT INTO `sys_job_log` VALUES (18221, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5711毫秒', '0', '', '2022-03-04 11:30:05'); INSERT INTO `sys_job_log` VALUES (18222, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:466毫秒', '0', '', '2022-03-04 11:40:00'); INSERT INTO `sys_job_log` VALUES (18223, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1165毫秒', '0', '', '2022-03-04 11:40:01'); INSERT INTO `sys_job_log` VALUES (18224, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5131毫秒', '0', '', '2022-03-04 11:40:05'); INSERT INTO `sys_job_log` VALUES (18225, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:499毫秒', '0', '', '2022-03-04 11:50:00'); INSERT INTO `sys_job_log` VALUES (18226, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5927毫秒', '0', '', '2022-03-04 11:50:05'); INSERT INTO `sys_job_log` VALUES (18227, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-03-04 12:00:00'); INSERT INTO `sys_job_log` VALUES (18228, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-03-04 12:00:02'); INSERT INTO `sys_job_log` VALUES (18229, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4555毫秒', '0', '', '2022-03-04 12:00:04'); INSERT INTO `sys_job_log` VALUES (18230, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:855毫秒', '0', '', '2022-03-04 12:10:00'); INSERT INTO `sys_job_log` VALUES (18231, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8135毫秒', '0', '', '2022-03-04 12:10:08'); INSERT INTO `sys_job_log` VALUES (18232, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:467毫秒', '0', '', '2022-03-04 12:15:30'); INSERT INTO `sys_job_log` VALUES (18233, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:303毫秒', '0', '', '2022-03-04 12:20:00'); INSERT INTO `sys_job_log` VALUES (18234, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-03-04 12:20:00'); INSERT INTO `sys_job_log` VALUES (18235, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1689毫秒', '0', '', '2022-03-04 12:20:01'); INSERT INTO `sys_job_log` VALUES (18236, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1736014毫秒', '0', '', '2022-03-04 12:28:56'); INSERT INTO `sys_job_log` VALUES (18237, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-03-04 12:30:00'); INSERT INTO `sys_job_log` VALUES (18238, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2284毫秒', '0', '', '2022-03-04 12:30:02'); INSERT INTO `sys_job_log` VALUES (18239, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:511毫秒', '0', '', '2022-03-04 12:40:00'); INSERT INTO `sys_job_log` VALUES (18240, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-04 12:40:02'); INSERT INTO `sys_job_log` VALUES (18241, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4325毫秒', '0', '', '2022-03-04 12:40:04'); INSERT INTO `sys_job_log` VALUES (18242, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:492毫秒', '0', '', '2022-03-04 12:50:00'); INSERT INTO `sys_job_log` VALUES (18243, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8779毫秒', '0', '', '2022-03-04 12:50:08'); INSERT INTO `sys_job_log` VALUES (18244, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-03-04 13:00:00'); INSERT INTO `sys_job_log` VALUES (18245, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1198毫秒', '0', '', '2022-03-04 13:00:01'); INSERT INTO `sys_job_log` VALUES (18246, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6128毫秒', '0', '', '2022-03-04 13:00:06'); INSERT INTO `sys_job_log` VALUES (18247, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2015毫秒', '0', '', '2022-03-04 13:10:02'); INSERT INTO `sys_job_log` VALUES (18248, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7534毫秒', '0', '', '2022-03-04 13:10:07'); INSERT INTO `sys_job_log` VALUES (18249, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1566毫秒', '0', '', '2022-03-04 13:15:31'); INSERT INTO `sys_job_log` VALUES (18250, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:458毫秒', '0', '', '2022-03-04 13:20:00'); INSERT INTO `sys_job_log` VALUES (18251, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-04 13:20:02'); INSERT INTO `sys_job_log` VALUES (18252, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5806毫秒', '0', '', '2022-03-04 13:20:05'); INSERT INTO `sys_job_log` VALUES (18253, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1098毫秒', '0', '', '2022-03-04 13:30:01'); INSERT INTO `sys_job_log` VALUES (18254, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7657毫秒', '0', '', '2022-03-04 13:30:07'); INSERT INTO `sys_job_log` VALUES (18255, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:573毫秒', '0', '', '2022-03-04 13:40:00'); INSERT INTO `sys_job_log` VALUES (18256, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1171毫秒', '0', '', '2022-03-04 13:40:01'); INSERT INTO `sys_job_log` VALUES (18257, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6267毫秒', '0', '', '2022-03-04 13:40:06'); INSERT INTO `sys_job_log` VALUES (18258, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:574毫秒', '0', '', '2022-03-04 13:50:00'); INSERT INTO `sys_job_log` VALUES (18259, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4724毫秒', '0', '', '2022-03-04 13:50:04'); INSERT INTO `sys_job_log` VALUES (18260, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-03-04 14:00:00'); INSERT INTO `sys_job_log` VALUES (18261, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-04 14:00:02'); INSERT INTO `sys_job_log` VALUES (18262, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3547毫秒', '0', '', '2022-03-04 14:00:03'); INSERT INTO `sys_job_log` VALUES (18263, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:870毫秒', '0', '', '2022-03-04 14:10:00'); INSERT INTO `sys_job_log` VALUES (18264, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7133毫秒', '0', '', '2022-03-04 14:10:07'); INSERT INTO `sys_job_log` VALUES (18265, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:579毫秒', '0', '', '2022-03-04 14:15:30'); INSERT INTO `sys_job_log` VALUES (18266, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:550毫秒', '0', '', '2022-03-04 14:20:00'); INSERT INTO `sys_job_log` VALUES (18267, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1208毫秒', '0', '', '2022-03-04 14:20:01'); INSERT INTO `sys_job_log` VALUES (18268, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8124毫秒', '0', '', '2022-03-04 14:20:08'); INSERT INTO `sys_job_log` VALUES (18269, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1856毫秒', '0', '', '2022-03-04 14:30:01'); INSERT INTO `sys_job_log` VALUES (18270, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6184毫秒', '0', '', '2022-03-04 14:30:06'); INSERT INTO `sys_job_log` VALUES (18271, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2024毫秒', '0', '', '2022-03-04 14:40:02'); INSERT INTO `sys_job_log` VALUES (18272, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2016毫秒', '0', '', '2022-03-04 14:40:02'); INSERT INTO `sys_job_log` VALUES (18273, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:15292毫秒', '0', '', '2022-03-04 14:40:15'); INSERT INTO `sys_job_log` VALUES (18274, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2010毫秒', '0', '', '2022-03-04 14:50:02'); INSERT INTO `sys_job_log` VALUES (18275, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7843毫秒', '0', '', '2022-03-04 14:50:07'); INSERT INTO `sys_job_log` VALUES (18276, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1223毫秒', '0', '', '2022-03-04 15:00:01'); INSERT INTO `sys_job_log` VALUES (18277, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2011毫秒', '0', '', '2022-03-04 15:00:02'); INSERT INTO `sys_job_log` VALUES (18278, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10872毫秒', '0', '', '2022-03-04 15:00:10'); INSERT INTO `sys_job_log` VALUES (18279, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:272毫秒', '0', '', '2022-03-04 15:10:00'); INSERT INTO `sys_job_log` VALUES (18280, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:655毫秒', '0', '', '2022-03-04 15:10:00'); INSERT INTO `sys_job_log` VALUES (18281, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1455毫秒', '0', '', '2022-03-04 15:10:01'); INSERT INTO `sys_job_log` VALUES (18282, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1873毫秒', '0', '', '2022-03-04 15:15:31'); INSERT INTO `sys_job_log` VALUES (18283, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:499毫秒', '0', '', '2022-03-04 15:20:00'); INSERT INTO `sys_job_log` VALUES (18284, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-04 15:20:02'); INSERT INTO `sys_job_log` VALUES (18285, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4954毫秒', '0', '', '2022-03-04 15:20:04'); INSERT INTO `sys_job_log` VALUES (18286, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1266633毫秒', '0', '', '2022-03-04 15:21:06'); INSERT INTO `sys_job_log` VALUES (18287, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:533毫秒', '0', '', '2022-03-04 15:30:00'); INSERT INTO `sys_job_log` VALUES (18288, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4461毫秒', '0', '', '2022-03-04 15:30:04'); INSERT INTO `sys_job_log` VALUES (18289, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:211毫秒', '0', '', '2022-03-04 15:40:00'); INSERT INTO `sys_job_log` VALUES (18290, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:639毫秒', '0', '', '2022-03-04 15:40:00'); INSERT INTO `sys_job_log` VALUES (18291, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2331毫秒', '0', '', '2022-03-04 15:40:02'); INSERT INTO `sys_job_log` VALUES (18292, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:820毫秒', '0', '', '2022-03-04 15:50:00'); INSERT INTO `sys_job_log` VALUES (18293, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4741毫秒', '0', '', '2022-03-04 15:50:04'); INSERT INTO `sys_job_log` VALUES (18294, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-03-04 16:00:00'); INSERT INTO `sys_job_log` VALUES (18295, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2028毫秒', '0', '', '2022-03-04 16:00:02'); INSERT INTO `sys_job_log` VALUES (18296, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10826毫秒', '0', '', '2022-03-04 16:00:10'); INSERT INTO `sys_job_log` VALUES (18297, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:505毫秒', '0', '', '2022-03-04 16:10:00'); INSERT INTO `sys_job_log` VALUES (18298, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4927毫秒', '0', '', '2022-03-04 16:10:04'); INSERT INTO `sys_job_log` VALUES (18299, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1418毫秒', '0', '', '2022-03-04 16:15:31'); INSERT INTO `sys_job_log` VALUES (18300, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1152毫秒', '0', '', '2022-03-04 16:20:01'); INSERT INTO `sys_job_log` VALUES (18301, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1398毫秒', '0', '', '2022-03-04 16:20:01'); INSERT INTO `sys_job_log` VALUES (18302, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1582毫秒', '0', '', '2022-03-04 16:20:01'); INSERT INTO `sys_job_log` VALUES (18303, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-03-04 16:30:00'); INSERT INTO `sys_job_log` VALUES (18304, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9747毫秒', '0', '', '2022-03-04 16:30:09'); INSERT INTO `sys_job_log` VALUES (18305, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:608毫秒', '0', '', '2022-03-04 16:40:00'); INSERT INTO `sys_job_log` VALUES (18306, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-04 16:40:02'); INSERT INTO `sys_job_log` VALUES (18307, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7006毫秒', '0', '', '2022-03-04 16:40:07'); INSERT INTO `sys_job_log` VALUES (18308, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-03-04 16:50:00'); INSERT INTO `sys_job_log` VALUES (18309, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7239毫秒', '0', '', '2022-03-04 16:50:07'); INSERT INTO `sys_job_log` VALUES (18310, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1246毫秒', '0', '', '2022-03-04 17:00:01'); INSERT INTO `sys_job_log` VALUES (18311, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2014毫秒', '0', '', '2022-03-04 17:00:02'); INSERT INTO `sys_job_log` VALUES (18312, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:16034毫秒', '0', '', '2022-03-04 17:00:16'); INSERT INTO `sys_job_log` VALUES (18313, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:598毫秒', '0', '', '2022-03-04 17:10:00'); INSERT INTO `sys_job_log` VALUES (18314, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3051毫秒', '0', '', '2022-03-04 17:10:03'); INSERT INTO `sys_job_log` VALUES (18315, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:587毫秒', '0', '', '2022-03-04 17:15:30'); INSERT INTO `sys_job_log` VALUES (18316, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1055毫秒', '0', '', '2022-03-04 23:00:01'); INSERT INTO `sys_job_log` VALUES (18317, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1530毫秒', '0', '', '2022-03-04 23:00:01'); INSERT INTO `sys_job_log` VALUES (18318, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4290毫秒', '0', '', '2022-03-04 23:00:04'); INSERT INTO `sys_job_log` VALUES (18319, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:752毫秒', '0', '', '2022-03-04 23:10:00'); INSERT INTO `sys_job_log` VALUES (18320, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3713毫秒', '0', '', '2022-03-04 23:10:03'); INSERT INTO `sys_job_log` VALUES (18321, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1005毫秒', '0', '', '2022-03-04 23:15:31'); INSERT INTO `sys_job_log` VALUES (18322, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:237毫秒', '0', '', '2022-03-04 23:20:00'); INSERT INTO `sys_job_log` VALUES (18323, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-03-04 23:20:00'); INSERT INTO `sys_job_log` VALUES (18324, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1647毫秒', '0', '', '2022-03-04 23:20:01'); INSERT INTO `sys_job_log` VALUES (18325, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:614毫秒', '0', '', '2022-03-04 23:30:00'); INSERT INTO `sys_job_log` VALUES (18326, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2524毫秒', '0', '', '2022-03-04 23:30:02'); INSERT INTO `sys_job_log` VALUES (18327, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:397毫秒', '0', '', '2022-03-04 23:40:00'); INSERT INTO `sys_job_log` VALUES (18328, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:955毫秒', '0', '', '2022-03-04 23:40:00'); INSERT INTO `sys_job_log` VALUES (18329, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3631毫秒', '0', '', '2022-03-04 23:40:03'); INSERT INTO `sys_job_log` VALUES (18330, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:831毫秒', '0', '', '2022-03-05 21:40:00'); INSERT INTO `sys_job_log` VALUES (18331, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1118毫秒', '0', '', '2022-03-05 21:40:01'); INSERT INTO `sys_job_log` VALUES (18332, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3431毫秒', '0', '', '2022-03-05 21:40:03'); INSERT INTO `sys_job_log` VALUES (18333, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:997毫秒', '0', '', '2022-03-05 21:50:01'); INSERT INTO `sys_job_log` VALUES (18334, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5727毫秒', '0', '', '2022-03-05 21:50:05'); INSERT INTO `sys_job_log` VALUES (18335, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:92毫秒', '0', '', '2022-03-05 22:00:00'); INSERT INTO `sys_job_log` VALUES (18336, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:521毫秒', '0', '', '2022-03-05 22:00:00'); INSERT INTO `sys_job_log` VALUES (18337, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:949毫秒', '0', '', '2022-03-05 22:00:00'); INSERT INTO `sys_job_log` VALUES (18338, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4816毫秒', '0', '', '2022-03-05 22:00:04'); INSERT INTO `sys_job_log` VALUES (18339, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:875毫秒', '0', '', '2022-03-05 22:10:00'); INSERT INTO `sys_job_log` VALUES (18340, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1799毫秒', '0', '', '2022-03-05 22:10:01'); INSERT INTO `sys_job_log` VALUES (18341, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1540毫秒', '0', '', '2022-03-05 22:15:31'); INSERT INTO `sys_job_log` VALUES (18342, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1478毫秒', '0', '', '2022-03-05 22:20:01'); INSERT INTO `sys_job_log` VALUES (18343, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2029毫秒', '0', '', '2022-03-05 22:20:02'); INSERT INTO `sys_job_log` VALUES (18344, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4843毫秒', '0', '', '2022-03-05 22:20:04'); INSERT INTO `sys_job_log` VALUES (18345, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:703毫秒', '0', '', '2022-03-05 22:30:00'); INSERT INTO `sys_job_log` VALUES (18346, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7276毫秒', '0', '', '2022-03-05 22:30:07'); INSERT INTO `sys_job_log` VALUES (18347, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:442毫秒', '0', '', '2022-03-05 22:40:00'); INSERT INTO `sys_job_log` VALUES (18348, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:859毫秒', '0', '', '2022-03-05 22:40:00'); INSERT INTO `sys_job_log` VALUES (18349, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10977毫秒', '0', '', '2022-03-05 22:40:10'); INSERT INTO `sys_job_log` VALUES (18350, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-03-05 22:50:00'); INSERT INTO `sys_job_log` VALUES (18351, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5494毫秒', '0', '', '2022-03-05 22:50:05'); INSERT INTO `sys_job_log` VALUES (18352, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-03-05 23:00:00'); INSERT INTO `sys_job_log` VALUES (18353, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2025毫秒', '0', '', '2022-03-05 23:00:02'); INSERT INTO `sys_job_log` VALUES (18354, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5430毫秒', '0', '', '2022-03-05 23:00:05'); INSERT INTO `sys_job_log` VALUES (18355, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:594毫秒', '0', '', '2022-03-05 23:10:00'); INSERT INTO `sys_job_log` VALUES (18356, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3040毫秒', '0', '', '2022-03-05 23:10:03'); INSERT INTO `sys_job_log` VALUES (18357, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:844毫秒', '0', '', '2022-03-05 23:15:30'); INSERT INTO `sys_job_log` VALUES (18358, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:328毫秒', '0', '', '2022-03-05 23:20:00'); INSERT INTO `sys_job_log` VALUES (18359, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:719毫秒', '0', '', '2022-03-05 23:20:00'); INSERT INTO `sys_job_log` VALUES (18360, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4315毫秒', '0', '', '2022-03-05 23:20:04'); INSERT INTO `sys_job_log` VALUES (18361, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-03-05 23:30:00'); INSERT INTO `sys_job_log` VALUES (18362, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3041毫秒', '0', '', '2022-03-05 23:30:03'); INSERT INTO `sys_job_log` VALUES (18363, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:352毫秒', '0', '', '2022-03-05 23:40:00'); INSERT INTO `sys_job_log` VALUES (18364, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-03-05 23:40:00'); INSERT INTO `sys_job_log` VALUES (18365, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3303毫秒', '0', '', '2022-03-05 23:40:03'); INSERT INTO `sys_job_log` VALUES (18366, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:741毫秒', '0', '', '2022-03-05 23:50:00'); INSERT INTO `sys_job_log` VALUES (18367, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2983毫秒', '0', '', '2022-03-05 23:50:02'); INSERT INTO `sys_job_log` VALUES (18368, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:390毫秒', '0', '', '2022-03-06 00:00:00'); INSERT INTO `sys_job_log` VALUES (18369, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:660毫秒', '0', '', '2022-03-06 00:00:00'); INSERT INTO `sys_job_log` VALUES (18370, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3682毫秒', '0', '', '2022-03-06 00:00:03'); INSERT INTO `sys_job_log` VALUES (18371, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:737毫秒', '0', '', '2022-03-06 00:00:10'); INSERT INTO `sys_job_log` VALUES (18372, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1806毫秒', '0', '', '2022-03-06 09:30:01'); INSERT INTO `sys_job_log` VALUES (18373, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1821毫秒', '0', '', '2022-03-06 09:30:01'); INSERT INTO `sys_job_log` VALUES (18374, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:362毫秒', '0', '', '2022-03-06 09:40:00'); INSERT INTO `sys_job_log` VALUES (18375, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-03-06 09:40:00'); INSERT INTO `sys_job_log` VALUES (18376, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3739毫秒', '0', '', '2022-03-06 09:40:03'); INSERT INTO `sys_job_log` VALUES (18377, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:641毫秒', '0', '', '2022-03-06 09:50:00'); INSERT INTO `sys_job_log` VALUES (18378, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3098毫秒', '0', '', '2022-03-06 09:50:03'); INSERT INTO `sys_job_log` VALUES (18379, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:372毫秒', '0', '', '2022-03-06 10:00:00'); INSERT INTO `sys_job_log` VALUES (18380, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-03-06 10:00:00'); INSERT INTO `sys_job_log` VALUES (18381, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7411毫秒', '0', '', '2022-03-06 10:00:07'); INSERT INTO `sys_job_log` VALUES (18382, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:740毫秒', '0', '', '2022-03-06 10:10:00'); INSERT INTO `sys_job_log` VALUES (18383, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8881毫秒', '0', '', '2022-03-06 10:10:08'); INSERT INTO `sys_job_log` VALUES (18384, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1160毫秒', '0', '', '2022-03-06 10:15:31'); INSERT INTO `sys_job_log` VALUES (18385, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:671毫秒', '0', '', '2022-03-06 10:20:00'); INSERT INTO `sys_job_log` VALUES (18386, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-06 10:20:02'); INSERT INTO `sys_job_log` VALUES (18387, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7169毫秒', '0', '', '2022-03-06 10:20:07'); INSERT INTO `sys_job_log` VALUES (18388, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:769毫秒', '0', '', '2022-03-06 10:30:00'); INSERT INTO `sys_job_log` VALUES (18389, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7213毫秒', '0', '', '2022-03-06 10:30:07'); INSERT INTO `sys_job_log` VALUES (18390, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:714毫秒', '0', '', '2022-03-06 11:26:54'); INSERT INTO `sys_job_log` VALUES (18391, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:708毫秒', '0', '', '2022-03-06 11:26:54'); INSERT INTO `sys_job_log` VALUES (18392, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:456毫秒', '0', '', '2022-03-06 11:26:54'); INSERT INTO `sys_job_log` VALUES (18393, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:448毫秒', '0', '', '2022-03-06 11:26:55'); INSERT INTO `sys_job_log` VALUES (18394, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-06 11:26:55'); INSERT INTO `sys_job_log` VALUES (18395, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:467毫秒', '0', '', '2022-03-06 11:26:55'); INSERT INTO `sys_job_log` VALUES (18396, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:436毫秒', '0', '', '2022-03-06 11:26:56'); INSERT INTO `sys_job_log` VALUES (18397, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2847毫秒', '0', '', '2022-03-06 11:26:56'); INSERT INTO `sys_job_log` VALUES (18398, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-06 11:26:57'); INSERT INTO `sys_job_log` VALUES (18399, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2875毫秒', '0', '', '2022-03-06 11:26:59'); INSERT INTO `sys_job_log` VALUES (18400, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-06 11:26:59'); INSERT INTO `sys_job_log` VALUES (18401, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4225毫秒', '0', '', '2022-03-06 11:27:03'); INSERT INTO `sys_job_log` VALUES (18402, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3551毫秒', '0', '', '2022-03-06 11:27:07'); INSERT INTO `sys_job_log` VALUES (18403, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3399毫秒', '0', '', '2022-03-06 11:27:10'); INSERT INTO `sys_job_log` VALUES (18404, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:519毫秒', '0', '', '2022-03-06 11:30:00'); INSERT INTO `sys_job_log` VALUES (18405, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5502毫秒', '0', '', '2022-03-06 11:30:05'); INSERT INTO `sys_job_log` VALUES (18406, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:296毫秒', '0', '', '2022-03-06 11:40:00'); INSERT INTO `sys_job_log` VALUES (18407, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:516毫秒', '0', '', '2022-03-06 11:40:00'); INSERT INTO `sys_job_log` VALUES (18408, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1546毫秒', '0', '', '2022-03-06 11:40:01'); INSERT INTO `sys_job_log` VALUES (18409, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-03-06 11:50:00'); INSERT INTO `sys_job_log` VALUES (18410, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3192毫秒', '0', '', '2022-03-06 11:50:03'); INSERT INTO `sys_job_log` VALUES (18411, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:969毫秒', '0', '', '2022-03-06 12:00:00'); INSERT INTO `sys_job_log` VALUES (18412, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2019毫秒', '0', '', '2022-03-06 12:00:02'); INSERT INTO `sys_job_log` VALUES (18413, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3128毫秒', '0', '', '2022-03-06 12:00:03'); INSERT INTO `sys_job_log` VALUES (18414, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:438034毫秒', '0', '', '2022-03-06 12:07:18'); INSERT INTO `sys_job_log` VALUES (18415, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-03-06 12:10:00'); INSERT INTO `sys_job_log` VALUES (18416, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10895毫秒', '0', '', '2022-03-06 12:10:10'); INSERT INTO `sys_job_log` VALUES (18417, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:523毫秒', '0', '', '2022-03-06 12:15:30'); INSERT INTO `sys_job_log` VALUES (18418, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:358毫秒', '0', '', '2022-03-06 12:20:00'); INSERT INTO `sys_job_log` VALUES (18419, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:629毫秒', '0', '', '2022-03-06 12:20:00'); INSERT INTO `sys_job_log` VALUES (18420, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1563毫秒', '0', '', '2022-03-06 12:20:01'); INSERT INTO `sys_job_log` VALUES (18421, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:561毫秒', '0', '', '2022-03-06 12:30:00'); INSERT INTO `sys_job_log` VALUES (18422, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7010毫秒', '0', '', '2022-03-06 12:30:07'); INSERT INTO `sys_job_log` VALUES (18423, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:639毫秒', '0', '', '2022-03-06 12:40:00'); INSERT INTO `sys_job_log` VALUES (18424, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-06 12:40:02'); INSERT INTO `sys_job_log` VALUES (18425, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5422毫秒', '0', '', '2022-03-06 12:40:05'); INSERT INTO `sys_job_log` VALUES (18426, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-03-06 12:50:00'); INSERT INTO `sys_job_log` VALUES (18427, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3504毫秒', '0', '', '2022-03-06 12:50:03'); INSERT INTO `sys_job_log` VALUES (18428, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:607毫秒', '0', '', '2022-03-06 13:00:00'); INSERT INTO `sys_job_log` VALUES (18429, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:864毫秒', '0', '', '2022-03-06 13:00:00'); INSERT INTO `sys_job_log` VALUES (18430, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3649毫秒', '0', '', '2022-03-06 13:00:03'); INSERT INTO `sys_job_log` VALUES (18431, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:765毫秒', '0', '', '2022-03-06 13:10:00'); INSERT INTO `sys_job_log` VALUES (18432, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4927毫秒', '0', '', '2022-03-06 13:10:04'); INSERT INTO `sys_job_log` VALUES (18433, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:530毫秒', '0', '', '2022-03-06 13:15:30'); INSERT INTO `sys_job_log` VALUES (18434, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:994毫秒', '0', '', '2022-03-06 13:20:01'); INSERT INTO `sys_job_log` VALUES (18435, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-06 13:20:02'); INSERT INTO `sys_job_log` VALUES (18436, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7202毫秒', '0', '', '2022-03-06 13:20:07'); INSERT INTO `sys_job_log` VALUES (18437, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-03-06 13:30:00'); INSERT INTO `sys_job_log` VALUES (18438, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4395毫秒', '0', '', '2022-03-06 13:30:04'); INSERT INTO `sys_job_log` VALUES (18439, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:386毫秒', '0', '', '2022-03-06 13:40:00'); INSERT INTO `sys_job_log` VALUES (18440, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:838毫秒', '0', '', '2022-03-06 13:40:00'); INSERT INTO `sys_job_log` VALUES (18441, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4191毫秒', '0', '', '2022-03-06 13:40:04'); INSERT INTO `sys_job_log` VALUES (18442, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10029毫秒', '0', '', '2022-03-06 13:49:57'); INSERT INTO `sys_job_log` VALUES (18443, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:472毫秒', '0', '', '2022-03-06 13:50:00'); INSERT INTO `sys_job_log` VALUES (18444, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4442毫秒', '0', '', '2022-03-06 13:50:04'); INSERT INTO `sys_job_log` VALUES (18445, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:538毫秒', '0', '', '2022-03-06 14:00:00'); INSERT INTO `sys_job_log` VALUES (18446, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-06 14:00:02'); INSERT INTO `sys_job_log` VALUES (18447, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8255毫秒', '0', '', '2022-03-06 14:00:08'); INSERT INTO `sys_job_log` VALUES (18448, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:499毫秒', '0', '', '2022-03-06 14:10:00'); INSERT INTO `sys_job_log` VALUES (18449, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3296毫秒', '0', '', '2022-03-06 14:10:03'); INSERT INTO `sys_job_log` VALUES (18450, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:521毫秒', '0', '', '2022-03-06 14:15:30'); INSERT INTO `sys_job_log` VALUES (18451, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:375毫秒', '0', '', '2022-03-06 14:20:00'); INSERT INTO `sys_job_log` VALUES (18452, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:738毫秒', '0', '', '2022-03-06 14:20:00'); INSERT INTO `sys_job_log` VALUES (18453, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5179毫秒', '0', '', '2022-03-06 14:20:05'); INSERT INTO `sys_job_log` VALUES (18454, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:856毫秒', '0', '', '2022-03-06 14:30:00'); INSERT INTO `sys_job_log` VALUES (18455, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5401毫秒', '0', '', '2022-03-06 14:30:05'); INSERT INTO `sys_job_log` VALUES (18456, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:706毫秒', '0', '', '2022-03-06 14:40:00'); INSERT INTO `sys_job_log` VALUES (18457, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-06 14:40:02'); INSERT INTO `sys_job_log` VALUES (18458, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11341毫秒', '0', '', '2022-03-06 14:40:11'); INSERT INTO `sys_job_log` VALUES (18459, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-03-06 14:50:00'); INSERT INTO `sys_job_log` VALUES (18460, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4455毫秒', '0', '', '2022-03-06 14:50:04'); INSERT INTO `sys_job_log` VALUES (18461, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:489毫秒', '0', '', '2022-03-06 15:00:00'); INSERT INTO `sys_job_log` VALUES (18462, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:723毫秒', '0', '', '2022-03-06 15:00:00'); INSERT INTO `sys_job_log` VALUES (18463, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6369毫秒', '0', '', '2022-03-06 15:00:06'); INSERT INTO `sys_job_log` VALUES (18464, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:438122毫秒', '0', '', '2022-03-06 15:07:18'); INSERT INTO `sys_job_log` VALUES (18465, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:893毫秒', '0', '', '2022-03-06 15:10:00'); INSERT INTO `sys_job_log` VALUES (18466, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1605毫秒', '0', '', '2022-03-06 15:10:01'); INSERT INTO `sys_job_log` VALUES (18467, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:52044毫秒', '0', '', '2022-03-06 15:10:52'); INSERT INTO `sys_job_log` VALUES (18468, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:487毫秒', '0', '', '2022-03-06 15:15:30'); INSERT INTO `sys_job_log` VALUES (18469, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:757毫秒', '0', '', '2022-03-06 15:20:00'); INSERT INTO `sys_job_log` VALUES (18470, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2019毫秒', '0', '', '2022-03-06 15:20:02'); INSERT INTO `sys_job_log` VALUES (18471, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5482毫秒', '0', '', '2022-03-06 15:20:05'); INSERT INTO `sys_job_log` VALUES (18472, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:590毫秒', '0', '', '2022-03-06 15:30:00'); INSERT INTO `sys_job_log` VALUES (18473, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4840毫秒', '0', '', '2022-03-06 15:30:04'); INSERT INTO `sys_job_log` VALUES (18474, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:558毫秒', '0', '', '2022-03-06 15:51:51'); INSERT INTO `sys_job_log` VALUES (18475, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:465毫秒', '0', '', '2022-03-06 15:51:51'); INSERT INTO `sys_job_log` VALUES (18476, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1664毫秒', '0', '', '2022-03-06 15:51:52'); INSERT INTO `sys_job_log` VALUES (18477, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2008毫秒', '0', '', '2022-03-06 15:51:52'); INSERT INTO `sys_job_log` VALUES (18478, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5139毫秒', '0', '', '2022-03-06 15:51:57'); INSERT INTO `sys_job_log` VALUES (18479, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2030毫秒', '0', '', '2022-03-06 16:00:02'); INSERT INTO `sys_job_log` VALUES (18480, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2023毫秒', '0', '', '2022-03-06 16:00:02'); INSERT INTO `sys_job_log` VALUES (18481, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:16029毫秒', '0', '', '2022-03-06 16:00:16'); INSERT INTO `sys_job_log` VALUES (18482, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-03-06 16:10:00'); INSERT INTO `sys_job_log` VALUES (18483, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5284毫秒', '0', '', '2022-03-06 16:10:05'); INSERT INTO `sys_job_log` VALUES (18484, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:535毫秒', '0', '', '2022-03-06 16:15:30'); INSERT INTO `sys_job_log` VALUES (18485, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:302毫秒', '0', '', '2022-03-06 16:20:00'); INSERT INTO `sys_job_log` VALUES (18486, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:643毫秒', '0', '', '2022-03-06 16:20:00'); INSERT INTO `sys_job_log` VALUES (18487, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7293毫秒', '0', '', '2022-03-06 16:20:07'); INSERT INTO `sys_job_log` VALUES (18488, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2031毫秒', '0', '', '2022-03-06 16:30:02'); INSERT INTO `sys_job_log` VALUES (18489, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6998毫秒', '0', '', '2022-03-06 16:30:07'); INSERT INTO `sys_job_log` VALUES (18490, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:826毫秒', '0', '', '2022-03-06 16:40:00'); INSERT INTO `sys_job_log` VALUES (18491, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-03-06 16:40:02'); INSERT INTO `sys_job_log` VALUES (18492, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3457毫秒', '0', '', '2022-03-06 16:40:03'); INSERT INTO `sys_job_log` VALUES (18493, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-03-06 16:50:00'); INSERT INTO `sys_job_log` VALUES (18494, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10872毫秒', '0', '', '2022-03-06 16:50:10'); INSERT INTO `sys_job_log` VALUES (18495, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:373毫秒', '0', '', '2022-03-06 17:00:00'); INSERT INTO `sys_job_log` VALUES (18496, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2015毫秒', '0', '', '2022-03-06 17:00:02'); INSERT INTO `sys_job_log` VALUES (18497, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:13551毫秒', '0', '', '2022-03-06 17:00:13'); INSERT INTO `sys_job_log` VALUES (18498, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:826毫秒', '0', '', '2022-03-06 17:10:00'); INSERT INTO `sys_job_log` VALUES (18499, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3674毫秒', '0', '', '2022-03-06 17:10:03'); INSERT INTO `sys_job_log` VALUES (18500, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:587毫秒', '0', '', '2022-03-06 17:15:30'); INSERT INTO `sys_job_log` VALUES (18501, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:588毫秒', '0', '', '2022-03-06 17:20:00'); INSERT INTO `sys_job_log` VALUES (18502, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-03-06 17:20:02'); INSERT INTO `sys_job_log` VALUES (18503, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5146毫秒', '0', '', '2022-03-06 17:20:05'); INSERT INTO `sys_job_log` VALUES (18504, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:976毫秒', '0', '', '2022-03-06 17:30:01'); INSERT INTO `sys_job_log` VALUES (18505, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10830毫秒', '0', '', '2022-03-06 17:30:10'); INSERT INTO `sys_job_log` VALUES (18506, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:314毫秒', '0', '', '2022-03-06 17:40:00'); INSERT INTO `sys_job_log` VALUES (18507, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:577毫秒', '0', '', '2022-03-06 17:40:00'); INSERT INTO `sys_job_log` VALUES (18508, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5992毫秒', '0', '', '2022-03-06 17:40:06'); INSERT INTO `sys_job_log` VALUES (18509, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:598毫秒', '0', '', '2022-03-06 17:50:00'); INSERT INTO `sys_job_log` VALUES (18510, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8078毫秒', '0', '', '2022-03-06 17:50:08'); INSERT INTO `sys_job_log` VALUES (18511, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-03-06 18:00:00'); INSERT INTO `sys_job_log` VALUES (18512, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-06 18:00:02'); INSERT INTO `sys_job_log` VALUES (18513, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5015毫秒', '0', '', '2022-03-06 18:00:05'); INSERT INTO `sys_job_log` VALUES (18514, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:431754毫秒', '0', '', '2022-03-06 18:07:11'); INSERT INTO `sys_job_log` VALUES (18515, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:896毫秒', '0', '', '2022-03-06 18:10:00'); INSERT INTO `sys_job_log` VALUES (18516, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6293毫秒', '0', '', '2022-03-06 18:10:06'); INSERT INTO `sys_job_log` VALUES (18517, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:471毫秒', '0', '', '2022-03-06 18:15:30'); INSERT INTO `sys_job_log` VALUES (18518, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:378毫秒', '0', '', '2022-03-06 18:20:00'); INSERT INTO `sys_job_log` VALUES (18519, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:728毫秒', '0', '', '2022-03-06 18:20:00'); INSERT INTO `sys_job_log` VALUES (18520, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10474毫秒', '0', '', '2022-03-06 18:20:10'); INSERT INTO `sys_job_log` VALUES (18521, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1045毫秒', '0', '', '2022-03-06 18:30:01'); INSERT INTO `sys_job_log` VALUES (18522, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9589毫秒', '0', '', '2022-03-06 18:30:09'); INSERT INTO `sys_job_log` VALUES (18523, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-03-06 18:40:00'); INSERT INTO `sys_job_log` VALUES (18524, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-06 18:40:02'); INSERT INTO `sys_job_log` VALUES (18525, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7323毫秒', '0', '', '2022-03-06 18:40:07'); INSERT INTO `sys_job_log` VALUES (18526, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:893毫秒', '0', '', '2022-03-06 18:50:00'); INSERT INTO `sys_job_log` VALUES (18527, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9960毫秒', '0', '', '2022-03-06 18:50:09'); INSERT INTO `sys_job_log` VALUES (18528, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:429毫秒', '0', '', '2022-03-06 19:00:00'); INSERT INTO `sys_job_log` VALUES (18529, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:775毫秒', '0', '', '2022-03-06 19:00:00'); INSERT INTO `sys_job_log` VALUES (18530, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8839毫秒', '0', '', '2022-03-06 19:00:08'); INSERT INTO `sys_job_log` VALUES (18531, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:580毫秒', '0', '', '2022-03-06 19:10:00'); INSERT INTO `sys_job_log` VALUES (18532, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2684毫秒', '0', '', '2022-03-06 19:10:02'); INSERT INTO `sys_job_log` VALUES (18533, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:511毫秒', '0', '', '2022-03-06 19:15:30'); INSERT INTO `sys_job_log` VALUES (18534, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:741毫秒', '0', '', '2022-03-06 19:20:00'); INSERT INTO `sys_job_log` VALUES (18535, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2036毫秒', '0', '', '2022-03-06 19:20:02'); INSERT INTO `sys_job_log` VALUES (18536, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3189毫秒', '0', '', '2022-03-06 19:20:03'); INSERT INTO `sys_job_log` VALUES (18537, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:709毫秒', '0', '', '2022-03-06 19:30:00'); INSERT INTO `sys_job_log` VALUES (18538, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4228毫秒', '0', '', '2022-03-06 19:30:04'); INSERT INTO `sys_job_log` VALUES (18539, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:374毫秒', '0', '', '2022-03-06 19:40:00'); INSERT INTO `sys_job_log` VALUES (18540, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:706毫秒', '0', '', '2022-03-06 19:40:00'); INSERT INTO `sys_job_log` VALUES (18541, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3049毫秒', '0', '', '2022-03-06 19:40:03'); INSERT INTO `sys_job_log` VALUES (18542, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1038毫秒', '0', '', '2022-03-06 19:50:01'); INSERT INTO `sys_job_log` VALUES (18543, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4495毫秒', '0', '', '2022-03-06 19:50:04'); INSERT INTO `sys_job_log` VALUES (18544, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:623毫秒', '0', '', '2022-03-06 20:00:00'); INSERT INTO `sys_job_log` VALUES (18545, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2030毫秒', '0', '', '2022-03-06 20:00:02'); INSERT INTO `sys_job_log` VALUES (18546, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5433毫秒', '0', '', '2022-03-06 20:00:05'); INSERT INTO `sys_job_log` VALUES (18547, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1519毫秒', '0', '', '2022-03-06 20:10:01'); INSERT INTO `sys_job_log` VALUES (18548, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6940毫秒', '0', '', '2022-03-06 20:10:06'); INSERT INTO `sys_job_log` VALUES (18549, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:541毫秒', '0', '', '2022-03-06 20:15:30'); INSERT INTO `sys_job_log` VALUES (18550, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:477毫秒', '0', '', '2022-03-06 20:20:00'); INSERT INTO `sys_job_log` VALUES (18551, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:856毫秒', '0', '', '2022-03-06 20:20:00'); INSERT INTO `sys_job_log` VALUES (18552, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4050毫秒', '0', '', '2022-03-06 20:20:04'); INSERT INTO `sys_job_log` VALUES (18553, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:177378毫秒', '0', '', '2022-03-06 20:22:57'); INSERT INTO `sys_job_log` VALUES (18554, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:803毫秒', '0', '', '2022-03-06 20:30:00'); INSERT INTO `sys_job_log` VALUES (18555, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3889毫秒', '0', '', '2022-03-06 20:30:03'); INSERT INTO `sys_job_log` VALUES (18556, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:743毫秒', '0', '', '2022-03-06 20:40:00'); INSERT INTO `sys_job_log` VALUES (18557, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2032毫秒', '0', '', '2022-03-06 20:40:02'); INSERT INTO `sys_job_log` VALUES (18558, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3688毫秒', '0', '', '2022-03-06 20:40:03'); INSERT INTO `sys_job_log` VALUES (18559, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:706毫秒', '0', '', '2022-03-06 20:50:00'); INSERT INTO `sys_job_log` VALUES (18560, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5812毫秒', '0', '', '2022-03-06 20:50:05'); INSERT INTO `sys_job_log` VALUES (18561, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:395毫秒', '0', '', '2022-03-06 21:00:00'); INSERT INTO `sys_job_log` VALUES (18562, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:912毫秒', '0', '', '2022-03-06 21:00:00'); INSERT INTO `sys_job_log` VALUES (18563, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3242毫秒', '0', '', '2022-03-06 21:00:03'); INSERT INTO `sys_job_log` VALUES (18564, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:389735毫秒', '0', '', '2022-03-06 21:06:29'); INSERT INTO `sys_job_log` VALUES (18565, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:608毫秒', '0', '', '2022-03-06 21:10:00'); INSERT INTO `sys_job_log` VALUES (18566, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:969毫秒', '0', '', '2022-03-06 21:10:01'); INSERT INTO `sys_job_log` VALUES (18567, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4124毫秒', '0', '', '2022-03-06 21:10:04'); INSERT INTO `sys_job_log` VALUES (18568, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:569毫秒', '0', '', '2022-03-06 21:15:30'); INSERT INTO `sys_job_log` VALUES (18569, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:741毫秒', '0', '', '2022-03-06 21:20:00'); INSERT INTO `sys_job_log` VALUES (18570, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2032毫秒', '0', '', '2022-03-06 21:20:02'); INSERT INTO `sys_job_log` VALUES (18571, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4463毫秒', '0', '', '2022-03-06 21:20:04'); INSERT INTO `sys_job_log` VALUES (18572, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:716毫秒', '0', '', '2022-03-06 21:30:00'); INSERT INTO `sys_job_log` VALUES (18573, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2683毫秒', '0', '', '2022-03-06 21:30:02'); INSERT INTO `sys_job_log` VALUES (18574, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:420毫秒', '0', '', '2022-03-06 21:40:00'); INSERT INTO `sys_job_log` VALUES (18575, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:771毫秒', '0', '', '2022-03-06 21:40:00'); INSERT INTO `sys_job_log` VALUES (18576, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4153毫秒', '0', '', '2022-03-06 21:40:04'); INSERT INTO `sys_job_log` VALUES (18577, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1029毫秒', '0', '', '2022-03-06 21:50:01'); INSERT INTO `sys_job_log` VALUES (18578, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3396毫秒', '0', '', '2022-03-06 21:50:03'); INSERT INTO `sys_job_log` VALUES (18579, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:76毫秒', '0', '', '2022-03-06 22:00:00'); INSERT INTO `sys_job_log` VALUES (18580, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1373毫秒', '0', '', '2022-03-06 22:00:01'); INSERT INTO `sys_job_log` VALUES (18581, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2024毫秒', '0', '', '2022-03-06 22:00:02'); INSERT INTO `sys_job_log` VALUES (18582, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3968毫秒', '0', '', '2022-03-06 22:00:03'); INSERT INTO `sys_job_log` VALUES (18583, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:675毫秒', '0', '', '2022-03-06 22:10:00'); INSERT INTO `sys_job_log` VALUES (18584, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2515毫秒', '0', '', '2022-03-06 22:10:02'); INSERT INTO `sys_job_log` VALUES (18585, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:531毫秒', '0', '', '2022-03-06 22:15:30'); INSERT INTO `sys_job_log` VALUES (18586, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:449毫秒', '0', '', '2022-03-06 22:20:00'); INSERT INTO `sys_job_log` VALUES (18587, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:738毫秒', '0', '', '2022-03-06 22:20:00'); INSERT INTO `sys_job_log` VALUES (18588, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3855毫秒', '0', '', '2022-03-06 22:20:03'); INSERT INTO `sys_job_log` VALUES (18589, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:678毫秒', '0', '', '2022-03-06 22:30:00'); INSERT INTO `sys_job_log` VALUES (18590, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2396毫秒', '0', '', '2022-03-06 22:30:02'); INSERT INTO `sys_job_log` VALUES (18591, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:900毫秒', '0', '', '2022-03-06 22:40:00'); INSERT INTO `sys_job_log` VALUES (18592, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2023毫秒', '0', '', '2022-03-06 22:40:02'); INSERT INTO `sys_job_log` VALUES (18593, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3156毫秒', '0', '', '2022-03-06 22:40:03'); INSERT INTO `sys_job_log` VALUES (18594, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:741毫秒', '0', '', '2022-03-06 22:50:00'); INSERT INTO `sys_job_log` VALUES (18595, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2465毫秒', '0', '', '2022-03-06 22:50:02'); INSERT INTO `sys_job_log` VALUES (18596, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:170毫秒', '0', '', '2022-03-06 23:23:48'); INSERT INTO `sys_job_log` VALUES (18597, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:398毫秒', '0', '', '2022-03-06 23:23:49'); INSERT INTO `sys_job_log` VALUES (18598, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:667毫秒', '0', '', '2022-03-06 23:23:49'); INSERT INTO `sys_job_log` VALUES (18599, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:529毫秒', '0', '', '2022-03-06 23:23:49'); INSERT INTO `sys_job_log` VALUES (18600, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1518毫秒', '0', '', '2022-03-06 23:23:50'); INSERT INTO `sys_job_log` VALUES (18601, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:305毫秒', '0', '', '2022-03-06 23:23:50'); INSERT INTO `sys_job_log` VALUES (18602, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2425毫秒', '0', '', '2022-03-06 23:23:50'); INSERT INTO `sys_job_log` VALUES (18603, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1352毫秒', '0', '', '2022-03-06 23:23:52'); INSERT INTO `sys_job_log` VALUES (18604, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1282毫秒', '0', '', '2022-03-06 23:23:53'); INSERT INTO `sys_job_log` VALUES (18605, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:727毫秒', '0', '', '2022-03-06 23:30:00'); INSERT INTO `sys_job_log` VALUES (18606, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4859毫秒', '0', '', '2022-03-06 23:30:04'); INSERT INTO `sys_job_log` VALUES (18607, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:252毫秒', '0', '', '2022-03-06 23:40:00'); INSERT INTO `sys_job_log` VALUES (18608, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:583毫秒', '0', '', '2022-03-06 23:40:00'); INSERT INTO `sys_job_log` VALUES (18609, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2965毫秒', '0', '', '2022-03-06 23:40:02'); INSERT INTO `sys_job_log` VALUES (18610, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:935毫秒', '0', '', '2022-03-06 23:50:00'); INSERT INTO `sys_job_log` VALUES (18611, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2904毫秒', '0', '', '2022-03-06 23:50:02'); INSERT INTO `sys_job_log` VALUES (18612, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:405毫秒', '0', '', '2022-03-07 00:00:00'); INSERT INTO `sys_job_log` VALUES (18613, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-03-07 00:00:00'); INSERT INTO `sys_job_log` VALUES (18614, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3467毫秒', '0', '', '2022-03-07 00:00:03'); INSERT INTO `sys_job_log` VALUES (18615, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:419毫秒', '0', '', '2022-03-07 00:00:10'); INSERT INTO `sys_job_log` VALUES (18616, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:379467毫秒', '0', '', '2022-03-07 00:06:19'); INSERT INTO `sys_job_log` VALUES (18617, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:462毫秒', '0', '', '2022-03-07 00:10:00'); INSERT INTO `sys_job_log` VALUES (18618, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1615毫秒', '0', '', '2022-03-07 00:10:01'); INSERT INTO `sys_job_log` VALUES (18619, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:522毫秒', '0', '', '2022-03-07 00:15:30'); INSERT INTO `sys_job_log` VALUES (18620, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-03-07 00:20:00'); INSERT INTO `sys_job_log` VALUES (18621, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-07 00:20:02'); INSERT INTO `sys_job_log` VALUES (18622, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8980毫秒', '0', '', '2022-03-07 00:20:08'); INSERT INTO `sys_job_log` VALUES (18623, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:558毫秒', '0', '', '2022-03-07 00:30:00'); INSERT INTO `sys_job_log` VALUES (18624, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4784毫秒', '0', '', '2022-03-07 00:30:04'); INSERT INTO `sys_job_log` VALUES (18625, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:384毫秒', '0', '', '2022-03-07 00:40:00'); INSERT INTO `sys_job_log` VALUES (18626, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-03-07 00:40:00'); INSERT INTO `sys_job_log` VALUES (18627, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5549毫秒', '0', '', '2022-03-07 00:40:05'); INSERT INTO `sys_job_log` VALUES (18628, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:1673毫秒', '0', '', '2022-03-07 00:46:15'); INSERT INTO `sys_job_log` VALUES (18629, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2351毫秒', '0', '', '2022-03-07 08:40:02'); INSERT INTO `sys_job_log` VALUES (18630, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2362毫秒', '0', '', '2022-03-07 08:40:02'); INSERT INTO `sys_job_log` VALUES (18631, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8913毫秒', '0', '', '2022-03-07 08:40:08'); INSERT INTO `sys_job_log` VALUES (18632, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1359毫秒', '0', '', '2022-03-07 08:50:01'); INSERT INTO `sys_job_log` VALUES (18633, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10117毫秒', '0', '', '2022-03-07 08:50:10'); INSERT INTO `sys_job_log` VALUES (18634, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-03-07 09:00:00'); INSERT INTO `sys_job_log` VALUES (18635, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1194毫秒', '0', '', '2022-03-07 09:00:01'); INSERT INTO `sys_job_log` VALUES (18636, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8670毫秒', '0', '', '2022-03-07 09:00:08'); INSERT INTO `sys_job_log` VALUES (18637, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:749毫秒', '0', '', '2022-03-07 09:10:00'); INSERT INTO `sys_job_log` VALUES (18638, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5283毫秒', '0', '', '2022-03-07 09:10:05'); INSERT INTO `sys_job_log` VALUES (18639, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:43152毫秒', '0', '', '2022-03-07 09:10:43'); INSERT INTO `sys_job_log` VALUES (18640, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:874199毫秒', '0', '', '2022-03-07 09:14:34'); INSERT INTO `sys_job_log` VALUES (18641, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:992毫秒', '0', '', '2022-03-07 09:15:31'); INSERT INTO `sys_job_log` VALUES (18642, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:540毫秒', '0', '', '2022-03-07 09:20:00'); INSERT INTO `sys_job_log` VALUES (18643, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-03-07 09:20:02'); INSERT INTO `sys_job_log` VALUES (18644, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5893毫秒', '0', '', '2022-03-07 09:20:05'); INSERT INTO `sys_job_log` VALUES (18645, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:514毫秒', '0', '', '2022-03-07 09:30:00'); INSERT INTO `sys_job_log` VALUES (18646, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5986毫秒', '0', '', '2022-03-07 09:30:05'); INSERT INTO `sys_job_log` VALUES (18647, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1241毫秒', '0', '', '2022-03-07 09:40:01'); INSERT INTO `sys_job_log` VALUES (18648, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1532毫秒', '0', '', '2022-03-07 09:40:01'); INSERT INTO `sys_job_log` VALUES (18649, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4005毫秒', '0', '', '2022-03-07 09:40:04'); INSERT INTO `sys_job_log` VALUES (18650, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1534毫秒', '0', '', '2022-03-07 09:50:01'); INSERT INTO `sys_job_log` VALUES (18651, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4267毫秒', '0', '', '2022-03-07 09:50:04'); INSERT INTO `sys_job_log` VALUES (18652, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-03-07 10:00:00'); INSERT INTO `sys_job_log` VALUES (18653, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-07 10:00:02'); INSERT INTO `sys_job_log` VALUES (18654, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9531毫秒', '0', '', '2022-03-07 10:00:09'); INSERT INTO `sys_job_log` VALUES (18655, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:591毫秒', '0', '', '2022-03-07 10:10:00'); INSERT INTO `sys_job_log` VALUES (18656, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7101毫秒', '0', '', '2022-03-07 10:10:07'); INSERT INTO `sys_job_log` VALUES (18657, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1971毫秒', '0', '', '2022-03-07 10:15:31'); INSERT INTO `sys_job_log` VALUES (18658, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-03-07 10:20:00'); INSERT INTO `sys_job_log` VALUES (18659, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1177毫秒', '0', '', '2022-03-07 10:20:01'); INSERT INTO `sys_job_log` VALUES (18660, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6177毫秒', '0', '', '2022-03-07 10:20:06'); INSERT INTO `sys_job_log` VALUES (18661, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1541毫秒', '0', '', '2022-03-07 10:30:01'); INSERT INTO `sys_job_log` VALUES (18662, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2525毫秒', '0', '', '2022-03-07 10:30:02'); INSERT INTO `sys_job_log` VALUES (18663, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1882毫秒', '0', '', '2022-03-07 10:40:01'); INSERT INTO `sys_job_log` VALUES (18664, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-07 10:40:02'); INSERT INTO `sys_job_log` VALUES (18665, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5316毫秒', '0', '', '2022-03-07 10:40:05'); INSERT INTO `sys_job_log` VALUES (18666, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:573毫秒', '0', '', '2022-03-07 10:50:00'); INSERT INTO `sys_job_log` VALUES (18667, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5241毫秒', '0', '', '2022-03-07 10:50:05'); INSERT INTO `sys_job_log` VALUES (18668, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:698毫秒', '0', '', '2022-03-07 11:00:00'); INSERT INTO `sys_job_log` VALUES (18669, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1210毫秒', '0', '', '2022-03-07 11:00:01'); INSERT INTO `sys_job_log` VALUES (18670, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4558毫秒', '0', '', '2022-03-07 11:00:04'); INSERT INTO `sys_job_log` VALUES (18671, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-03-07 11:10:00'); INSERT INTO `sys_job_log` VALUES (18672, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5903毫秒', '0', '', '2022-03-07 11:10:05'); INSERT INTO `sys_job_log` VALUES (18673, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:514毫秒', '0', '', '2022-03-07 11:15:30'); INSERT INTO `sys_job_log` VALUES (18674, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:523毫秒', '0', '', '2022-03-07 11:20:00'); INSERT INTO `sys_job_log` VALUES (18675, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-07 11:20:02'); INSERT INTO `sys_job_log` VALUES (18676, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6074毫秒', '0', '', '2022-03-07 11:20:06'); INSERT INTO `sys_job_log` VALUES (18677, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:477毫秒', '0', '', '2022-03-07 11:30:00'); INSERT INTO `sys_job_log` VALUES (18678, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4803毫秒', '0', '', '2022-03-07 11:30:04'); INSERT INTO `sys_job_log` VALUES (18679, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:498毫秒', '0', '', '2022-03-07 11:40:00'); INSERT INTO `sys_job_log` VALUES (18680, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-07 11:40:02'); INSERT INTO `sys_job_log` VALUES (18681, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4347毫秒', '0', '', '2022-03-07 11:40:04'); INSERT INTO `sys_job_log` VALUES (18682, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:682毫秒', '0', '', '2022-03-07 11:50:00'); INSERT INTO `sys_job_log` VALUES (18683, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5070毫秒', '0', '', '2022-03-07 11:50:05'); INSERT INTO `sys_job_log` VALUES (18684, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:479毫秒', '0', '', '2022-03-07 12:00:00'); INSERT INTO `sys_job_log` VALUES (18685, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1157毫秒', '0', '', '2022-03-07 12:00:01'); INSERT INTO `sys_job_log` VALUES (18686, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4239毫秒', '0', '', '2022-03-07 12:00:04'); INSERT INTO `sys_job_log` VALUES (18687, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:486毫秒', '0', '', '2022-03-07 12:10:00'); INSERT INTO `sys_job_log` VALUES (18688, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6935毫秒', '0', '', '2022-03-07 12:10:06'); INSERT INTO `sys_job_log` VALUES (18689, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:871480毫秒', '0', '', '2022-03-07 12:14:31'); INSERT INTO `sys_job_log` VALUES (18690, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1553毫秒', '0', '', '2022-03-07 12:15:31'); INSERT INTO `sys_job_log` VALUES (18691, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-03-07 12:20:00'); INSERT INTO `sys_job_log` VALUES (18692, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1219毫秒', '0', '', '2022-03-07 12:20:01'); INSERT INTO `sys_job_log` VALUES (18693, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:13596毫秒', '0', '', '2022-03-07 12:20:13'); INSERT INTO `sys_job_log` VALUES (18694, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1529毫秒', '0', '', '2022-03-07 12:30:01'); INSERT INTO `sys_job_log` VALUES (18695, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8235毫秒', '0', '', '2022-03-07 12:30:08'); INSERT INTO `sys_job_log` VALUES (18696, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2042毫秒', '0', '', '2022-03-07 12:40:02'); INSERT INTO `sys_job_log` VALUES (18697, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2026毫秒', '0', '', '2022-03-07 12:40:02'); INSERT INTO `sys_job_log` VALUES (18698, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8709毫秒', '0', '', '2022-03-07 12:40:08'); INSERT INTO `sys_job_log` VALUES (18699, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-03-07 12:50:00'); INSERT INTO `sys_job_log` VALUES (18700, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6908毫秒', '0', '', '2022-03-07 12:50:06'); INSERT INTO `sys_job_log` VALUES (18701, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:235毫秒', '0', '', '2022-03-07 13:00:00'); INSERT INTO `sys_job_log` VALUES (18702, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:641毫秒', '0', '', '2022-03-07 13:00:00'); INSERT INTO `sys_job_log` VALUES (18703, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7847毫秒', '0', '', '2022-03-07 13:00:07'); INSERT INTO `sys_job_log` VALUES (18704, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:672毫秒', '0', '', '2022-03-07 13:10:00'); INSERT INTO `sys_job_log` VALUES (18705, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9338毫秒', '0', '', '2022-03-07 13:10:09'); INSERT INTO `sys_job_log` VALUES (18706, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:408毫秒', '0', '', '2022-03-07 13:30:18'); INSERT INTO `sys_job_log` VALUES (18707, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-03-07 13:30:18'); INSERT INTO `sys_job_log` VALUES (18708, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:690毫秒', '0', '', '2022-03-07 13:30:19'); INSERT INTO `sys_job_log` VALUES (18709, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1647毫秒', '0', '', '2022-03-07 13:30:19'); INSERT INTO `sys_job_log` VALUES (18710, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2024毫秒', '0', '', '2022-03-07 13:30:19'); INSERT INTO `sys_job_log` VALUES (18711, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3269毫秒', '0', '', '2022-03-07 13:30:22'); INSERT INTO `sys_job_log` VALUES (18712, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:573毫秒', '0', '', '2022-03-07 13:40:00'); INSERT INTO `sys_job_log` VALUES (18713, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1178毫秒', '0', '', '2022-03-07 13:40:01'); INSERT INTO `sys_job_log` VALUES (18714, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4065毫秒', '0', '', '2022-03-07 13:40:04'); INSERT INTO `sys_job_log` VALUES (18715, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1683毫秒', '0', '', '2022-03-07 13:50:01'); INSERT INTO `sys_job_log` VALUES (18716, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3880毫秒', '0', '', '2022-03-07 13:50:03'); INSERT INTO `sys_job_log` VALUES (18717, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:528毫秒', '0', '', '2022-03-07 14:00:00'); INSERT INTO `sys_job_log` VALUES (18718, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1166毫秒', '0', '', '2022-03-07 14:00:01'); INSERT INTO `sys_job_log` VALUES (18719, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10005毫秒', '0', '', '2022-03-07 14:00:10'); INSERT INTO `sys_job_log` VALUES (18720, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-03-07 14:10:00'); INSERT INTO `sys_job_log` VALUES (18721, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4330毫秒', '0', '', '2022-03-07 14:10:04'); INSERT INTO `sys_job_log` VALUES (18722, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2453毫秒', '0', '', '2022-03-07 14:15:32'); INSERT INTO `sys_job_log` VALUES (18723, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:641毫秒', '0', '', '2022-03-07 14:20:00'); INSERT INTO `sys_job_log` VALUES (18724, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2008毫秒', '0', '', '2022-03-07 14:20:02'); INSERT INTO `sys_job_log` VALUES (18725, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5065毫秒', '0', '', '2022-03-07 14:20:05'); INSERT INTO `sys_job_log` VALUES (18726, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1577毫秒', '0', '', '2022-03-07 14:30:01'); INSERT INTO `sys_job_log` VALUES (18727, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8114毫秒', '0', '', '2022-03-07 14:30:08'); INSERT INTO `sys_job_log` VALUES (18728, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1211毫秒', '0', '', '2022-03-07 14:40:01'); INSERT INTO `sys_job_log` VALUES (18729, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1876毫秒', '0', '', '2022-03-07 14:40:01'); INSERT INTO `sys_job_log` VALUES (18730, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7098毫秒', '0', '', '2022-03-07 14:40:07'); INSERT INTO `sys_job_log` VALUES (18731, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:535毫秒', '0', '', '2022-03-07 14:50:00'); INSERT INTO `sys_job_log` VALUES (18732, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7334毫秒', '0', '', '2022-03-07 14:50:07'); INSERT INTO `sys_job_log` VALUES (18733, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:71毫秒', '0', '', '2022-03-07 15:00:00'); INSERT INTO `sys_job_log` VALUES (18734, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-03-07 15:00:00'); INSERT INTO `sys_job_log` VALUES (18735, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2030毫秒', '0', '', '2022-03-07 15:00:02'); INSERT INTO `sys_job_log` VALUES (18736, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7986毫秒', '0', '', '2022-03-07 15:00:08'); INSERT INTO `sys_job_log` VALUES (18737, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:281毫秒', '0', '', '2022-03-07 15:10:00'); INSERT INTO `sys_job_log` VALUES (18738, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:664毫秒', '0', '', '2022-03-07 15:10:00'); INSERT INTO `sys_job_log` VALUES (18739, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5949毫秒', '0', '', '2022-03-07 15:10:05'); INSERT INTO `sys_job_log` VALUES (18740, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2473毫秒', '0', '', '2022-03-07 15:15:32'); INSERT INTO `sys_job_log` VALUES (18741, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-03-07 15:20:00'); INSERT INTO `sys_job_log` VALUES (18742, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1187毫秒', '0', '', '2022-03-07 15:20:01'); INSERT INTO `sys_job_log` VALUES (18743, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6990毫秒', '0', '', '2022-03-07 15:20:07'); INSERT INTO `sys_job_log` VALUES (18744, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:581毫秒', '0', '', '2022-03-07 15:30:00'); INSERT INTO `sys_job_log` VALUES (18745, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5037毫秒', '0', '', '2022-03-07 15:30:05'); INSERT INTO `sys_job_log` VALUES (18746, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-03-07 15:40:00'); INSERT INTO `sys_job_log` VALUES (18747, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-07 15:40:02'); INSERT INTO `sys_job_log` VALUES (18748, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7162毫秒', '0', '', '2022-03-07 15:40:07'); INSERT INTO `sys_job_log` VALUES (18749, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:560毫秒', '0', '', '2022-03-07 15:50:00'); INSERT INTO `sys_job_log` VALUES (18750, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2849毫秒', '0', '', '2022-03-07 15:50:02'); INSERT INTO `sys_job_log` VALUES (18751, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:488毫秒', '0', '', '2022-03-07 16:00:00'); INSERT INTO `sys_job_log` VALUES (18752, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1173毫秒', '0', '', '2022-03-07 16:00:01'); INSERT INTO `sys_job_log` VALUES (18753, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4206毫秒', '0', '', '2022-03-07 16:00:04'); INSERT INTO `sys_job_log` VALUES (18754, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:533毫秒', '0', '', '2022-03-07 16:10:00'); INSERT INTO `sys_job_log` VALUES (18755, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6178毫秒', '0', '', '2022-03-07 16:10:06'); INSERT INTO `sys_job_log` VALUES (18756, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:631毫秒', '0', '', '2022-03-07 16:15:30'); INSERT INTO `sys_job_log` VALUES (18757, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1647毫秒', '0', '', '2022-03-07 16:20:01'); INSERT INTO `sys_job_log` VALUES (18758, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-07 16:20:02'); INSERT INTO `sys_job_log` VALUES (18759, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6411毫秒', '0', '', '2022-03-07 16:20:06'); INSERT INTO `sys_job_log` VALUES (18760, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:791毫秒', '0', '', '2022-03-07 16:30:00'); INSERT INTO `sys_job_log` VALUES (18761, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2601毫秒', '0', '', '2022-03-07 16:30:02'); INSERT INTO `sys_job_log` VALUES (18762, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:196毫秒', '0', '', '2022-03-07 16:40:00'); INSERT INTO `sys_job_log` VALUES (18763, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-03-07 16:40:00'); INSERT INTO `sys_job_log` VALUES (18764, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4251毫秒', '0', '', '2022-03-07 16:40:04'); INSERT INTO `sys_job_log` VALUES (18765, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:519毫秒', '0', '', '2022-03-07 16:50:00'); INSERT INTO `sys_job_log` VALUES (18766, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4288毫秒', '0', '', '2022-03-07 16:50:04'); INSERT INTO `sys_job_log` VALUES (18767, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1513毫秒', '0', '', '2022-03-07 17:00:01'); INSERT INTO `sys_job_log` VALUES (18768, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-07 17:00:02'); INSERT INTO `sys_job_log` VALUES (18769, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6919毫秒', '0', '', '2022-03-07 17:00:06'); INSERT INTO `sys_job_log` VALUES (18770, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-03-07 17:10:00'); INSERT INTO `sys_job_log` VALUES (18771, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5352毫秒', '0', '', '2022-03-07 17:10:05'); INSERT INTO `sys_job_log` VALUES (18772, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1658毫秒', '0', '', '2022-03-07 17:15:31'); INSERT INTO `sys_job_log` VALUES (18773, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1278毫秒', '0', '', '2022-03-07 17:20:01'); INSERT INTO `sys_job_log` VALUES (18774, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1631毫秒', '0', '', '2022-03-07 17:20:01'); INSERT INTO `sys_job_log` VALUES (18775, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5378毫秒', '0', '', '2022-03-07 17:20:05'); INSERT INTO `sys_job_log` VALUES (18776, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:936毫秒', '0', '', '2022-03-07 22:40:01'); INSERT INTO `sys_job_log` VALUES (18777, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1742毫秒', '0', '', '2022-03-07 22:40:01'); INSERT INTO `sys_job_log` VALUES (18778, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4489毫秒', '0', '', '2022-03-07 22:40:04'); INSERT INTO `sys_job_log` VALUES (18779, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1039毫秒', '0', '', '2022-03-07 22:50:01'); INSERT INTO `sys_job_log` VALUES (18780, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4126毫秒', '0', '', '2022-03-07 22:50:04'); INSERT INTO `sys_job_log` VALUES (18781, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:365毫秒', '0', '', '2022-03-07 23:00:00'); INSERT INTO `sys_job_log` VALUES (18782, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:861毫秒', '0', '', '2022-03-07 23:00:00'); INSERT INTO `sys_job_log` VALUES (18783, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7057毫秒', '0', '', '2022-03-07 23:00:07'); INSERT INTO `sys_job_log` VALUES (18784, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:738毫秒', '0', '', '2022-03-07 23:10:00'); INSERT INTO `sys_job_log` VALUES (18785, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4364毫秒', '0', '', '2022-03-07 23:10:04'); INSERT INTO `sys_job_log` VALUES (18786, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1936毫秒', '0', '', '2022-03-07 23:15:31'); INSERT INTO `sys_job_log` VALUES (18787, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-03-07 23:20:00'); INSERT INTO `sys_job_log` VALUES (18788, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2021毫秒', '0', '', '2022-03-07 23:20:02'); INSERT INTO `sys_job_log` VALUES (18789, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2714毫秒', '0', '', '2022-03-07 23:20:02'); INSERT INTO `sys_job_log` VALUES (18790, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1684毫秒', '0', '', '2022-03-07 23:30:01'); INSERT INTO `sys_job_log` VALUES (18791, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4171毫秒', '0', '', '2022-03-07 23:30:04'); INSERT INTO `sys_job_log` VALUES (18792, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:320毫秒', '0', '', '2022-03-07 23:40:00'); INSERT INTO `sys_job_log` VALUES (18793, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-03-07 23:40:00'); INSERT INTO `sys_job_log` VALUES (18794, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3808毫秒', '0', '', '2022-03-07 23:40:03'); INSERT INTO `sys_job_log` VALUES (18795, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1312毫秒', '0', '', '2022-03-08 08:50:01'); INSERT INTO `sys_job_log` VALUES (18796, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5738毫秒', '0', '', '2022-03-08 08:50:05'); INSERT INTO `sys_job_log` VALUES (18797, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-03-08 09:00:00'); INSERT INTO `sys_job_log` VALUES (18798, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1195毫秒', '0', '', '2022-03-08 09:00:01'); INSERT INTO `sys_job_log` VALUES (18799, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7372毫秒', '0', '', '2022-03-08 09:00:07'); INSERT INTO `sys_job_log` VALUES (18800, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-03-08 09:10:00'); INSERT INTO `sys_job_log` VALUES (18801, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6629毫秒', '0', '', '2022-03-08 09:10:06'); INSERT INTO `sys_job_log` VALUES (18802, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:44404毫秒', '0', '', '2022-03-08 09:10:44'); INSERT INTO `sys_job_log` VALUES (18803, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2624毫秒', '0', '', '2022-03-08 09:15:32'); INSERT INTO `sys_job_log` VALUES (18804, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1036986毫秒', '0', '', '2022-03-08 09:17:17'); INSERT INTO `sys_job_log` VALUES (18805, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:629毫秒', '0', '', '2022-03-08 09:20:00'); INSERT INTO `sys_job_log` VALUES (18806, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2030毫秒', '0', '', '2022-03-08 09:20:02'); INSERT INTO `sys_job_log` VALUES (18807, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6007毫秒', '0', '', '2022-03-08 09:20:06'); INSERT INTO `sys_job_log` VALUES (18808, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:553毫秒', '0', '', '2022-03-08 09:30:00'); INSERT INTO `sys_job_log` VALUES (18809, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5951毫秒', '0', '', '2022-03-08 09:30:05'); INSERT INTO `sys_job_log` VALUES (18810, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:263毫秒', '0', '', '2022-03-08 09:40:00'); INSERT INTO `sys_job_log` VALUES (18811, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-03-08 09:40:00'); INSERT INTO `sys_job_log` VALUES (18812, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4001毫秒', '0', '', '2022-03-08 09:40:04'); INSERT INTO `sys_job_log` VALUES (18813, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:592毫秒', '0', '', '2022-03-08 09:50:00'); INSERT INTO `sys_job_log` VALUES (18814, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7558毫秒', '0', '', '2022-03-08 09:50:07'); INSERT INTO `sys_job_log` VALUES (18815, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:428毫秒', '0', '', '2022-03-08 10:00:00'); INSERT INTO `sys_job_log` VALUES (18816, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1475毫秒', '0', '', '2022-03-08 10:00:01'); INSERT INTO `sys_job_log` VALUES (18817, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2017毫秒', '0', '', '2022-03-08 10:00:02'); INSERT INTO `sys_job_log` VALUES (18818, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1700毫秒', '0', '', '2022-03-08 10:10:01'); INSERT INTO `sys_job_log` VALUES (18819, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6242毫秒', '0', '', '2022-03-08 10:10:06'); INSERT INTO `sys_job_log` VALUES (18820, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2667毫秒', '0', '', '2022-03-08 10:15:32'); INSERT INTO `sys_job_log` VALUES (18821, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:444毫秒', '0', '', '2022-03-08 10:20:00'); INSERT INTO `sys_job_log` VALUES (18822, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1215毫秒', '0', '', '2022-03-08 10:20:01'); INSERT INTO `sys_job_log` VALUES (18823, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3389毫秒', '0', '', '2022-03-08 10:20:03'); INSERT INTO `sys_job_log` VALUES (18824, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:506毫秒', '0', '', '2022-03-08 10:30:00'); INSERT INTO `sys_job_log` VALUES (18825, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3239毫秒', '0', '', '2022-03-08 10:30:03'); INSERT INTO `sys_job_log` VALUES (18826, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:500毫秒', '0', '', '2022-03-08 10:40:00'); INSERT INTO `sys_job_log` VALUES (18827, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2035毫秒', '0', '', '2022-03-08 10:40:02'); INSERT INTO `sys_job_log` VALUES (18828, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4663毫秒', '0', '', '2022-03-08 10:40:04'); INSERT INTO `sys_job_log` VALUES (18829, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-03-08 10:50:00'); INSERT INTO `sys_job_log` VALUES (18830, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5111毫秒', '0', '', '2022-03-08 10:50:05'); INSERT INTO `sys_job_log` VALUES (18831, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:482毫秒', '0', '', '2022-03-08 11:00:00'); INSERT INTO `sys_job_log` VALUES (18832, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1162毫秒', '0', '', '2022-03-08 11:00:01'); INSERT INTO `sys_job_log` VALUES (18833, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4251毫秒', '0', '', '2022-03-08 11:00:04'); INSERT INTO `sys_job_log` VALUES (18834, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:784毫秒', '0', '', '2022-03-08 11:10:00'); INSERT INTO `sys_job_log` VALUES (18835, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3412毫秒', '0', '', '2022-03-08 11:10:03'); INSERT INTO `sys_job_log` VALUES (18836, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1575毫秒', '0', '', '2022-03-08 11:15:31'); INSERT INTO `sys_job_log` VALUES (18837, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:518毫秒', '0', '', '2022-03-08 11:20:00'); INSERT INTO `sys_job_log` VALUES (18838, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2023毫秒', '0', '', '2022-03-08 11:20:02'); INSERT INTO `sys_job_log` VALUES (18839, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3251毫秒', '0', '', '2022-03-08 11:20:03'); INSERT INTO `sys_job_log` VALUES (18840, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1789毫秒', '0', '', '2022-03-08 11:30:01'); INSERT INTO `sys_job_log` VALUES (18841, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4311毫秒', '0', '', '2022-03-08 11:30:04'); INSERT INTO `sys_job_log` VALUES (18842, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:469毫秒', '0', '', '2022-03-08 11:40:00'); INSERT INTO `sys_job_log` VALUES (18843, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1172毫秒', '0', '', '2022-03-08 11:40:01'); INSERT INTO `sys_job_log` VALUES (18844, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5613毫秒', '0', '', '2022-03-08 11:40:05'); INSERT INTO `sys_job_log` VALUES (18845, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:477毫秒', '0', '', '2022-03-08 11:50:00'); INSERT INTO `sys_job_log` VALUES (18846, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8566毫秒', '0', '', '2022-03-08 11:50:08'); INSERT INTO `sys_job_log` VALUES (18847, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:80毫秒', '0', '', '2022-03-08 12:00:00'); INSERT INTO `sys_job_log` VALUES (18848, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:468毫秒', '0', '', '2022-03-08 12:00:00'); INSERT INTO `sys_job_log` VALUES (18849, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2019毫秒', '0', '', '2022-03-08 12:00:02'); INSERT INTO `sys_job_log` VALUES (18850, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8978毫秒', '0', '', '2022-03-08 12:00:08'); INSERT INTO `sys_job_log` VALUES (18851, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:853毫秒', '0', '', '2022-03-08 12:10:00'); INSERT INTO `sys_job_log` VALUES (18852, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3972毫秒', '0', '', '2022-03-08 12:10:03'); INSERT INTO `sys_job_log` VALUES (18853, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1499毫秒', '0', '', '2022-03-08 12:15:31'); INSERT INTO `sys_job_log` VALUES (18854, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-03-08 12:20:00'); INSERT INTO `sys_job_log` VALUES (18855, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1188毫秒', '0', '', '2022-03-08 12:20:01'); INSERT INTO `sys_job_log` VALUES (18856, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5363毫秒', '0', '', '2022-03-08 12:20:05'); INSERT INTO `sys_job_log` VALUES (18857, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:598毫秒', '0', '', '2022-03-08 12:30:00'); INSERT INTO `sys_job_log` VALUES (18858, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3715毫秒', '0', '', '2022-03-08 12:30:03'); INSERT INTO `sys_job_log` VALUES (18859, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-03-08 12:40:00'); INSERT INTO `sys_job_log` VALUES (18860, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-03-08 12:40:02'); INSERT INTO `sys_job_log` VALUES (18861, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4747毫秒', '0', '', '2022-03-08 12:40:04'); INSERT INTO `sys_job_log` VALUES (18862, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:921毫秒', '0', '', '2022-03-08 12:50:00'); INSERT INTO `sys_job_log` VALUES (18863, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5329毫秒', '0', '', '2022-03-08 12:50:05'); INSERT INTO `sys_job_log` VALUES (18864, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:515毫秒', '0', '', '2022-03-08 13:00:00'); INSERT INTO `sys_job_log` VALUES (18865, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1221毫秒', '0', '', '2022-03-08 13:00:01'); INSERT INTO `sys_job_log` VALUES (18866, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5563毫秒', '0', '', '2022-03-08 13:00:05'); INSERT INTO `sys_job_log` VALUES (18867, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:441毫秒', '0', '', '2022-03-08 13:10:00'); INSERT INTO `sys_job_log` VALUES (18868, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3335毫秒', '0', '', '2022-03-08 13:10:03'); INSERT INTO `sys_job_log` VALUES (18869, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1416毫秒', '0', '', '2022-03-08 13:15:31'); INSERT INTO `sys_job_log` VALUES (18870, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-08 13:20:02'); INSERT INTO `sys_job_log` VALUES (18871, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2018毫秒', '0', '', '2022-03-08 13:20:02'); INSERT INTO `sys_job_log` VALUES (18872, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5578毫秒', '0', '', '2022-03-08 13:20:05'); INSERT INTO `sys_job_log` VALUES (18873, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:496毫秒', '0', '', '2022-03-08 13:30:00'); INSERT INTO `sys_job_log` VALUES (18874, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3865毫秒', '0', '', '2022-03-08 13:30:03'); INSERT INTO `sys_job_log` VALUES (18875, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:677毫秒', '0', '', '2022-03-08 13:40:00'); INSERT INTO `sys_job_log` VALUES (18876, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1172毫秒', '0', '', '2022-03-08 13:40:01'); INSERT INTO `sys_job_log` VALUES (18877, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4423毫秒', '0', '', '2022-03-08 13:40:04'); INSERT INTO `sys_job_log` VALUES (18878, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1827毫秒', '0', '', '2022-03-08 13:50:01'); INSERT INTO `sys_job_log` VALUES (18879, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5010毫秒', '0', '', '2022-03-08 13:50:05'); INSERT INTO `sys_job_log` VALUES (18880, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1556毫秒', '0', '', '2022-03-08 14:00:01'); INSERT INTO `sys_job_log` VALUES (18881, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-03-08 14:00:02'); INSERT INTO `sys_job_log` VALUES (18882, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5954毫秒', '0', '', '2022-03-08 14:00:05'); INSERT INTO `sys_job_log` VALUES (18883, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1590毫秒', '0', '', '2022-03-08 14:10:01'); INSERT INTO `sys_job_log` VALUES (18884, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3421毫秒', '0', '', '2022-03-08 14:10:03'); INSERT INTO `sys_job_log` VALUES (18885, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2494毫秒', '0', '', '2022-03-08 14:15:32'); INSERT INTO `sys_job_log` VALUES (18886, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:551毫秒', '0', '', '2022-03-08 14:20:00'); INSERT INTO `sys_job_log` VALUES (18887, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1161毫秒', '0', '', '2022-03-08 14:20:01'); INSERT INTO `sys_job_log` VALUES (18888, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5489毫秒', '0', '', '2022-03-08 14:20:05'); INSERT INTO `sys_job_log` VALUES (18889, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-03-08 14:30:00'); INSERT INTO `sys_job_log` VALUES (18890, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5157毫秒', '0', '', '2022-03-08 14:30:05'); INSERT INTO `sys_job_log` VALUES (18891, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:538毫秒', '0', '', '2022-03-08 14:40:00'); INSERT INTO `sys_job_log` VALUES (18892, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1666毫秒', '0', '', '2022-03-08 14:40:01'); INSERT INTO `sys_job_log` VALUES (18893, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-03-08 14:40:02'); INSERT INTO `sys_job_log` VALUES (18894, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1574毫秒', '0', '', '2022-03-08 14:50:01'); INSERT INTO `sys_job_log` VALUES (18895, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5650毫秒', '0', '', '2022-03-08 14:50:05'); INSERT INTO `sys_job_log` VALUES (18896, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:555毫秒', '0', '', '2022-03-08 15:00:00'); INSERT INTO `sys_job_log` VALUES (18897, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-08 15:00:02'); INSERT INTO `sys_job_log` VALUES (18898, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7936毫秒', '0', '', '2022-03-08 15:00:07'); INSERT INTO `sys_job_log` VALUES (18899, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:280毫秒', '0', '', '2022-03-08 15:10:00'); INSERT INTO `sys_job_log` VALUES (18900, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:634毫秒', '0', '', '2022-03-08 15:10:00'); INSERT INTO `sys_job_log` VALUES (18901, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5842毫秒', '0', '', '2022-03-08 15:10:05'); INSERT INTO `sys_job_log` VALUES (18902, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1805毫秒', '0', '', '2022-03-08 15:15:31'); INSERT INTO `sys_job_log` VALUES (18903, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:942261毫秒', '0', '', '2022-03-08 15:15:42'); INSERT INTO `sys_job_log` VALUES (18904, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-03-08 15:20:00'); INSERT INTO `sys_job_log` VALUES (18905, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2036毫秒', '0', '', '2022-03-08 15:20:02'); INSERT INTO `sys_job_log` VALUES (18906, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4228毫秒', '0', '', '2022-03-08 15:20:04'); INSERT INTO `sys_job_log` VALUES (18907, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-03-08 15:30:00'); INSERT INTO `sys_job_log` VALUES (18908, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2811毫秒', '0', '', '2022-03-08 15:30:02'); INSERT INTO `sys_job_log` VALUES (18909, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:526毫秒', '0', '', '2022-03-08 15:40:00'); INSERT INTO `sys_job_log` VALUES (18910, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1200毫秒', '0', '', '2022-03-08 15:40:01'); INSERT INTO `sys_job_log` VALUES (18911, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5998毫秒', '0', '', '2022-03-08 15:40:06'); INSERT INTO `sys_job_log` VALUES (18912, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1852毫秒', '0', '', '2022-03-08 15:50:01'); INSERT INTO `sys_job_log` VALUES (18913, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3417毫秒', '0', '', '2022-03-08 15:50:03'); INSERT INTO `sys_job_log` VALUES (18914, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:542毫秒', '0', '', '2022-03-08 16:00:00'); INSERT INTO `sys_job_log` VALUES (18915, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2017毫秒', '0', '', '2022-03-08 16:00:02'); INSERT INTO `sys_job_log` VALUES (18916, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4738毫秒', '0', '', '2022-03-08 16:00:04'); INSERT INTO `sys_job_log` VALUES (18917, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1547毫秒', '0', '', '2022-03-08 16:10:01'); INSERT INTO `sys_job_log` VALUES (18918, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3495毫秒', '0', '', '2022-03-08 16:10:03'); INSERT INTO `sys_job_log` VALUES (18919, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1260毫秒', '0', '', '2022-03-08 16:15:31'); INSERT INTO `sys_job_log` VALUES (18920, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:193毫秒', '0', '', '2022-03-08 16:20:00'); INSERT INTO `sys_job_log` VALUES (18921, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:500毫秒', '0', '', '2022-03-08 16:20:00'); INSERT INTO `sys_job_log` VALUES (18922, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2614毫秒', '0', '', '2022-03-08 16:20:02'); INSERT INTO `sys_job_log` VALUES (18923, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:859毫秒', '0', '', '2022-03-08 16:30:00'); INSERT INTO `sys_job_log` VALUES (18924, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5682毫秒', '0', '', '2022-03-08 16:30:05'); INSERT INTO `sys_job_log` VALUES (18925, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-03-08 16:40:00'); INSERT INTO `sys_job_log` VALUES (18926, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-08 16:40:02'); INSERT INTO `sys_job_log` VALUES (18927, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5871毫秒', '0', '', '2022-03-08 16:40:05'); INSERT INTO `sys_job_log` VALUES (18928, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1627毫秒', '0', '', '2022-03-08 16:50:01'); INSERT INTO `sys_job_log` VALUES (18929, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3398毫秒', '0', '', '2022-03-08 16:50:03'); INSERT INTO `sys_job_log` VALUES (18930, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:553毫秒', '0', '', '2022-03-08 17:00:00'); INSERT INTO `sys_job_log` VALUES (18931, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-08 17:00:02'); INSERT INTO `sys_job_log` VALUES (18932, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6382毫秒', '0', '', '2022-03-08 17:00:06'); INSERT INTO `sys_job_log` VALUES (18933, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1935毫秒', '0', '', '2022-03-08 17:10:01'); INSERT INTO `sys_job_log` VALUES (18934, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3515毫秒', '0', '', '2022-03-08 17:10:03'); INSERT INTO `sys_job_log` VALUES (18935, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1572毫秒', '0', '', '2022-03-08 17:15:31'); INSERT INTO `sys_job_log` VALUES (18936, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:420毫秒', '0', '', '2022-03-08 17:20:00'); INSERT INTO `sys_job_log` VALUES (18937, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1007毫秒', '0', '', '2022-03-08 17:20:01'); INSERT INTO `sys_job_log` VALUES (18938, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5509毫秒', '0', '', '2022-03-08 17:20:05'); INSERT INTO `sys_job_log` VALUES (18939, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1796毫秒', '0', '', '2022-03-08 17:30:01'); INSERT INTO `sys_job_log` VALUES (18940, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8288毫秒', '0', '', '2022-03-08 17:30:08'); INSERT INTO `sys_job_log` VALUES (18941, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1672毫秒', '0', '', '2022-03-09 09:00:01'); INSERT INTO `sys_job_log` VALUES (18942, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2145毫秒', '0', '', '2022-03-09 09:00:02'); INSERT INTO `sys_job_log` VALUES (18943, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5775毫秒', '0', '', '2022-03-09 09:00:05'); INSERT INTO `sys_job_log` VALUES (18944, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:591毫秒', '0', '', '2022-03-09 09:10:00'); INSERT INTO `sys_job_log` VALUES (18945, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4589毫秒', '0', '', '2022-03-09 09:10:04'); INSERT INTO `sys_job_log` VALUES (18946, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:56497毫秒', '0', '', '2022-03-09 09:10:56'); INSERT INTO `sys_job_log` VALUES (18947, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:5467毫秒', '0', '', '2022-03-09 09:15:35'); INSERT INTO `sys_job_log` VALUES (18948, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:539毫秒', '0', '', '2022-03-09 09:20:00'); INSERT INTO `sys_job_log` VALUES (18949, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1241毫秒', '0', '', '2022-03-09 09:20:01'); INSERT INTO `sys_job_log` VALUES (18950, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3875毫秒', '0', '', '2022-03-09 09:20:03'); INSERT INTO `sys_job_log` VALUES (18951, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1280561毫秒', '0', '', '2022-03-09 09:21:20'); INSERT INTO `sys_job_log` VALUES (18952, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1024毫秒', '0', '', '2022-03-09 09:30:01'); INSERT INTO `sys_job_log` VALUES (18953, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4006毫秒', '0', '', '2022-03-09 09:30:04'); INSERT INTO `sys_job_log` VALUES (18954, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1653毫秒', '0', '', '2022-03-09 09:40:01'); INSERT INTO `sys_job_log` VALUES (18955, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-09 09:40:02'); INSERT INTO `sys_job_log` VALUES (18956, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4808毫秒', '0', '', '2022-03-09 09:40:04'); INSERT INTO `sys_job_log` VALUES (18957, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:492毫秒', '0', '', '2022-03-09 09:50:00'); INSERT INTO `sys_job_log` VALUES (18958, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5422毫秒', '0', '', '2022-03-09 09:50:05'); INSERT INTO `sys_job_log` VALUES (18959, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:534毫秒', '0', '', '2022-03-09 10:00:00'); INSERT INTO `sys_job_log` VALUES (18960, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1188毫秒', '0', '', '2022-03-09 10:00:01'); INSERT INTO `sys_job_log` VALUES (18961, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8593毫秒', '0', '', '2022-03-09 10:00:08'); INSERT INTO `sys_job_log` VALUES (18962, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1510毫秒', '0', '', '2022-03-09 10:10:01'); INSERT INTO `sys_job_log` VALUES (18963, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8722毫秒', '0', '', '2022-03-09 10:10:08'); INSERT INTO `sys_job_log` VALUES (18964, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1638毫秒', '0', '', '2022-03-09 10:15:31'); INSERT INTO `sys_job_log` VALUES (18965, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1560毫秒', '0', '', '2022-03-09 10:20:01'); INSERT INTO `sys_job_log` VALUES (18966, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-09 10:20:02'); INSERT INTO `sys_job_log` VALUES (18967, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4984毫秒', '0', '', '2022-03-09 10:20:04'); INSERT INTO `sys_job_log` VALUES (18968, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2035毫秒', '0', '', '2022-03-09 10:30:02'); INSERT INTO `sys_job_log` VALUES (18969, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5214毫秒', '0', '', '2022-03-09 10:30:05'); INSERT INTO `sys_job_log` VALUES (18970, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1306毫秒', '0', '', '2022-03-09 10:40:01'); INSERT INTO `sys_job_log` VALUES (18971, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1747毫秒', '0', '', '2022-03-09 10:40:01'); INSERT INTO `sys_job_log` VALUES (18972, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4271毫秒', '0', '', '2022-03-09 10:40:04'); INSERT INTO `sys_job_log` VALUES (18973, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1475毫秒', '0', '', '2022-03-09 10:50:01'); INSERT INTO `sys_job_log` VALUES (18974, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4017毫秒', '0', '', '2022-03-09 10:50:04'); INSERT INTO `sys_job_log` VALUES (18975, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-03-09 11:00:00'); INSERT INTO `sys_job_log` VALUES (18976, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2023毫秒', '0', '', '2022-03-09 11:00:02'); INSERT INTO `sys_job_log` VALUES (18977, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3801毫秒', '0', '', '2022-03-09 11:00:03'); INSERT INTO `sys_job_log` VALUES (18978, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:884毫秒', '0', '', '2022-03-09 11:10:00'); INSERT INTO `sys_job_log` VALUES (18979, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4237毫秒', '0', '', '2022-03-09 11:10:04'); INSERT INTO `sys_job_log` VALUES (18980, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1557毫秒', '0', '', '2022-03-09 11:15:31'); INSERT INTO `sys_job_log` VALUES (18981, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:328毫秒', '0', '', '2022-03-09 11:20:00'); INSERT INTO `sys_job_log` VALUES (18982, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-03-09 11:20:00'); INSERT INTO `sys_job_log` VALUES (18983, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3434毫秒', '0', '', '2022-03-09 11:20:03'); INSERT INTO `sys_job_log` VALUES (18984, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1469毫秒', '0', '', '2022-03-09 11:30:01'); INSERT INTO `sys_job_log` VALUES (18985, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4208毫秒', '0', '', '2022-03-09 11:30:04'); INSERT INTO `sys_job_log` VALUES (18986, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2441毫秒', '0', '', '2022-03-09 11:40:02'); INSERT INTO `sys_job_log` VALUES (18987, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2463毫秒', '0', '', '2022-03-09 11:40:02'); INSERT INTO `sys_job_log` VALUES (18988, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7791毫秒', '0', '', '2022-03-09 11:40:07'); INSERT INTO `sys_job_log` VALUES (18989, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:663毫秒', '0', '', '2022-03-09 11:50:00'); INSERT INTO `sys_job_log` VALUES (18990, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3289毫秒', '0', '', '2022-03-09 11:50:03'); INSERT INTO `sys_job_log` VALUES (18991, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1326毫秒', '0', '', '2022-03-09 12:00:01'); INSERT INTO `sys_job_log` VALUES (18992, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1658毫秒', '0', '', '2022-03-09 12:00:01'); INSERT INTO `sys_job_log` VALUES (18993, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4262毫秒', '0', '', '2022-03-09 12:00:04'); INSERT INTO `sys_job_log` VALUES (18994, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:943毫秒', '0', '', '2022-03-09 12:10:00'); INSERT INTO `sys_job_log` VALUES (18995, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3946毫秒', '0', '', '2022-03-09 12:10:03'); INSERT INTO `sys_job_log` VALUES (18996, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1202毫秒', '0', '', '2022-03-09 12:15:31'); INSERT INTO `sys_job_log` VALUES (18997, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:546毫秒', '0', '', '2022-03-09 12:20:00'); INSERT INTO `sys_job_log` VALUES (18998, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-09 12:20:02'); INSERT INTO `sys_job_log` VALUES (18999, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5764毫秒', '0', '', '2022-03-09 12:20:05'); INSERT INTO `sys_job_log` VALUES (19000, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1447540毫秒', '0', '', '2022-03-09 12:24:07'); INSERT INTO `sys_job_log` VALUES (19001, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-03-09 12:30:00'); INSERT INTO `sys_job_log` VALUES (19002, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1671毫秒', '0', '', '2022-03-09 12:30:01'); INSERT INTO `sys_job_log` VALUES (19003, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:230毫秒', '0', '', '2022-03-09 12:40:00'); INSERT INTO `sys_job_log` VALUES (19004, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:572毫秒', '0', '', '2022-03-09 12:40:00'); INSERT INTO `sys_job_log` VALUES (19005, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4030毫秒', '0', '', '2022-03-09 12:40:04'); INSERT INTO `sys_job_log` VALUES (19006, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:618毫秒', '0', '', '2022-03-09 12:50:00'); INSERT INTO `sys_job_log` VALUES (19007, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1790毫秒', '0', '', '2022-03-09 12:50:01'); INSERT INTO `sys_job_log` VALUES (19008, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:517毫秒', '0', '', '2022-03-09 13:00:00'); INSERT INTO `sys_job_log` VALUES (19009, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-09 13:00:02'); INSERT INTO `sys_job_log` VALUES (19010, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3836毫秒', '0', '', '2022-03-09 13:00:03'); INSERT INTO `sys_job_log` VALUES (19011, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:490毫秒', '0', '', '2022-03-09 13:10:00'); INSERT INTO `sys_job_log` VALUES (19012, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2688毫秒', '0', '', '2022-03-09 13:10:02'); INSERT INTO `sys_job_log` VALUES (19013, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1694毫秒', '0', '', '2022-03-09 13:15:31'); INSERT INTO `sys_job_log` VALUES (19014, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:444毫秒', '0', '', '2022-03-09 13:20:00'); INSERT INTO `sys_job_log` VALUES (19015, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1201毫秒', '0', '', '2022-03-09 13:20:01'); INSERT INTO `sys_job_log` VALUES (19016, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5109毫秒', '0', '', '2022-03-09 13:20:05'); INSERT INTO `sys_job_log` VALUES (19017, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:461毫秒', '0', '', '2022-03-09 13:30:00'); INSERT INTO `sys_job_log` VALUES (19018, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4201毫秒', '0', '', '2022-03-09 13:30:04'); INSERT INTO `sys_job_log` VALUES (19019, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1801毫秒', '0', '', '2022-03-09 13:40:01'); INSERT INTO `sys_job_log` VALUES (19020, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-09 13:40:02'); INSERT INTO `sys_job_log` VALUES (19021, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3667毫秒', '0', '', '2022-03-09 13:40:03'); INSERT INTO `sys_job_log` VALUES (19022, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2033毫秒', '0', '', '2022-03-09 13:50:02'); INSERT INTO `sys_job_log` VALUES (19023, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4923毫秒', '0', '', '2022-03-09 13:50:04'); INSERT INTO `sys_job_log` VALUES (19024, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:289毫秒', '0', '', '2022-03-09 14:00:00'); INSERT INTO `sys_job_log` VALUES (19025, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:710毫秒', '0', '', '2022-03-09 14:00:00'); INSERT INTO `sys_job_log` VALUES (19026, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5416毫秒', '0', '', '2022-03-09 14:00:05'); INSERT INTO `sys_job_log` VALUES (19027, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1630毫秒', '0', '', '2022-03-09 14:10:01'); INSERT INTO `sys_job_log` VALUES (19028, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5066毫秒', '0', '', '2022-03-09 14:10:05'); INSERT INTO `sys_job_log` VALUES (19029, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:528毫秒', '0', '', '2022-03-09 14:15:30'); INSERT INTO `sys_job_log` VALUES (19030, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:582毫秒', '0', '', '2022-03-09 14:20:00'); INSERT INTO `sys_job_log` VALUES (19031, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-09 14:20:02'); INSERT INTO `sys_job_log` VALUES (19032, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4724毫秒', '0', '', '2022-03-09 14:20:04'); INSERT INTO `sys_job_log` VALUES (19033, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-03-09 14:30:00'); INSERT INTO `sys_job_log` VALUES (19034, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2754毫秒', '0', '', '2022-03-09 14:30:02'); INSERT INTO `sys_job_log` VALUES (19035, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:981毫秒', '0', '', '2022-03-09 14:40:01'); INSERT INTO `sys_job_log` VALUES (19036, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1298毫秒', '0', '', '2022-03-09 14:40:01'); INSERT INTO `sys_job_log` VALUES (19037, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5984毫秒', '0', '', '2022-03-09 14:40:06'); INSERT INTO `sys_job_log` VALUES (19038, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-03-09 14:50:00'); INSERT INTO `sys_job_log` VALUES (19039, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3841毫秒', '0', '', '2022-03-09 14:50:03'); INSERT INTO `sys_job_log` VALUES (19040, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:580毫秒', '0', '', '2022-03-09 15:00:00'); INSERT INTO `sys_job_log` VALUES (19041, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2023毫秒', '0', '', '2022-03-09 15:00:02'); INSERT INTO `sys_job_log` VALUES (19042, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6073毫秒', '0', '', '2022-03-09 15:00:06'); INSERT INTO `sys_job_log` VALUES (19043, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-03-09 15:10:00'); INSERT INTO `sys_job_log` VALUES (19044, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2423毫秒', '0', '', '2022-03-09 15:10:02'); INSERT INTO `sys_job_log` VALUES (19045, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:50782毫秒', '0', '', '2022-03-09 15:10:50'); INSERT INTO `sys_job_log` VALUES (19046, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1551毫秒', '0', '', '2022-03-09 15:15:31'); INSERT INTO `sys_job_log` VALUES (19047, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:287毫秒', '0', '', '2022-03-09 15:20:00'); INSERT INTO `sys_job_log` VALUES (19048, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:638毫秒', '0', '', '2022-03-09 15:20:00'); INSERT INTO `sys_job_log` VALUES (19049, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5884毫秒', '0', '', '2022-03-09 15:20:05'); INSERT INTO `sys_job_log` VALUES (19050, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1342961毫秒', '0', '', '2022-03-09 15:22:23'); INSERT INTO `sys_job_log` VALUES (19051, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:745毫秒', '0', '', '2022-03-09 15:30:00'); INSERT INTO `sys_job_log` VALUES (19052, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5124毫秒', '0', '', '2022-03-09 15:30:05'); INSERT INTO `sys_job_log` VALUES (19053, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:522毫秒', '0', '', '2022-03-09 15:40:00'); INSERT INTO `sys_job_log` VALUES (19054, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-09 15:40:02'); INSERT INTO `sys_job_log` VALUES (19055, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4754毫秒', '0', '', '2022-03-09 15:40:04'); INSERT INTO `sys_job_log` VALUES (19056, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:781毫秒', '0', '', '2022-03-09 15:50:00'); INSERT INTO `sys_job_log` VALUES (19057, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6688毫秒', '0', '', '2022-03-09 15:50:06'); INSERT INTO `sys_job_log` VALUES (19058, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:534毫秒', '0', '', '2022-03-09 16:00:00'); INSERT INTO `sys_job_log` VALUES (19059, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1186毫秒', '0', '', '2022-03-09 16:00:01'); INSERT INTO `sys_job_log` VALUES (19060, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6454毫秒', '0', '', '2022-03-09 16:00:06'); INSERT INTO `sys_job_log` VALUES (19061, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1406毫秒', '0', '', '2022-03-09 16:10:01'); INSERT INTO `sys_job_log` VALUES (19062, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5443毫秒', '0', '', '2022-03-09 16:10:05'); INSERT INTO `sys_job_log` VALUES (19063, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1588毫秒', '0', '', '2022-03-09 16:15:31'); INSERT INTO `sys_job_log` VALUES (19064, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:305毫秒', '0', '', '2022-03-09 16:20:00'); INSERT INTO `sys_job_log` VALUES (19065, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-03-09 16:20:00'); INSERT INTO `sys_job_log` VALUES (19066, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5122毫秒', '0', '', '2022-03-09 16:20:05'); INSERT INTO `sys_job_log` VALUES (19067, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1687毫秒', '0', '', '2022-03-09 16:30:01'); INSERT INTO `sys_job_log` VALUES (19068, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3652毫秒', '0', '', '2022-03-09 16:30:03'); INSERT INTO `sys_job_log` VALUES (19069, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:210毫秒', '0', '', '2022-03-09 16:40:00'); INSERT INTO `sys_job_log` VALUES (19070, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:503毫秒', '0', '', '2022-03-09 16:40:00'); INSERT INTO `sys_job_log` VALUES (19071, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3652毫秒', '0', '', '2022-03-09 16:40:03'); INSERT INTO `sys_job_log` VALUES (19072, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:653毫秒', '0', '', '2022-03-09 16:50:00'); INSERT INTO `sys_job_log` VALUES (19073, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5051毫秒', '0', '', '2022-03-09 16:50:05'); INSERT INTO `sys_job_log` VALUES (19074, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-03-09 17:00:00'); INSERT INTO `sys_job_log` VALUES (19075, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-09 17:00:02'); INSERT INTO `sys_job_log` VALUES (19076, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2598毫秒', '0', '', '2022-03-09 17:00:02'); INSERT INTO `sys_job_log` VALUES (19077, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:698毫秒', '0', '', '2022-03-09 17:10:00'); INSERT INTO `sys_job_log` VALUES (19078, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5687毫秒', '0', '', '2022-03-09 17:10:05'); INSERT INTO `sys_job_log` VALUES (19079, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1614毫秒', '0', '', '2022-03-09 17:15:31'); INSERT INTO `sys_job_log` VALUES (19080, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:522毫秒', '0', '', '2022-03-09 17:20:00'); INSERT INTO `sys_job_log` VALUES (19081, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1223毫秒', '0', '', '2022-03-09 17:20:01'); INSERT INTO `sys_job_log` VALUES (19082, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4293毫秒', '0', '', '2022-03-09 17:20:04'); INSERT INTO `sys_job_log` VALUES (19083, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-03-09 17:30:00'); INSERT INTO `sys_job_log` VALUES (19084, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2822毫秒', '0', '', '2022-03-09 17:30:02'); INSERT INTO `sys_job_log` VALUES (19085, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2398毫秒', '0', '', '2022-03-09 20:00:02'); INSERT INTO `sys_job_log` VALUES (19086, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2388毫秒', '0', '', '2022-03-09 20:00:02'); INSERT INTO `sys_job_log` VALUES (19087, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7016毫秒', '0', '', '2022-03-09 20:00:07'); INSERT INTO `sys_job_log` VALUES (19088, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1265毫秒', '0', '', '2022-03-09 20:10:01'); INSERT INTO `sys_job_log` VALUES (19089, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2393毫秒', '0', '', '2022-03-09 20:10:02'); INSERT INTO `sys_job_log` VALUES (19090, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1906毫秒', '0', '', '2022-03-09 20:15:31'); INSERT INTO `sys_job_log` VALUES (19091, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:401毫秒', '0', '', '2022-03-09 20:20:00'); INSERT INTO `sys_job_log` VALUES (19092, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:775毫秒', '0', '', '2022-03-09 20:20:00'); INSERT INTO `sys_job_log` VALUES (19093, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3236毫秒', '0', '', '2022-03-09 20:20:03'); INSERT INTO `sys_job_log` VALUES (19094, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:71963毫秒', '0', '', '2022-03-09 20:21:12'); INSERT INTO `sys_job_log` VALUES (19095, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-03-09 20:30:00'); INSERT INTO `sys_job_log` VALUES (19096, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2778毫秒', '0', '', '2022-03-09 20:30:02'); INSERT INTO `sys_job_log` VALUES (19097, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:804毫秒', '0', '', '2022-03-09 20:40:00'); INSERT INTO `sys_job_log` VALUES (19098, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-03-09 20:40:02'); INSERT INTO `sys_job_log` VALUES (19099, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3500毫秒', '0', '', '2022-03-09 20:40:03'); INSERT INTO `sys_job_log` VALUES (19100, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-03-09 20:50:00'); INSERT INTO `sys_job_log` VALUES (19101, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7217毫秒', '0', '', '2022-03-09 20:50:07'); INSERT INTO `sys_job_log` VALUES (19102, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:387毫秒', '0', '', '2022-03-09 21:00:00'); INSERT INTO `sys_job_log` VALUES (19103, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:744毫秒', '0', '', '2022-03-09 21:00:00'); INSERT INTO `sys_job_log` VALUES (19104, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5437毫秒', '0', '', '2022-03-09 21:00:05'); INSERT INTO `sys_job_log` VALUES (19105, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:532379毫秒', '0', '', '2022-03-09 21:08:52'); INSERT INTO `sys_job_log` VALUES (19106, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:684毫秒', '0', '', '2022-03-09 21:10:00'); INSERT INTO `sys_job_log` VALUES (19107, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4413毫秒', '0', '', '2022-03-09 21:10:04'); INSERT INTO `sys_job_log` VALUES (19108, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:51661毫秒', '0', '', '2022-03-09 21:10:51'); INSERT INTO `sys_job_log` VALUES (19109, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:589毫秒', '0', '', '2022-03-09 21:15:30'); INSERT INTO `sys_job_log` VALUES (19110, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:956毫秒', '0', '', '2022-03-09 21:20:00'); INSERT INTO `sys_job_log` VALUES (19111, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-03-09 21:20:02'); INSERT INTO `sys_job_log` VALUES (19112, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3994毫秒', '0', '', '2022-03-09 21:20:04'); INSERT INTO `sys_job_log` VALUES (19113, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-03-09 21:31:07'); INSERT INTO `sys_job_log` VALUES (19114, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4681毫秒', '0', '', '2022-03-09 21:31:11'); INSERT INTO `sys_job_log` VALUES (19115, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:376毫秒', '0', '', '2022-03-09 21:40:00'); INSERT INTO `sys_job_log` VALUES (19116, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:623毫秒', '0', '', '2022-03-09 21:40:00'); INSERT INTO `sys_job_log` VALUES (19117, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2073毫秒', '0', '', '2022-03-09 21:40:02'); INSERT INTO `sys_job_log` VALUES (19118, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:659毫秒', '0', '', '2022-03-09 21:50:00'); INSERT INTO `sys_job_log` VALUES (19119, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4768毫秒', '0', '', '2022-03-09 21:50:04'); INSERT INTO `sys_job_log` VALUES (19120, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:68毫秒', '0', '', '2022-03-09 22:00:00'); INSERT INTO `sys_job_log` VALUES (19121, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:940毫秒', '0', '', '2022-03-09 22:00:00'); INSERT INTO `sys_job_log` VALUES (19122, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-09 22:00:02'); INSERT INTO `sys_job_log` VALUES (19123, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10182毫秒', '0', '', '2022-03-09 22:00:10'); INSERT INTO `sys_job_log` VALUES (19124, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:653毫秒', '0', '', '2022-03-09 22:10:00'); INSERT INTO `sys_job_log` VALUES (19125, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4230毫秒', '0', '', '2022-03-09 22:10:04'); INSERT INTO `sys_job_log` VALUES (19126, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:583毫秒', '0', '', '2022-03-09 22:15:30'); INSERT INTO `sys_job_log` VALUES (19127, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:340毫秒', '0', '', '2022-03-09 22:20:00'); INSERT INTO `sys_job_log` VALUES (19128, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-03-09 22:20:00'); INSERT INTO `sys_job_log` VALUES (19129, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5641毫秒', '0', '', '2022-03-09 22:20:05'); INSERT INTO `sys_job_log` VALUES (19130, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:751毫秒', '0', '', '2022-03-09 22:37:38'); INSERT INTO `sys_job_log` VALUES (19131, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2768毫秒', '0', '', '2022-03-09 22:37:40'); INSERT INTO `sys_job_log` VALUES (19132, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2374毫秒', '0', '', '2022-03-10 08:40:02'); INSERT INTO `sys_job_log` VALUES (19133, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2386毫秒', '0', '', '2022-03-10 08:40:02'); INSERT INTO `sys_job_log` VALUES (19134, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6658毫秒', '0', '', '2022-03-10 08:40:06'); INSERT INTO `sys_job_log` VALUES (19135, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-03-10 08:50:00'); INSERT INTO `sys_job_log` VALUES (19136, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2579毫秒', '0', '', '2022-03-10 08:50:02'); INSERT INTO `sys_job_log` VALUES (19137, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-03-10 09:00:00'); INSERT INTO `sys_job_log` VALUES (19138, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1221毫秒', '0', '', '2022-03-10 09:00:01'); INSERT INTO `sys_job_log` VALUES (19139, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8298毫秒', '0', '', '2022-03-10 09:00:08'); INSERT INTO `sys_job_log` VALUES (19140, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1576毫秒', '0', '', '2022-03-10 09:10:01'); INSERT INTO `sys_job_log` VALUES (19141, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4950毫秒', '0', '', '2022-03-10 09:10:04'); INSERT INTO `sys_job_log` VALUES (19142, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:61388毫秒', '0', '', '2022-03-10 09:11:01'); INSERT INTO `sys_job_log` VALUES (19143, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3246毫秒', '0', '', '2022-03-10 09:15:33'); INSERT INTO `sys_job_log` VALUES (19144, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:969167毫秒', '0', '', '2022-03-10 09:16:09'); INSERT INTO `sys_job_log` VALUES (19145, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-03-10 09:20:00'); INSERT INTO `sys_job_log` VALUES (19146, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-03-10 09:20:02'); INSERT INTO `sys_job_log` VALUES (19147, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6350毫秒', '0', '', '2022-03-10 09:20:06'); INSERT INTO `sys_job_log` VALUES (19148, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:530毫秒', '0', '', '2022-03-10 09:30:00'); INSERT INTO `sys_job_log` VALUES (19149, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8306毫秒', '0', '', '2022-03-10 09:30:08'); INSERT INTO `sys_job_log` VALUES (19150, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:233毫秒', '0', '', '2022-03-10 09:40:00'); INSERT INTO `sys_job_log` VALUES (19151, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:505毫秒', '0', '', '2022-03-10 09:40:00'); INSERT INTO `sys_job_log` VALUES (19152, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6311毫秒', '0', '', '2022-03-10 09:40:06'); INSERT INTO `sys_job_log` VALUES (19153, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1768毫秒', '0', '', '2022-03-10 09:50:01'); INSERT INTO `sys_job_log` VALUES (19154, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4506毫秒', '0', '', '2022-03-10 09:50:04'); INSERT INTO `sys_job_log` VALUES (19155, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-03-10 10:00:00'); INSERT INTO `sys_job_log` VALUES (19156, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-10 10:00:02'); INSERT INTO `sys_job_log` VALUES (19157, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8755毫秒', '0', '', '2022-03-10 10:00:08'); INSERT INTO `sys_job_log` VALUES (19158, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1531毫秒', '0', '', '2022-03-10 10:10:01'); INSERT INTO `sys_job_log` VALUES (19159, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6237毫秒', '0', '', '2022-03-10 10:10:06'); INSERT INTO `sys_job_log` VALUES (19160, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2507毫秒', '0', '', '2022-03-10 10:15:32'); INSERT INTO `sys_job_log` VALUES (19161, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:497毫秒', '0', '', '2022-03-10 10:20:00'); INSERT INTO `sys_job_log` VALUES (19162, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1196毫秒', '0', '', '2022-03-10 10:20:01'); INSERT INTO `sys_job_log` VALUES (19163, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4330毫秒', '0', '', '2022-03-10 10:20:04'); INSERT INTO `sys_job_log` VALUES (19164, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:522毫秒', '0', '', '2022-03-10 10:30:00'); INSERT INTO `sys_job_log` VALUES (19165, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6984毫秒', '0', '', '2022-03-10 10:30:06'); INSERT INTO `sys_job_log` VALUES (19166, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:482毫秒', '0', '', '2022-03-10 10:40:00'); INSERT INTO `sys_job_log` VALUES (19167, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2019毫秒', '0', '', '2022-03-10 10:40:02'); INSERT INTO `sys_job_log` VALUES (19168, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4689毫秒', '0', '', '2022-03-10 10:40:04'); INSERT INTO `sys_job_log` VALUES (19169, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-03-10 10:50:00'); INSERT INTO `sys_job_log` VALUES (19170, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6571毫秒', '0', '', '2022-03-10 10:50:06'); INSERT INTO `sys_job_log` VALUES (19171, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:549毫秒', '0', '', '2022-03-10 11:00:00'); INSERT INTO `sys_job_log` VALUES (19172, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1212毫秒', '0', '', '2022-03-10 11:00:01'); INSERT INTO `sys_job_log` VALUES (19173, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3641毫秒', '0', '', '2022-03-10 11:00:03'); INSERT INTO `sys_job_log` VALUES (19174, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:524毫秒', '0', '', '2022-03-10 11:10:00'); INSERT INTO `sys_job_log` VALUES (19175, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2458毫秒', '0', '', '2022-03-10 11:10:02'); INSERT INTO `sys_job_log` VALUES (19176, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2871毫秒', '0', '', '2022-03-10 11:15:32'); INSERT INTO `sys_job_log` VALUES (19177, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:498毫秒', '0', '', '2022-03-10 11:20:00'); INSERT INTO `sys_job_log` VALUES (19178, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-03-10 11:20:02'); INSERT INTO `sys_job_log` VALUES (19179, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6590毫秒', '0', '', '2022-03-10 11:20:06'); INSERT INTO `sys_job_log` VALUES (19180, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:607毫秒', '0', '', '2022-03-10 11:30:00'); INSERT INTO `sys_job_log` VALUES (19181, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5575毫秒', '0', '', '2022-03-10 11:30:05'); INSERT INTO `sys_job_log` VALUES (19182, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:233毫秒', '0', '', '2022-03-10 11:40:00'); INSERT INTO `sys_job_log` VALUES (19183, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:482毫秒', '0', '', '2022-03-10 11:40:00'); INSERT INTO `sys_job_log` VALUES (19184, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3113毫秒', '0', '', '2022-03-10 11:40:03'); INSERT INTO `sys_job_log` VALUES (19185, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:772毫秒', '0', '', '2022-03-10 11:50:00'); INSERT INTO `sys_job_log` VALUES (19186, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2009毫秒', '0', '', '2022-03-10 11:50:02'); INSERT INTO `sys_job_log` VALUES (19187, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:138毫秒', '0', '', '2022-03-10 12:00:00'); INSERT INTO `sys_job_log` VALUES (19188, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:456毫秒', '0', '', '2022-03-10 12:00:00'); INSERT INTO `sys_job_log` VALUES (19189, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-10 12:00:02'); INSERT INTO `sys_job_log` VALUES (19190, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5173毫秒', '0', '', '2022-03-10 12:00:05'); INSERT INTO `sys_job_log` VALUES (19191, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:633毫秒', '0', '', '2022-03-10 12:10:00'); INSERT INTO `sys_job_log` VALUES (19192, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4735毫秒', '0', '', '2022-03-10 12:10:04'); INSERT INTO `sys_job_log` VALUES (19193, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1484毫秒', '0', '', '2022-03-10 12:15:31'); INSERT INTO `sys_job_log` VALUES (19194, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:336毫秒', '0', '', '2022-03-10 12:20:00'); INSERT INTO `sys_job_log` VALUES (19195, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:489毫秒', '0', '', '2022-03-10 12:20:00'); INSERT INTO `sys_job_log` VALUES (19196, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9738毫秒', '0', '', '2022-03-10 12:20:09'); INSERT INTO `sys_job_log` VALUES (19197, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:525毫秒', '0', '', '2022-03-10 12:30:00'); INSERT INTO `sys_job_log` VALUES (19198, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3461毫秒', '0', '', '2022-03-10 12:30:03'); INSERT INTO `sys_job_log` VALUES (19199, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:656毫秒', '0', '', '2022-03-10 12:40:00'); INSERT INTO `sys_job_log` VALUES (19200, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2027毫秒', '0', '', '2022-03-10 12:40:02'); INSERT INTO `sys_job_log` VALUES (19201, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4755毫秒', '0', '', '2022-03-10 12:40:04'); INSERT INTO `sys_job_log` VALUES (19202, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:962毫秒', '0', '', '2022-03-10 12:50:00'); INSERT INTO `sys_job_log` VALUES (19203, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5580毫秒', '0', '', '2022-03-10 12:50:05'); INSERT INTO `sys_job_log` VALUES (19204, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:189毫秒', '0', '', '2022-03-10 13:00:00'); INSERT INTO `sys_job_log` VALUES (19205, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:518毫秒', '0', '', '2022-03-10 13:00:00'); INSERT INTO `sys_job_log` VALUES (19206, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4038毫秒', '0', '', '2022-03-10 13:00:04'); INSERT INTO `sys_job_log` VALUES (19207, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1533毫秒', '0', '', '2022-03-10 13:10:01'); INSERT INTO `sys_job_log` VALUES (19208, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3650毫秒', '0', '', '2022-03-10 13:10:03'); INSERT INTO `sys_job_log` VALUES (19209, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:5535毫秒', '0', '', '2022-03-10 13:15:35'); INSERT INTO `sys_job_log` VALUES (19210, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:519毫秒', '0', '', '2022-03-10 13:20:00'); INSERT INTO `sys_job_log` VALUES (19211, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2038毫秒', '0', '', '2022-03-10 13:20:02'); INSERT INTO `sys_job_log` VALUES (19212, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9591毫秒', '0', '', '2022-03-10 13:20:09'); INSERT INTO `sys_job_log` VALUES (19213, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:484毫秒', '0', '', '2022-03-10 13:30:00'); INSERT INTO `sys_job_log` VALUES (19214, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5617毫秒', '0', '', '2022-03-10 13:30:05'); INSERT INTO `sys_job_log` VALUES (19215, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:735毫秒', '0', '', '2022-03-10 13:40:00'); INSERT INTO `sys_job_log` VALUES (19216, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1230毫秒', '0', '', '2022-03-10 13:40:01'); INSERT INTO `sys_job_log` VALUES (19217, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4361毫秒', '0', '', '2022-03-10 13:40:04'); INSERT INTO `sys_job_log` VALUES (19218, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:611毫秒', '0', '', '2022-03-10 13:50:00'); INSERT INTO `sys_job_log` VALUES (19219, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8834毫秒', '0', '', '2022-03-10 13:50:08'); INSERT INTO `sys_job_log` VALUES (19220, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-03-10 14:00:00'); INSERT INTO `sys_job_log` VALUES (19221, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2035毫秒', '0', '', '2022-03-10 14:00:02'); INSERT INTO `sys_job_log` VALUES (19222, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3422毫秒', '0', '', '2022-03-10 14:00:03'); INSERT INTO `sys_job_log` VALUES (19223, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1861毫秒', '0', '', '2022-03-10 14:10:01'); INSERT INTO `sys_job_log` VALUES (19224, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4468毫秒', '0', '', '2022-03-10 14:10:04'); INSERT INTO `sys_job_log` VALUES (19225, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10039毫秒', '0', '', '2022-03-10 14:15:40'); INSERT INTO `sys_job_log` VALUES (19226, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:588毫秒', '0', '', '2022-03-10 14:20:00'); INSERT INTO `sys_job_log` VALUES (19227, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1195毫秒', '0', '', '2022-03-10 14:20:01'); INSERT INTO `sys_job_log` VALUES (19228, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3311毫秒', '0', '', '2022-03-10 14:20:03'); INSERT INTO `sys_job_log` VALUES (19229, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:623毫秒', '0', '', '2022-03-10 14:30:00'); INSERT INTO `sys_job_log` VALUES (19230, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4094毫秒', '0', '', '2022-03-10 14:30:04'); INSERT INTO `sys_job_log` VALUES (19231, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:566毫秒', '0', '', '2022-03-10 14:40:00'); INSERT INTO `sys_job_log` VALUES (19232, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-10 14:40:02'); INSERT INTO `sys_job_log` VALUES (19233, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4444毫秒', '0', '', '2022-03-10 14:40:04'); INSERT INTO `sys_job_log` VALUES (19234, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:693毫秒', '0', '', '2022-03-10 14:50:00'); INSERT INTO `sys_job_log` VALUES (19235, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4092毫秒', '0', '', '2022-03-10 14:50:04'); INSERT INTO `sys_job_log` VALUES (19236, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:344毫秒', '0', '', '2022-03-10 15:00:00'); INSERT INTO `sys_job_log` VALUES (19237, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:643毫秒', '0', '', '2022-03-10 15:00:00'); INSERT INTO `sys_job_log` VALUES (19238, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8796毫秒', '0', '', '2022-03-10 15:00:08'); INSERT INTO `sys_job_log` VALUES (19239, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:297毫秒', '0', '', '2022-03-10 15:10:00'); INSERT INTO `sys_job_log` VALUES (19240, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:559毫秒', '0', '', '2022-03-10 15:10:00'); INSERT INTO `sys_job_log` VALUES (19241, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3906毫秒', '0', '', '2022-03-10 15:10:03'); INSERT INTO `sys_job_log` VALUES (19242, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:468毫秒', '0', '', '2022-03-10 15:15:30'); INSERT INTO `sys_job_log` VALUES (19243, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1140464毫秒', '0', '', '2022-03-10 15:19:00'); INSERT INTO `sys_job_log` VALUES (19244, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:509毫秒', '0', '', '2022-03-10 15:20:00'); INSERT INTO `sys_job_log` VALUES (19245, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-10 15:20:02'); INSERT INTO `sys_job_log` VALUES (19246, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10292毫秒', '0', '', '2022-03-10 15:20:10'); INSERT INTO `sys_job_log` VALUES (19247, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:534毫秒', '0', '', '2022-03-10 15:30:00'); INSERT INTO `sys_job_log` VALUES (19248, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7613毫秒', '0', '', '2022-03-10 15:30:07'); INSERT INTO `sys_job_log` VALUES (19249, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:524毫秒', '0', '', '2022-03-10 15:40:00'); INSERT INTO `sys_job_log` VALUES (19250, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1178毫秒', '0', '', '2022-03-10 15:40:01'); INSERT INTO `sys_job_log` VALUES (19251, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4479毫秒', '0', '', '2022-03-10 15:40:04'); INSERT INTO `sys_job_log` VALUES (19252, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:533毫秒', '0', '', '2022-03-10 15:50:00'); INSERT INTO `sys_job_log` VALUES (19253, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4466毫秒', '0', '', '2022-03-10 15:50:04'); INSERT INTO `sys_job_log` VALUES (19254, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:224毫秒', '0', '', '2022-03-10 16:00:00'); INSERT INTO `sys_job_log` VALUES (19255, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:509毫秒', '0', '', '2022-03-10 16:00:00'); INSERT INTO `sys_job_log` VALUES (19256, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6674毫秒', '0', '', '2022-03-10 16:00:06'); INSERT INTO `sys_job_log` VALUES (19257, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-03-10 16:10:00'); INSERT INTO `sys_job_log` VALUES (19258, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3552毫秒', '0', '', '2022-03-10 16:10:03'); INSERT INTO `sys_job_log` VALUES (19259, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1592毫秒', '0', '', '2022-03-10 16:15:31'); INSERT INTO `sys_job_log` VALUES (19260, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:524毫秒', '0', '', '2022-03-10 16:20:00'); INSERT INTO `sys_job_log` VALUES (19261, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-10 16:20:02'); INSERT INTO `sys_job_log` VALUES (19262, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5911毫秒', '0', '', '2022-03-10 16:20:05'); INSERT INTO `sys_job_log` VALUES (19263, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:789毫秒', '0', '', '2022-03-10 16:30:00'); INSERT INTO `sys_job_log` VALUES (19264, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4168毫秒', '0', '', '2022-03-10 16:30:04'); INSERT INTO `sys_job_log` VALUES (19265, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:974毫秒', '0', '', '2022-03-10 16:40:01'); INSERT INTO `sys_job_log` VALUES (19266, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-10 16:40:02'); INSERT INTO `sys_job_log` VALUES (19267, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3461毫秒', '0', '', '2022-03-10 16:40:03'); INSERT INTO `sys_job_log` VALUES (19268, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:543毫秒', '0', '', '2022-03-10 16:50:00'); INSERT INTO `sys_job_log` VALUES (19269, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6757毫秒', '0', '', '2022-03-10 16:50:06'); INSERT INTO `sys_job_log` VALUES (19270, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:554毫秒', '0', '', '2022-03-10 17:00:00'); INSERT INTO `sys_job_log` VALUES (19271, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1179毫秒', '0', '', '2022-03-10 17:00:01'); INSERT INTO `sys_job_log` VALUES (19272, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5643毫秒', '0', '', '2022-03-10 17:00:05'); INSERT INTO `sys_job_log` VALUES (19273, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:483毫秒', '0', '', '2022-03-10 17:10:00'); INSERT INTO `sys_job_log` VALUES (19274, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3296毫秒', '0', '', '2022-03-10 17:10:03'); INSERT INTO `sys_job_log` VALUES (19275, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:688毫秒', '0', '', '2022-03-10 17:15:30'); INSERT INTO `sys_job_log` VALUES (19276, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-03-10 17:20:00'); INSERT INTO `sys_job_log` VALUES (19277, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2036毫秒', '0', '', '2022-03-10 17:20:02'); INSERT INTO `sys_job_log` VALUES (19278, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3762毫秒', '0', '', '2022-03-10 17:20:03'); INSERT INTO `sys_job_log` VALUES (19279, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:581毫秒', '0', '', '2022-03-10 17:30:00'); INSERT INTO `sys_job_log` VALUES (19280, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10660毫秒', '0', '', '2022-03-10 17:30:10'); INSERT INTO `sys_job_log` VALUES (19281, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:670毫秒', '0', '', '2022-03-11 08:40:00'); INSERT INTO `sys_job_log` VALUES (19282, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1060毫秒', '0', '', '2022-03-11 08:40:01'); INSERT INTO `sys_job_log` VALUES (19283, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2434毫秒', '0', '', '2022-03-11 08:40:02'); INSERT INTO `sys_job_log` VALUES (19284, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1857毫秒', '0', '', '2022-03-11 08:50:01'); INSERT INTO `sys_job_log` VALUES (19285, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4480毫秒', '0', '', '2022-03-11 08:50:04'); INSERT INTO `sys_job_log` VALUES (19286, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:240毫秒', '0', '', '2022-03-11 09:00:00'); INSERT INTO `sys_job_log` VALUES (19287, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:511毫秒', '0', '', '2022-03-11 09:00:00'); INSERT INTO `sys_job_log` VALUES (19288, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4462毫秒', '0', '', '2022-03-11 09:00:04'); INSERT INTO `sys_job_log` VALUES (19289, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:574毫秒', '0', '', '2022-03-11 09:10:00'); INSERT INTO `sys_job_log` VALUES (19290, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4811毫秒', '0', '', '2022-03-11 09:10:04'); INSERT INTO `sys_job_log` VALUES (19291, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:44182毫秒', '0', '', '2022-03-11 09:10:44'); INSERT INTO `sys_job_log` VALUES (19292, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1616毫秒', '0', '', '2022-03-11 09:15:31'); INSERT INTO `sys_job_log` VALUES (19293, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1192877毫秒', '0', '', '2022-03-11 09:19:52'); INSERT INTO `sys_job_log` VALUES (19294, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:526毫秒', '0', '', '2022-03-11 09:20:00'); INSERT INTO `sys_job_log` VALUES (19295, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-03-11 09:20:02'); INSERT INTO `sys_job_log` VALUES (19296, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4982毫秒', '0', '', '2022-03-11 09:20:04'); INSERT INTO `sys_job_log` VALUES (19297, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:546毫秒', '0', '', '2022-03-11 09:30:00'); INSERT INTO `sys_job_log` VALUES (19298, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4172毫秒', '0', '', '2022-03-11 09:30:04'); INSERT INTO `sys_job_log` VALUES (19299, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-03-11 09:40:00'); INSERT INTO `sys_job_log` VALUES (19300, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1187毫秒', '0', '', '2022-03-11 09:40:01'); INSERT INTO `sys_job_log` VALUES (19301, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5176毫秒', '0', '', '2022-03-11 09:40:05'); INSERT INTO `sys_job_log` VALUES (19302, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-03-11 09:50:00'); INSERT INTO `sys_job_log` VALUES (19303, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4788毫秒', '0', '', '2022-03-11 09:50:04'); INSERT INTO `sys_job_log` VALUES (19304, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:472毫秒', '0', '', '2022-03-11 10:00:00'); INSERT INTO `sys_job_log` VALUES (19305, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-11 10:00:02'); INSERT INTO `sys_job_log` VALUES (19306, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4887毫秒', '0', '', '2022-03-11 10:00:04'); INSERT INTO `sys_job_log` VALUES (19307, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:870毫秒', '0', '', '2022-03-11 10:10:00'); INSERT INTO `sys_job_log` VALUES (19308, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6316毫秒', '0', '', '2022-03-11 10:10:06'); INSERT INTO `sys_job_log` VALUES (19309, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:880毫秒', '0', '', '2022-03-11 10:15:30'); INSERT INTO `sys_job_log` VALUES (19310, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:524毫秒', '0', '', '2022-03-11 10:20:00'); INSERT INTO `sys_job_log` VALUES (19311, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1202毫秒', '0', '', '2022-03-11 10:20:01'); INSERT INTO `sys_job_log` VALUES (19312, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3958毫秒', '0', '', '2022-03-11 10:20:03'); INSERT INTO `sys_job_log` VALUES (19313, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:499毫秒', '0', '', '2022-03-11 10:30:00'); INSERT INTO `sys_job_log` VALUES (19314, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4341毫秒', '0', '', '2022-03-11 10:30:04'); INSERT INTO `sys_job_log` VALUES (19315, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:492毫秒', '0', '', '2022-03-11 10:40:00'); INSERT INTO `sys_job_log` VALUES (19316, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-11 10:40:02'); INSERT INTO `sys_job_log` VALUES (19317, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4057毫秒', '0', '', '2022-03-11 10:40:04'); INSERT INTO `sys_job_log` VALUES (19318, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:505毫秒', '0', '', '2022-03-11 10:50:00'); INSERT INTO `sys_job_log` VALUES (19319, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5472毫秒', '0', '', '2022-03-11 10:50:05'); INSERT INTO `sys_job_log` VALUES (19320, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:503毫秒', '0', '', '2022-03-11 11:00:00'); INSERT INTO `sys_job_log` VALUES (19321, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1150毫秒', '0', '', '2022-03-11 11:00:01'); INSERT INTO `sys_job_log` VALUES (19322, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6621毫秒', '0', '', '2022-03-11 11:00:06'); INSERT INTO `sys_job_log` VALUES (19323, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:710毫秒', '0', '', '2022-03-11 11:10:00'); INSERT INTO `sys_job_log` VALUES (19324, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2251毫秒', '0', '', '2022-03-11 11:10:02'); INSERT INTO `sys_job_log` VALUES (19325, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:540毫秒', '0', '', '2022-03-11 11:15:30'); INSERT INTO `sys_job_log` VALUES (19326, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:415毫秒', '0', '', '2022-03-11 11:20:00'); INSERT INTO `sys_job_log` VALUES (19327, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1558毫秒', '0', '', '2022-03-11 11:20:01'); INSERT INTO `sys_job_log` VALUES (19328, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-11 11:20:02'); INSERT INTO `sys_job_log` VALUES (19329, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:509毫秒', '0', '', '2022-03-11 11:30:00'); INSERT INTO `sys_job_log` VALUES (19330, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6038毫秒', '0', '', '2022-03-11 11:30:06'); INSERT INTO `sys_job_log` VALUES (19331, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:233毫秒', '0', '', '2022-03-11 11:40:00'); INSERT INTO `sys_job_log` VALUES (19332, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:483毫秒', '0', '', '2022-03-11 11:40:00'); INSERT INTO `sys_job_log` VALUES (19333, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4163毫秒', '0', '', '2022-03-11 11:40:04'); INSERT INTO `sys_job_log` VALUES (19334, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:703毫秒', '0', '', '2022-03-11 11:50:00'); INSERT INTO `sys_job_log` VALUES (19335, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6166毫秒', '0', '', '2022-03-11 11:50:06'); INSERT INTO `sys_job_log` VALUES (19336, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:490毫秒', '0', '', '2022-03-11 12:00:00'); INSERT INTO `sys_job_log` VALUES (19337, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-11 12:00:02'); INSERT INTO `sys_job_log` VALUES (19338, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4159毫秒', '0', '', '2022-03-11 12:00:04'); INSERT INTO `sys_job_log` VALUES (19339, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2040毫秒', '0', '', '2022-03-11 12:10:02'); INSERT INTO `sys_job_log` VALUES (19340, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8925毫秒', '0', '', '2022-03-11 12:10:08'); INSERT INTO `sys_job_log` VALUES (19341, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1528毫秒', '0', '', '2022-03-11 12:15:31'); INSERT INTO `sys_job_log` VALUES (19342, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:207毫秒', '0', '', '2022-03-11 12:20:00'); INSERT INTO `sys_job_log` VALUES (19343, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:511毫秒', '0', '', '2022-03-11 12:20:00'); INSERT INTO `sys_job_log` VALUES (19344, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4168毫秒', '0', '', '2022-03-11 12:20:04'); INSERT INTO `sys_job_log` VALUES (19345, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1517380毫秒', '0', '', '2022-03-11 12:25:17'); INSERT INTO `sys_job_log` VALUES (19346, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1609毫秒', '0', '', '2022-03-11 12:30:01'); INSERT INTO `sys_job_log` VALUES (19347, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4891毫秒', '0', '', '2022-03-11 12:30:04'); INSERT INTO `sys_job_log` VALUES (19348, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-03-11 12:40:00'); INSERT INTO `sys_job_log` VALUES (19349, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2041毫秒', '0', '', '2022-03-11 12:40:02'); INSERT INTO `sys_job_log` VALUES (19350, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3541毫秒', '0', '', '2022-03-11 12:40:03'); INSERT INTO `sys_job_log` VALUES (19351, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:524毫秒', '0', '', '2022-03-11 12:50:00'); INSERT INTO `sys_job_log` VALUES (19352, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4746毫秒', '0', '', '2022-03-11 12:50:04'); INSERT INTO `sys_job_log` VALUES (19353, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:208毫秒', '0', '', '2022-03-11 13:00:00'); INSERT INTO `sys_job_log` VALUES (19354, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:490毫秒', '0', '', '2022-03-11 13:00:00'); INSERT INTO `sys_job_log` VALUES (19355, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5165毫秒', '0', '', '2022-03-11 13:00:05'); INSERT INTO `sys_job_log` VALUES (19356, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:491毫秒', '0', '', '2022-03-11 13:10:00'); INSERT INTO `sys_job_log` VALUES (19357, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3810毫秒', '0', '', '2022-03-11 13:10:03'); INSERT INTO `sys_job_log` VALUES (19358, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:550毫秒', '0', '', '2022-03-11 13:15:30'); INSERT INTO `sys_job_log` VALUES (19359, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:482毫秒', '0', '', '2022-03-11 13:20:00'); INSERT INTO `sys_job_log` VALUES (19360, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2043毫秒', '0', '', '2022-03-11 13:20:02'); INSERT INTO `sys_job_log` VALUES (19361, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2341毫秒', '0', '', '2022-03-11 13:20:02'); INSERT INTO `sys_job_log` VALUES (19362, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:606毫秒', '0', '', '2022-03-11 13:30:00'); INSERT INTO `sys_job_log` VALUES (19363, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3420毫秒', '0', '', '2022-03-11 13:30:03'); INSERT INTO `sys_job_log` VALUES (19364, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:319毫秒', '0', '', '2022-03-11 13:40:00'); INSERT INTO `sys_job_log` VALUES (19365, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:915毫秒', '0', '', '2022-03-11 13:40:00'); INSERT INTO `sys_job_log` VALUES (19366, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5726毫秒', '0', '', '2022-03-11 13:40:05'); INSERT INTO `sys_job_log` VALUES (19367, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:536毫秒', '0', '', '2022-03-11 13:50:00'); INSERT INTO `sys_job_log` VALUES (19368, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4403毫秒', '0', '', '2022-03-11 13:50:04'); INSERT INTO `sys_job_log` VALUES (19369, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-03-11 14:00:00'); INSERT INTO `sys_job_log` VALUES (19370, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2041毫秒', '0', '', '2022-03-11 14:00:02'); INSERT INTO `sys_job_log` VALUES (19371, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4565毫秒', '0', '', '2022-03-11 14:00:04'); INSERT INTO `sys_job_log` VALUES (19372, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1661毫秒', '0', '', '2022-03-11 14:10:01'); INSERT INTO `sys_job_log` VALUES (19373, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3674毫秒', '0', '', '2022-03-11 14:10:03'); INSERT INTO `sys_job_log` VALUES (19374, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:490毫秒', '0', '', '2022-03-11 14:15:30'); INSERT INTO `sys_job_log` VALUES (19375, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-03-11 14:20:00'); INSERT INTO `sys_job_log` VALUES (19376, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1173毫秒', '0', '', '2022-03-11 14:20:01'); INSERT INTO `sys_job_log` VALUES (19377, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3514毫秒', '0', '', '2022-03-11 14:20:03'); INSERT INTO `sys_job_log` VALUES (19378, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:531毫秒', '0', '', '2022-03-11 14:30:00'); INSERT INTO `sys_job_log` VALUES (19379, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5219毫秒', '0', '', '2022-03-11 14:30:05'); INSERT INTO `sys_job_log` VALUES (19380, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:837毫秒', '0', '', '2022-03-11 14:40:00'); INSERT INTO `sys_job_log` VALUES (19381, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-11 14:40:02'); INSERT INTO `sys_job_log` VALUES (19382, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2519毫秒', '0', '', '2022-03-11 14:40:02'); INSERT INTO `sys_job_log` VALUES (19383, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:537毫秒', '0', '', '2022-03-11 14:50:00'); INSERT INTO `sys_job_log` VALUES (19384, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3502毫秒', '0', '', '2022-03-11 14:50:03'); INSERT INTO `sys_job_log` VALUES (19385, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:492毫秒', '0', '', '2022-03-11 15:00:00'); INSERT INTO `sys_job_log` VALUES (19386, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1159毫秒', '0', '', '2022-03-11 15:00:01'); INSERT INTO `sys_job_log` VALUES (19387, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5947毫秒', '0', '', '2022-03-11 15:00:05'); INSERT INTO `sys_job_log` VALUES (19388, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:298毫秒', '0', '', '2022-03-11 15:10:00'); INSERT INTO `sys_job_log` VALUES (19389, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-03-11 15:10:00'); INSERT INTO `sys_job_log` VALUES (19390, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2520毫秒', '0', '', '2022-03-11 15:10:02'); INSERT INTO `sys_job_log` VALUES (19391, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:417毫秒', '0', '', '2022-03-11 15:15:30'); INSERT INTO `sys_job_log` VALUES (19392, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:478毫秒', '0', '', '2022-03-11 15:20:00'); INSERT INTO `sys_job_log` VALUES (19393, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2008毫秒', '0', '', '2022-03-11 15:20:02'); INSERT INTO `sys_job_log` VALUES (19394, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2917毫秒', '0', '', '2022-03-11 15:20:02'); INSERT INTO `sys_job_log` VALUES (19395, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1432597毫秒', '0', '', '2022-03-11 15:23:52'); INSERT INTO `sys_job_log` VALUES (19396, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:515毫秒', '0', '', '2022-03-11 15:30:00'); INSERT INTO `sys_job_log` VALUES (19397, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2615毫秒', '0', '', '2022-03-11 15:30:02'); INSERT INTO `sys_job_log` VALUES (19398, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1220毫秒', '0', '', '2022-03-11 15:40:01'); INSERT INTO `sys_job_log` VALUES (19399, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1877毫秒', '0', '', '2022-03-11 15:40:01'); INSERT INTO `sys_job_log` VALUES (19400, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4270毫秒', '0', '', '2022-03-11 15:40:04'); INSERT INTO `sys_job_log` VALUES (19401, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1523毫秒', '0', '', '2022-03-11 15:50:01'); INSERT INTO `sys_job_log` VALUES (19402, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4479毫秒', '0', '', '2022-03-11 15:50:04'); INSERT INTO `sys_job_log` VALUES (19403, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1544毫秒', '0', '', '2022-03-11 16:00:01'); INSERT INTO `sys_job_log` VALUES (19404, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-11 16:00:02'); INSERT INTO `sys_job_log` VALUES (19405, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5195毫秒', '0', '', '2022-03-11 16:00:05'); INSERT INTO `sys_job_log` VALUES (19406, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:868毫秒', '0', '', '2022-03-11 16:10:00'); INSERT INTO `sys_job_log` VALUES (19407, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4595毫秒', '0', '', '2022-03-11 16:10:04'); INSERT INTO `sys_job_log` VALUES (19408, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1521毫秒', '0', '', '2022-03-11 16:15:31'); INSERT INTO `sys_job_log` VALUES (19409, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:252毫秒', '0', '', '2022-03-11 16:20:00'); INSERT INTO `sys_job_log` VALUES (19410, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-03-11 16:20:00'); INSERT INTO `sys_job_log` VALUES (19411, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3569毫秒', '0', '', '2022-03-11 16:20:03'); INSERT INTO `sys_job_log` VALUES (19412, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-03-11 16:30:00'); INSERT INTO `sys_job_log` VALUES (19413, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5137毫秒', '0', '', '2022-03-11 16:30:05'); INSERT INTO `sys_job_log` VALUES (19414, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:473毫秒', '0', '', '2022-03-11 16:40:00'); INSERT INTO `sys_job_log` VALUES (19415, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1918毫秒', '0', '', '2022-03-11 16:40:01'); INSERT INTO `sys_job_log` VALUES (19416, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-11 16:40:02'); INSERT INTO `sys_job_log` VALUES (19417, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:550毫秒', '0', '', '2022-03-11 16:50:00'); INSERT INTO `sys_job_log` VALUES (19418, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4306毫秒', '0', '', '2022-03-11 16:50:04'); INSERT INTO `sys_job_log` VALUES (19419, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:224毫秒', '0', '', '2022-03-11 17:00:00'); INSERT INTO `sys_job_log` VALUES (19420, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:559毫秒', '0', '', '2022-03-11 17:00:00'); INSERT INTO `sys_job_log` VALUES (19421, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5372毫秒', '0', '', '2022-03-11 17:00:05'); INSERT INTO `sys_job_log` VALUES (19422, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:486毫秒', '0', '', '2022-03-11 17:10:00'); INSERT INTO `sys_job_log` VALUES (19423, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4986毫秒', '0', '', '2022-03-11 17:10:05'); INSERT INTO `sys_job_log` VALUES (19424, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:468毫秒', '0', '', '2022-03-11 17:15:30'); INSERT INTO `sys_job_log` VALUES (19425, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-03-11 17:20:00'); INSERT INTO `sys_job_log` VALUES (19426, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-11 17:20:02'); INSERT INTO `sys_job_log` VALUES (19427, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3504毫秒', '0', '', '2022-03-11 17:20:03'); INSERT INTO `sys_job_log` VALUES (19428, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1658毫秒', '0', '', '2022-03-14 09:00:01'); INSERT INTO `sys_job_log` VALUES (19429, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2156毫秒', '0', '', '2022-03-14 09:00:02'); INSERT INTO `sys_job_log` VALUES (19430, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5334毫秒', '0', '', '2022-03-14 09:00:05'); INSERT INTO `sys_job_log` VALUES (19431, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:904毫秒', '0', '', '2022-03-14 09:10:00'); INSERT INTO `sys_job_log` VALUES (19432, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3169毫秒', '0', '', '2022-03-14 09:10:03'); INSERT INTO `sys_job_log` VALUES (19433, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:50123毫秒', '0', '', '2022-03-14 09:10:50'); INSERT INTO `sys_job_log` VALUES (19434, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:875518毫秒', '0', '', '2022-03-14 09:14:35'); INSERT INTO `sys_job_log` VALUES (19435, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2672毫秒', '0', '', '2022-03-14 09:15:32'); INSERT INTO `sys_job_log` VALUES (19436, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:282毫秒', '0', '', '2022-03-14 09:20:00'); INSERT INTO `sys_job_log` VALUES (19437, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:597毫秒', '0', '', '2022-03-14 09:20:00'); INSERT INTO `sys_job_log` VALUES (19438, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6675毫秒', '0', '', '2022-03-14 09:20:06'); INSERT INTO `sys_job_log` VALUES (19439, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-03-14 09:30:00'); INSERT INTO `sys_job_log` VALUES (19440, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12862毫秒', '0', '', '2022-03-14 09:30:12'); INSERT INTO `sys_job_log` VALUES (19441, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1512毫秒', '0', '', '2022-03-14 09:40:01'); INSERT INTO `sys_job_log` VALUES (19442, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2022毫秒', '0', '', '2022-03-14 09:40:02'); INSERT INTO `sys_job_log` VALUES (19443, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4689毫秒', '0', '', '2022-03-14 09:40:04'); INSERT INTO `sys_job_log` VALUES (19444, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:443毫秒', '0', '', '2022-03-14 09:50:00'); INSERT INTO `sys_job_log` VALUES (19445, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4850毫秒', '0', '', '2022-03-14 09:50:04'); INSERT INTO `sys_job_log` VALUES (19446, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1245毫秒', '0', '', '2022-03-14 10:00:01'); INSERT INTO `sys_job_log` VALUES (19447, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1517毫秒', '0', '', '2022-03-14 10:00:01'); INSERT INTO `sys_job_log` VALUES (19448, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7000毫秒', '0', '', '2022-03-14 10:00:07'); INSERT INTO `sys_job_log` VALUES (19449, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:700毫秒', '0', '', '2022-03-14 10:10:00'); INSERT INTO `sys_job_log` VALUES (19450, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8973毫秒', '0', '', '2022-03-14 10:10:08'); INSERT INTO `sys_job_log` VALUES (19451, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:7492毫秒', '0', '', '2022-03-14 10:15:37'); INSERT INTO `sys_job_log` VALUES (19452, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:786毫秒', '0', '', '2022-03-14 10:20:00'); INSERT INTO `sys_job_log` VALUES (19453, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1543毫秒', '0', '', '2022-03-14 10:20:01'); INSERT INTO `sys_job_log` VALUES (19454, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3936毫秒', '0', '', '2022-03-14 10:20:03'); INSERT INTO `sys_job_log` VALUES (19455, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2042毫秒', '0', '', '2022-03-14 10:30:02'); INSERT INTO `sys_job_log` VALUES (19456, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9265毫秒', '0', '', '2022-03-14 10:30:09'); INSERT INTO `sys_job_log` VALUES (19457, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:672毫秒', '0', '', '2022-03-14 10:40:00'); INSERT INTO `sys_job_log` VALUES (19458, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1210毫秒', '0', '', '2022-03-14 10:40:01'); INSERT INTO `sys_job_log` VALUES (19459, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4526毫秒', '0', '', '2022-03-14 10:40:04'); INSERT INTO `sys_job_log` VALUES (19460, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:531毫秒', '0', '', '2022-03-14 10:50:00'); INSERT INTO `sys_job_log` VALUES (19461, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4781毫秒', '0', '', '2022-03-14 10:50:04'); INSERT INTO `sys_job_log` VALUES (19462, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:204毫秒', '0', '', '2022-03-14 11:00:00'); INSERT INTO `sys_job_log` VALUES (19463, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:512毫秒', '0', '', '2022-03-14 11:00:00'); INSERT INTO `sys_job_log` VALUES (19464, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2754毫秒', '0', '', '2022-03-14 11:00:02'); INSERT INTO `sys_job_log` VALUES (19465, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:470毫秒', '0', '', '2022-03-14 11:10:00'); INSERT INTO `sys_job_log` VALUES (19466, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4006毫秒', '0', '', '2022-03-14 11:10:04'); INSERT INTO `sys_job_log` VALUES (19467, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2516毫秒', '0', '', '2022-03-14 11:15:32'); INSERT INTO `sys_job_log` VALUES (19468, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:485毫秒', '0', '', '2022-03-14 11:20:00'); INSERT INTO `sys_job_log` VALUES (19469, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1181毫秒', '0', '', '2022-03-14 11:20:01'); INSERT INTO `sys_job_log` VALUES (19470, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5015毫秒', '0', '', '2022-03-14 11:20:05'); INSERT INTO `sys_job_log` VALUES (19471, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:648毫秒', '0', '', '2022-03-14 11:30:00'); INSERT INTO `sys_job_log` VALUES (19472, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3712毫秒', '0', '', '2022-03-14 11:30:03'); INSERT INTO `sys_job_log` VALUES (19473, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:506毫秒', '0', '', '2022-03-14 11:40:00'); INSERT INTO `sys_job_log` VALUES (19474, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-03-14 11:40:02'); INSERT INTO `sys_job_log` VALUES (19475, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4835毫秒', '0', '', '2022-03-14 11:40:04'); INSERT INTO `sys_job_log` VALUES (19476, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:512毫秒', '0', '', '2022-03-14 11:50:00'); INSERT INTO `sys_job_log` VALUES (19477, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3359毫秒', '0', '', '2022-03-14 11:50:03'); INSERT INTO `sys_job_log` VALUES (19478, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:125毫秒', '0', '', '2022-03-14 12:00:00'); INSERT INTO `sys_job_log` VALUES (19479, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:220毫秒', '0', '', '2022-03-14 12:00:00'); INSERT INTO `sys_job_log` VALUES (19480, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:802毫秒', '0', '', '2022-03-14 12:00:00'); INSERT INTO `sys_job_log` VALUES (19481, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5220毫秒', '0', '', '2022-03-14 12:00:05'); INSERT INTO `sys_job_log` VALUES (19482, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:555毫秒', '0', '', '2022-03-14 12:10:00'); INSERT INTO `sys_job_log` VALUES (19483, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1700毫秒', '0', '', '2022-03-14 12:10:01'); INSERT INTO `sys_job_log` VALUES (19484, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:519毫秒', '0', '', '2022-03-14 12:15:30'); INSERT INTO `sys_job_log` VALUES (19485, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-03-14 12:20:00'); INSERT INTO `sys_job_log` VALUES (19486, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2025毫秒', '0', '', '2022-03-14 12:20:02'); INSERT INTO `sys_job_log` VALUES (19487, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8803毫秒', '0', '', '2022-03-14 12:20:08'); INSERT INTO `sys_job_log` VALUES (19488, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-03-14 12:30:00'); INSERT INTO `sys_job_log` VALUES (19489, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4145毫秒', '0', '', '2022-03-14 12:30:04'); INSERT INTO `sys_job_log` VALUES (19490, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:203毫秒', '0', '', '2022-03-14 12:40:00'); INSERT INTO `sys_job_log` VALUES (19491, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-03-14 12:40:00'); INSERT INTO `sys_job_log` VALUES (19492, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3675毫秒', '0', '', '2022-03-14 12:40:03'); INSERT INTO `sys_job_log` VALUES (19493, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:889毫秒', '0', '', '2022-03-14 12:50:00'); INSERT INTO `sys_job_log` VALUES (19494, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5863毫秒', '0', '', '2022-03-14 12:50:05'); INSERT INTO `sys_job_log` VALUES (19495, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:554毫秒', '0', '', '2022-03-14 13:00:00'); INSERT INTO `sys_job_log` VALUES (19496, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1458毫秒', '0', '', '2022-03-14 13:00:01'); INSERT INTO `sys_job_log` VALUES (19497, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7560毫秒', '0', '', '2022-03-14 13:00:07'); INSERT INTO `sys_job_log` VALUES (19498, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:516毫秒', '0', '', '2022-03-14 13:10:00'); INSERT INTO `sys_job_log` VALUES (19499, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3851毫秒', '0', '', '2022-03-14 13:10:03'); INSERT INTO `sys_job_log` VALUES (19500, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:840毫秒', '0', '', '2022-03-14 13:15:30'); INSERT INTO `sys_job_log` VALUES (19501, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:234毫秒', '0', '', '2022-03-14 13:20:00'); INSERT INTO `sys_job_log` VALUES (19502, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:502毫秒', '0', '', '2022-03-14 13:20:00'); INSERT INTO `sys_job_log` VALUES (19503, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3780毫秒', '0', '', '2022-03-14 13:20:03'); INSERT INTO `sys_job_log` VALUES (19504, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:858毫秒', '0', '', '2022-03-14 13:30:00'); INSERT INTO `sys_job_log` VALUES (19505, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4430毫秒', '0', '', '2022-03-14 13:30:04'); INSERT INTO `sys_job_log` VALUES (19506, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:457毫秒', '0', '', '2022-03-14 13:40:00'); INSERT INTO `sys_job_log` VALUES (19507, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:536毫秒', '0', '', '2022-03-14 13:40:00'); INSERT INTO `sys_job_log` VALUES (19508, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4535毫秒', '0', '', '2022-03-14 13:40:04'); INSERT INTO `sys_job_log` VALUES (19509, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:793毫秒', '0', '', '2022-03-14 13:50:00'); INSERT INTO `sys_job_log` VALUES (19510, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6199毫秒', '0', '', '2022-03-14 13:50:06'); INSERT INTO `sys_job_log` VALUES (19511, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:775毫秒', '0', '', '2022-03-14 14:00:00'); INSERT INTO `sys_job_log` VALUES (19512, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1202毫秒', '0', '', '2022-03-14 14:00:01'); INSERT INTO `sys_job_log` VALUES (19513, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2754毫秒', '0', '', '2022-03-14 14:00:02'); INSERT INTO `sys_job_log` VALUES (19514, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-03-14 14:10:00'); INSERT INTO `sys_job_log` VALUES (19515, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4753毫秒', '0', '', '2022-03-14 14:10:04'); INSERT INTO `sys_job_log` VALUES (19516, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1766毫秒', '0', '', '2022-03-14 14:15:31'); INSERT INTO `sys_job_log` VALUES (19517, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:510毫秒', '0', '', '2022-03-14 14:20:00'); INSERT INTO `sys_job_log` VALUES (19518, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-03-14 14:20:00'); INSERT INTO `sys_job_log` VALUES (19519, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4227毫秒', '0', '', '2022-03-14 14:20:04'); INSERT INTO `sys_job_log` VALUES (19520, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1517毫秒', '0', '', '2022-03-14 14:30:01'); INSERT INTO `sys_job_log` VALUES (19521, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3953毫秒', '0', '', '2022-03-14 14:30:03'); INSERT INTO `sys_job_log` VALUES (19522, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:205毫秒', '0', '', '2022-03-14 14:40:00'); INSERT INTO `sys_job_log` VALUES (19523, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:525毫秒', '0', '', '2022-03-14 14:40:00'); INSERT INTO `sys_job_log` VALUES (19524, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1522毫秒', '0', '', '2022-03-14 14:40:01'); INSERT INTO `sys_job_log` VALUES (19525, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:876毫秒', '0', '', '2022-03-14 14:50:00'); INSERT INTO `sys_job_log` VALUES (19526, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4111毫秒', '0', '', '2022-03-14 14:50:04'); INSERT INTO `sys_job_log` VALUES (19527, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:620毫秒', '0', '', '2022-03-14 15:00:00'); INSERT INTO `sys_job_log` VALUES (19528, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1458毫秒', '0', '', '2022-03-14 15:00:01'); INSERT INTO `sys_job_log` VALUES (19529, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7160毫秒', '0', '', '2022-03-14 15:00:07'); INSERT INTO `sys_job_log` VALUES (19530, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:348毫秒', '0', '', '2022-03-14 15:10:00'); INSERT INTO `sys_job_log` VALUES (19531, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-03-14 15:10:00'); INSERT INTO `sys_job_log` VALUES (19532, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3372毫秒', '0', '', '2022-03-14 15:10:03'); INSERT INTO `sys_job_log` VALUES (19533, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:585毫秒', '0', '', '2022-03-14 15:15:30'); INSERT INTO `sys_job_log` VALUES (19534, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:202毫秒', '0', '', '2022-03-14 15:20:00'); INSERT INTO `sys_job_log` VALUES (19535, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:579毫秒', '0', '', '2022-03-14 15:20:00'); INSERT INTO `sys_job_log` VALUES (19536, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3695毫秒', '0', '', '2022-03-14 15:20:03'); INSERT INTO `sys_job_log` VALUES (19537, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1330717毫秒', '0', '', '2022-03-14 15:22:10'); INSERT INTO `sys_job_log` VALUES (19538, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:537毫秒', '0', '', '2022-03-14 15:30:00'); INSERT INTO `sys_job_log` VALUES (19539, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5740毫秒', '0', '', '2022-03-14 15:30:05'); INSERT INTO `sys_job_log` VALUES (19540, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:188毫秒', '0', '', '2022-03-14 15:40:00'); INSERT INTO `sys_job_log` VALUES (19541, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:484毫秒', '0', '', '2022-03-14 15:40:00'); INSERT INTO `sys_job_log` VALUES (19542, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3017毫秒', '0', '', '2022-03-14 15:40:03'); INSERT INTO `sys_job_log` VALUES (19543, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-03-14 15:50:00'); INSERT INTO `sys_job_log` VALUES (19544, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2345毫秒', '0', '', '2022-03-14 15:50:02'); INSERT INTO `sys_job_log` VALUES (19545, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:209毫秒', '0', '', '2022-03-14 16:00:00'); INSERT INTO `sys_job_log` VALUES (19546, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:508毫秒', '0', '', '2022-03-14 16:00:00'); INSERT INTO `sys_job_log` VALUES (19547, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10701毫秒', '0', '', '2022-03-14 16:00:10'); INSERT INTO `sys_job_log` VALUES (19548, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:708毫秒', '0', '', '2022-03-14 16:10:00'); INSERT INTO `sys_job_log` VALUES (19549, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3017毫秒', '0', '', '2022-03-14 16:10:03'); INSERT INTO `sys_job_log` VALUES (19550, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2590毫秒', '0', '', '2022-03-14 16:15:32'); INSERT INTO `sys_job_log` VALUES (19551, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:440毫秒', '0', '', '2022-03-14 16:20:00'); INSERT INTO `sys_job_log` VALUES (19552, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:539毫秒', '0', '', '2022-03-14 16:20:00'); INSERT INTO `sys_job_log` VALUES (19553, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8809毫秒', '0', '', '2022-03-14 16:20:08'); INSERT INTO `sys_job_log` VALUES (19554, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2032毫秒', '0', '', '2022-03-14 16:30:02'); INSERT INTO `sys_job_log` VALUES (19555, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8105毫秒', '0', '', '2022-03-14 16:30:08'); INSERT INTO `sys_job_log` VALUES (19556, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1641毫秒', '0', '', '2022-03-14 16:40:01'); INSERT INTO `sys_job_log` VALUES (19557, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1652毫秒', '0', '', '2022-03-14 16:40:01'); INSERT INTO `sys_job_log` VALUES (19558, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8723毫秒', '0', '', '2022-03-14 16:40:08'); INSERT INTO `sys_job_log` VALUES (19559, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:695毫秒', '0', '', '2022-03-14 16:50:00'); INSERT INTO `sys_job_log` VALUES (19560, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7009毫秒', '0', '', '2022-03-14 16:50:07'); INSERT INTO `sys_job_log` VALUES (19561, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:684毫秒', '0', '', '2022-03-14 17:00:00'); INSERT INTO `sys_job_log` VALUES (19562, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2020毫秒', '0', '', '2022-03-14 17:00:02'); INSERT INTO `sys_job_log` VALUES (19563, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12461毫秒', '0', '', '2022-03-14 17:00:12'); INSERT INTO `sys_job_log` VALUES (19564, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:626毫秒', '0', '', '2022-03-14 17:10:00'); INSERT INTO `sys_job_log` VALUES (19565, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5622毫秒', '0', '', '2022-03-14 17:10:05'); INSERT INTO `sys_job_log` VALUES (19566, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2804毫秒', '0', '', '2022-03-14 17:15:32'); INSERT INTO `sys_job_log` VALUES (19567, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:245毫秒', '0', '', '2022-03-14 17:20:00'); INSERT INTO `sys_job_log` VALUES (19568, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:630毫秒', '0', '', '2022-03-14 17:20:00'); INSERT INTO `sys_job_log` VALUES (19569, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5475毫秒', '0', '', '2022-03-14 17:20:05'); INSERT INTO `sys_job_log` VALUES (19570, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2018毫秒', '0', '', '2022-03-14 17:30:02'); INSERT INTO `sys_job_log` VALUES (19571, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6814毫秒', '0', '', '2022-03-14 17:30:06'); INSERT INTO `sys_job_log` VALUES (19572, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2430毫秒', '0', '', '2022-03-15 08:40:02'); INSERT INTO `sys_job_log` VALUES (19573, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2440毫秒', '0', '', '2022-03-15 08:40:02'); INSERT INTO `sys_job_log` VALUES (19574, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6573毫秒', '0', '', '2022-03-15 08:40:06'); INSERT INTO `sys_job_log` VALUES (19575, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:689毫秒', '0', '', '2022-03-15 08:50:00'); INSERT INTO `sys_job_log` VALUES (19576, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10233毫秒', '0', '', '2022-03-15 08:50:10'); INSERT INTO `sys_job_log` VALUES (19577, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-03-15 09:00:00'); INSERT INTO `sys_job_log` VALUES (19578, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1202毫秒', '0', '', '2022-03-15 09:00:01'); INSERT INTO `sys_job_log` VALUES (19579, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2842毫秒', '0', '', '2022-03-15 09:00:02'); INSERT INTO `sys_job_log` VALUES (19580, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2015毫秒', '0', '', '2022-03-15 09:10:02'); INSERT INTO `sys_job_log` VALUES (19581, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4970毫秒', '0', '', '2022-03-15 09:10:04'); INSERT INTO `sys_job_log` VALUES (19582, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:54036毫秒', '0', '', '2022-03-15 09:10:54'); INSERT INTO `sys_job_log` VALUES (19583, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:759581毫秒', '0', '', '2022-03-15 09:12:39'); INSERT INTO `sys_job_log` VALUES (19584, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:5590毫秒', '0', '', '2022-03-15 09:15:35'); INSERT INTO `sys_job_log` VALUES (19585, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1463毫秒', '0', '', '2022-03-15 09:20:01'); INSERT INTO `sys_job_log` VALUES (19586, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1971毫秒', '0', '', '2022-03-15 09:20:02'); INSERT INTO `sys_job_log` VALUES (19587, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6788毫秒', '0', '', '2022-03-15 09:20:06'); INSERT INTO `sys_job_log` VALUES (19588, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:748毫秒', '0', '', '2022-03-15 09:30:00'); INSERT INTO `sys_job_log` VALUES (19589, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7066毫秒', '0', '', '2022-03-15 09:30:07'); INSERT INTO `sys_job_log` VALUES (19590, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:543毫秒', '0', '', '2022-03-15 09:40:00'); INSERT INTO `sys_job_log` VALUES (19591, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2040毫秒', '0', '', '2022-03-15 09:40:02'); INSERT INTO `sys_job_log` VALUES (19592, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3910毫秒', '0', '', '2022-03-15 09:40:03'); INSERT INTO `sys_job_log` VALUES (19593, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:534毫秒', '0', '', '2022-03-15 09:50:00'); INSERT INTO `sys_job_log` VALUES (19594, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4726毫秒', '0', '', '2022-03-15 09:50:04'); INSERT INTO `sys_job_log` VALUES (19595, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2318毫秒', '0', '', '2022-03-15 10:00:02'); INSERT INTO `sys_job_log` VALUES (19596, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2331毫秒', '0', '', '2022-03-15 10:00:02'); INSERT INTO `sys_job_log` VALUES (19597, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7221毫秒', '0', '', '2022-03-15 10:00:07'); INSERT INTO `sys_job_log` VALUES (19598, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:542毫秒', '0', '', '2022-03-15 10:10:00'); INSERT INTO `sys_job_log` VALUES (19599, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2656毫秒', '0', '', '2022-03-15 10:10:02'); INSERT INTO `sys_job_log` VALUES (19600, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:4038毫秒', '0', '', '2022-03-15 10:15:34'); INSERT INTO `sys_job_log` VALUES (19601, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:738毫秒', '0', '', '2022-03-15 10:15:34'); INSERT INTO `sys_job_log` VALUES (19602, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2021毫秒', '0', '', '2022-03-15 10:20:02'); INSERT INTO `sys_job_log` VALUES (19603, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2013毫秒', '0', '', '2022-03-15 10:20:02'); INSERT INTO `sys_job_log` VALUES (19604, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3913毫秒', '0', '', '2022-03-15 10:20:03'); INSERT INTO `sys_job_log` VALUES (19605, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:683毫秒', '0', '', '2022-03-15 10:30:00'); INSERT INTO `sys_job_log` VALUES (19606, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5531毫秒', '0', '', '2022-03-15 10:30:05'); INSERT INTO `sys_job_log` VALUES (19607, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:556毫秒', '0', '', '2022-03-15 10:40:00'); INSERT INTO `sys_job_log` VALUES (19608, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:780毫秒', '0', '', '2022-03-15 10:40:00'); INSERT INTO `sys_job_log` VALUES (19609, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4742毫秒', '0', '', '2022-03-15 10:40:04'); INSERT INTO `sys_job_log` VALUES (19610, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1670毫秒', '0', '', '2022-03-15 10:50:01'); INSERT INTO `sys_job_log` VALUES (19611, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8197毫秒', '0', '', '2022-03-15 10:50:08'); INSERT INTO `sys_job_log` VALUES (19612, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-03-15 11:00:00'); INSERT INTO `sys_job_log` VALUES (19613, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1220毫秒', '0', '', '2022-03-15 11:00:01'); INSERT INTO `sys_job_log` VALUES (19614, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7709毫秒', '0', '', '2022-03-15 11:00:07'); INSERT INTO `sys_job_log` VALUES (19615, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:881毫秒', '0', '', '2022-03-15 11:10:00'); INSERT INTO `sys_job_log` VALUES (19616, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2637毫秒', '0', '', '2022-03-15 11:10:02'); INSERT INTO `sys_job_log` VALUES (19617, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1726毫秒', '0', '', '2022-03-15 11:15:31'); INSERT INTO `sys_job_log` VALUES (19618, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:542毫秒', '0', '', '2022-03-15 11:20:00'); INSERT INTO `sys_job_log` VALUES (19619, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1582毫秒', '0', '', '2022-03-15 11:20:01'); INSERT INTO `sys_job_log` VALUES (19620, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4596毫秒', '0', '', '2022-03-15 11:20:04'); INSERT INTO `sys_job_log` VALUES (19621, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:540毫秒', '0', '', '2022-03-15 11:30:00'); INSERT INTO `sys_job_log` VALUES (19622, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3328毫秒', '0', '', '2022-03-15 11:30:03'); INSERT INTO `sys_job_log` VALUES (19623, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:205毫秒', '0', '', '2022-03-15 11:40:00'); INSERT INTO `sys_job_log` VALUES (19624, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:523毫秒', '0', '', '2022-03-15 11:40:00'); INSERT INTO `sys_job_log` VALUES (19625, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4566毫秒', '0', '', '2022-03-15 11:40:04'); INSERT INTO `sys_job_log` VALUES (19626, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:830毫秒', '0', '', '2022-03-15 11:50:00'); INSERT INTO `sys_job_log` VALUES (19627, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3758毫秒', '0', '', '2022-03-15 11:50:03'); INSERT INTO `sys_job_log` VALUES (19628, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1513毫秒', '0', '', '2022-03-15 12:00:01'); INSERT INTO `sys_job_log` VALUES (19629, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1466毫秒', '0', '', '2022-03-15 12:00:01'); INSERT INTO `sys_job_log` VALUES (19630, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1499毫秒', '0', '', '2022-03-15 12:00:01'); INSERT INTO `sys_job_log` VALUES (19631, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1483毫秒', '0', '', '2022-03-15 12:00:01'); INSERT INTO `sys_job_log` VALUES (19632, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2041毫秒', '0', '', '2022-03-15 12:10:02'); INSERT INTO `sys_job_log` VALUES (19633, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7851毫秒', '0', '', '2022-03-15 12:10:07'); INSERT INTO `sys_job_log` VALUES (19634, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:7505毫秒', '0', '', '2022-03-15 12:15:37'); INSERT INTO `sys_job_log` VALUES (19635, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2528毫秒', '0', '', '2022-03-15 12:20:02'); INSERT INTO `sys_job_log` VALUES (19636, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2516毫秒', '0', '', '2022-03-15 12:20:02'); INSERT INTO `sys_job_log` VALUES (19637, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10745毫秒', '0', '', '2022-03-15 12:20:10'); INSERT INTO `sys_job_log` VALUES (19638, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:757毫秒', '0', '', '2022-03-15 12:30:00'); INSERT INTO `sys_job_log` VALUES (19639, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:517毫秒', '0', '', '2022-03-15 12:30:01'); INSERT INTO `sys_job_log` VALUES (19640, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3349毫秒', '0', '', '2022-03-15 12:30:03'); INSERT INTO `sys_job_log` VALUES (19641, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3954毫秒', '0', '', '2022-03-15 12:30:07'); INSERT INTO `sys_job_log` VALUES (19642, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:793毫秒', '0', '', '2022-03-15 12:40:00'); INSERT INTO `sys_job_log` VALUES (19643, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1226毫秒', '0', '', '2022-03-15 12:40:01'); INSERT INTO `sys_job_log` VALUES (19644, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3642毫秒', '0', '', '2022-03-15 12:40:03'); INSERT INTO `sys_job_log` VALUES (19645, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:592毫秒', '0', '', '2022-03-15 12:50:00'); INSERT INTO `sys_job_log` VALUES (19646, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5244毫秒', '0', '', '2022-03-15 12:50:05'); INSERT INTO `sys_job_log` VALUES (19647, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:612毫秒', '0', '', '2022-03-15 13:00:00'); INSERT INTO `sys_job_log` VALUES (19648, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2039毫秒', '0', '', '2022-03-15 13:00:02'); INSERT INTO `sys_job_log` VALUES (19649, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6187毫秒', '0', '', '2022-03-15 13:00:06'); INSERT INTO `sys_job_log` VALUES (19650, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:868毫秒', '0', '', '2022-03-15 13:10:00'); INSERT INTO `sys_job_log` VALUES (19651, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2781毫秒', '0', '', '2022-03-15 13:10:02'); INSERT INTO `sys_job_log` VALUES (19652, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2400毫秒', '0', '', '2022-03-15 13:15:32'); INSERT INTO `sys_job_log` VALUES (19653, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:249毫秒', '0', '', '2022-03-15 13:20:00'); INSERT INTO `sys_job_log` VALUES (19654, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-03-15 13:20:00'); INSERT INTO `sys_job_log` VALUES (19655, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4523毫秒', '0', '', '2022-03-15 13:20:04'); INSERT INTO `sys_job_log` VALUES (19656, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1008毫秒', '0', '', '2022-03-15 13:30:01'); INSERT INTO `sys_job_log` VALUES (19657, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6385毫秒', '0', '', '2022-03-15 13:30:06'); INSERT INTO `sys_job_log` VALUES (19658, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1209毫秒', '0', '', '2022-03-15 13:40:01'); INSERT INTO `sys_job_log` VALUES (19659, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1617毫秒', '0', '', '2022-03-15 13:40:01'); INSERT INTO `sys_job_log` VALUES (19660, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4250毫秒', '0', '', '2022-03-15 13:40:04'); INSERT INTO `sys_job_log` VALUES (19661, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:735毫秒', '0', '', '2022-03-15 13:50:00'); INSERT INTO `sys_job_log` VALUES (19662, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2216毫秒', '0', '', '2022-03-15 13:50:02'); INSERT INTO `sys_job_log` VALUES (19663, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1243毫秒', '0', '', '2022-03-15 14:00:01'); INSERT INTO `sys_job_log` VALUES (19664, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:197毫秒', '0', '', '2022-03-15 14:00:01'); INSERT INTO `sys_job_log` VALUES (19665, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1791毫秒', '0', '', '2022-03-15 14:00:01'); INSERT INTO `sys_job_log` VALUES (19666, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:871毫秒', '0', '', '2022-03-15 14:00:02'); INSERT INTO `sys_job_log` VALUES (19667, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5323毫秒', '0', '', '2022-03-15 14:00:05'); INSERT INTO `sys_job_log` VALUES (19668, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4177毫秒', '0', '', '2022-03-15 14:00:09'); INSERT INTO `sys_job_log` VALUES (19669, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1818毫秒', '0', '', '2022-03-15 14:10:01'); INSERT INTO `sys_job_log` VALUES (19670, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4077毫秒', '0', '', '2022-03-15 14:10:04'); INSERT INTO `sys_job_log` VALUES (19671, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2368毫秒', '0', '', '2022-03-15 14:15:32'); INSERT INTO `sys_job_log` VALUES (19672, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:752毫秒', '0', '', '2022-03-15 14:20:00'); INSERT INTO `sys_job_log` VALUES (19673, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1246毫秒', '0', '', '2022-03-15 14:20:01'); INSERT INTO `sys_job_log` VALUES (19674, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3928毫秒', '0', '', '2022-03-15 14:20:03'); INSERT INTO `sys_job_log` VALUES (19675, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:683毫秒', '0', '', '2022-03-15 14:30:00'); INSERT INTO `sys_job_log` VALUES (19676, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4702毫秒', '0', '', '2022-03-15 14:30:04'); INSERT INTO `sys_job_log` VALUES (19677, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:732毫秒', '0', '', '2022-03-15 14:40:00'); INSERT INTO `sys_job_log` VALUES (19678, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1219毫秒', '0', '', '2022-03-15 14:40:01'); INSERT INTO `sys_job_log` VALUES (19679, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2862毫秒', '0', '', '2022-03-15 14:40:02'); INSERT INTO `sys_job_log` VALUES (19680, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-03-15 14:50:00'); INSERT INTO `sys_job_log` VALUES (19681, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2382毫秒', '0', '', '2022-03-15 14:50:02'); INSERT INTO `sys_job_log` VALUES (19682, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:582毫秒', '0', '', '2022-03-15 15:00:00'); INSERT INTO `sys_job_log` VALUES (19683, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-03-15 15:00:02'); INSERT INTO `sys_job_log` VALUES (19684, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5038毫秒', '0', '', '2022-03-15 15:00:05'); INSERT INTO `sys_job_log` VALUES (19685, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:964毫秒', '0', '', '2022-03-15 15:10:00'); INSERT INTO `sys_job_log` VALUES (19686, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4684毫秒', '0', '', '2022-03-15 15:10:04'); INSERT INTO `sys_job_log` VALUES (19687, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:62201毫秒', '0', '', '2022-03-15 15:11:02'); INSERT INTO `sys_job_log` VALUES (19688, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1549毫秒', '0', '', '2022-03-15 15:15:31'); INSERT INTO `sys_job_log` VALUES (19689, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1040893毫秒', '0', '', '2022-03-15 15:17:20'); INSERT INTO `sys_job_log` VALUES (19690, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:630毫秒', '0', '', '2022-03-15 15:20:00'); INSERT INTO `sys_job_log` VALUES (19691, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:706毫秒', '0', '', '2022-03-15 15:20:00'); INSERT INTO `sys_job_log` VALUES (19692, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3784毫秒', '0', '', '2022-03-15 15:20:03'); INSERT INTO `sys_job_log` VALUES (19693, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:752毫秒', '0', '', '2022-03-15 15:30:00'); INSERT INTO `sys_job_log` VALUES (19694, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5925毫秒', '0', '', '2022-03-15 15:30:05'); INSERT INTO `sys_job_log` VALUES (19695, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:300毫秒', '0', '', '2022-03-15 15:40:00'); INSERT INTO `sys_job_log` VALUES (19696, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:646毫秒', '0', '', '2022-03-15 15:40:00'); INSERT INTO `sys_job_log` VALUES (19697, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3918毫秒', '0', '', '2022-03-15 15:40:03'); INSERT INTO `sys_job_log` VALUES (19698, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:601毫秒', '0', '', '2022-03-15 15:50:00'); INSERT INTO `sys_job_log` VALUES (19699, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4278毫秒', '0', '', '2022-03-15 15:50:04'); INSERT INTO `sys_job_log` VALUES (19700, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:704毫秒', '0', '', '2022-03-15 16:00:00'); INSERT INTO `sys_job_log` VALUES (19701, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1189毫秒', '0', '', '2022-03-15 16:00:01'); INSERT INTO `sys_job_log` VALUES (19702, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3994毫秒', '0', '', '2022-03-15 16:00:04'); INSERT INTO `sys_job_log` VALUES (19703, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1941毫秒', '0', '', '2022-03-15 16:10:01'); INSERT INTO `sys_job_log` VALUES (19704, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5951毫秒', '0', '', '2022-03-15 16:10:05'); INSERT INTO `sys_job_log` VALUES (19705, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3668毫秒', '0', '', '2022-03-15 16:15:33'); INSERT INTO `sys_job_log` VALUES (19706, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:599毫秒', '0', '', '2022-03-15 16:20:00'); INSERT INTO `sys_job_log` VALUES (19707, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1207毫秒', '0', '', '2022-03-15 16:20:01'); INSERT INTO `sys_job_log` VALUES (19708, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3457毫秒', '0', '', '2022-03-15 16:20:03'); INSERT INTO `sys_job_log` VALUES (19709, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:574毫秒', '0', '', '2022-03-15 16:30:00'); INSERT INTO `sys_job_log` VALUES (19710, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2807毫秒', '0', '', '2022-03-15 16:30:02'); INSERT INTO `sys_job_log` VALUES (19711, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-03-15 16:40:00'); INSERT INTO `sys_job_log` VALUES (19712, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1211毫秒', '0', '', '2022-03-15 16:40:01'); INSERT INTO `sys_job_log` VALUES (19713, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3526毫秒', '0', '', '2022-03-15 16:40:03'); INSERT INTO `sys_job_log` VALUES (19714, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:686毫秒', '0', '', '2022-03-15 16:50:00'); INSERT INTO `sys_job_log` VALUES (19715, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5437毫秒', '0', '', '2022-03-15 16:50:05'); INSERT INTO `sys_job_log` VALUES (19716, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:599毫秒', '0', '', '2022-03-15 17:00:00'); INSERT INTO `sys_job_log` VALUES (19717, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1522毫秒', '0', '', '2022-03-15 17:00:01'); INSERT INTO `sys_job_log` VALUES (19718, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4572毫秒', '0', '', '2022-03-15 17:00:04'); INSERT INTO `sys_job_log` VALUES (19719, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:724毫秒', '0', '', '2022-03-15 17:10:00'); INSERT INTO `sys_job_log` VALUES (19720, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5160毫秒', '0', '', '2022-03-15 17:10:05'); INSERT INTO `sys_job_log` VALUES (19721, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:878毫秒', '0', '', '2022-03-15 17:15:30'); INSERT INTO `sys_job_log` VALUES (19722, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-03-15 17:20:00'); INSERT INTO `sys_job_log` VALUES (19723, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1208毫秒', '0', '', '2022-03-15 17:20:01'); INSERT INTO `sys_job_log` VALUES (19724, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3846毫秒', '0', '', '2022-03-15 17:20:03'); INSERT INTO `sys_job_log` VALUES (19725, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:967毫秒', '0', '', '2022-03-15 17:30:00'); INSERT INTO `sys_job_log` VALUES (19726, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6287毫秒', '0', '', '2022-03-15 17:30:06'); INSERT INTO `sys_job_log` VALUES (19727, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2585毫秒', '0', '', '2022-03-15 20:15:32'); INSERT INTO `sys_job_log` VALUES (19728, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:666毫秒', '0', '', '2022-03-15 20:20:00'); INSERT INTO `sys_job_log` VALUES (19729, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1335毫秒', '0', '', '2022-03-15 20:20:01'); INSERT INTO `sys_job_log` VALUES (19730, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4978毫秒', '0', '', '2022-03-15 20:20:04'); INSERT INTO `sys_job_log` VALUES (19731, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:79124毫秒', '0', '', '2022-03-15 20:21:19'); INSERT INTO `sys_job_log` VALUES (19732, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:855毫秒', '0', '', '2022-03-15 20:30:00'); INSERT INTO `sys_job_log` VALUES (19733, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3418毫秒', '0', '', '2022-03-15 20:30:03'); INSERT INTO `sys_job_log` VALUES (19734, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:387毫秒', '0', '', '2022-03-15 20:40:00'); INSERT INTO `sys_job_log` VALUES (19735, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:969毫秒', '0', '', '2022-03-15 20:40:01'); INSERT INTO `sys_job_log` VALUES (19736, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2908毫秒', '0', '', '2022-03-15 20:40:02'); INSERT INTO `sys_job_log` VALUES (19737, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:558毫秒', '0', '', '2022-03-15 20:50:00'); INSERT INTO `sys_job_log` VALUES (19738, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3188毫秒', '0', '', '2022-03-15 20:50:03'); INSERT INTO `sys_job_log` VALUES (19739, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:454毫秒', '0', '', '2022-03-15 21:00:00'); INSERT INTO `sys_job_log` VALUES (19740, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:796毫秒', '0', '', '2022-03-15 21:00:00'); INSERT INTO `sys_job_log` VALUES (19741, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3837毫秒', '0', '', '2022-03-15 21:00:03'); INSERT INTO `sys_job_log` VALUES (19742, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:571131毫秒', '0', '', '2022-03-15 21:09:31'); INSERT INTO `sys_job_log` VALUES (19743, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:813毫秒', '0', '', '2022-03-15 21:10:00'); INSERT INTO `sys_job_log` VALUES (19744, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3065毫秒', '0', '', '2022-03-15 21:10:03'); INSERT INTO `sys_job_log` VALUES (19745, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:54694毫秒', '0', '', '2022-03-15 21:10:54'); INSERT INTO `sys_job_log` VALUES (19746, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:521毫秒', '0', '', '2022-03-15 21:15:30'); INSERT INTO `sys_job_log` VALUES (19747, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:716毫秒', '0', '', '2022-03-15 21:20:00'); INSERT INTO `sys_job_log` VALUES (19748, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:807毫秒', '0', '', '2022-03-15 21:20:00'); INSERT INTO `sys_job_log` VALUES (19749, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3884毫秒', '0', '', '2022-03-15 21:20:03'); INSERT INTO `sys_job_log` VALUES (19750, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:626毫秒', '0', '', '2022-03-15 21:30:00'); INSERT INTO `sys_job_log` VALUES (19751, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3589毫秒', '0', '', '2022-03-15 21:30:03'); INSERT INTO `sys_job_log` VALUES (19752, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:363毫秒', '0', '', '2022-03-15 21:40:00'); INSERT INTO `sys_job_log` VALUES (19753, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:643毫秒', '0', '', '2022-03-15 21:40:00'); INSERT INTO `sys_job_log` VALUES (19754, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2058毫秒', '0', '', '2022-03-15 21:40:02'); INSERT INTO `sys_job_log` VALUES (19755, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:870毫秒', '0', '', '2022-03-15 21:50:00'); INSERT INTO `sys_job_log` VALUES (19756, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3127毫秒', '0', '', '2022-03-15 21:50:03'); INSERT INTO `sys_job_log` VALUES (19757, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:75毫秒', '0', '', '2022-03-15 22:00:00'); INSERT INTO `sys_job_log` VALUES (19758, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:845毫秒', '0', '', '2022-03-15 22:00:00'); INSERT INTO `sys_job_log` VALUES (19759, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1118毫秒', '0', '', '2022-03-15 22:00:01'); INSERT INTO `sys_job_log` VALUES (19760, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3426毫秒', '0', '', '2022-03-15 22:00:03'); INSERT INTO `sys_job_log` VALUES (19761, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:670毫秒', '0', '', '2022-03-15 22:10:00'); INSERT INTO `sys_job_log` VALUES (19762, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2655毫秒', '0', '', '2022-03-15 22:10:02'); INSERT INTO `sys_job_log` VALUES (19763, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1938毫秒', '0', '', '2022-03-15 22:15:31'); INSERT INTO `sys_job_log` VALUES (19764, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2699毫秒', '0', '', '2022-03-15 22:20:02'); INSERT INTO `sys_job_log` VALUES (19765, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2695毫秒', '0', '', '2022-03-15 22:20:02'); INSERT INTO `sys_job_log` VALUES (19766, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1048毫秒', '0', '', '2022-03-15 22:20:03'); INSERT INTO `sys_job_log` VALUES (19767, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1507毫秒', '0', '', '2022-03-15 22:20:04'); INSERT INTO `sys_job_log` VALUES (19768, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6451毫秒', '0', '', '2022-03-15 22:20:06'); INSERT INTO `sys_job_log` VALUES (19769, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4576毫秒', '0', '', '2022-03-15 22:20:11'); INSERT INTO `sys_job_log` VALUES (19770, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:860毫秒', '0', '', '2022-03-15 22:30:00'); INSERT INTO `sys_job_log` VALUES (19771, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3365毫秒', '0', '', '2022-03-15 22:30:03'); INSERT INTO `sys_job_log` VALUES (19772, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:693毫秒', '0', '', '2022-03-15 22:40:00'); INSERT INTO `sys_job_log` VALUES (19773, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:887毫秒', '0', '', '2022-03-15 22:40:00'); INSERT INTO `sys_job_log` VALUES (19774, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3159毫秒', '0', '', '2022-03-15 22:40:03'); INSERT INTO `sys_job_log` VALUES (19775, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:787毫秒', '0', '', '2022-03-15 22:50:00'); INSERT INTO `sys_job_log` VALUES (19776, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3754毫秒', '0', '', '2022-03-15 22:50:03'); INSERT INTO `sys_job_log` VALUES (19777, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:394毫秒', '0', '', '2022-03-15 23:00:00'); INSERT INTO `sys_job_log` VALUES (19778, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:891毫秒', '0', '', '2022-03-15 23:00:00'); INSERT INTO `sys_job_log` VALUES (19779, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3731毫秒', '0', '', '2022-03-15 23:00:03'); INSERT INTO `sys_job_log` VALUES (19780, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-03-15 23:10:00'); INSERT INTO `sys_job_log` VALUES (19781, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4367毫秒', '0', '', '2022-03-15 23:10:04'); INSERT INTO `sys_job_log` VALUES (19782, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1709毫秒', '0', '', '2022-03-15 23:15:31'); INSERT INTO `sys_job_log` VALUES (19783, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-03-15 23:20:00'); INSERT INTO `sys_job_log` VALUES (19784, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1012毫秒', '0', '', '2022-03-15 23:20:01'); INSERT INTO `sys_job_log` VALUES (19785, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3709毫秒', '0', '', '2022-03-15 23:20:03'); INSERT INTO `sys_job_log` VALUES (19786, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:636毫秒', '0', '', '2022-03-15 23:30:00'); INSERT INTO `sys_job_log` VALUES (19787, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3269毫秒', '0', '', '2022-03-15 23:30:03'); INSERT INTO `sys_job_log` VALUES (19788, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:293毫秒', '0', '', '2022-03-15 23:40:00'); INSERT INTO `sys_job_log` VALUES (19789, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-03-15 23:40:00'); INSERT INTO `sys_job_log` VALUES (19790, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3409毫秒', '0', '', '2022-03-15 23:40:03'); INSERT INTO `sys_job_log` VALUES (19791, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:660毫秒', '0', '', '2022-03-15 23:50:00'); INSERT INTO `sys_job_log` VALUES (19792, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3747毫秒', '0', '', '2022-03-15 23:50:03'); INSERT INTO `sys_job_log` VALUES (19793, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:495毫秒', '0', '', '2022-03-16 00:00:00'); INSERT INTO `sys_job_log` VALUES (19794, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:827毫秒', '0', '', '2022-03-16 00:00:00'); INSERT INTO `sys_job_log` VALUES (19795, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3502毫秒', '0', '', '2022-03-16 00:00:03'); INSERT INTO `sys_job_log` VALUES (19796, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:598毫秒', '0', '', '2022-03-16 00:00:10'); INSERT INTO `sys_job_log` VALUES (19797, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-03-16 00:10:00'); INSERT INTO `sys_job_log` VALUES (19798, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4500毫秒', '0', '', '2022-03-16 00:10:04'); INSERT INTO `sys_job_log` VALUES (19799, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:623979毫秒', '0', '', '2022-03-16 00:10:24'); INSERT INTO `sys_job_log` VALUES (19800, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:713毫秒', '0', '', '2022-03-16 00:15:30'); INSERT INTO `sys_job_log` VALUES (19801, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:380毫秒', '0', '', '2022-03-16 00:20:00'); INSERT INTO `sys_job_log` VALUES (19802, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:671毫秒', '0', '', '2022-03-16 00:20:00'); INSERT INTO `sys_job_log` VALUES (19803, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4989毫秒', '0', '', '2022-03-16 00:20:05'); INSERT INTO `sys_job_log` VALUES (19804, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:609毫秒', '0', '', '2022-03-16 00:30:00'); INSERT INTO `sys_job_log` VALUES (19805, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4606毫秒', '0', '', '2022-03-16 00:30:04'); INSERT INTO `sys_job_log` VALUES (19806, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2399毫秒', '0', '', '2022-03-16 08:40:02'); INSERT INTO `sys_job_log` VALUES (19807, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2409毫秒', '0', '', '2022-03-16 08:40:02'); INSERT INTO `sys_job_log` VALUES (19808, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6546毫秒', '0', '', '2022-03-16 08:40:06'); INSERT INTO `sys_job_log` VALUES (19809, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-03-16 08:50:00'); INSERT INTO `sys_job_log` VALUES (19810, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3108毫秒', '0', '', '2022-03-16 08:50:03'); INSERT INTO `sys_job_log` VALUES (19811, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:594毫秒', '0', '', '2022-03-16 09:00:00'); INSERT INTO `sys_job_log` VALUES (19812, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1210毫秒', '0', '', '2022-03-16 09:00:01'); INSERT INTO `sys_job_log` VALUES (19813, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3742毫秒', '0', '', '2022-03-16 09:00:03'); INSERT INTO `sys_job_log` VALUES (19814, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:528毫秒', '0', '', '2022-03-16 09:10:00'); INSERT INTO `sys_job_log` VALUES (19815, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3534毫秒', '0', '', '2022-03-16 09:10:03'); INSERT INTO `sys_job_log` VALUES (19816, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:49907毫秒', '0', '', '2022-03-16 09:10:49'); INSERT INTO `sys_job_log` VALUES (19817, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1384毫秒', '0', '', '2022-03-16 09:15:31'); INSERT INTO `sys_job_log` VALUES (19818, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1106838毫秒', '0', '', '2022-03-16 09:18:26'); INSERT INTO `sys_job_log` VALUES (19819, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1265毫秒', '0', '', '2022-03-16 09:20:01'); INSERT INTO `sys_job_log` VALUES (19820, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1539毫秒', '0', '', '2022-03-16 09:20:01'); INSERT INTO `sys_job_log` VALUES (19821, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4209毫秒', '0', '', '2022-03-16 09:20:04'); INSERT INTO `sys_job_log` VALUES (19822, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:519毫秒', '0', '', '2022-03-16 09:30:00'); INSERT INTO `sys_job_log` VALUES (19823, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1901毫秒', '0', '', '2022-03-16 09:30:01'); INSERT INTO `sys_job_log` VALUES (19824, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:218毫秒', '0', '', '2022-03-16 09:40:00'); INSERT INTO `sys_job_log` VALUES (19825, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:477毫秒', '0', '', '2022-03-16 09:40:00'); INSERT INTO `sys_job_log` VALUES (19826, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3786毫秒', '0', '', '2022-03-16 09:40:03'); INSERT INTO `sys_job_log` VALUES (19827, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:783毫秒', '0', '', '2022-03-16 09:50:00'); INSERT INTO `sys_job_log` VALUES (19828, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3223毫秒', '0', '', '2022-03-16 09:50:03'); INSERT INTO `sys_job_log` VALUES (19829, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:513毫秒', '0', '', '2022-03-16 10:00:00'); INSERT INTO `sys_job_log` VALUES (19830, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2019毫秒', '0', '', '2022-03-16 10:00:02'); INSERT INTO `sys_job_log` VALUES (19831, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6097毫秒', '0', '', '2022-03-16 10:00:06'); INSERT INTO `sys_job_log` VALUES (19832, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-03-16 10:10:00'); INSERT INTO `sys_job_log` VALUES (19833, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6376毫秒', '0', '', '2022-03-16 10:10:06'); INSERT INTO `sys_job_log` VALUES (19834, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2522毫秒', '0', '', '2022-03-16 10:15:32'); INSERT INTO `sys_job_log` VALUES (19835, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:538毫秒', '0', '', '2022-03-16 10:20:00'); INSERT INTO `sys_job_log` VALUES (19836, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1457毫秒', '0', '', '2022-03-16 10:20:01'); INSERT INTO `sys_job_log` VALUES (19837, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4362毫秒', '0', '', '2022-03-16 10:20:04'); INSERT INTO `sys_job_log` VALUES (19838, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:470毫秒', '0', '', '2022-03-16 10:30:00'); INSERT INTO `sys_job_log` VALUES (19839, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4007毫秒', '0', '', '2022-03-16 10:30:04'); INSERT INTO `sys_job_log` VALUES (19840, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:473毫秒', '0', '', '2022-03-16 10:40:00'); INSERT INTO `sys_job_log` VALUES (19841, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1198毫秒', '0', '', '2022-03-16 10:40:01'); INSERT INTO `sys_job_log` VALUES (19842, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5555毫秒', '0', '', '2022-03-16 10:40:05'); INSERT INTO `sys_job_log` VALUES (19843, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-03-16 10:50:00'); INSERT INTO `sys_job_log` VALUES (19844, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4013毫秒', '0', '', '2022-03-16 10:50:04'); INSERT INTO `sys_job_log` VALUES (19845, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1454毫秒', '0', '', '2022-03-16 11:00:01'); INSERT INTO `sys_job_log` VALUES (19846, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2017毫秒', '0', '', '2022-03-16 11:00:02'); INSERT INTO `sys_job_log` VALUES (19847, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4864毫秒', '0', '', '2022-03-16 11:00:04'); INSERT INTO `sys_job_log` VALUES (19848, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:821毫秒', '0', '', '2022-03-16 11:10:00'); INSERT INTO `sys_job_log` VALUES (19849, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6248毫秒', '0', '', '2022-03-16 11:10:06'); INSERT INTO `sys_job_log` VALUES (19850, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1479毫秒', '0', '', '2022-03-16 11:15:31'); INSERT INTO `sys_job_log` VALUES (19851, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:500毫秒', '0', '', '2022-03-16 11:20:00'); INSERT INTO `sys_job_log` VALUES (19852, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1179毫秒', '0', '', '2022-03-16 11:20:01'); INSERT INTO `sys_job_log` VALUES (19853, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6886毫秒', '0', '', '2022-03-16 11:20:06'); INSERT INTO `sys_job_log` VALUES (19854, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2031毫秒', '0', '', '2022-03-16 11:30:02'); INSERT INTO `sys_job_log` VALUES (19855, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3999毫秒', '0', '', '2022-03-16 11:30:04'); INSERT INTO `sys_job_log` VALUES (19856, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:488毫秒', '0', '', '2022-03-16 11:40:00'); INSERT INTO `sys_job_log` VALUES (19857, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1240毫秒', '0', '', '2022-03-16 11:40:01'); INSERT INTO `sys_job_log` VALUES (19858, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3276毫秒', '0', '', '2022-03-16 11:40:03'); INSERT INTO `sys_job_log` VALUES (19859, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:586毫秒', '0', '', '2022-03-16 11:50:00'); INSERT INTO `sys_job_log` VALUES (19860, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2639毫秒', '0', '', '2022-03-16 11:50:02'); INSERT INTO `sys_job_log` VALUES (19861, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:445毫秒', '0', '', '2022-03-16 12:00:00'); INSERT INTO `sys_job_log` VALUES (19862, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1194毫秒', '0', '', '2022-03-16 12:00:01'); INSERT INTO `sys_job_log` VALUES (19863, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4634毫秒', '0', '', '2022-03-16 12:00:04'); INSERT INTO `sys_job_log` VALUES (19864, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:537毫秒', '0', '', '2022-03-16 12:10:00'); INSERT INTO `sys_job_log` VALUES (19865, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3606毫秒', '0', '', '2022-03-16 12:10:03'); INSERT INTO `sys_job_log` VALUES (19866, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:570毫秒', '0', '', '2022-03-16 12:15:30'); INSERT INTO `sys_job_log` VALUES (19867, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:969112毫秒', '0', '', '2022-03-16 12:16:09'); INSERT INTO `sys_job_log` VALUES (19868, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-03-16 12:20:00'); INSERT INTO `sys_job_log` VALUES (19869, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1515毫秒', '0', '', '2022-03-16 12:20:01'); INSERT INTO `sys_job_log` VALUES (19870, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5502毫秒', '0', '', '2022-03-16 12:20:05'); INSERT INTO `sys_job_log` VALUES (19871, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:660毫秒', '0', '', '2022-03-16 12:30:00'); INSERT INTO `sys_job_log` VALUES (19872, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6519毫秒', '0', '', '2022-03-16 12:30:06'); INSERT INTO `sys_job_log` VALUES (19873, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:874毫秒', '0', '', '2022-03-16 12:40:00'); INSERT INTO `sys_job_log` VALUES (19874, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1251毫秒', '0', '', '2022-03-16 12:40:01'); INSERT INTO `sys_job_log` VALUES (19875, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2554毫秒', '0', '', '2022-03-16 12:40:02'); INSERT INTO `sys_job_log` VALUES (19876, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1952毫秒', '0', '', '2022-03-16 12:50:01'); INSERT INTO `sys_job_log` VALUES (19877, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5247毫秒', '0', '', '2022-03-16 12:50:05'); INSERT INTO `sys_job_log` VALUES (19878, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:599毫秒', '0', '', '2022-03-16 13:00:00'); INSERT INTO `sys_job_log` VALUES (19879, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1461毫秒', '0', '', '2022-03-16 13:00:01'); INSERT INTO `sys_job_log` VALUES (19880, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4848毫秒', '0', '', '2022-03-16 13:00:04'); INSERT INTO `sys_job_log` VALUES (19881, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:624毫秒', '0', '', '2022-03-16 13:10:00'); INSERT INTO `sys_job_log` VALUES (19882, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3094毫秒', '0', '', '2022-03-16 13:10:03'); INSERT INTO `sys_job_log` VALUES (19883, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2488毫秒', '0', '', '2022-03-16 13:15:32'); INSERT INTO `sys_job_log` VALUES (19884, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-03-16 13:20:00'); INSERT INTO `sys_job_log` VALUES (19885, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1238毫秒', '0', '', '2022-03-16 13:20:01'); INSERT INTO `sys_job_log` VALUES (19886, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4028毫秒', '0', '', '2022-03-16 13:20:04'); INSERT INTO `sys_job_log` VALUES (19887, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1685毫秒', '0', '', '2022-03-16 13:30:01'); INSERT INTO `sys_job_log` VALUES (19888, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4691毫秒', '0', '', '2022-03-16 13:30:04'); INSERT INTO `sys_job_log` VALUES (19889, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:660毫秒', '0', '', '2022-03-16 13:40:00'); INSERT INTO `sys_job_log` VALUES (19890, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1201毫秒', '0', '', '2022-03-16 13:40:01'); INSERT INTO `sys_job_log` VALUES (19891, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3098毫秒', '0', '', '2022-03-16 13:40:03'); INSERT INTO `sys_job_log` VALUES (19892, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:558毫秒', '0', '', '2022-03-16 13:50:00'); INSERT INTO `sys_job_log` VALUES (19893, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3606毫秒', '0', '', '2022-03-16 13:50:03'); INSERT INTO `sys_job_log` VALUES (19894, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:588毫秒', '0', '', '2022-03-16 14:00:00'); INSERT INTO `sys_job_log` VALUES (19895, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2019毫秒', '0', '', '2022-03-16 14:00:02'); INSERT INTO `sys_job_log` VALUES (19896, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2724毫秒', '0', '', '2022-03-16 14:00:02'); INSERT INTO `sys_job_log` VALUES (19897, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:895毫秒', '0', '', '2022-03-16 14:10:00'); INSERT INTO `sys_job_log` VALUES (19898, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1688毫秒', '0', '', '2022-03-16 14:10:01'); INSERT INTO `sys_job_log` VALUES (19899, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2451毫秒', '0', '', '2022-03-16 14:15:32'); INSERT INTO `sys_job_log` VALUES (19900, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-03-16 14:20:00'); INSERT INTO `sys_job_log` VALUES (19901, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1170毫秒', '0', '', '2022-03-16 14:20:01'); INSERT INTO `sys_job_log` VALUES (19902, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3285毫秒', '0', '', '2022-03-16 14:20:03'); INSERT INTO `sys_job_log` VALUES (19903, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:573毫秒', '0', '', '2022-03-16 14:30:00'); INSERT INTO `sys_job_log` VALUES (19904, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5567毫秒', '0', '', '2022-03-16 14:30:05'); INSERT INTO `sys_job_log` VALUES (19905, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:493毫秒', '0', '', '2022-03-16 14:40:00'); INSERT INTO `sys_job_log` VALUES (19906, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1197毫秒', '0', '', '2022-03-16 14:40:01'); INSERT INTO `sys_job_log` VALUES (19907, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2111毫秒', '0', '', '2022-03-16 14:40:02'); INSERT INTO `sys_job_log` VALUES (19908, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:509毫秒', '0', '', '2022-03-16 14:50:00'); INSERT INTO `sys_job_log` VALUES (19909, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4997毫秒', '0', '', '2022-03-16 14:50:05'); INSERT INTO `sys_job_log` VALUES (19910, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:156毫秒', '0', '', '2022-03-16 15:00:00'); INSERT INTO `sys_job_log` VALUES (19911, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:530毫秒', '0', '', '2022-03-16 15:00:00'); INSERT INTO `sys_job_log` VALUES (19912, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1259毫秒', '0', '', '2022-03-16 15:00:01'); INSERT INTO `sys_job_log` VALUES (19913, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4935毫秒', '0', '', '2022-03-16 15:00:04'); INSERT INTO `sys_job_log` VALUES (19914, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-03-16 15:10:00'); INSERT INTO `sys_job_log` VALUES (19915, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:1300毫秒', '0', '', '2022-03-16 15:10:01'); INSERT INTO `sys_job_log` VALUES (19916, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5447毫秒', '0', '', '2022-03-16 15:10:05'); INSERT INTO `sys_job_log` VALUES (19917, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2791毫秒', '0', '', '2022-03-16 15:15:32'); INSERT INTO `sys_job_log` VALUES (19918, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-03-16 15:20:00'); INSERT INTO `sys_job_log` VALUES (19919, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1187毫秒', '0', '', '2022-03-16 15:20:01'); INSERT INTO `sys_job_log` VALUES (19920, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3792毫秒', '0', '', '2022-03-16 15:20:03'); INSERT INTO `sys_job_log` VALUES (19921, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:624毫秒', '0', '', '2022-03-16 15:30:00'); INSERT INTO `sys_job_log` VALUES (19922, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7945毫秒', '0', '', '2022-03-16 15:30:07'); INSERT INTO `sys_job_log` VALUES (19923, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1281毫秒', '0', '', '2022-03-16 15:40:01'); INSERT INTO `sys_job_log` VALUES (19924, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1429毫秒', '0', '', '2022-03-16 15:40:01'); INSERT INTO `sys_job_log` VALUES (19925, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3268毫秒', '0', '', '2022-03-16 15:40:03'); INSERT INTO `sys_job_log` VALUES (19926, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1106毫秒', '0', '', '2022-03-16 15:50:01'); INSERT INTO `sys_job_log` VALUES (19927, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2979毫秒', '0', '', '2022-03-16 15:50:02'); INSERT INTO `sys_job_log` VALUES (19928, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:836毫秒', '0', '', '2022-03-16 16:00:00'); INSERT INTO `sys_job_log` VALUES (19929, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1034毫秒', '0', '', '2022-03-16 16:00:01'); INSERT INTO `sys_job_log` VALUES (19930, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4347毫秒', '0', '', '2022-03-16 16:00:04'); INSERT INTO `sys_job_log` VALUES (19931, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2785毫秒', '0', '', '2022-03-16 16:10:02'); INSERT INTO `sys_job_log` VALUES (19932, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7545毫秒', '0', '', '2022-03-16 16:10:07'); INSERT INTO `sys_job_log` VALUES (19933, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2437毫秒', '0', '', '2022-03-16 16:20:02'); INSERT INTO `sys_job_log` VALUES (19934, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2426毫秒', '0', '', '2022-03-16 16:20:02'); INSERT INTO `sys_job_log` VALUES (19935, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6853毫秒', '0', '', '2022-03-16 16:20:06'); INSERT INTO `sys_job_log` VALUES (19936, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:4026毫秒', '0', '', '2022-03-16 16:30:04'); INSERT INTO `sys_job_log` VALUES (19937, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12674毫秒', '0', '', '2022-03-16 16:30:12'); INSERT INTO `sys_job_log` VALUES (19938, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2024毫秒', '0', '', '2022-03-16 16:40:02'); INSERT INTO `sys_job_log` VALUES (19939, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2035毫秒', '0', '', '2022-03-16 16:40:02'); INSERT INTO `sys_job_log` VALUES (19940, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1163毫秒', '0', '', '2022-03-16 16:40:03'); INSERT INTO `sys_job_log` VALUES (19941, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-03-16 16:40:04'); INSERT INTO `sys_job_log` VALUES (19942, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5325毫秒', '0', '', '2022-03-16 16:40:05'); INSERT INTO `sys_job_log` VALUES (19943, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1919毫秒', '0', '', '2022-03-16 16:40:07'); INSERT INTO `sys_job_log` VALUES (19944, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:764毫秒', '0', '', '2022-03-16 16:50:00'); INSERT INTO `sys_job_log` VALUES (19945, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6453毫秒', '0', '', '2022-03-16 16:50:06'); INSERT INTO `sys_job_log` VALUES (19946, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2255毫秒', '0', '', '2022-03-16 17:00:02'); INSERT INTO `sys_job_log` VALUES (19947, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2246毫秒', '0', '', '2022-03-16 17:00:02'); INSERT INTO `sys_job_log` VALUES (19948, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7913毫秒', '0', '', '2022-03-16 17:00:07'); INSERT INTO `sys_job_log` VALUES (19949, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1319毫秒', '0', '', '2022-03-16 17:10:01'); INSERT INTO `sys_job_log` VALUES (19950, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4379毫秒', '0', '', '2022-03-16 17:10:04'); INSERT INTO `sys_job_log` VALUES (19951, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:4662毫秒', '0', '', '2022-03-16 17:15:34'); INSERT INTO `sys_job_log` VALUES (19952, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-16 17:20:02'); INSERT INTO `sys_job_log` VALUES (19953, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2031毫秒', '0', '', '2022-03-16 17:20:02'); INSERT INTO `sys_job_log` VALUES (19954, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6169毫秒', '0', '', '2022-03-16 17:20:06'); INSERT INTO `sys_job_log` VALUES (19955, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:759毫秒', '0', '', '2022-03-16 17:30:00'); INSERT INTO `sys_job_log` VALUES (19956, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7139毫秒', '0', '', '2022-03-16 17:30:07'); INSERT INTO `sys_job_log` VALUES (19957, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2396毫秒', '0', '', '2022-03-16 22:00:02'); INSERT INTO `sys_job_log` VALUES (19958, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2410毫秒', '0', '', '2022-03-16 22:00:02'); INSERT INTO `sys_job_log` VALUES (19959, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:2385毫秒', '0', '', '2022-03-16 22:00:02'); INSERT INTO `sys_job_log` VALUES (19960, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9401毫秒', '0', '', '2022-03-16 22:00:09'); INSERT INTO `sys_job_log` VALUES (19961, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:849毫秒', '0', '', '2022-03-16 22:10:00'); INSERT INTO `sys_job_log` VALUES (19962, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8857毫秒', '0', '', '2022-03-16 22:10:08'); INSERT INTO `sys_job_log` VALUES (19963, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2404毫秒', '0', '', '2022-03-16 22:15:32'); INSERT INTO `sys_job_log` VALUES (19964, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:392毫秒', '0', '', '2022-03-16 22:20:00'); INSERT INTO `sys_job_log` VALUES (19965, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:772毫秒', '0', '', '2022-03-16 22:20:00'); INSERT INTO `sys_job_log` VALUES (19966, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7007毫秒', '0', '', '2022-03-16 22:20:07'); INSERT INTO `sys_job_log` VALUES (19967, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:709毫秒', '0', '', '2022-03-16 22:30:00'); INSERT INTO `sys_job_log` VALUES (19968, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3995毫秒', '0', '', '2022-03-16 22:30:04'); INSERT INTO `sys_job_log` VALUES (19969, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:390毫秒', '0', '', '2022-03-16 22:40:00'); INSERT INTO `sys_job_log` VALUES (19970, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:693毫秒', '0', '', '2022-03-16 22:40:00'); INSERT INTO `sys_job_log` VALUES (19971, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9908毫秒', '0', '', '2022-03-16 22:40:09'); INSERT INTO `sys_job_log` VALUES (19972, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:674毫秒', '0', '', '2022-03-16 22:50:00'); INSERT INTO `sys_job_log` VALUES (19973, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12696毫秒', '0', '', '2022-03-16 22:50:12'); INSERT INTO `sys_job_log` VALUES (19974, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:479毫秒', '0', '', '2022-03-16 23:00:00'); INSERT INTO `sys_job_log` VALUES (19975, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:919毫秒', '0', '', '2022-03-16 23:00:00'); INSERT INTO `sys_job_log` VALUES (19976, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3447毫秒', '0', '', '2022-03-16 23:00:03'); INSERT INTO `sys_job_log` VALUES (19977, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:715毫秒', '0', '', '2022-03-16 23:10:00'); INSERT INTO `sys_job_log` VALUES (19978, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7726毫秒', '0', '', '2022-03-16 23:10:07'); INSERT INTO `sys_job_log` VALUES (19979, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1756毫秒', '0', '', '2022-03-16 23:15:31'); INSERT INTO `sys_job_log` VALUES (19980, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:310毫秒', '0', '', '2022-03-16 23:20:00'); INSERT INTO `sys_job_log` VALUES (19981, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:705毫秒', '0', '', '2022-03-16 23:20:00'); INSERT INTO `sys_job_log` VALUES (19982, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5732毫秒', '0', '', '2022-03-16 23:20:05'); INSERT INTO `sys_job_log` VALUES (19983, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-03-16 23:30:00'); INSERT INTO `sys_job_log` VALUES (19984, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9267毫秒', '0', '', '2022-03-16 23:30:09'); INSERT INTO `sys_job_log` VALUES (19985, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:357毫秒', '0', '', '2022-03-16 23:40:00'); INSERT INTO `sys_job_log` VALUES (19986, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-03-16 23:40:00'); INSERT INTO `sys_job_log` VALUES (19987, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6006毫秒', '0', '', '2022-03-16 23:40:06'); INSERT INTO `sys_job_log` VALUES (19988, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:909毫秒', '0', '', '2022-03-16 23:50:00'); INSERT INTO `sys_job_log` VALUES (19989, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12187毫秒', '0', '', '2022-03-16 23:50:12'); INSERT INTO `sys_job_log` VALUES (19990, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:515毫秒', '0', '', '2022-03-17 00:00:00'); INSERT INTO `sys_job_log` VALUES (19991, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:847毫秒', '0', '', '2022-03-17 00:00:00'); INSERT INTO `sys_job_log` VALUES (19992, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9142毫秒', '0', '', '2022-03-17 00:00:09'); INSERT INTO `sys_job_log` VALUES (19993, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:508毫秒', '0', '', '2022-03-17 00:00:10'); INSERT INTO `sys_job_log` VALUES (19994, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-03-17 00:10:00'); INSERT INTO `sys_job_log` VALUES (19995, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7494毫秒', '0', '', '2022-03-17 00:10:07'); INSERT INTO `sys_job_log` VALUES (19996, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:616680毫秒', '0', '', '2022-03-17 00:10:16'); INSERT INTO `sys_job_log` VALUES (19997, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:800毫秒', '0', '', '2022-03-17 00:15:30'); INSERT INTO `sys_job_log` VALUES (19998, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:327毫秒', '0', '', '2022-03-17 00:20:00'); INSERT INTO `sys_job_log` VALUES (19999, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:833毫秒', '0', '', '2022-03-17 00:20:00'); INSERT INTO `sys_job_log` VALUES (20000, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4211毫秒', '0', '', '2022-03-17 00:20:04'); INSERT INTO `sys_job_log` VALUES (20001, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-03-17 00:30:00'); INSERT INTO `sys_job_log` VALUES (20002, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5479毫秒', '0', '', '2022-03-17 00:30:05'); INSERT INTO `sys_job_log` VALUES (20003, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:324毫秒', '0', '', '2022-03-17 00:40:00'); INSERT INTO `sys_job_log` VALUES (20004, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:531毫秒', '0', '', '2022-03-17 00:40:00'); INSERT INTO `sys_job_log` VALUES (20005, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5714毫秒', '0', '', '2022-03-17 00:40:05'); INSERT INTO `sys_job_log` VALUES (20006, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-03-17 00:50:00'); INSERT INTO `sys_job_log` VALUES (20007, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9174毫秒', '0', '', '2022-03-17 00:50:09'); INSERT INTO `sys_job_log` VALUES (20008, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:346毫秒', '0', '', '2022-03-17 01:00:00'); INSERT INTO `sys_job_log` VALUES (20009, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:676毫秒', '0', '', '2022-03-17 01:00:00'); INSERT INTO `sys_job_log` VALUES (20010, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12671毫秒', '0', '', '2022-03-17 01:00:12'); INSERT INTO `sys_job_log` VALUES (20011, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1544毫秒', '0', '', '2022-03-17 08:40:01'); INSERT INTO `sys_job_log` VALUES (20012, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1532毫秒', '0', '', '2022-03-17 08:40:01'); INSERT INTO `sys_job_log` VALUES (20013, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5951毫秒', '0', '', '2022-03-17 08:40:05'); INSERT INTO `sys_job_log` VALUES (20014, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:702毫秒', '0', '', '2022-03-17 08:50:00'); INSERT INTO `sys_job_log` VALUES (20015, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7357毫秒', '0', '', '2022-03-17 08:50:07'); INSERT INTO `sys_job_log` VALUES (20016, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1237毫秒', '0', '', '2022-03-17 09:00:01'); INSERT INTO `sys_job_log` VALUES (20017, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1347毫秒', '0', '', '2022-03-17 09:00:01'); INSERT INTO `sys_job_log` VALUES (20018, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4704毫秒', '0', '', '2022-03-17 09:00:04'); INSERT INTO `sys_job_log` VALUES (20019, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2041毫秒', '0', '', '2022-03-17 09:10:02'); INSERT INTO `sys_job_log` VALUES (20020, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10800毫秒', '0', '', '2022-03-17 09:10:10'); INSERT INTO `sys_job_log` VALUES (20021, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:59404毫秒', '0', '', '2022-03-17 09:10:59'); INSERT INTO `sys_job_log` VALUES (20022, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:736133毫秒', '0', '', '2022-03-17 09:12:16'); INSERT INTO `sys_job_log` VALUES (20023, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10030毫秒', '0', '', '2022-03-17 09:15:40'); INSERT INTO `sys_job_log` VALUES (20024, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-03-17 09:20:00'); INSERT INTO `sys_job_log` VALUES (20025, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1212毫秒', '0', '', '2022-03-17 09:20:01'); INSERT INTO `sys_job_log` VALUES (20026, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1770毫秒', '0', '', '2022-03-17 09:20:01'); INSERT INTO `sys_job_log` VALUES (20027, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-03-17 09:30:00'); INSERT INTO `sys_job_log` VALUES (20028, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6745毫秒', '0', '', '2022-03-17 09:30:06'); INSERT INTO `sys_job_log` VALUES (20029, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-03-17 09:40:00'); INSERT INTO `sys_job_log` VALUES (20030, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1206毫秒', '0', '', '2022-03-17 09:40:01'); INSERT INTO `sys_job_log` VALUES (20031, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2759毫秒', '0', '', '2022-03-17 09:40:02'); INSERT INTO `sys_job_log` VALUES (20032, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1480毫秒', '0', '', '2022-03-17 09:50:01'); INSERT INTO `sys_job_log` VALUES (20033, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8062毫秒', '0', '', '2022-03-17 09:50:08'); INSERT INTO `sys_job_log` VALUES (20034, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:229毫秒', '0', '', '2022-03-17 10:00:00'); INSERT INTO `sys_job_log` VALUES (20035, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:545毫秒', '0', '', '2022-03-17 10:00:00'); INSERT INTO `sys_job_log` VALUES (20036, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3674毫秒', '0', '', '2022-03-17 10:00:03'); INSERT INTO `sys_job_log` VALUES (20037, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1730毫秒', '0', '', '2022-03-17 10:10:01'); INSERT INTO `sys_job_log` VALUES (20038, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10777毫秒', '0', '', '2022-03-17 10:10:10'); INSERT INTO `sys_job_log` VALUES (20039, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2689毫秒', '0', '', '2022-03-17 10:15:32'); INSERT INTO `sys_job_log` VALUES (20040, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-03-17 10:20:00'); INSERT INTO `sys_job_log` VALUES (20041, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1202毫秒', '0', '', '2022-03-17 10:20:01'); INSERT INTO `sys_job_log` VALUES (20042, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5994毫秒', '0', '', '2022-03-17 10:20:06'); INSERT INTO `sys_job_log` VALUES (20043, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:656毫秒', '0', '', '2022-03-17 10:30:00'); INSERT INTO `sys_job_log` VALUES (20044, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8844毫秒', '0', '', '2022-03-17 10:30:08'); INSERT INTO `sys_job_log` VALUES (20045, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:901毫秒', '0', '', '2022-03-17 10:40:00'); INSERT INTO `sys_job_log` VALUES (20046, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1517毫秒', '0', '', '2022-03-17 10:40:01'); INSERT INTO `sys_job_log` VALUES (20047, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4699毫秒', '0', '', '2022-03-17 10:40:04'); INSERT INTO `sys_job_log` VALUES (20048, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-03-17 10:50:00'); INSERT INTO `sys_job_log` VALUES (20049, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9885毫秒', '0', '', '2022-03-17 10:50:09'); INSERT INTO `sys_job_log` VALUES (20050, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:233毫秒', '0', '', '2022-03-17 11:00:00'); INSERT INTO `sys_job_log` VALUES (20051, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-03-17 11:00:00'); INSERT INTO `sys_job_log` VALUES (20052, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5301毫秒', '0', '', '2022-03-17 11:00:05'); INSERT INTO `sys_job_log` VALUES (20053, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:781毫秒', '0', '', '2022-03-17 11:10:00'); INSERT INTO `sys_job_log` VALUES (20054, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10029毫秒', '0', '', '2022-03-17 11:10:10'); INSERT INTO `sys_job_log` VALUES (20055, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1644毫秒', '0', '', '2022-03-17 11:15:31'); INSERT INTO `sys_job_log` VALUES (20056, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:224毫秒', '0', '', '2022-03-17 11:20:00'); INSERT INTO `sys_job_log` VALUES (20057, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-03-17 11:20:00'); INSERT INTO `sys_job_log` VALUES (20058, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10777毫秒', '0', '', '2022-03-17 11:20:10'); INSERT INTO `sys_job_log` VALUES (20059, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1586毫秒', '0', '', '2022-03-17 11:30:01'); INSERT INTO `sys_job_log` VALUES (20060, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7069毫秒', '0', '', '2022-03-17 11:30:07'); INSERT INTO `sys_job_log` VALUES (20061, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:535毫秒', '0', '', '2022-03-17 11:40:00'); INSERT INTO `sys_job_log` VALUES (20062, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1249毫秒', '0', '', '2022-03-17 11:40:01'); INSERT INTO `sys_job_log` VALUES (20063, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10798毫秒', '0', '', '2022-03-17 11:40:10'); INSERT INTO `sys_job_log` VALUES (20064, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2011毫秒', '0', '', '2022-03-17 11:50:02'); INSERT INTO `sys_job_log` VALUES (20065, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5238毫秒', '0', '', '2022-03-17 11:50:05'); INSERT INTO `sys_job_log` VALUES (20066, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:559毫秒', '0', '', '2022-03-17 12:00:00'); INSERT INTO `sys_job_log` VALUES (20067, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1113毫秒', '0', '', '2022-03-17 12:00:01'); INSERT INTO `sys_job_log` VALUES (20068, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1436毫秒', '0', '', '2022-03-17 12:00:01'); INSERT INTO `sys_job_log` VALUES (20069, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5553毫秒', '0', '', '2022-03-17 12:00:05'); INSERT INTO `sys_job_log` VALUES (20070, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:591毫秒', '0', '', '2022-03-17 12:10:00'); INSERT INTO `sys_job_log` VALUES (20071, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7319毫秒', '0', '', '2022-03-17 12:10:07'); INSERT INTO `sys_job_log` VALUES (20072, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2692毫秒', '0', '', '2022-03-17 12:15:32'); INSERT INTO `sys_job_log` VALUES (20073, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:374毫秒', '0', '', '2022-03-17 12:20:00'); INSERT INTO `sys_job_log` VALUES (20074, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1014毫秒', '0', '', '2022-03-17 12:20:01'); INSERT INTO `sys_job_log` VALUES (20075, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7159毫秒', '0', '', '2022-03-17 12:20:07'); INSERT INTO `sys_job_log` VALUES (20076, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:712毫秒', '0', '', '2022-03-17 12:30:00'); INSERT INTO `sys_job_log` VALUES (20077, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7486毫秒', '0', '', '2022-03-17 12:30:07'); INSERT INTO `sys_job_log` VALUES (20078, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:764毫秒', '0', '', '2022-03-17 12:40:00'); INSERT INTO `sys_job_log` VALUES (20079, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1460毫秒', '0', '', '2022-03-17 12:40:01'); INSERT INTO `sys_job_log` VALUES (20080, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5631毫秒', '0', '', '2022-03-17 12:40:05'); INSERT INTO `sys_job_log` VALUES (20081, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:698毫秒', '0', '', '2022-03-17 12:50:00'); INSERT INTO `sys_job_log` VALUES (20082, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7414毫秒', '0', '', '2022-03-17 12:50:07'); INSERT INTO `sys_job_log` VALUES (20083, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:260毫秒', '0', '', '2022-03-17 13:00:00'); INSERT INTO `sys_job_log` VALUES (20084, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:808毫秒', '0', '', '2022-03-17 13:00:00'); INSERT INTO `sys_job_log` VALUES (20085, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8843毫秒', '0', '', '2022-03-17 13:00:08'); INSERT INTO `sys_job_log` VALUES (20086, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:679毫秒', '0', '', '2022-03-17 13:10:00'); INSERT INTO `sys_job_log` VALUES (20087, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7730毫秒', '0', '', '2022-03-17 13:10:07'); INSERT INTO `sys_job_log` VALUES (20088, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1672毫秒', '0', '', '2022-03-17 13:15:31'); INSERT INTO `sys_job_log` VALUES (20089, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:544毫秒', '0', '', '2022-03-17 13:20:00'); INSERT INTO `sys_job_log` VALUES (20090, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:662毫秒', '0', '', '2022-03-17 13:20:00'); INSERT INTO `sys_job_log` VALUES (20091, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7165毫秒', '0', '', '2022-03-17 13:20:07'); INSERT INTO `sys_job_log` VALUES (20092, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1572毫秒', '0', '', '2022-03-17 13:30:01'); INSERT INTO `sys_job_log` VALUES (20093, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9110毫秒', '0', '', '2022-03-17 13:30:09'); INSERT INTO `sys_job_log` VALUES (20094, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:598毫秒', '0', '', '2022-03-17 13:40:00'); INSERT INTO `sys_job_log` VALUES (20095, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1201毫秒', '0', '', '2022-03-17 13:40:01'); INSERT INTO `sys_job_log` VALUES (20096, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5594毫秒', '0', '', '2022-03-17 13:40:05'); INSERT INTO `sys_job_log` VALUES (20097, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1792毫秒', '0', '', '2022-03-17 13:50:01'); INSERT INTO `sys_job_log` VALUES (20098, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11240毫秒', '0', '', '2022-03-17 13:50:11'); INSERT INTO `sys_job_log` VALUES (20099, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:610毫秒', '0', '', '2022-03-17 14:00:00'); INSERT INTO `sys_job_log` VALUES (20100, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2022毫秒', '0', '', '2022-03-17 14:00:02'); INSERT INTO `sys_job_log` VALUES (20101, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3627毫秒', '0', '', '2022-03-17 14:00:03'); INSERT INTO `sys_job_log` VALUES (20102, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-03-17 14:10:00'); INSERT INTO `sys_job_log` VALUES (20103, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8010毫秒', '0', '', '2022-03-17 14:10:08'); INSERT INTO `sys_job_log` VALUES (20104, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1615毫秒', '0', '', '2022-03-17 14:15:31'); INSERT INTO `sys_job_log` VALUES (20105, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:595毫秒', '0', '', '2022-03-17 14:20:00'); INSERT INTO `sys_job_log` VALUES (20106, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1207毫秒', '0', '', '2022-03-17 14:20:01'); INSERT INTO `sys_job_log` VALUES (20107, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5308毫秒', '0', '', '2022-03-17 14:20:05'); INSERT INTO `sys_job_log` VALUES (20108, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2033毫秒', '0', '', '2022-03-17 14:30:02'); INSERT INTO `sys_job_log` VALUES (20109, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11740毫秒', '0', '', '2022-03-17 14:30:11'); INSERT INTO `sys_job_log` VALUES (20110, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1306毫秒', '0', '', '2022-03-17 14:40:01'); INSERT INTO `sys_job_log` VALUES (20111, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1641毫秒', '0', '', '2022-03-17 14:40:01'); INSERT INTO `sys_job_log` VALUES (20112, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5243毫秒', '0', '', '2022-03-17 14:40:05'); INSERT INTO `sys_job_log` VALUES (20113, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:579毫秒', '0', '', '2022-03-17 14:50:00'); INSERT INTO `sys_job_log` VALUES (20114, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5278毫秒', '0', '', '2022-03-17 14:50:05'); INSERT INTO `sys_job_log` VALUES (20115, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:581毫秒', '0', '', '2022-03-17 15:00:00'); INSERT INTO `sys_job_log` VALUES (20116, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2017毫秒', '0', '', '2022-03-17 15:00:02'); INSERT INTO `sys_job_log` VALUES (20117, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10848毫秒', '0', '', '2022-03-17 15:00:10'); INSERT INTO `sys_job_log` VALUES (20118, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-03-17 15:10:00'); INSERT INTO `sys_job_log` VALUES (20119, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:1605毫秒', '0', '', '2022-03-17 15:10:01'); INSERT INTO `sys_job_log` VALUES (20120, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8272毫秒', '0', '', '2022-03-17 15:10:08'); INSERT INTO `sys_job_log` VALUES (20121, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1625毫秒', '0', '', '2022-03-17 15:15:31'); INSERT INTO `sys_job_log` VALUES (20122, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:940398毫秒', '0', '', '2022-03-17 15:15:40'); INSERT INTO `sys_job_log` VALUES (20123, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-03-17 15:20:00'); INSERT INTO `sys_job_log` VALUES (20124, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1217毫秒', '0', '', '2022-03-17 15:20:01'); INSERT INTO `sys_job_log` VALUES (20125, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10912毫秒', '0', '', '2022-03-17 15:20:10'); INSERT INTO `sys_job_log` VALUES (20126, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1855毫秒', '0', '', '2022-03-17 15:30:01'); INSERT INTO `sys_job_log` VALUES (20127, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6472毫秒', '0', '', '2022-03-17 15:30:06'); INSERT INTO `sys_job_log` VALUES (20128, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:617毫秒', '0', '', '2022-03-17 15:40:00'); INSERT INTO `sys_job_log` VALUES (20129, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1513毫秒', '0', '', '2022-03-17 15:40:01'); INSERT INTO `sys_job_log` VALUES (20130, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6537毫秒', '0', '', '2022-03-17 15:40:06'); INSERT INTO `sys_job_log` VALUES (20131, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-03-17 15:50:00'); INSERT INTO `sys_job_log` VALUES (20132, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4606毫秒', '0', '', '2022-03-17 15:50:04'); INSERT INTO `sys_job_log` VALUES (20133, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:607毫秒', '0', '', '2022-03-17 16:00:00'); INSERT INTO `sys_job_log` VALUES (20134, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1210毫秒', '0', '', '2022-03-17 16:00:01'); INSERT INTO `sys_job_log` VALUES (20135, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6592毫秒', '0', '', '2022-03-17 16:00:06'); INSERT INTO `sys_job_log` VALUES (20136, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:823毫秒', '0', '', '2022-03-17 17:00:00'); INSERT INTO `sys_job_log` VALUES (20137, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1538毫秒', '0', '', '2022-03-17 17:00:01'); INSERT INTO `sys_job_log` VALUES (20138, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6047毫秒', '0', '', '2022-03-17 17:00:06'); INSERT INTO `sys_job_log` VALUES (20139, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1477毫秒', '0', '', '2022-03-17 17:10:01'); INSERT INTO `sys_job_log` VALUES (20140, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9852毫秒', '0', '', '2022-03-17 17:10:09'); INSERT INTO `sys_job_log` VALUES (20141, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3034毫秒', '0', '', '2022-03-17 17:15:33'); INSERT INTO `sys_job_log` VALUES (20142, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:426毫秒', '0', '', '2022-03-17 17:20:00'); INSERT INTO `sys_job_log` VALUES (20143, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:849毫秒', '0', '', '2022-03-17 17:20:00'); INSERT INTO `sys_job_log` VALUES (20144, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5750毫秒', '0', '', '2022-03-17 17:20:05'); INSERT INTO `sys_job_log` VALUES (20145, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:926毫秒', '0', '', '2022-03-17 17:30:00'); INSERT INTO `sys_job_log` VALUES (20146, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8878毫秒', '0', '', '2022-03-17 17:30:08'); INSERT INTO `sys_job_log` VALUES (20147, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:407毫秒', '0', '', '2022-03-17 17:40:00'); INSERT INTO `sys_job_log` VALUES (20148, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:796毫秒', '0', '', '2022-03-17 17:40:00'); INSERT INTO `sys_job_log` VALUES (20149, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7602毫秒', '0', '', '2022-03-17 17:40:07'); INSERT INTO `sys_job_log` VALUES (20150, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:883毫秒', '0', '', '2022-03-17 17:50:00'); INSERT INTO `sys_job_log` VALUES (20151, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5506毫秒', '0', '', '2022-03-17 17:50:05'); INSERT INTO `sys_job_log` VALUES (20152, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:441毫秒', '0', '', '2022-03-17 18:00:00'); INSERT INTO `sys_job_log` VALUES (20153, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:818毫秒', '0', '', '2022-03-17 18:00:00'); INSERT INTO `sys_job_log` VALUES (20154, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7675毫秒', '0', '', '2022-03-17 18:00:07'); INSERT INTO `sys_job_log` VALUES (20155, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:593088毫秒', '0', '', '2022-03-17 18:09:53'); INSERT INTO `sys_job_log` VALUES (20156, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:979毫秒', '0', '', '2022-03-17 18:10:01'); INSERT INTO `sys_job_log` VALUES (20157, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5604毫秒', '0', '', '2022-03-17 18:10:05'); INSERT INTO `sys_job_log` VALUES (20158, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:636毫秒', '0', '', '2022-03-17 18:15:30'); INSERT INTO `sys_job_log` VALUES (20159, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-17 18:20:02'); INSERT INTO `sys_job_log` VALUES (20160, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2019毫秒', '0', '', '2022-03-17 18:20:02'); INSERT INTO `sys_job_log` VALUES (20161, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5611毫秒', '0', '', '2022-03-17 18:20:05'); INSERT INTO `sys_job_log` VALUES (20162, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-03-17 18:30:00'); INSERT INTO `sys_job_log` VALUES (20163, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1964毫秒', '0', '', '2022-03-17 18:30:01'); INSERT INTO `sys_job_log` VALUES (20164, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:367毫秒', '0', '', '2022-03-17 18:40:00'); INSERT INTO `sys_job_log` VALUES (20165, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:773毫秒', '0', '', '2022-03-17 18:40:00'); INSERT INTO `sys_job_log` VALUES (20166, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8958毫秒', '0', '', '2022-03-17 18:40:08'); INSERT INTO `sys_job_log` VALUES (20167, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:769毫秒', '0', '', '2022-03-17 18:50:00'); INSERT INTO `sys_job_log` VALUES (20168, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5653毫秒', '0', '', '2022-03-17 18:50:05'); INSERT INTO `sys_job_log` VALUES (20169, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:808毫秒', '0', '', '2022-03-17 19:00:00'); INSERT INTO `sys_job_log` VALUES (20170, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:801毫秒', '0', '', '2022-03-17 19:00:00'); INSERT INTO `sys_job_log` VALUES (20171, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10372毫秒', '0', '', '2022-03-17 19:00:10'); INSERT INTO `sys_job_log` VALUES (20172, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:955毫秒', '0', '', '2022-03-17 19:10:00'); INSERT INTO `sys_job_log` VALUES (20173, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5493毫秒', '0', '', '2022-03-17 19:10:05'); INSERT INTO `sys_job_log` VALUES (20174, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:537毫秒', '0', '', '2022-03-17 19:15:30'); INSERT INTO `sys_job_log` VALUES (20175, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:424毫秒', '0', '', '2022-03-17 19:20:00'); INSERT INTO `sys_job_log` VALUES (20176, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:837毫秒', '0', '', '2022-03-17 19:20:00'); INSERT INTO `sys_job_log` VALUES (20177, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7247毫秒', '0', '', '2022-03-17 19:20:07'); INSERT INTO `sys_job_log` VALUES (20178, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1040毫秒', '0', '', '2022-03-17 19:30:01'); INSERT INTO `sys_job_log` VALUES (20179, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8652毫秒', '0', '', '2022-03-17 19:30:08'); INSERT INTO `sys_job_log` VALUES (20180, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:660毫秒', '0', '', '2022-03-17 19:40:00'); INSERT INTO `sys_job_log` VALUES (20181, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:738毫秒', '0', '', '2022-03-17 19:40:00'); INSERT INTO `sys_job_log` VALUES (20182, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5626毫秒', '0', '', '2022-03-17 19:40:05'); INSERT INTO `sys_job_log` VALUES (20183, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-03-17 19:50:00'); INSERT INTO `sys_job_log` VALUES (20184, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7879毫秒', '0', '', '2022-03-17 19:50:07'); INSERT INTO `sys_job_log` VALUES (20185, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:393毫秒', '0', '', '2022-03-17 20:00:00'); INSERT INTO `sys_job_log` VALUES (20186, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:804毫秒', '0', '', '2022-03-17 20:00:00'); INSERT INTO `sys_job_log` VALUES (20187, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9406毫秒', '0', '', '2022-03-17 20:00:09'); INSERT INTO `sys_job_log` VALUES (20188, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:881毫秒', '0', '', '2022-03-17 20:10:00'); INSERT INTO `sys_job_log` VALUES (20189, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9258毫秒', '0', '', '2022-03-17 20:10:09'); INSERT INTO `sys_job_log` VALUES (20190, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:523毫秒', '0', '', '2022-03-17 20:15:30'); INSERT INTO `sys_job_log` VALUES (20191, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:737毫秒', '0', '', '2022-03-17 20:20:00'); INSERT INTO `sys_job_log` VALUES (20192, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:899毫秒', '0', '', '2022-03-17 20:20:00'); INSERT INTO `sys_job_log` VALUES (20193, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9249毫秒', '0', '', '2022-03-17 20:20:09'); INSERT INTO `sys_job_log` VALUES (20194, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:78223毫秒', '0', '', '2022-03-17 20:21:18'); INSERT INTO `sys_job_log` VALUES (20195, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:695毫秒', '0', '', '2022-03-17 20:30:00'); INSERT INTO `sys_job_log` VALUES (20196, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6154毫秒', '0', '', '2022-03-17 20:30:06'); INSERT INTO `sys_job_log` VALUES (20197, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:364毫秒', '0', '', '2022-03-17 20:40:00'); INSERT INTO `sys_job_log` VALUES (20198, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:742毫秒', '0', '', '2022-03-17 20:40:00'); INSERT INTO `sys_job_log` VALUES (20199, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4303毫秒', '0', '', '2022-03-17 20:40:04'); INSERT INTO `sys_job_log` VALUES (20200, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:659毫秒', '0', '', '2022-03-17 20:50:00'); INSERT INTO `sys_job_log` VALUES (20201, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7293毫秒', '0', '', '2022-03-17 20:50:07'); INSERT INTO `sys_job_log` VALUES (20202, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:766毫秒', '0', '', '2022-03-17 21:00:00'); INSERT INTO `sys_job_log` VALUES (20203, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:802毫秒', '0', '', '2022-03-17 21:00:00'); INSERT INTO `sys_job_log` VALUES (20204, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5283毫秒', '0', '', '2022-03-17 21:00:05'); INSERT INTO `sys_job_log` VALUES (20205, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:758毫秒', '0', '', '2022-03-17 21:10:00'); INSERT INTO `sys_job_log` VALUES (20206, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:605647毫秒', '0', '', '2022-03-17 21:10:05'); INSERT INTO `sys_job_log` VALUES (20207, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7528毫秒', '0', '', '2022-03-17 21:10:07'); INSERT INTO `sys_job_log` VALUES (20208, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:60860毫秒', '0', '', '2022-03-17 21:11:00'); INSERT INTO `sys_job_log` VALUES (20209, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:736毫秒', '0', '', '2022-03-17 21:15:30'); INSERT INTO `sys_job_log` VALUES (20210, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:383毫秒', '0', '', '2022-03-17 21:20:00'); INSERT INTO `sys_job_log` VALUES (20211, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:912毫秒', '0', '', '2022-03-17 21:20:00'); INSERT INTO `sys_job_log` VALUES (20212, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5124毫秒', '0', '', '2022-03-17 21:20:05'); INSERT INTO `sys_job_log` VALUES (20213, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2414毫秒', '0', '', '2022-03-17 21:30:02'); INSERT INTO `sys_job_log` VALUES (20214, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7213毫秒', '0', '', '2022-03-17 21:30:07'); INSERT INTO `sys_job_log` VALUES (20215, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:378毫秒', '0', '', '2022-03-17 21:40:00'); INSERT INTO `sys_job_log` VALUES (20216, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:690毫秒', '0', '', '2022-03-17 21:40:00'); INSERT INTO `sys_job_log` VALUES (20217, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5540毫秒', '0', '', '2022-03-17 21:40:05'); INSERT INTO `sys_job_log` VALUES (20218, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:632毫秒', '0', '', '2022-03-17 21:50:00'); INSERT INTO `sys_job_log` VALUES (20219, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3971毫秒', '0', '', '2022-03-17 21:50:03'); INSERT INTO `sys_job_log` VALUES (20220, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:1568毫秒', '0', '', '2022-03-17 22:00:01'); INSERT INTO `sys_job_log` VALUES (20221, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-03-17 22:00:02'); INSERT INTO `sys_job_log` VALUES (20222, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2011毫秒', '0', '', '2022-03-17 22:00:02'); INSERT INTO `sys_job_log` VALUES (20223, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8072毫秒', '0', '', '2022-03-17 22:00:08'); INSERT INTO `sys_job_log` VALUES (20224, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:608毫秒', '0', '', '2022-03-17 22:10:00'); INSERT INTO `sys_job_log` VALUES (20225, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5474毫秒', '0', '', '2022-03-17 22:10:05'); INSERT INTO `sys_job_log` VALUES (20226, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1680毫秒', '0', '', '2022-03-17 22:15:31'); INSERT INTO `sys_job_log` VALUES (20227, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:770毫秒', '0', '', '2022-03-17 22:20:00'); INSERT INTO `sys_job_log` VALUES (20228, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:814毫秒', '0', '', '2022-03-17 22:20:00'); INSERT INTO `sys_job_log` VALUES (20229, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8963毫秒', '0', '', '2022-03-17 22:20:08'); INSERT INTO `sys_job_log` VALUES (20230, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:752毫秒', '0', '', '2022-03-17 22:30:00'); INSERT INTO `sys_job_log` VALUES (20231, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8545毫秒', '0', '', '2022-03-17 22:30:08'); INSERT INTO `sys_job_log` VALUES (20232, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:399毫秒', '0', '', '2022-03-17 22:40:00'); INSERT INTO `sys_job_log` VALUES (20233, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:704毫秒', '0', '', '2022-03-17 22:40:00'); INSERT INTO `sys_job_log` VALUES (20234, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10809毫秒', '0', '', '2022-03-17 22:40:10'); INSERT INTO `sys_job_log` VALUES (20235, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:873毫秒', '0', '', '2022-03-17 22:50:00'); INSERT INTO `sys_job_log` VALUES (20236, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7742毫秒', '0', '', '2022-03-17 22:50:07'); INSERT INTO `sys_job_log` VALUES (20237, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:698毫秒', '0', '', '2022-03-17 23:00:00'); INSERT INTO `sys_job_log` VALUES (20238, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:708毫秒', '0', '', '2022-03-17 23:00:00'); INSERT INTO `sys_job_log` VALUES (20239, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6676毫秒', '0', '', '2022-03-17 23:00:06'); INSERT INTO `sys_job_log` VALUES (20240, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:609毫秒', '0', '', '2022-03-17 23:10:00'); INSERT INTO `sys_job_log` VALUES (20241, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7427毫秒', '0', '', '2022-03-17 23:10:07'); INSERT INTO `sys_job_log` VALUES (20242, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1669毫秒', '0', '', '2022-03-17 23:15:31'); INSERT INTO `sys_job_log` VALUES (20243, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:314毫秒', '0', '', '2022-03-17 23:20:00'); INSERT INTO `sys_job_log` VALUES (20244, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-03-17 23:20:00'); INSERT INTO `sys_job_log` VALUES (20245, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5180毫秒', '0', '', '2022-03-17 23:20:05'); INSERT INTO `sys_job_log` VALUES (20246, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:700毫秒', '0', '', '2022-03-17 23:30:00'); INSERT INTO `sys_job_log` VALUES (20247, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4404毫秒', '0', '', '2022-03-17 23:30:04'); INSERT INTO `sys_job_log` VALUES (20248, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-03-17 23:40:00'); INSERT INTO `sys_job_log` VALUES (20249, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:728毫秒', '0', '', '2022-03-17 23:40:00'); INSERT INTO `sys_job_log` VALUES (20250, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9228毫秒', '0', '', '2022-03-17 23:40:09'); INSERT INTO `sys_job_log` VALUES (20251, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:626毫秒', '0', '', '2022-03-17 23:50:00'); INSERT INTO `sys_job_log` VALUES (20252, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7484毫秒', '0', '', '2022-03-17 23:50:07'); INSERT INTO `sys_job_log` VALUES (20253, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:348毫秒', '0', '', '2022-03-18 00:00:00'); INSERT INTO `sys_job_log` VALUES (20254, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:657毫秒', '0', '', '2022-03-18 00:00:00'); INSERT INTO `sys_job_log` VALUES (20255, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5622毫秒', '0', '', '2022-03-18 00:00:05'); INSERT INTO `sys_job_log` VALUES (20256, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:475毫秒', '0', '', '2022-03-18 00:00:10'); INSERT INTO `sys_job_log` VALUES (20257, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:607毫秒', '0', '', '2022-03-18 00:10:00'); INSERT INTO `sys_job_log` VALUES (20258, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:603225毫秒', '0', '', '2022-03-18 00:10:03'); INSERT INTO `sys_job_log` VALUES (20259, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6812毫秒', '0', '', '2022-03-18 00:10:06'); INSERT INTO `sys_job_log` VALUES (20260, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2113毫秒', '0', '', '2022-03-18 00:15:32'); INSERT INTO `sys_job_log` VALUES (20261, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-03-18 00:20:00'); INSERT INTO `sys_job_log` VALUES (20262, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:688毫秒', '0', '', '2022-03-18 00:20:00'); INSERT INTO `sys_job_log` VALUES (20263, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5405毫秒', '0', '', '2022-03-18 00:20:05'); INSERT INTO `sys_job_log` VALUES (20264, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:514毫秒', '0', '', '2022-03-18 00:30:00'); INSERT INTO `sys_job_log` VALUES (20265, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4154毫秒', '0', '', '2022-03-18 00:30:04'); INSERT INTO `sys_job_log` VALUES (20266, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:407毫秒', '0', '', '2022-03-18 00:40:00'); INSERT INTO `sys_job_log` VALUES (20267, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:741毫秒', '0', '', '2022-03-18 00:40:00'); INSERT INTO `sys_job_log` VALUES (20268, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9292毫秒', '0', '', '2022-03-18 00:40:09'); INSERT INTO `sys_job_log` VALUES (20269, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:590毫秒', '0', '', '2022-03-18 00:50:00'); INSERT INTO `sys_job_log` VALUES (20270, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5561毫秒', '0', '', '2022-03-18 00:50:05'); INSERT INTO `sys_job_log` VALUES (20271, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:533毫秒', '0', '', '2022-03-18 01:00:00'); INSERT INTO `sys_job_log` VALUES (20272, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:712毫秒', '0', '', '2022-03-18 01:00:00'); INSERT INTO `sys_job_log` VALUES (20273, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2810毫秒', '0', '', '2022-03-18 01:00:02'); INSERT INTO `sys_job_log` VALUES (20274, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1027毫秒', '0', '', '2022-03-18 01:10:01'); INSERT INTO `sys_job_log` VALUES (20275, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7038毫秒', '0', '', '2022-03-18 01:10:07'); INSERT INTO `sys_job_log` VALUES (20276, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1860毫秒', '0', '', '2022-03-18 01:15:31'); INSERT INTO `sys_job_log` VALUES (20277, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:314毫秒', '0', '', '2022-03-18 01:20:00'); INSERT INTO `sys_job_log` VALUES (20278, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:591毫秒', '0', '', '2022-03-18 01:20:00'); INSERT INTO `sys_job_log` VALUES (20279, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7381毫秒', '0', '', '2022-03-18 01:20:07'); INSERT INTO `sys_job_log` VALUES (20280, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-03-18 01:30:00'); INSERT INTO `sys_job_log` VALUES (20281, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7686毫秒', '0', '', '2022-03-18 01:30:07'); INSERT INTO `sys_job_log` VALUES (20282, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1246毫秒', '0', '', '2022-03-18 08:40:01'); INSERT INTO `sys_job_log` VALUES (20283, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1568毫秒', '0', '', '2022-03-18 08:40:01'); INSERT INTO `sys_job_log` VALUES (20284, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4378毫秒', '0', '', '2022-03-18 08:40:04'); INSERT INTO `sys_job_log` VALUES (20285, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1706毫秒', '0', '', '2022-03-18 08:50:01'); INSERT INTO `sys_job_log` VALUES (20286, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5234毫秒', '0', '', '2022-03-18 08:50:05'); INSERT INTO `sys_job_log` VALUES (20287, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:566毫秒', '0', '', '2022-03-18 09:00:00'); INSERT INTO `sys_job_log` VALUES (20288, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1230毫秒', '0', '', '2022-03-18 09:00:01'); INSERT INTO `sys_job_log` VALUES (20289, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3673毫秒', '0', '', '2022-03-18 09:00:03'); INSERT INTO `sys_job_log` VALUES (20290, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:535毫秒', '0', '', '2022-03-18 09:10:00'); INSERT INTO `sys_job_log` VALUES (20291, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9989毫秒', '0', '', '2022-03-18 09:10:10'); INSERT INTO `sys_job_log` VALUES (20292, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:45107毫秒', '0', '', '2022-03-18 09:10:45'); INSERT INTO `sys_job_log` VALUES (20293, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:919454毫秒', '0', '', '2022-03-18 09:15:19'); INSERT INTO `sys_job_log` VALUES (20294, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2723毫秒', '0', '', '2022-03-18 09:15:32'); INSERT INTO `sys_job_log` VALUES (20295, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:590毫秒', '0', '', '2022-03-18 09:20:00'); INSERT INTO `sys_job_log` VALUES (20296, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1214毫秒', '0', '', '2022-03-18 09:20:01'); INSERT INTO `sys_job_log` VALUES (20297, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10189毫秒', '0', '', '2022-03-18 09:20:10'); INSERT INTO `sys_job_log` VALUES (20298, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:583毫秒', '0', '', '2022-03-18 09:30:00'); INSERT INTO `sys_job_log` VALUES (20299, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7110毫秒', '0', '', '2022-03-18 09:30:07'); INSERT INTO `sys_job_log` VALUES (20300, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:560毫秒', '0', '', '2022-03-18 09:40:00'); INSERT INTO `sys_job_log` VALUES (20301, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-03-18 09:40:02'); INSERT INTO `sys_job_log` VALUES (20302, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4342毫秒', '0', '', '2022-03-18 09:40:04'); INSERT INTO `sys_job_log` VALUES (20303, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1561毫秒', '0', '', '2022-03-18 09:50:01'); INSERT INTO `sys_job_log` VALUES (20304, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9107毫秒', '0', '', '2022-03-18 09:50:09'); INSERT INTO `sys_job_log` VALUES (20305, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:203毫秒', '0', '', '2022-03-18 10:00:00'); INSERT INTO `sys_job_log` VALUES (20306, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-03-18 10:00:00'); INSERT INTO `sys_job_log` VALUES (20307, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4642毫秒', '0', '', '2022-03-18 10:00:04'); INSERT INTO `sys_job_log` VALUES (20308, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:836毫秒', '0', '', '2022-03-18 10:10:00'); INSERT INTO `sys_job_log` VALUES (20309, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6430毫秒', '0', '', '2022-03-18 10:10:06'); INSERT INTO `sys_job_log` VALUES (20310, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3877毫秒', '0', '', '2022-03-18 10:15:33'); INSERT INTO `sys_job_log` VALUES (20311, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:519毫秒', '0', '', '2022-03-18 10:20:00'); INSERT INTO `sys_job_log` VALUES (20312, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1517毫秒', '0', '', '2022-03-18 10:20:01'); INSERT INTO `sys_job_log` VALUES (20313, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8074毫秒', '0', '', '2022-03-18 10:20:08'); INSERT INTO `sys_job_log` VALUES (20314, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-03-18 10:30:00'); INSERT INTO `sys_job_log` VALUES (20315, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4673毫秒', '0', '', '2022-03-18 10:30:04'); INSERT INTO `sys_job_log` VALUES (20316, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1288毫秒', '0', '', '2022-03-18 10:40:01'); INSERT INTO `sys_job_log` VALUES (20317, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1642毫秒', '0', '', '2022-03-18 10:40:01'); INSERT INTO `sys_job_log` VALUES (20318, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6169毫秒', '0', '', '2022-03-18 10:40:06'); INSERT INTO `sys_job_log` VALUES (20319, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1511毫秒', '0', '', '2022-03-18 10:50:01'); INSERT INTO `sys_job_log` VALUES (20320, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10834毫秒', '0', '', '2022-03-18 10:50:10'); INSERT INTO `sys_job_log` VALUES (20321, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:507毫秒', '0', '', '2022-03-18 11:00:00'); INSERT INTO `sys_job_log` VALUES (20322, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-18 11:00:02'); INSERT INTO `sys_job_log` VALUES (20323, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8797毫秒', '0', '', '2022-03-18 11:00:08'); INSERT INTO `sys_job_log` VALUES (20324, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1490毫秒', '0', '', '2022-03-18 11:10:01'); INSERT INTO `sys_job_log` VALUES (20325, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9300毫秒', '0', '', '2022-03-18 11:10:09'); INSERT INTO `sys_job_log` VALUES (20326, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2544毫秒', '0', '', '2022-03-18 11:15:32'); INSERT INTO `sys_job_log` VALUES (20327, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:496毫秒', '0', '', '2022-03-18 11:20:00'); INSERT INTO `sys_job_log` VALUES (20328, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1208毫秒', '0', '', '2022-03-18 11:20:01'); INSERT INTO `sys_job_log` VALUES (20329, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6401毫秒', '0', '', '2022-03-18 11:20:06'); INSERT INTO `sys_job_log` VALUES (20330, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-03-18 11:30:00'); INSERT INTO `sys_job_log` VALUES (20331, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3717毫秒', '0', '', '2022-03-18 11:30:03'); INSERT INTO `sys_job_log` VALUES (20332, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-03-18 11:40:00'); INSERT INTO `sys_job_log` VALUES (20333, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2017毫秒', '0', '', '2022-03-18 11:40:02'); INSERT INTO `sys_job_log` VALUES (20334, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11693毫秒', '0', '', '2022-03-18 11:40:11'); INSERT INTO `sys_job_log` VALUES (20335, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:670毫秒', '0', '', '2022-03-18 11:50:00'); INSERT INTO `sys_job_log` VALUES (20336, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8228毫秒', '0', '', '2022-03-18 11:50:08'); INSERT INTO `sys_job_log` VALUES (20337, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:537毫秒', '0', '', '2022-03-18 12:00:00'); INSERT INTO `sys_job_log` VALUES (20338, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1205毫秒', '0', '', '2022-03-18 12:00:01'); INSERT INTO `sys_job_log` VALUES (20339, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5441毫秒', '0', '', '2022-03-18 12:00:05'); INSERT INTO `sys_job_log` VALUES (20340, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:654毫秒', '0', '', '2022-03-18 12:10:00'); INSERT INTO `sys_job_log` VALUES (20341, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11571毫秒', '0', '', '2022-03-18 12:10:11'); INSERT INTO `sys_job_log` VALUES (20342, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:756283毫秒', '0', '', '2022-03-18 12:12:36'); INSERT INTO `sys_job_log` VALUES (20343, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:819毫秒', '0', '', '2022-03-18 12:15:30'); INSERT INTO `sys_job_log` VALUES (20344, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:183毫秒', '0', '', '2022-03-18 12:20:00'); INSERT INTO `sys_job_log` VALUES (20345, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:504毫秒', '0', '', '2022-03-18 12:20:00'); INSERT INTO `sys_job_log` VALUES (20346, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5730毫秒', '0', '', '2022-03-18 12:20:05'); INSERT INTO `sys_job_log` VALUES (20347, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-03-18 12:30:00'); INSERT INTO `sys_job_log` VALUES (20348, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:13344毫秒', '0', '', '2022-03-18 12:30:13'); INSERT INTO `sys_job_log` VALUES (20349, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:610毫秒', '0', '', '2022-03-18 12:40:00'); INSERT INTO `sys_job_log` VALUES (20350, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1226毫秒', '0', '', '2022-03-18 12:40:01'); INSERT INTO `sys_job_log` VALUES (20351, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11842毫秒', '0', '', '2022-03-18 12:40:11'); INSERT INTO `sys_job_log` VALUES (20352, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:624毫秒', '0', '', '2022-03-18 12:50:00'); INSERT INTO `sys_job_log` VALUES (20353, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8109毫秒', '0', '', '2022-03-18 12:50:08'); INSERT INTO `sys_job_log` VALUES (20354, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:568毫秒', '0', '', '2022-03-18 13:00:00'); INSERT INTO `sys_job_log` VALUES (20355, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1453毫秒', '0', '', '2022-03-18 13:00:01'); INSERT INTO `sys_job_log` VALUES (20356, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8937毫秒', '0', '', '2022-03-18 13:00:08'); INSERT INTO `sys_job_log` VALUES (20357, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-03-18 13:10:00'); INSERT INTO `sys_job_log` VALUES (20358, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10019毫秒', '0', '', '2022-03-18 13:10:10'); INSERT INTO `sys_job_log` VALUES (20359, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1515毫秒', '0', '', '2022-03-18 13:15:31'); INSERT INTO `sys_job_log` VALUES (20360, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1245毫秒', '0', '', '2022-03-18 13:20:01'); INSERT INTO `sys_job_log` VALUES (20361, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1740毫秒', '0', '', '2022-03-18 13:20:01'); INSERT INTO `sys_job_log` VALUES (20362, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4637毫秒', '0', '', '2022-03-18 13:20:04'); INSERT INTO `sys_job_log` VALUES (20363, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1543毫秒', '0', '', '2022-03-18 13:30:01'); INSERT INTO `sys_job_log` VALUES (20364, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6425毫秒', '0', '', '2022-03-18 13:30:06'); INSERT INTO `sys_job_log` VALUES (20365, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:318毫秒', '0', '', '2022-03-18 13:40:00'); INSERT INTO `sys_job_log` VALUES (20366, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:666毫秒', '0', '', '2022-03-18 13:40:00'); INSERT INTO `sys_job_log` VALUES (20367, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6442毫秒', '0', '', '2022-03-18 13:40:06'); INSERT INTO `sys_job_log` VALUES (20368, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-03-18 13:50:00'); INSERT INTO `sys_job_log` VALUES (20369, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3735毫秒', '0', '', '2022-03-18 13:50:03'); INSERT INTO `sys_job_log` VALUES (20370, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:215毫秒', '0', '', '2022-03-18 14:00:00'); INSERT INTO `sys_job_log` VALUES (20371, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:534毫秒', '0', '', '2022-03-18 14:00:00'); INSERT INTO `sys_job_log` VALUES (20372, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3565毫秒', '0', '', '2022-03-18 14:00:03'); INSERT INTO `sys_job_log` VALUES (20373, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:595毫秒', '0', '', '2022-03-18 14:10:00'); INSERT INTO `sys_job_log` VALUES (20374, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7173毫秒', '0', '', '2022-03-18 14:10:07'); INSERT INTO `sys_job_log` VALUES (20375, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1524毫秒', '0', '', '2022-03-18 14:15:31'); INSERT INTO `sys_job_log` VALUES (20376, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:217毫秒', '0', '', '2022-03-18 14:20:00'); INSERT INTO `sys_job_log` VALUES (20377, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:575毫秒', '0', '', '2022-03-18 14:20:00'); INSERT INTO `sys_job_log` VALUES (20378, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3013毫秒', '0', '', '2022-03-18 14:20:03'); INSERT INTO `sys_job_log` VALUES (20379, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-03-18 14:30:00'); INSERT INTO `sys_job_log` VALUES (20380, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9935毫秒', '0', '', '2022-03-18 14:30:09'); INSERT INTO `sys_job_log` VALUES (20381, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:258毫秒', '0', '', '2022-03-18 14:40:00'); INSERT INTO `sys_job_log` VALUES (20382, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-03-18 14:40:00'); INSERT INTO `sys_job_log` VALUES (20383, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7139毫秒', '0', '', '2022-03-18 14:40:07'); INSERT INTO `sys_job_log` VALUES (20384, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:715毫秒', '0', '', '2022-03-18 14:50:00'); INSERT INTO `sys_job_log` VALUES (20385, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10671毫秒', '0', '', '2022-03-18 14:50:10'); INSERT INTO `sys_job_log` VALUES (20386, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-03-18 15:00:00'); INSERT INTO `sys_job_log` VALUES (20387, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1162毫秒', '0', '', '2022-03-18 15:00:01'); INSERT INTO `sys_job_log` VALUES (20388, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7359毫秒', '0', '', '2022-03-18 15:00:07'); INSERT INTO `sys_job_log` VALUES (20389, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-03-18 15:10:00'); INSERT INTO `sys_job_log` VALUES (20390, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8581毫秒', '0', '', '2022-03-18 15:10:08'); INSERT INTO `sys_job_log` VALUES (20391, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:52514毫秒', '0', '', '2022-03-18 15:10:52'); INSERT INTO `sys_job_log` VALUES (20392, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2544毫秒', '0', '', '2022-03-18 15:15:32'); INSERT INTO `sys_job_log` VALUES (20393, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:607毫秒', '0', '', '2022-03-18 15:20:00'); INSERT INTO `sys_job_log` VALUES (20394, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1225毫秒', '0', '', '2022-03-18 15:20:01'); INSERT INTO `sys_job_log` VALUES (20395, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6275毫秒', '0', '', '2022-03-18 15:20:06'); INSERT INTO `sys_job_log` VALUES (20396, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1219194毫秒', '0', '', '2022-03-18 15:20:19'); INSERT INTO `sys_job_log` VALUES (20397, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1560毫秒', '0', '', '2022-03-18 15:30:01'); INSERT INTO `sys_job_log` VALUES (20398, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4704毫秒', '0', '', '2022-03-18 15:30:04'); INSERT INTO `sys_job_log` VALUES (20399, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:252毫秒', '0', '', '2022-03-18 15:40:00'); INSERT INTO `sys_job_log` VALUES (20400, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:536毫秒', '0', '', '2022-03-18 15:40:00'); INSERT INTO `sys_job_log` VALUES (20401, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10071毫秒', '0', '', '2022-03-18 15:40:10'); INSERT INTO `sys_job_log` VALUES (20402, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-03-18 15:50:00'); INSERT INTO `sys_job_log` VALUES (20403, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3613毫秒', '0', '', '2022-03-18 15:50:03'); INSERT INTO `sys_job_log` VALUES (20404, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-03-18 16:00:00'); INSERT INTO `sys_job_log` VALUES (20405, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-18 16:00:02'); INSERT INTO `sys_job_log` VALUES (20406, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6990毫秒', '0', '', '2022-03-18 16:00:07'); INSERT INTO `sys_job_log` VALUES (20407, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:576毫秒', '0', '', '2022-03-18 16:10:00'); INSERT INTO `sys_job_log` VALUES (20408, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6473毫秒', '0', '', '2022-03-18 16:10:06'); INSERT INTO `sys_job_log` VALUES (20409, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:657毫秒', '0', '', '2022-03-18 16:15:30'); INSERT INTO `sys_job_log` VALUES (20410, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1250毫秒', '0', '', '2022-03-18 16:20:01'); INSERT INTO `sys_job_log` VALUES (20411, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1578毫秒', '0', '', '2022-03-18 16:20:01'); INSERT INTO `sys_job_log` VALUES (20412, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10194毫秒', '0', '', '2022-03-18 16:20:10'); INSERT INTO `sys_job_log` VALUES (20413, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:583毫秒', '0', '', '2022-03-18 16:30:00'); INSERT INTO `sys_job_log` VALUES (20414, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6370毫秒', '0', '', '2022-03-18 16:30:06'); INSERT INTO `sys_job_log` VALUES (20415, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1547毫秒', '0', '', '2022-03-18 16:40:01'); INSERT INTO `sys_job_log` VALUES (20416, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1581毫秒', '0', '', '2022-03-18 16:40:01'); INSERT INTO `sys_job_log` VALUES (20417, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12492毫秒', '0', '', '2022-03-18 16:40:12'); INSERT INTO `sys_job_log` VALUES (20418, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:808毫秒', '0', '', '2022-03-18 16:50:00'); INSERT INTO `sys_job_log` VALUES (20419, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5325毫秒', '0', '', '2022-03-18 16:50:05'); INSERT INTO `sys_job_log` VALUES (20420, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:240毫秒', '0', '', '2022-03-18 17:00:00'); INSERT INTO `sys_job_log` VALUES (20421, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:571毫秒', '0', '', '2022-03-18 17:00:00'); INSERT INTO `sys_job_log` VALUES (20422, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11112毫秒', '0', '', '2022-03-18 17:00:11'); INSERT INTO `sys_job_log` VALUES (20423, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:621毫秒', '0', '', '2022-03-18 17:10:00'); INSERT INTO `sys_job_log` VALUES (20424, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6375毫秒', '0', '', '2022-03-18 17:10:06'); INSERT INTO `sys_job_log` VALUES (20425, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2595毫秒', '0', '', '2022-03-18 17:15:32'); INSERT INTO `sys_job_log` VALUES (20426, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:511毫秒', '0', '', '2022-03-18 17:20:00'); INSERT INTO `sys_job_log` VALUES (20427, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1191毫秒', '0', '', '2022-03-18 17:20:01'); INSERT INTO `sys_job_log` VALUES (20428, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6475毫秒', '0', '', '2022-03-18 17:20:06'); INSERT INTO `sys_job_log` VALUES (20429, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:535毫秒', '0', '', '2022-03-18 17:30:00'); INSERT INTO `sys_job_log` VALUES (20430, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3665毫秒', '0', '', '2022-03-18 17:30:03'); INSERT INTO `sys_job_log` VALUES (20431, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2410毫秒', '0', '', '2022-03-18 19:00:02'); INSERT INTO `sys_job_log` VALUES (20432, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2401毫秒', '0', '', '2022-03-18 19:00:02'); INSERT INTO `sys_job_log` VALUES (20433, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9300毫秒', '0', '', '2022-03-18 19:00:09'); INSERT INTO `sys_job_log` VALUES (20434, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:729毫秒', '0', '', '2022-03-18 19:10:00'); INSERT INTO `sys_job_log` VALUES (20435, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7682毫秒', '0', '', '2022-03-18 19:10:07'); INSERT INTO `sys_job_log` VALUES (20436, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2913毫秒', '0', '', '2022-03-18 19:15:32'); INSERT INTO `sys_job_log` VALUES (20437, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:377毫秒', '0', '', '2022-03-18 19:20:00'); INSERT INTO `sys_job_log` VALUES (20438, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:971毫秒', '0', '', '2022-03-18 19:20:01'); INSERT INTO `sys_job_log` VALUES (20439, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7897毫秒', '0', '', '2022-03-18 19:20:07'); INSERT INTO `sys_job_log` VALUES (20440, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:825毫秒', '0', '', '2022-03-18 19:30:00'); INSERT INTO `sys_job_log` VALUES (20441, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7724毫秒', '0', '', '2022-03-18 19:30:07'); INSERT INTO `sys_job_log` VALUES (20442, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:733毫秒', '0', '', '2022-03-18 19:40:00'); INSERT INTO `sys_job_log` VALUES (20443, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:870毫秒', '0', '', '2022-03-18 19:40:00'); INSERT INTO `sys_job_log` VALUES (20444, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8145毫秒', '0', '', '2022-03-18 19:40:08'); INSERT INTO `sys_job_log` VALUES (20445, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:664毫秒', '0', '', '2022-03-18 19:50:00'); INSERT INTO `sys_job_log` VALUES (20446, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3650毫秒', '0', '', '2022-03-18 19:50:03'); INSERT INTO `sys_job_log` VALUES (20447, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:399毫秒', '0', '', '2022-03-18 20:00:00'); INSERT INTO `sys_job_log` VALUES (20448, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1493毫秒', '0', '', '2022-03-18 20:00:01'); INSERT INTO `sys_job_log` VALUES (20449, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8479毫秒', '0', '', '2022-03-18 20:00:08'); INSERT INTO `sys_job_log` VALUES (20450, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:789毫秒', '0', '', '2022-03-18 20:10:00'); INSERT INTO `sys_job_log` VALUES (20451, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7382毫秒', '0', '', '2022-03-18 20:10:07'); INSERT INTO `sys_job_log` VALUES (20452, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:627毫秒', '0', '', '2022-03-18 20:15:30'); INSERT INTO `sys_job_log` VALUES (20453, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:655毫秒', '0', '', '2022-03-18 20:20:00'); INSERT INTO `sys_job_log` VALUES (20454, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:719毫秒', '0', '', '2022-03-18 20:20:00'); INSERT INTO `sys_job_log` VALUES (20455, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8736毫秒', '0', '', '2022-03-18 20:20:08'); INSERT INTO `sys_job_log` VALUES (20456, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:152733毫秒', '0', '', '2022-03-18 20:22:32'); INSERT INTO `sys_job_log` VALUES (20457, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:765毫秒', '0', '', '2022-03-18 20:30:00'); INSERT INTO `sys_job_log` VALUES (20458, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5093毫秒', '0', '', '2022-03-18 20:30:05'); INSERT INTO `sys_job_log` VALUES (20459, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:372毫秒', '0', '', '2022-03-18 20:40:00'); INSERT INTO `sys_job_log` VALUES (20460, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:772毫秒', '0', '', '2022-03-18 20:40:00'); INSERT INTO `sys_job_log` VALUES (20461, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7015毫秒', '0', '', '2022-03-18 20:40:07'); INSERT INTO `sys_job_log` VALUES (20462, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:691毫秒', '0', '', '2022-03-18 20:50:00'); INSERT INTO `sys_job_log` VALUES (20463, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7237毫秒', '0', '', '2022-03-18 20:50:07'); INSERT INTO `sys_job_log` VALUES (20464, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:969毫秒', '0', '', '2022-03-18 21:00:01'); INSERT INTO `sys_job_log` VALUES (20465, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1033毫秒', '0', '', '2022-03-18 21:00:01'); INSERT INTO `sys_job_log` VALUES (20466, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7252毫秒', '0', '', '2022-03-18 21:00:07'); INSERT INTO `sys_job_log` VALUES (20467, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:557047毫秒', '0', '', '2022-03-18 21:09:17'); INSERT INTO `sys_job_log` VALUES (20468, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-03-18 21:10:00'); INSERT INTO `sys_job_log` VALUES (20469, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9168毫秒', '0', '', '2022-03-18 21:10:09'); INSERT INTO `sys_job_log` VALUES (20470, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:55071毫秒', '0', '', '2022-03-18 21:10:55'); INSERT INTO `sys_job_log` VALUES (20471, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:538毫秒', '0', '', '2022-03-18 21:15:30'); INSERT INTO `sys_job_log` VALUES (20472, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:377毫秒', '0', '', '2022-03-18 21:20:00'); INSERT INTO `sys_job_log` VALUES (20473, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:814毫秒', '0', '', '2022-03-18 21:20:00'); INSERT INTO `sys_job_log` VALUES (20474, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5182毫秒', '0', '', '2022-03-18 21:20:05'); INSERT INTO `sys_job_log` VALUES (20475, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:720毫秒', '0', '', '2022-03-18 21:30:00'); INSERT INTO `sys_job_log` VALUES (20476, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12625毫秒', '0', '', '2022-03-18 21:30:12'); INSERT INTO `sys_job_log` VALUES (20477, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:393毫秒', '0', '', '2022-03-18 21:40:00'); INSERT INTO `sys_job_log` VALUES (20478, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-03-18 21:40:00'); INSERT INTO `sys_job_log` VALUES (20479, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5591毫秒', '0', '', '2022-03-18 21:40:05'); INSERT INTO `sys_job_log` VALUES (20480, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:611毫秒', '0', '', '2022-03-18 21:50:00'); INSERT INTO `sys_job_log` VALUES (20481, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3919毫秒', '0', '', '2022-03-18 21:50:03'); INSERT INTO `sys_job_log` VALUES (20482, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:141毫秒', '0', '', '2022-03-18 22:00:00'); INSERT INTO `sys_job_log` VALUES (20483, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:471毫秒', '0', '', '2022-03-18 22:00:00'); INSERT INTO `sys_job_log` VALUES (20484, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1788毫秒', '0', '', '2022-03-18 22:00:01'); INSERT INTO `sys_job_log` VALUES (20485, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9945毫秒', '0', '', '2022-03-18 22:00:09'); INSERT INTO `sys_job_log` VALUES (20486, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:597毫秒', '0', '', '2022-03-18 22:10:00'); INSERT INTO `sys_job_log` VALUES (20487, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3628毫秒', '0', '', '2022-03-18 22:10:03'); INSERT INTO `sys_job_log` VALUES (20488, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:525毫秒', '0', '', '2022-03-18 22:15:30'); INSERT INTO `sys_job_log` VALUES (20489, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:846毫秒', '0', '', '2022-03-18 22:20:00'); INSERT INTO `sys_job_log` VALUES (20490, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:948毫秒', '0', '', '2022-03-18 22:20:00'); INSERT INTO `sys_job_log` VALUES (20491, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6427毫秒', '0', '', '2022-03-18 22:20:06'); INSERT INTO `sys_job_log` VALUES (20492, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:857毫秒', '0', '', '2022-03-18 22:30:00'); INSERT INTO `sys_job_log` VALUES (20493, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6682毫秒', '0', '', '2022-03-18 22:30:06'); INSERT INTO `sys_job_log` VALUES (20494, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:397毫秒', '0', '', '2022-03-18 22:40:00'); INSERT INTO `sys_job_log` VALUES (20495, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:668毫秒', '0', '', '2022-03-18 22:40:00'); INSERT INTO `sys_job_log` VALUES (20496, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3607毫秒', '0', '', '2022-03-18 22:40:03'); INSERT INTO `sys_job_log` VALUES (20497, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:658毫秒', '0', '', '2022-03-18 22:50:00'); INSERT INTO `sys_job_log` VALUES (20498, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5230毫秒', '0', '', '2022-03-18 22:50:05'); INSERT INTO `sys_job_log` VALUES (20499, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:719毫秒', '0', '', '2022-03-18 23:00:00'); INSERT INTO `sys_job_log` VALUES (20500, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:740毫秒', '0', '', '2022-03-18 23:00:00'); INSERT INTO `sys_job_log` VALUES (20501, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4567毫秒', '0', '', '2022-03-18 23:00:04'); INSERT INTO `sys_job_log` VALUES (20502, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:773毫秒', '0', '', '2022-03-18 23:10:00'); INSERT INTO `sys_job_log` VALUES (20503, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4384毫秒', '0', '', '2022-03-18 23:10:04'); INSERT INTO `sys_job_log` VALUES (20504, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:555毫秒', '0', '', '2022-03-18 23:15:30'); INSERT INTO `sys_job_log` VALUES (20505, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:395毫秒', '0', '', '2022-03-18 23:20:00'); INSERT INTO `sys_job_log` VALUES (20506, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:787毫秒', '0', '', '2022-03-18 23:20:00'); INSERT INTO `sys_job_log` VALUES (20507, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3855毫秒', '0', '', '2022-03-18 23:20:03'); INSERT INTO `sys_job_log` VALUES (20508, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:717毫秒', '0', '', '2022-03-18 23:30:00'); INSERT INTO `sys_job_log` VALUES (20509, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2581毫秒', '0', '', '2022-03-18 23:30:02'); INSERT INTO `sys_job_log` VALUES (20510, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:443毫秒', '0', '', '2022-03-18 23:40:00'); INSERT INTO `sys_job_log` VALUES (20511, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:818毫秒', '0', '', '2022-03-18 23:40:00'); INSERT INTO `sys_job_log` VALUES (20512, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2992毫秒', '0', '', '2022-03-18 23:40:03'); INSERT INTO `sys_job_log` VALUES (20513, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:700毫秒', '0', '', '2022-03-18 23:50:00'); INSERT INTO `sys_job_log` VALUES (20514, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3249毫秒', '0', '', '2022-03-18 23:50:03'); INSERT INTO `sys_job_log` VALUES (20515, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:593毫秒', '0', '', '2022-03-19 00:00:00'); INSERT INTO `sys_job_log` VALUES (20516, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:861毫秒', '0', '', '2022-03-19 00:00:00'); INSERT INTO `sys_job_log` VALUES (20517, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4402毫秒', '0', '', '2022-03-19 00:00:04'); INSERT INTO `sys_job_log` VALUES (20518, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:453毫秒', '0', '', '2022-03-19 00:00:10'); INSERT INTO `sys_job_log` VALUES (20519, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:499044毫秒', '0', '', '2022-03-19 00:08:19'); INSERT INTO `sys_job_log` VALUES (20520, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:806毫秒', '0', '', '2022-03-19 00:10:00'); INSERT INTO `sys_job_log` VALUES (20521, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2027毫秒', '0', '', '2022-03-19 00:10:02'); INSERT INTO `sys_job_log` VALUES (20522, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:574毫秒', '0', '', '2022-03-19 00:15:30'); INSERT INTO `sys_job_log` VALUES (20523, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:692毫秒', '0', '', '2022-03-19 00:20:00'); INSERT INTO `sys_job_log` VALUES (20524, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:895毫秒', '0', '', '2022-03-19 00:20:00'); INSERT INTO `sys_job_log` VALUES (20525, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2640毫秒', '0', '', '2022-03-19 00:20:02'); INSERT INTO `sys_job_log` VALUES (20526, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:484毫秒', '0', '', '2022-03-19 00:30:00'); INSERT INTO `sys_job_log` VALUES (20527, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3474毫秒', '0', '', '2022-03-19 00:30:03'); INSERT INTO `sys_job_log` VALUES (20528, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:336毫秒', '0', '', '2022-03-19 00:40:00'); INSERT INTO `sys_job_log` VALUES (20529, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-03-19 00:40:00'); INSERT INTO `sys_job_log` VALUES (20530, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5062毫秒', '0', '', '2022-03-19 00:40:05'); INSERT INTO `sys_job_log` VALUES (20531, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-03-19 00:50:00'); INSERT INTO `sys_job_log` VALUES (20532, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3010毫秒', '0', '', '2022-03-19 00:50:03'); INSERT INTO `sys_job_log` VALUES (20533, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-03-19 01:00:00'); INSERT INTO `sys_job_log` VALUES (20534, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1774毫秒', '0', '', '2022-03-19 01:00:01'); INSERT INTO `sys_job_log` VALUES (20535, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6170毫秒', '0', '', '2022-03-19 01:00:06'); INSERT INTO `sys_job_log` VALUES (20536, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1171毫秒', '0', '', '2022-03-19 01:10:01'); INSERT INTO `sys_job_log` VALUES (20537, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3107毫秒', '0', '', '2022-03-19 01:10:03'); INSERT INTO `sys_job_log` VALUES (20538, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1710毫秒', '0', '', '2022-03-19 10:50:01'); INSERT INTO `sys_job_log` VALUES (20539, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4960毫秒', '0', '', '2022-03-19 10:50:04'); INSERT INTO `sys_job_log` VALUES (20540, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:517毫秒', '0', '', '2022-03-19 11:00:00'); INSERT INTO `sys_job_log` VALUES (20541, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:946毫秒', '0', '', '2022-03-19 11:00:00'); INSERT INTO `sys_job_log` VALUES (20542, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5586毫秒', '0', '', '2022-03-19 11:00:05'); INSERT INTO `sys_job_log` VALUES (20543, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:597毫秒', '0', '', '2022-03-19 11:10:00'); INSERT INTO `sys_job_log` VALUES (20544, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3698毫秒', '0', '', '2022-03-19 11:10:03'); INSERT INTO `sys_job_log` VALUES (20545, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:998毫秒', '0', '', '2022-03-19 11:15:31'); INSERT INTO `sys_job_log` VALUES (20546, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:710毫秒', '0', '', '2022-03-19 11:20:00'); INSERT INTO `sys_job_log` VALUES (20547, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:896毫秒', '0', '', '2022-03-19 11:20:00'); INSERT INTO `sys_job_log` VALUES (20548, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4285毫秒', '0', '', '2022-03-19 11:20:04'); INSERT INTO `sys_job_log` VALUES (20549, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:568毫秒', '0', '', '2022-03-19 11:30:00'); INSERT INTO `sys_job_log` VALUES (20550, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3068毫秒', '0', '', '2022-03-19 11:30:03'); INSERT INTO `sys_job_log` VALUES (20551, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:341毫秒', '0', '', '2022-03-19 11:40:00'); INSERT INTO `sys_job_log` VALUES (20552, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:641毫秒', '0', '', '2022-03-19 11:40:00'); INSERT INTO `sys_job_log` VALUES (20553, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4381毫秒', '0', '', '2022-03-19 11:40:04'); INSERT INTO `sys_job_log` VALUES (20554, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:723毫秒', '0', '', '2022-03-19 11:50:00'); INSERT INTO `sys_job_log` VALUES (20555, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3435毫秒', '0', '', '2022-03-19 11:50:03'); INSERT INTO `sys_job_log` VALUES (20556, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:869毫秒', '0', '', '2022-03-19 12:00:00'); INSERT INTO `sys_job_log` VALUES (20557, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:953毫秒', '0', '', '2022-03-19 12:00:00'); INSERT INTO `sys_job_log` VALUES (20558, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4626毫秒', '0', '', '2022-03-19 12:00:04'); INSERT INTO `sys_job_log` VALUES (20559, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:443286毫秒', '0', '', '2022-03-19 12:07:23'); INSERT INTO `sys_job_log` VALUES (20560, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:599毫秒', '0', '', '2022-03-19 12:10:00'); INSERT INTO `sys_job_log` VALUES (20561, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5897毫秒', '0', '', '2022-03-19 12:10:05'); INSERT INTO `sys_job_log` VALUES (20562, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2235毫秒', '0', '', '2022-03-19 12:15:32'); INSERT INTO `sys_job_log` VALUES (20563, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:310毫秒', '0', '', '2022-03-19 12:20:00'); INSERT INTO `sys_job_log` VALUES (20564, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:515毫秒', '0', '', '2022-03-19 12:20:00'); INSERT INTO `sys_job_log` VALUES (20565, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1917毫秒', '0', '', '2022-03-19 12:20:01'); INSERT INTO `sys_job_log` VALUES (20566, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:679毫秒', '0', '', '2022-03-19 12:30:00'); INSERT INTO `sys_job_log` VALUES (20567, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3672毫秒', '0', '', '2022-03-19 12:30:03'); INSERT INTO `sys_job_log` VALUES (20568, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:755毫秒', '0', '', '2022-03-19 12:40:00'); INSERT INTO `sys_job_log` VALUES (20569, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:770毫秒', '0', '', '2022-03-19 12:40:00'); INSERT INTO `sys_job_log` VALUES (20570, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3102毫秒', '0', '', '2022-03-19 12:40:03'); INSERT INTO `sys_job_log` VALUES (20571, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:752毫秒', '0', '', '2022-03-19 12:50:00'); INSERT INTO `sys_job_log` VALUES (20572, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4916毫秒', '0', '', '2022-03-19 12:50:04'); INSERT INTO `sys_job_log` VALUES (20573, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:337毫秒', '0', '', '2022-03-19 13:00:00'); INSERT INTO `sys_job_log` VALUES (20574, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:546毫秒', '0', '', '2022-03-19 13:00:00'); INSERT INTO `sys_job_log` VALUES (20575, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2248毫秒', '0', '', '2022-03-19 13:00:02'); INSERT INTO `sys_job_log` VALUES (20576, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-03-19 13:10:00'); INSERT INTO `sys_job_log` VALUES (20577, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4322毫秒', '0', '', '2022-03-19 13:10:04'); INSERT INTO `sys_job_log` VALUES (20578, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:542毫秒', '0', '', '2022-03-19 13:15:30'); INSERT INTO `sys_job_log` VALUES (20579, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-03-19 13:20:00'); INSERT INTO `sys_job_log` VALUES (20580, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:746毫秒', '0', '', '2022-03-19 13:20:00'); INSERT INTO `sys_job_log` VALUES (20581, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9738毫秒', '0', '', '2022-03-19 13:20:09'); INSERT INTO `sys_job_log` VALUES (20582, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:590毫秒', '0', '', '2022-03-19 13:30:00'); INSERT INTO `sys_job_log` VALUES (20583, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3857毫秒', '0', '', '2022-03-19 13:30:03'); INSERT INTO `sys_job_log` VALUES (20584, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:403毫秒', '0', '', '2022-03-19 13:40:00'); INSERT INTO `sys_job_log` VALUES (20585, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:729毫秒', '0', '', '2022-03-19 13:40:00'); INSERT INTO `sys_job_log` VALUES (20586, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3624毫秒', '0', '', '2022-03-19 13:40:03'); INSERT INTO `sys_job_log` VALUES (20587, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-03-19 13:50:00'); INSERT INTO `sys_job_log` VALUES (20588, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3682毫秒', '0', '', '2022-03-19 13:50:03'); INSERT INTO `sys_job_log` VALUES (20589, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:538毫秒', '0', '', '2022-03-19 14:00:00'); INSERT INTO `sys_job_log` VALUES (20590, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:688毫秒', '0', '', '2022-03-19 14:00:00'); INSERT INTO `sys_job_log` VALUES (20591, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6131毫秒', '0', '', '2022-03-19 14:00:06'); INSERT INTO `sys_job_log` VALUES (20592, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:865毫秒', '0', '', '2022-03-19 14:10:00'); INSERT INTO `sys_job_log` VALUES (20593, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3339毫秒', '0', '', '2022-03-19 14:10:03'); INSERT INTO `sys_job_log` VALUES (20594, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:567毫秒', '0', '', '2022-03-19 14:15:30'); INSERT INTO `sys_job_log` VALUES (20595, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:380毫秒', '0', '', '2022-03-19 14:20:00'); INSERT INTO `sys_job_log` VALUES (20596, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:586毫秒', '0', '', '2022-03-19 14:20:00'); INSERT INTO `sys_job_log` VALUES (20597, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3672毫秒', '0', '', '2022-03-19 14:20:03'); INSERT INTO `sys_job_log` VALUES (20598, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:689毫秒', '0', '', '2022-03-19 14:30:00'); INSERT INTO `sys_job_log` VALUES (20599, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3176毫秒', '0', '', '2022-03-19 14:30:03'); INSERT INTO `sys_job_log` VALUES (20600, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-03-19 14:40:00'); INSERT INTO `sys_job_log` VALUES (20601, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:763毫秒', '0', '', '2022-03-19 14:40:00'); INSERT INTO `sys_job_log` VALUES (20602, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2712毫秒', '0', '', '2022-03-19 14:40:02'); INSERT INTO `sys_job_log` VALUES (20603, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:694毫秒', '0', '', '2022-03-19 14:50:00'); INSERT INTO `sys_job_log` VALUES (20604, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3976毫秒', '0', '', '2022-03-19 14:50:03'); INSERT INTO `sys_job_log` VALUES (20605, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:372毫秒', '0', '', '2022-03-19 15:00:00'); INSERT INTO `sys_job_log` VALUES (20606, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:979毫秒', '0', '', '2022-03-19 15:00:01'); INSERT INTO `sys_job_log` VALUES (20607, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7249毫秒', '0', '', '2022-03-19 15:00:07'); INSERT INTO `sys_job_log` VALUES (20608, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:425096毫秒', '0', '', '2022-03-19 15:07:05'); INSERT INTO `sys_job_log` VALUES (20609, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:666毫秒', '0', '', '2022-03-19 15:10:00'); INSERT INTO `sys_job_log` VALUES (20610, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2513毫秒', '0', '', '2022-03-19 15:10:02'); INSERT INTO `sys_job_log` VALUES (20611, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:53990毫秒', '0', '', '2022-03-19 15:10:54'); INSERT INTO `sys_job_log` VALUES (20612, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:496毫秒', '0', '', '2022-03-19 15:15:30'); INSERT INTO `sys_job_log` VALUES (20613, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:651毫秒', '0', '', '2022-03-19 15:20:00'); INSERT INTO `sys_job_log` VALUES (20614, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-03-19 15:20:00'); INSERT INTO `sys_job_log` VALUES (20615, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4618毫秒', '0', '', '2022-03-19 15:20:04'); INSERT INTO `sys_job_log` VALUES (20616, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-03-19 15:30:00'); INSERT INTO `sys_job_log` VALUES (20617, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4387毫秒', '0', '', '2022-03-19 15:30:04'); INSERT INTO `sys_job_log` VALUES (20618, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:359毫秒', '0', '', '2022-03-19 15:40:00'); INSERT INTO `sys_job_log` VALUES (20619, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-03-19 15:40:00'); INSERT INTO `sys_job_log` VALUES (20620, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4339毫秒', '0', '', '2022-03-19 15:40:04'); INSERT INTO `sys_job_log` VALUES (20621, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:679毫秒', '0', '', '2022-03-19 15:50:00'); INSERT INTO `sys_job_log` VALUES (20622, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3931毫秒', '0', '', '2022-03-19 15:50:03'); INSERT INTO `sys_job_log` VALUES (20623, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:339毫秒', '0', '', '2022-03-19 16:00:00'); INSERT INTO `sys_job_log` VALUES (20624, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-03-19 16:00:00'); INSERT INTO `sys_job_log` VALUES (20625, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4830毫秒', '0', '', '2022-03-19 16:00:04'); INSERT INTO `sys_job_log` VALUES (20626, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:636毫秒', '0', '', '2022-03-19 16:10:00'); INSERT INTO `sys_job_log` VALUES (20627, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3833毫秒', '0', '', '2022-03-19 16:10:03'); INSERT INTO `sys_job_log` VALUES (20628, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:579毫秒', '0', '', '2022-03-19 16:15:30'); INSERT INTO `sys_job_log` VALUES (20629, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:422毫秒', '0', '', '2022-03-19 16:20:00'); INSERT INTO `sys_job_log` VALUES (20630, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:709毫秒', '0', '', '2022-03-19 16:20:00'); INSERT INTO `sys_job_log` VALUES (20631, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4406毫秒', '0', '', '2022-03-19 16:20:04'); INSERT INTO `sys_job_log` VALUES (20632, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:683毫秒', '0', '', '2022-03-19 16:30:00'); INSERT INTO `sys_job_log` VALUES (20633, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3047毫秒', '0', '', '2022-03-19 16:30:03'); INSERT INTO `sys_job_log` VALUES (20634, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-03-19 16:40:00'); INSERT INTO `sys_job_log` VALUES (20635, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:718毫秒', '0', '', '2022-03-19 16:40:00'); INSERT INTO `sys_job_log` VALUES (20636, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3463毫秒', '0', '', '2022-03-19 16:40:03'); INSERT INTO `sys_job_log` VALUES (20637, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:711毫秒', '0', '', '2022-03-19 16:50:00'); INSERT INTO `sys_job_log` VALUES (20638, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3152毫秒', '0', '', '2022-03-19 16:50:03'); INSERT INTO `sys_job_log` VALUES (20639, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:371毫秒', '0', '', '2022-03-19 17:00:00'); INSERT INTO `sys_job_log` VALUES (20640, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-03-19 17:00:00'); INSERT INTO `sys_job_log` VALUES (20641, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6206毫秒', '0', '', '2022-03-19 17:00:06'); INSERT INTO `sys_job_log` VALUES (20642, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:816毫秒', '0', '', '2022-03-19 17:10:00'); INSERT INTO `sys_job_log` VALUES (20643, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3932毫秒', '0', '', '2022-03-19 17:10:03'); INSERT INTO `sys_job_log` VALUES (20644, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:521毫秒', '0', '', '2022-03-19 17:15:30'); INSERT INTO `sys_job_log` VALUES (20645, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:635毫秒', '0', '', '2022-03-19 17:38:47'); INSERT INTO `sys_job_log` VALUES (20646, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:793毫秒', '0', '', '2022-03-19 17:38:47'); INSERT INTO `sys_job_log` VALUES (20647, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:476毫秒', '0', '', '2022-03-19 17:38:47'); INSERT INTO `sys_job_log` VALUES (20648, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3917毫秒', '0', '', '2022-03-19 17:38:50'); INSERT INTO `sys_job_log` VALUES (20649, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1865毫秒', '0', '', '2022-03-19 17:38:52'); INSERT INTO `sys_job_log` VALUES (20650, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:249毫秒', '0', '', '2022-03-19 17:40:00'); INSERT INTO `sys_job_log` VALUES (20651, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:549毫秒', '0', '', '2022-03-19 17:40:00'); INSERT INTO `sys_job_log` VALUES (20652, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3322毫秒', '0', '', '2022-03-19 17:40:03'); INSERT INTO `sys_job_log` VALUES (20653, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:878毫秒', '0', '', '2022-03-19 17:50:00'); INSERT INTO `sys_job_log` VALUES (20654, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6909毫秒', '0', '', '2022-03-19 17:50:06'); INSERT INTO `sys_job_log` VALUES (20655, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:434毫秒', '0', '', '2022-03-19 18:00:00'); INSERT INTO `sys_job_log` VALUES (20656, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:740毫秒', '0', '', '2022-03-19 18:00:00'); INSERT INTO `sys_job_log` VALUES (20657, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7039毫秒', '0', '', '2022-03-19 18:00:07'); INSERT INTO `sys_job_log` VALUES (20658, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:415390毫秒', '0', '', '2022-03-19 18:06:55'); INSERT INTO `sys_job_log` VALUES (20659, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:574毫秒', '0', '', '2022-03-19 18:10:00'); INSERT INTO `sys_job_log` VALUES (20660, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3369毫秒', '0', '', '2022-03-19 18:10:03'); INSERT INTO `sys_job_log` VALUES (20661, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:561毫秒', '0', '', '2022-03-19 18:15:30'); INSERT INTO `sys_job_log` VALUES (20662, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:347毫秒', '0', '', '2022-03-19 18:20:00'); INSERT INTO `sys_job_log` VALUES (20663, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:783毫秒', '0', '', '2022-03-19 18:20:00'); INSERT INTO `sys_job_log` VALUES (20664, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3029毫秒', '0', '', '2022-03-19 18:20:03'); INSERT INTO `sys_job_log` VALUES (20665, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:635毫秒', '0', '', '2022-03-19 18:30:00'); INSERT INTO `sys_job_log` VALUES (20666, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4930毫秒', '0', '', '2022-03-19 18:30:04'); INSERT INTO `sys_job_log` VALUES (20667, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:436毫秒', '0', '', '2022-03-19 18:40:00'); INSERT INTO `sys_job_log` VALUES (20668, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:788毫秒', '0', '', '2022-03-19 18:40:00'); INSERT INTO `sys_job_log` VALUES (20669, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5176毫秒', '0', '', '2022-03-19 18:40:05'); INSERT INTO `sys_job_log` VALUES (20670, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:661毫秒', '0', '', '2022-03-19 18:50:00'); INSERT INTO `sys_job_log` VALUES (20671, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3563毫秒', '0', '', '2022-03-19 18:50:03'); INSERT INTO `sys_job_log` VALUES (20672, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:695毫秒', '0', '', '2022-03-19 19:00:00'); INSERT INTO `sys_job_log` VALUES (20673, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:869毫秒', '0', '', '2022-03-19 19:00:00'); INSERT INTO `sys_job_log` VALUES (20674, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3697毫秒', '0', '', '2022-03-19 19:00:03'); INSERT INTO `sys_job_log` VALUES (20675, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3028毫秒', '0', '', '2022-03-19 19:10:03'); INSERT INTO `sys_job_log` VALUES (20676, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5925毫秒', '0', '', '2022-03-19 19:10:05'); INSERT INTO `sys_job_log` VALUES (20677, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:4716毫秒', '0', '', '2022-03-19 19:15:34'); INSERT INTO `sys_job_log` VALUES (20678, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2603毫秒', '0', '', '2022-03-19 19:20:02'); INSERT INTO `sys_job_log` VALUES (20679, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2616毫秒', '0', '', '2022-03-19 19:20:02'); INSERT INTO `sys_job_log` VALUES (20680, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7731毫秒', '0', '', '2022-03-19 19:20:07'); INSERT INTO `sys_job_log` VALUES (20681, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2513毫秒', '0', '', '2022-03-19 19:30:02'); INSERT INTO `sys_job_log` VALUES (20682, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6998毫秒', '0', '', '2022-03-19 19:30:07'); INSERT INTO `sys_job_log` VALUES (20683, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:531毫秒', '0', '', '2022-03-19 19:40:00'); INSERT INTO `sys_job_log` VALUES (20684, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:880毫秒', '0', '', '2022-03-19 19:40:00'); INSERT INTO `sys_job_log` VALUES (20685, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3514毫秒', '0', '', '2022-03-19 19:40:03'); INSERT INTO `sys_job_log` VALUES (20686, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:857毫秒', '0', '', '2022-03-19 19:50:00'); INSERT INTO `sys_job_log` VALUES (20687, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2815毫秒', '0', '', '2022-03-19 19:50:02'); INSERT INTO `sys_job_log` VALUES (20688, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:416毫秒', '0', '', '2022-03-19 20:00:00'); INSERT INTO `sys_job_log` VALUES (20689, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:835毫秒', '0', '', '2022-03-19 20:00:00'); INSERT INTO `sys_job_log` VALUES (20690, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5348毫秒', '0', '', '2022-03-19 20:00:05'); INSERT INTO `sys_job_log` VALUES (20691, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:808毫秒', '0', '', '2022-03-19 20:10:00'); INSERT INTO `sys_job_log` VALUES (20692, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7398毫秒', '0', '', '2022-03-19 20:10:07'); INSERT INTO `sys_job_log` VALUES (20693, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1074毫秒', '0', '', '2022-03-19 20:15:31'); INSERT INTO `sys_job_log` VALUES (20694, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:340毫秒', '0', '', '2022-03-19 20:20:00'); INSERT INTO `sys_job_log` VALUES (20695, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:809毫秒', '0', '', '2022-03-19 20:20:00'); INSERT INTO `sys_job_log` VALUES (20696, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3718毫秒', '0', '', '2022-03-19 20:20:03'); INSERT INTO `sys_job_log` VALUES (20697, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:138446毫秒', '0', '', '2022-03-19 20:22:18'); INSERT INTO `sys_job_log` VALUES (20698, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:737毫秒', '0', '', '2022-03-19 20:30:00'); INSERT INTO `sys_job_log` VALUES (20699, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3016毫秒', '0', '', '2022-03-19 20:30:03'); INSERT INTO `sys_job_log` VALUES (20700, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:355毫秒', '0', '', '2022-03-19 20:40:00'); INSERT INTO `sys_job_log` VALUES (20701, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1558毫秒', '0', '', '2022-03-19 20:40:01'); INSERT INTO `sys_job_log` VALUES (20702, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4107毫秒', '0', '', '2022-03-19 20:40:04'); INSERT INTO `sys_job_log` VALUES (20703, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:722毫秒', '0', '', '2022-03-19 20:50:00'); INSERT INTO `sys_job_log` VALUES (20704, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6633毫秒', '0', '', '2022-03-19 20:50:06'); INSERT INTO `sys_job_log` VALUES (20705, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:967毫秒', '0', '', '2022-03-19 21:00:00'); INSERT INTO `sys_job_log` VALUES (20706, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1151毫秒', '0', '', '2022-03-19 21:00:01'); INSERT INTO `sys_job_log` VALUES (20707, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4577毫秒', '0', '', '2022-03-19 21:00:04'); INSERT INTO `sys_job_log` VALUES (20708, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:383778毫秒', '0', '', '2022-03-19 21:06:23'); INSERT INTO `sys_job_log` VALUES (20709, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1007毫秒', '0', '', '2022-03-19 21:10:01'); INSERT INTO `sys_job_log` VALUES (20710, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:1293毫秒', '0', '', '2022-03-19 21:10:01'); INSERT INTO `sys_job_log` VALUES (20711, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3153毫秒', '0', '', '2022-03-19 21:10:03'); INSERT INTO `sys_job_log` VALUES (20712, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:598毫秒', '0', '', '2022-03-19 21:15:30'); INSERT INTO `sys_job_log` VALUES (20713, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:433毫秒', '0', '', '2022-03-19 21:20:00'); INSERT INTO `sys_job_log` VALUES (20714, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:723毫秒', '0', '', '2022-03-19 21:20:00'); INSERT INTO `sys_job_log` VALUES (20715, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4744毫秒', '0', '', '2022-03-19 21:20:04'); INSERT INTO `sys_job_log` VALUES (20716, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:689毫秒', '0', '', '2022-03-19 21:30:00'); INSERT INTO `sys_job_log` VALUES (20717, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6473毫秒', '0', '', '2022-03-19 21:30:06'); INSERT INTO `sys_job_log` VALUES (20718, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-03-19 21:40:00'); INSERT INTO `sys_job_log` VALUES (20719, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:740毫秒', '0', '', '2022-03-19 21:40:00'); INSERT INTO `sys_job_log` VALUES (20720, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2137毫秒', '0', '', '2022-03-19 21:40:02'); INSERT INTO `sys_job_log` VALUES (20721, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:708毫秒', '0', '', '2022-03-19 21:50:00'); INSERT INTO `sys_job_log` VALUES (20722, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3004毫秒', '0', '', '2022-03-19 21:50:03'); INSERT INTO `sys_job_log` VALUES (20723, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:127毫秒', '0', '', '2022-03-19 22:00:00'); INSERT INTO `sys_job_log` VALUES (20724, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:859毫秒', '0', '', '2022-03-19 22:00:00'); INSERT INTO `sys_job_log` VALUES (20725, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1274毫秒', '0', '', '2022-03-19 22:00:01'); INSERT INTO `sys_job_log` VALUES (20726, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6254毫秒', '0', '', '2022-03-19 22:00:06'); INSERT INTO `sys_job_log` VALUES (20727, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:825毫秒', '0', '', '2022-03-19 22:10:00'); INSERT INTO `sys_job_log` VALUES (20728, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4454毫秒', '0', '', '2022-03-19 22:10:04'); INSERT INTO `sys_job_log` VALUES (20729, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1055毫秒', '0', '', '2022-03-19 22:15:31'); INSERT INTO `sys_job_log` VALUES (20730, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:703毫秒', '0', '', '2022-03-19 22:20:00'); INSERT INTO `sys_job_log` VALUES (20731, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:787毫秒', '0', '', '2022-03-19 22:20:00'); INSERT INTO `sys_job_log` VALUES (20732, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3622毫秒', '0', '', '2022-03-19 22:20:03'); INSERT INTO `sys_job_log` VALUES (20733, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:712毫秒', '0', '', '2022-03-19 22:30:00'); INSERT INTO `sys_job_log` VALUES (20734, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2806毫秒', '0', '', '2022-03-19 22:30:02'); INSERT INTO `sys_job_log` VALUES (20735, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:393毫秒', '0', '', '2022-03-19 22:40:00'); INSERT INTO `sys_job_log` VALUES (20736, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:746毫秒', '0', '', '2022-03-19 22:40:00'); INSERT INTO `sys_job_log` VALUES (20737, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3010毫秒', '0', '', '2022-03-19 22:40:03'); INSERT INTO `sys_job_log` VALUES (20738, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:716毫秒', '0', '', '2022-03-19 22:50:00'); INSERT INTO `sys_job_log` VALUES (20739, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3273毫秒', '0', '', '2022-03-19 22:50:03'); INSERT INTO `sys_job_log` VALUES (20740, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:597毫秒', '0', '', '2022-03-19 23:00:00'); INSERT INTO `sys_job_log` VALUES (20741, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:739毫秒', '0', '', '2022-03-19 23:00:00'); INSERT INTO `sys_job_log` VALUES (20742, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3040毫秒', '0', '', '2022-03-19 23:00:03'); INSERT INTO `sys_job_log` VALUES (20743, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:779毫秒', '0', '', '2022-03-19 23:10:00'); INSERT INTO `sys_job_log` VALUES (20744, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3405毫秒', '0', '', '2022-03-19 23:10:03'); INSERT INTO `sys_job_log` VALUES (20745, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:574毫秒', '0', '', '2022-03-19 23:15:30'); INSERT INTO `sys_job_log` VALUES (20746, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:329毫秒', '0', '', '2022-03-19 23:20:00'); INSERT INTO `sys_job_log` VALUES (20747, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:662毫秒', '0', '', '2022-03-19 23:20:00'); INSERT INTO `sys_job_log` VALUES (20748, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3144毫秒', '0', '', '2022-03-19 23:20:03'); INSERT INTO `sys_job_log` VALUES (20749, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:703毫秒', '0', '', '2022-03-19 23:30:00'); INSERT INTO `sys_job_log` VALUES (20750, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4748毫秒', '0', '', '2022-03-19 23:30:04'); INSERT INTO `sys_job_log` VALUES (20751, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:697毫秒', '0', '', '2022-03-19 23:40:00'); INSERT INTO `sys_job_log` VALUES (20752, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:744毫秒', '0', '', '2022-03-19 23:40:00'); INSERT INTO `sys_job_log` VALUES (20753, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2827毫秒', '0', '', '2022-03-19 23:40:02'); INSERT INTO `sys_job_log` VALUES (20754, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1088毫秒', '0', '', '2022-03-19 23:50:01'); INSERT INTO `sys_job_log` VALUES (20755, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2340毫秒', '0', '', '2022-03-19 23:50:02'); INSERT INTO `sys_job_log` VALUES (20756, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:378毫秒', '0', '', '2022-03-20 00:00:00'); INSERT INTO `sys_job_log` VALUES (20757, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:868毫秒', '0', '', '2022-03-20 00:00:00'); INSERT INTO `sys_job_log` VALUES (20758, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5526毫秒', '0', '', '2022-03-20 00:00:05'); INSERT INTO `sys_job_log` VALUES (20759, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:466毫秒', '0', '', '2022-03-20 00:00:10'); INSERT INTO `sys_job_log` VALUES (20760, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:395952毫秒', '0', '', '2022-03-20 00:06:35'); INSERT INTO `sys_job_log` VALUES (20761, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-03-20 00:10:00'); INSERT INTO `sys_job_log` VALUES (20762, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3710毫秒', '0', '', '2022-03-20 00:10:03'); INSERT INTO `sys_job_log` VALUES (20763, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:572毫秒', '0', '', '2022-03-20 00:15:30'); INSERT INTO `sys_job_log` VALUES (20764, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:716毫秒', '0', '', '2022-03-20 00:20:00'); INSERT INTO `sys_job_log` VALUES (20765, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:873毫秒', '0', '', '2022-03-20 00:20:00'); INSERT INTO `sys_job_log` VALUES (20766, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6400毫秒', '0', '', '2022-03-20 00:20:06'); INSERT INTO `sys_job_log` VALUES (20767, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:720毫秒', '0', '', '2022-03-20 00:30:00'); INSERT INTO `sys_job_log` VALUES (20768, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3666毫秒', '0', '', '2022-03-20 00:30:03'); INSERT INTO `sys_job_log` VALUES (20769, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:420毫秒', '0', '', '2022-03-20 00:40:00'); INSERT INTO `sys_job_log` VALUES (20770, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:785毫秒', '0', '', '2022-03-20 00:40:00'); INSERT INTO `sys_job_log` VALUES (20771, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2473毫秒', '0', '', '2022-03-20 00:40:02'); INSERT INTO `sys_job_log` VALUES (20772, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:736毫秒', '0', '', '2022-03-20 00:50:00'); INSERT INTO `sys_job_log` VALUES (20773, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2662毫秒', '0', '', '2022-03-20 00:50:02'); INSERT INTO `sys_job_log` VALUES (20774, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:957毫秒', '0', '', '2022-03-20 01:00:00'); INSERT INTO `sys_job_log` VALUES (20775, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1514毫秒', '0', '', '2022-03-20 01:00:01'); INSERT INTO `sys_job_log` VALUES (20776, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2516毫秒', '0', '', '2022-03-20 01:00:02'); INSERT INTO `sys_job_log` VALUES (20777, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-03-20 01:10:00'); INSERT INTO `sys_job_log` VALUES (20778, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3507毫秒', '0', '', '2022-03-20 01:10:03'); INSERT INTO `sys_job_log` VALUES (20779, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:643毫秒', '0', '', '2022-03-20 01:15:30'); INSERT INTO `sys_job_log` VALUES (20780, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:274毫秒', '0', '', '2022-03-20 01:20:00'); INSERT INTO `sys_job_log` VALUES (20781, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:655毫秒', '0', '', '2022-03-20 01:20:00'); INSERT INTO `sys_job_log` VALUES (20782, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3508毫秒', '0', '', '2022-03-20 01:20:03'); INSERT INTO `sys_job_log` VALUES (20783, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2402毫秒', '0', '', '2022-03-20 10:10:02'); INSERT INTO `sys_job_log` VALUES (20784, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10440毫秒', '0', '', '2022-03-20 10:10:10'); INSERT INTO `sys_job_log` VALUES (20785, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2145毫秒', '0', '', '2022-03-20 10:15:32'); INSERT INTO `sys_job_log` VALUES (20786, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:353毫秒', '0', '', '2022-03-20 10:20:00'); INSERT INTO `sys_job_log` VALUES (20787, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:663毫秒', '0', '', '2022-03-20 10:20:00'); INSERT INTO `sys_job_log` VALUES (20788, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5913毫秒', '0', '', '2022-03-20 10:20:05'); INSERT INTO `sys_job_log` VALUES (20789, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:614毫秒', '0', '', '2022-03-20 10:30:00'); INSERT INTO `sys_job_log` VALUES (20790, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2293毫秒', '0', '', '2022-03-20 10:30:02'); INSERT INTO `sys_job_log` VALUES (20791, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:308毫秒', '0', '', '2022-03-20 10:40:00'); INSERT INTO `sys_job_log` VALUES (20792, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:617毫秒', '0', '', '2022-03-20 10:40:00'); INSERT INTO `sys_job_log` VALUES (20793, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4248毫秒', '0', '', '2022-03-20 10:40:04'); INSERT INTO `sys_job_log` VALUES (20794, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:533毫秒', '0', '', '2022-03-20 10:50:00'); INSERT INTO `sys_job_log` VALUES (20795, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3980毫秒', '0', '', '2022-03-20 10:50:03'); INSERT INTO `sys_job_log` VALUES (20796, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:618毫秒', '0', '', '2022-03-20 11:00:00'); INSERT INTO `sys_job_log` VALUES (20797, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-03-20 11:00:00'); INSERT INTO `sys_job_log` VALUES (20798, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4636毫秒', '0', '', '2022-03-20 11:00:04'); INSERT INTO `sys_job_log` VALUES (20799, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:700毫秒', '0', '', '2022-03-20 11:10:00'); INSERT INTO `sys_job_log` VALUES (20800, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4326毫秒', '0', '', '2022-03-20 11:10:04'); INSERT INTO `sys_job_log` VALUES (20801, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:542毫秒', '0', '', '2022-03-20 11:15:30'); INSERT INTO `sys_job_log` VALUES (20802, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:313毫秒', '0', '', '2022-03-20 11:20:00'); INSERT INTO `sys_job_log` VALUES (20803, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-03-20 11:20:00'); INSERT INTO `sys_job_log` VALUES (20804, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4618毫秒', '0', '', '2022-03-20 11:20:04'); INSERT INTO `sys_job_log` VALUES (20805, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:678毫秒', '0', '', '2022-03-20 11:30:00'); INSERT INTO `sys_job_log` VALUES (20806, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3269毫秒', '0', '', '2022-03-20 11:30:03'); INSERT INTO `sys_job_log` VALUES (20807, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-03-20 11:40:00'); INSERT INTO `sys_job_log` VALUES (20808, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1464毫秒', '0', '', '2022-03-20 11:40:01'); INSERT INTO `sys_job_log` VALUES (20809, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3459毫秒', '0', '', '2022-03-20 11:40:03'); INSERT INTO `sys_job_log` VALUES (20810, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:846毫秒', '0', '', '2022-03-20 11:50:00'); INSERT INTO `sys_job_log` VALUES (20811, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2315毫秒', '0', '', '2022-03-20 11:50:02'); INSERT INTO `sys_job_log` VALUES (20812, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:373毫秒', '0', '', '2022-03-20 12:00:00'); INSERT INTO `sys_job_log` VALUES (20813, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:694毫秒', '0', '', '2022-03-20 12:00:00'); INSERT INTO `sys_job_log` VALUES (20814, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4056毫秒', '0', '', '2022-03-20 12:00:04'); INSERT INTO `sys_job_log` VALUES (20815, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:510230毫秒', '0', '', '2022-03-20 12:08:30'); INSERT INTO `sys_job_log` VALUES (20816, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:484毫秒', '0', '', '2022-03-20 12:10:00'); INSERT INTO `sys_job_log` VALUES (20817, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2583毫秒', '0', '', '2022-03-20 12:10:02'); INSERT INTO `sys_job_log` VALUES (20818, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:516毫秒', '0', '', '2022-03-20 12:15:30'); INSERT INTO `sys_job_log` VALUES (20819, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:628毫秒', '0', '', '2022-03-20 12:20:00'); INSERT INTO `sys_job_log` VALUES (20820, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:701毫秒', '0', '', '2022-03-20 12:20:00'); INSERT INTO `sys_job_log` VALUES (20821, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4124毫秒', '0', '', '2022-03-20 12:20:04'); INSERT INTO `sys_job_log` VALUES (20822, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:597毫秒', '0', '', '2022-03-20 12:30:00'); INSERT INTO `sys_job_log` VALUES (20823, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3437毫秒', '0', '', '2022-03-20 12:30:03'); INSERT INTO `sys_job_log` VALUES (20824, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:302毫秒', '0', '', '2022-03-20 12:40:00'); INSERT INTO `sys_job_log` VALUES (20825, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:656毫秒', '0', '', '2022-03-20 12:40:00'); INSERT INTO `sys_job_log` VALUES (20826, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2183毫秒', '0', '', '2022-03-20 12:40:02'); INSERT INTO `sys_job_log` VALUES (20827, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-03-20 12:50:00'); INSERT INTO `sys_job_log` VALUES (20828, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2743毫秒', '0', '', '2022-03-20 12:50:02'); INSERT INTO `sys_job_log` VALUES (20829, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:614毫秒', '0', '', '2022-03-20 13:00:00'); INSERT INTO `sys_job_log` VALUES (20830, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:700毫秒', '0', '', '2022-03-20 13:00:00'); INSERT INTO `sys_job_log` VALUES (20831, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4683毫秒', '0', '', '2022-03-20 13:00:04'); INSERT INTO `sys_job_log` VALUES (20832, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:812毫秒', '0', '', '2022-03-20 13:10:00'); INSERT INTO `sys_job_log` VALUES (20833, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3601毫秒', '0', '', '2022-03-20 13:10:03'); INSERT INTO `sys_job_log` VALUES (20834, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:568毫秒', '0', '', '2022-03-20 13:15:30'); INSERT INTO `sys_job_log` VALUES (20835, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:234毫秒', '0', '', '2022-03-20 13:20:00'); INSERT INTO `sys_job_log` VALUES (20836, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:639毫秒', '0', '', '2022-03-20 13:20:00'); INSERT INTO `sys_job_log` VALUES (20837, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2587毫秒', '0', '', '2022-03-20 13:20:02'); INSERT INTO `sys_job_log` VALUES (20838, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:580毫秒', '0', '', '2022-03-20 13:30:00'); INSERT INTO `sys_job_log` VALUES (20839, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3684毫秒', '0', '', '2022-03-20 13:30:03'); INSERT INTO `sys_job_log` VALUES (20840, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:271毫秒', '0', '', '2022-03-20 13:40:00'); INSERT INTO `sys_job_log` VALUES (20841, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-03-20 13:40:00'); INSERT INTO `sys_job_log` VALUES (20842, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2828毫秒', '0', '', '2022-03-20 13:40:02'); INSERT INTO `sys_job_log` VALUES (20843, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:776毫秒', '0', '', '2022-03-20 13:50:00'); INSERT INTO `sys_job_log` VALUES (20844, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2541毫秒', '0', '', '2022-03-20 13:50:02'); INSERT INTO `sys_job_log` VALUES (20845, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2033毫秒', '0', '', '2022-03-20 14:00:02'); INSERT INTO `sys_job_log` VALUES (20846, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2023毫秒', '0', '', '2022-03-20 14:00:02'); INSERT INTO `sys_job_log` VALUES (20847, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4901毫秒', '0', '', '2022-03-20 14:00:04'); INSERT INTO `sys_job_log` VALUES (20848, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:853毫秒', '0', '', '2022-03-20 14:10:00'); INSERT INTO `sys_job_log` VALUES (20849, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3264毫秒', '0', '', '2022-03-20 14:10:03'); INSERT INTO `sys_job_log` VALUES (20850, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1047毫秒', '0', '', '2022-03-20 14:15:31'); INSERT INTO `sys_job_log` VALUES (20851, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:588毫秒', '0', '', '2022-03-20 14:20:00'); INSERT INTO `sys_job_log` VALUES (20852, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-03-20 14:20:00'); INSERT INTO `sys_job_log` VALUES (20853, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5459毫秒', '0', '', '2022-03-20 14:20:05'); INSERT INTO `sys_job_log` VALUES (20854, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:647毫秒', '0', '', '2022-03-20 14:30:00'); INSERT INTO `sys_job_log` VALUES (20855, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3633毫秒', '0', '', '2022-03-20 14:30:03'); INSERT INTO `sys_job_log` VALUES (20856, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:251毫秒', '0', '', '2022-03-20 14:40:00'); INSERT INTO `sys_job_log` VALUES (20857, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:530毫秒', '0', '', '2022-03-20 14:40:00'); INSERT INTO `sys_job_log` VALUES (20858, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3654毫秒', '0', '', '2022-03-20 14:40:03'); INSERT INTO `sys_job_log` VALUES (20859, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:814毫秒', '0', '', '2022-03-20 14:50:00'); INSERT INTO `sys_job_log` VALUES (20860, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3639毫秒', '0', '', '2022-03-20 14:50:03'); INSERT INTO `sys_job_log` VALUES (20861, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:564毫秒', '0', '', '2022-03-20 15:00:00'); INSERT INTO `sys_job_log` VALUES (20862, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:604毫秒', '0', '', '2022-03-20 15:00:00'); INSERT INTO `sys_job_log` VALUES (20863, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4709毫秒', '0', '', '2022-03-20 15:00:04'); INSERT INTO `sys_job_log` VALUES (20864, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:421074毫秒', '0', '', '2022-03-20 15:07:01'); INSERT INTO `sys_job_log` VALUES (20865, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-03-20 15:10:00'); INSERT INTO `sys_job_log` VALUES (20866, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5429毫秒', '0', '', '2022-03-20 15:10:05'); INSERT INTO `sys_job_log` VALUES (20867, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:55145毫秒', '0', '', '2022-03-20 15:10:55'); INSERT INTO `sys_job_log` VALUES (20868, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:534毫秒', '0', '', '2022-03-20 15:15:30'); INSERT INTO `sys_job_log` VALUES (20869, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:271毫秒', '0', '', '2022-03-20 15:20:00'); INSERT INTO `sys_job_log` VALUES (20870, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:626毫秒', '0', '', '2022-03-20 15:20:00'); INSERT INTO `sys_job_log` VALUES (20871, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3825毫秒', '0', '', '2022-03-20 15:20:03'); INSERT INTO `sys_job_log` VALUES (20872, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:684毫秒', '0', '', '2022-03-20 15:30:00'); INSERT INTO `sys_job_log` VALUES (20873, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3188毫秒', '0', '', '2022-03-20 15:30:03'); INSERT INTO `sys_job_log` VALUES (20874, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:567毫秒', '0', '', '2022-03-20 15:40:00'); INSERT INTO `sys_job_log` VALUES (20875, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:904毫秒', '0', '', '2022-03-20 15:40:00'); INSERT INTO `sys_job_log` VALUES (20876, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3541毫秒', '0', '', '2022-03-20 15:40:03'); INSERT INTO `sys_job_log` VALUES (20877, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:672毫秒', '0', '', '2022-03-20 15:50:00'); INSERT INTO `sys_job_log` VALUES (20878, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3258毫秒', '0', '', '2022-03-20 15:50:03'); INSERT INTO `sys_job_log` VALUES (20879, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:279毫秒', '0', '', '2022-03-20 16:00:00'); INSERT INTO `sys_job_log` VALUES (20880, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:665毫秒', '0', '', '2022-03-20 16:00:00'); INSERT INTO `sys_job_log` VALUES (20881, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5792毫秒', '0', '', '2022-03-20 16:00:05'); INSERT INTO `sys_job_log` VALUES (20882, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-03-20 16:10:00'); INSERT INTO `sys_job_log` VALUES (20883, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2981毫秒', '0', '', '2022-03-20 16:10:02'); INSERT INTO `sys_job_log` VALUES (20884, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:484毫秒', '0', '', '2022-03-20 16:15:30'); INSERT INTO `sys_job_log` VALUES (20885, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:562毫秒', '0', '', '2022-03-20 16:20:00'); INSERT INTO `sys_job_log` VALUES (20886, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:737毫秒', '0', '', '2022-03-20 16:20:00'); INSERT INTO `sys_job_log` VALUES (20887, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5331毫秒', '0', '', '2022-03-20 16:20:05'); INSERT INTO `sys_job_log` VALUES (20888, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:664毫秒', '0', '', '2022-03-20 16:30:00'); INSERT INTO `sys_job_log` VALUES (20889, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4909毫秒', '0', '', '2022-03-20 16:30:04'); INSERT INTO `sys_job_log` VALUES (20890, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:303毫秒', '0', '', '2022-03-20 16:40:00'); INSERT INTO `sys_job_log` VALUES (20891, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:678毫秒', '0', '', '2022-03-20 16:40:00'); INSERT INTO `sys_job_log` VALUES (20892, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5334毫秒', '0', '', '2022-03-20 16:40:05'); INSERT INTO `sys_job_log` VALUES (20893, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:677毫秒', '0', '', '2022-03-20 16:50:00'); INSERT INTO `sys_job_log` VALUES (20894, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2447毫秒', '0', '', '2022-03-20 16:50:02'); INSERT INTO `sys_job_log` VALUES (20895, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:618毫秒', '0', '', '2022-03-20 17:00:00'); INSERT INTO `sys_job_log` VALUES (20896, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:647毫秒', '0', '', '2022-03-20 17:00:00'); INSERT INTO `sys_job_log` VALUES (20897, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4771毫秒', '0', '', '2022-03-20 17:00:04'); INSERT INTO `sys_job_log` VALUES (20898, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-03-20 17:10:00'); INSERT INTO `sys_job_log` VALUES (20899, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2826毫秒', '0', '', '2022-03-20 17:10:02'); INSERT INTO `sys_job_log` VALUES (20900, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:483毫秒', '0', '', '2022-03-20 17:15:30'); INSERT INTO `sys_job_log` VALUES (20901, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:307毫秒', '0', '', '2022-03-20 17:20:00'); INSERT INTO `sys_job_log` VALUES (20902, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:630毫秒', '0', '', '2022-03-20 17:20:00'); INSERT INTO `sys_job_log` VALUES (20903, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3010毫秒', '0', '', '2022-03-20 17:20:03'); INSERT INTO `sys_job_log` VALUES (20904, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2012毫秒', '0', '', '2022-03-20 17:30:02'); INSERT INTO `sys_job_log` VALUES (20905, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-03-20 17:30:02'); INSERT INTO `sys_job_log` VALUES (20906, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5562毫秒', '0', '', '2022-03-20 17:30:05'); INSERT INTO `sys_job_log` VALUES (20907, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4146毫秒', '0', '', '2022-03-20 17:30:09'); INSERT INTO `sys_job_log` VALUES (20908, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1897毫秒', '0', '', '2022-03-20 17:40:01'); INSERT INTO `sys_job_log` VALUES (20909, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2010毫秒', '0', '', '2022-03-20 17:40:02'); INSERT INTO `sys_job_log` VALUES (20910, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:213毫秒', '0', '', '2022-03-20 17:40:02'); INSERT INTO `sys_job_log` VALUES (20911, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:478毫秒', '0', '', '2022-03-20 17:40:02'); INSERT INTO `sys_job_log` VALUES (20912, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5549毫秒', '0', '', '2022-03-20 17:40:05'); INSERT INTO `sys_job_log` VALUES (20913, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3546毫秒', '0', '', '2022-03-20 17:40:09'); INSERT INTO `sys_job_log` VALUES (20914, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2339毫秒', '0', '', '2022-03-20 17:50:02'); INSERT INTO `sys_job_log` VALUES (20915, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2011毫秒', '0', '', '2022-03-20 17:50:04'); INSERT INTO `sys_job_log` VALUES (20916, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:14754毫秒', '0', '', '2022-03-20 17:50:14'); INSERT INTO `sys_job_log` VALUES (20917, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1619毫秒', '0', '', '2022-03-20 18:00:01'); INSERT INTO `sys_job_log` VALUES (20918, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:195毫秒', '0', '', '2022-03-20 18:00:01'); INSERT INTO `sys_job_log` VALUES (20919, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1963毫秒', '0', '', '2022-03-20 18:00:01'); INSERT INTO `sys_job_log` VALUES (20920, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-03-20 18:00:02'); INSERT INTO `sys_job_log` VALUES (20921, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4639毫秒', '0', '', '2022-03-20 18:00:04'); INSERT INTO `sys_job_log` VALUES (20922, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1732毫秒', '0', '', '2022-03-20 18:00:06'); INSERT INTO `sys_job_log` VALUES (20923, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:487202毫秒', '0', '', '2022-03-20 18:08:07'); INSERT INTO `sys_job_log` VALUES (20924, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:693毫秒', '0', '', '2022-03-20 18:10:00'); INSERT INTO `sys_job_log` VALUES (20925, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3428毫秒', '0', '', '2022-03-20 18:10:03'); INSERT INTO `sys_job_log` VALUES (20926, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:237194毫秒', '0', '', '2022-03-20 18:12:04'); INSERT INTO `sys_job_log` VALUES (20927, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10036毫秒', '0', '', '2022-03-20 18:15:40'); INSERT INTO `sys_job_log` VALUES (20928, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1730毫秒', '0', '', '2022-03-20 18:20:01'); INSERT INTO `sys_job_log` VALUES (20929, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2011毫秒', '0', '', '2022-03-20 18:20:02'); INSERT INTO `sys_job_log` VALUES (20930, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5842毫秒', '0', '', '2022-03-20 18:20:05'); INSERT INTO `sys_job_log` VALUES (20931, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-03-20 18:30:00'); INSERT INTO `sys_job_log` VALUES (20932, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4461毫秒', '0', '', '2022-03-20 18:30:04'); INSERT INTO `sys_job_log` VALUES (20933, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:253毫秒', '0', '', '2022-03-20 18:40:00'); INSERT INTO `sys_job_log` VALUES (20934, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-03-20 18:40:00'); INSERT INTO `sys_job_log` VALUES (20935, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4703毫秒', '0', '', '2022-03-20 18:40:04'); INSERT INTO `sys_job_log` VALUES (20936, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-03-20 18:50:00'); INSERT INTO `sys_job_log` VALUES (20937, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8105毫秒', '0', '', '2022-03-20 18:50:08'); INSERT INTO `sys_job_log` VALUES (20938, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:796毫秒', '0', '', '2022-03-20 19:00:00'); INSERT INTO `sys_job_log` VALUES (20939, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:859毫秒', '0', '', '2022-03-20 19:00:00'); INSERT INTO `sys_job_log` VALUES (20940, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5020毫秒', '0', '', '2022-03-20 19:00:05'); INSERT INTO `sys_job_log` VALUES (20941, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:831毫秒', '0', '', '2022-03-20 19:10:00'); INSERT INTO `sys_job_log` VALUES (20942, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3998毫秒', '0', '', '2022-03-20 19:10:04'); INSERT INTO `sys_job_log` VALUES (20943, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:5671毫秒', '0', '', '2022-03-20 19:15:35'); INSERT INTO `sys_job_log` VALUES (20944, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1765毫秒', '0', '', '2022-03-20 19:20:01'); INSERT INTO `sys_job_log` VALUES (20945, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2024毫秒', '0', '', '2022-03-20 19:20:02'); INSERT INTO `sys_job_log` VALUES (20946, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8951毫秒', '0', '', '2022-03-20 19:20:08'); INSERT INTO `sys_job_log` VALUES (20947, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:775毫秒', '0', '', '2022-03-20 19:30:00'); INSERT INTO `sys_job_log` VALUES (20948, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7566毫秒', '0', '', '2022-03-20 19:30:07'); INSERT INTO `sys_job_log` VALUES (20949, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:608毫秒', '0', '', '2022-03-20 19:40:00'); INSERT INTO `sys_job_log` VALUES (20950, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:673毫秒', '0', '', '2022-03-20 19:40:00'); INSERT INTO `sys_job_log` VALUES (20951, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3670毫秒', '0', '', '2022-03-20 19:40:03'); INSERT INTO `sys_job_log` VALUES (20952, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1955毫秒', '0', '', '2022-03-20 19:50:01'); INSERT INTO `sys_job_log` VALUES (20953, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6886毫秒', '0', '', '2022-03-20 19:50:06'); INSERT INTO `sys_job_log` VALUES (20954, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:250毫秒', '0', '', '2022-03-20 20:00:00'); INSERT INTO `sys_job_log` VALUES (20955, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-03-20 20:00:00'); INSERT INTO `sys_job_log` VALUES (20956, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6175毫秒', '0', '', '2022-03-20 20:00:06'); INSERT INTO `sys_job_log` VALUES (20957, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:4092毫秒', '0', '', '2022-03-20 20:10:04'); INSERT INTO `sys_job_log` VALUES (20958, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8417毫秒', '0', '', '2022-03-20 20:10:08'); INSERT INTO `sys_job_log` VALUES (20959, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10092毫秒', '0', '', '2022-03-20 20:15:40'); INSERT INTO `sys_job_log` VALUES (20960, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:545毫秒', '0', '', '2022-03-20 20:20:00'); INSERT INTO `sys_job_log` VALUES (20961, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1047毫秒', '0', '', '2022-03-20 20:20:01'); INSERT INTO `sys_job_log` VALUES (20962, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3521毫秒', '0', '', '2022-03-20 20:20:03'); INSERT INTO `sys_job_log` VALUES (20963, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:135245毫秒', '0', '', '2022-03-20 20:22:15'); INSERT INTO `sys_job_log` VALUES (20964, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:907毫秒', '0', '', '2022-03-20 20:30:00'); INSERT INTO `sys_job_log` VALUES (20965, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4304毫秒', '0', '', '2022-03-20 20:30:04'); INSERT INTO `sys_job_log` VALUES (20966, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:394毫秒', '0', '', '2022-03-20 20:40:00'); INSERT INTO `sys_job_log` VALUES (20967, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:842毫秒', '0', '', '2022-03-20 20:40:00'); INSERT INTO `sys_job_log` VALUES (20968, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2238毫秒', '0', '', '2022-03-20 20:40:02'); INSERT INTO `sys_job_log` VALUES (20969, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:785毫秒', '0', '', '2022-03-20 20:50:00'); INSERT INTO `sys_job_log` VALUES (20970, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4286毫秒', '0', '', '2022-03-20 20:50:04'); INSERT INTO `sys_job_log` VALUES (20971, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:696毫秒', '0', '', '2022-03-20 21:00:00'); INSERT INTO `sys_job_log` VALUES (20972, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:823毫秒', '0', '', '2022-03-20 21:00:00'); INSERT INTO `sys_job_log` VALUES (20973, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2171毫秒', '0', '', '2022-03-20 21:00:02'); INSERT INTO `sys_job_log` VALUES (20974, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:427016毫秒', '0', '', '2022-03-20 21:07:07'); INSERT INTO `sys_job_log` VALUES (20975, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:867毫秒', '0', '', '2022-03-20 21:10:00'); INSERT INTO `sys_job_log` VALUES (20976, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3552毫秒', '0', '', '2022-03-20 21:10:03'); INSERT INTO `sys_job_log` VALUES (20977, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:58223毫秒', '0', '', '2022-03-20 21:10:58'); INSERT INTO `sys_job_log` VALUES (20978, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:723毫秒', '0', '', '2022-03-20 21:15:30'); INSERT INTO `sys_job_log` VALUES (20979, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:342毫秒', '0', '', '2022-03-20 21:20:00'); INSERT INTO `sys_job_log` VALUES (20980, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1030毫秒', '0', '', '2022-03-20 21:20:01'); INSERT INTO `sys_job_log` VALUES (20981, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3549毫秒', '0', '', '2022-03-20 21:20:03'); INSERT INTO `sys_job_log` VALUES (20982, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-03-20 21:30:00'); INSERT INTO `sys_job_log` VALUES (20983, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2503毫秒', '0', '', '2022-03-20 21:30:02'); INSERT INTO `sys_job_log` VALUES (20984, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:615毫秒', '0', '', '2022-03-20 21:40:00'); INSERT INTO `sys_job_log` VALUES (20985, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:686毫秒', '0', '', '2022-03-20 21:40:00'); INSERT INTO `sys_job_log` VALUES (20986, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4856毫秒', '0', '', '2022-03-20 21:40:04'); INSERT INTO `sys_job_log` VALUES (20987, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:707毫秒', '0', '', '2022-03-20 21:50:00'); INSERT INTO `sys_job_log` VALUES (20988, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3454毫秒', '0', '', '2022-03-20 21:50:03'); INSERT INTO `sys_job_log` VALUES (20989, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:461毫秒', '0', '', '2022-03-20 22:00:00'); INSERT INTO `sys_job_log` VALUES (20990, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:848毫秒', '0', '', '2022-03-20 22:00:00'); INSERT INTO `sys_job_log` VALUES (20991, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:2222毫秒', '0', '', '2022-03-20 22:00:02'); INSERT INTO `sys_job_log` VALUES (20992, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5881毫秒', '0', '', '2022-03-20 22:00:05'); INSERT INTO `sys_job_log` VALUES (20993, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3726毫秒', '0', '', '2022-03-20 22:10:03'); INSERT INTO `sys_job_log` VALUES (20994, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2025毫秒', '0', '', '2022-03-20 22:10:05'); INSERT INTO `sys_job_log` VALUES (20995, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7667毫秒', '0', '', '2022-03-20 22:10:07'); INSERT INTO `sys_job_log` VALUES (20996, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2354毫秒', '0', '', '2022-03-20 22:10:10'); INSERT INTO `sys_job_log` VALUES (20997, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2162毫秒', '0', '', '2022-03-20 22:15:32'); INSERT INTO `sys_job_log` VALUES (20998, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:630毫秒', '0', '', '2022-03-20 22:20:00'); INSERT INTO `sys_job_log` VALUES (20999, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:807毫秒', '0', '', '2022-03-20 22:20:00'); INSERT INTO `sys_job_log` VALUES (21000, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3364毫秒', '0', '', '2022-03-20 22:20:03'); INSERT INTO `sys_job_log` VALUES (21001, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:831毫秒', '0', '', '2022-03-20 22:30:00'); INSERT INTO `sys_job_log` VALUES (21002, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4102毫秒', '0', '', '2022-03-20 22:30:04'); INSERT INTO `sys_job_log` VALUES (21003, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:312毫秒', '0', '', '2022-03-20 22:40:00'); INSERT INTO `sys_job_log` VALUES (21004, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:830毫秒', '0', '', '2022-03-20 22:40:00'); INSERT INTO `sys_job_log` VALUES (21005, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2702毫秒', '0', '', '2022-03-20 22:40:02'); INSERT INTO `sys_job_log` VALUES (21006, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-03-20 22:50:00'); INSERT INTO `sys_job_log` VALUES (21007, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5714毫秒', '0', '', '2022-03-20 22:50:05'); INSERT INTO `sys_job_log` VALUES (21008, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:505毫秒', '0', '', '2022-03-20 23:00:00'); INSERT INTO `sys_job_log` VALUES (21009, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:729毫秒', '0', '', '2022-03-20 23:00:00'); INSERT INTO `sys_job_log` VALUES (21010, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4623毫秒', '0', '', '2022-03-20 23:00:04'); INSERT INTO `sys_job_log` VALUES (21011, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:648毫秒', '0', '', '2022-03-20 23:10:00'); INSERT INTO `sys_job_log` VALUES (21012, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4099毫秒', '0', '', '2022-03-20 23:10:04'); INSERT INTO `sys_job_log` VALUES (21013, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1317毫秒', '0', '', '2022-03-20 23:15:31'); INSERT INTO `sys_job_log` VALUES (21014, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:277毫秒', '0', '', '2022-03-20 23:20:00'); INSERT INTO `sys_job_log` VALUES (21015, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-03-20 23:20:00'); INSERT INTO `sys_job_log` VALUES (21016, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4660毫秒', '0', '', '2022-03-20 23:20:04'); INSERT INTO `sys_job_log` VALUES (21017, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:676毫秒', '0', '', '2022-03-20 23:30:00'); INSERT INTO `sys_job_log` VALUES (21018, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2951毫秒', '0', '', '2022-03-20 23:30:02'); INSERT INTO `sys_job_log` VALUES (21019, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:376毫秒', '0', '', '2022-03-20 23:40:00'); INSERT INTO `sys_job_log` VALUES (21020, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:742毫秒', '0', '', '2022-03-20 23:40:00'); INSERT INTO `sys_job_log` VALUES (21021, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2949毫秒', '0', '', '2022-03-20 23:40:02'); INSERT INTO `sys_job_log` VALUES (21022, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:933毫秒', '0', '', '2022-03-20 23:50:00'); INSERT INTO `sys_job_log` VALUES (21023, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3094毫秒', '0', '', '2022-03-20 23:50:03'); INSERT INTO `sys_job_log` VALUES (21024, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:384毫秒', '0', '', '2022-03-21 00:00:00'); INSERT INTO `sys_job_log` VALUES (21025, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1129毫秒', '0', '', '2022-03-21 00:00:01'); INSERT INTO `sys_job_log` VALUES (21026, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5242毫秒', '0', '', '2022-03-21 00:00:05'); INSERT INTO `sys_job_log` VALUES (21027, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:842毫秒', '0', '', '2022-03-21 00:00:10'); INSERT INTO `sys_job_log` VALUES (21028, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:502853毫秒', '0', '', '2022-03-21 00:08:22'); INSERT INTO `sys_job_log` VALUES (21029, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:742毫秒', '0', '', '2022-03-21 00:10:00'); INSERT INTO `sys_job_log` VALUES (21030, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6656毫秒', '0', '', '2022-03-21 00:10:06'); INSERT INTO `sys_job_log` VALUES (21031, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:765毫秒', '0', '', '2022-03-21 00:15:30'); INSERT INTO `sys_job_log` VALUES (21032, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:592毫秒', '0', '', '2022-03-21 00:20:00'); INSERT INTO `sys_job_log` VALUES (21033, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-03-21 00:20:00'); INSERT INTO `sys_job_log` VALUES (21034, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3711毫秒', '0', '', '2022-03-21 00:20:03'); INSERT INTO `sys_job_log` VALUES (21035, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:667毫秒', '0', '', '2022-03-21 00:30:00'); INSERT INTO `sys_job_log` VALUES (21036, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4793毫秒', '0', '', '2022-03-21 00:30:04'); INSERT INTO `sys_job_log` VALUES (21037, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:262毫秒', '0', '', '2022-03-21 00:40:00'); INSERT INTO `sys_job_log` VALUES (21038, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:727毫秒', '0', '', '2022-03-21 00:40:00'); INSERT INTO `sys_job_log` VALUES (21039, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2962毫秒', '0', '', '2022-03-21 00:40:02'); INSERT INTO `sys_job_log` VALUES (21040, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:706毫秒', '0', '', '2022-03-21 00:50:00'); INSERT INTO `sys_job_log` VALUES (21041, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3312毫秒', '0', '', '2022-03-21 00:50:03'); INSERT INTO `sys_job_log` VALUES (21042, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:604毫秒', '0', '', '2022-03-21 01:00:00'); INSERT INTO `sys_job_log` VALUES (21043, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:754毫秒', '0', '', '2022-03-21 01:00:00'); INSERT INTO `sys_job_log` VALUES (21044, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3387毫秒', '0', '', '2022-03-21 01:00:03'); INSERT INTO `sys_job_log` VALUES (21045, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:895毫秒', '0', '', '2022-03-21 01:10:00'); INSERT INTO `sys_job_log` VALUES (21046, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2634毫秒', '0', '', '2022-03-21 01:10:02'); INSERT INTO `sys_job_log` VALUES (21047, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:732毫秒', '0', '', '2022-03-21 01:15:30'); INSERT INTO `sys_job_log` VALUES (21048, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:253毫秒', '0', '', '2022-03-21 01:20:00'); INSERT INTO `sys_job_log` VALUES (21049, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-03-21 01:20:00'); INSERT INTO `sys_job_log` VALUES (21050, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3019毫秒', '0', '', '2022-03-21 01:20:03'); INSERT INTO `sys_job_log` VALUES (21051, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:642毫秒', '0', '', '2022-03-21 01:30:00'); INSERT INTO `sys_job_log` VALUES (21052, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2691毫秒', '0', '', '2022-03-21 01:30:02'); INSERT INTO `sys_job_log` VALUES (21053, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:414毫秒', '0', '', '2022-03-21 01:40:00'); INSERT INTO `sys_job_log` VALUES (21054, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:763毫秒', '0', '', '2022-03-21 01:40:00'); INSERT INTO `sys_job_log` VALUES (21055, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3264毫秒', '0', '', '2022-03-21 01:40:03'); INSERT INTO `sys_job_log` VALUES (21056, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-03-21 01:50:00'); INSERT INTO `sys_job_log` VALUES (21057, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2965毫秒', '0', '', '2022-03-21 01:50:02'); INSERT INTO `sys_job_log` VALUES (21058, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:385毫秒', '0', '', '2022-03-21 02:00:00'); INSERT INTO `sys_job_log` VALUES (21059, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:557毫秒', '0', '', '2022-03-21 02:00:00'); INSERT INTO `sys_job_log` VALUES (21060, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4217毫秒', '0', '', '2022-03-21 02:00:04'); INSERT INTO `sys_job_log` VALUES (21061, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1161毫秒', '0', '', '2022-03-21 02:10:01'); INSERT INTO `sys_job_log` VALUES (21062, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2502毫秒', '0', '', '2022-03-21 02:10:02'); INSERT INTO `sys_job_log` VALUES (21063, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1180毫秒', '0', '', '2022-03-21 02:15:31'); INSERT INTO `sys_job_log` VALUES (21064, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2842毫秒', '0', '', '2022-03-21 15:10:03'); INSERT INTO `sys_job_log` VALUES (21065, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5991毫秒', '0', '', '2022-03-21 15:10:06'); INSERT INTO `sys_job_log` VALUES (21066, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:67911毫秒', '0', '', '2022-03-21 15:11:07'); INSERT INTO `sys_job_log` VALUES (21067, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2437毫秒', '0', '', '2022-03-21 15:15:32'); INSERT INTO `sys_job_log` VALUES (21068, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:424毫秒', '0', '', '2022-03-21 15:20:00'); INSERT INTO `sys_job_log` VALUES (21069, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:930毫秒', '0', '', '2022-03-21 15:20:00'); INSERT INTO `sys_job_log` VALUES (21070, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7388毫秒', '0', '', '2022-03-21 15:20:07'); INSERT INTO `sys_job_log` VALUES (21071, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:945毫秒', '0', '', '2022-03-21 15:30:00'); INSERT INTO `sys_job_log` VALUES (21072, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4864毫秒', '0', '', '2022-03-21 15:30:04'); INSERT INTO `sys_job_log` VALUES (21073, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:445毫秒', '0', '', '2022-03-21 15:40:00'); INSERT INTO `sys_job_log` VALUES (21074, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:737毫秒', '0', '', '2022-03-21 15:40:00'); INSERT INTO `sys_job_log` VALUES (21075, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4217毫秒', '0', '', '2022-03-21 15:40:04'); INSERT INTO `sys_job_log` VALUES (21076, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:726毫秒', '0', '', '2022-03-21 15:50:00'); INSERT INTO `sys_job_log` VALUES (21077, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2873毫秒', '0', '', '2022-03-21 15:50:02'); INSERT INTO `sys_job_log` VALUES (21078, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:444毫秒', '0', '', '2022-03-21 16:00:00'); INSERT INTO `sys_job_log` VALUES (21079, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:902毫秒', '0', '', '2022-03-21 16:00:00'); INSERT INTO `sys_job_log` VALUES (21080, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3152毫秒', '0', '', '2022-03-21 16:00:03'); INSERT INTO `sys_job_log` VALUES (21081, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:825毫秒', '0', '', '2022-03-21 16:10:00'); INSERT INTO `sys_job_log` VALUES (21082, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3098毫秒', '0', '', '2022-03-21 16:10:03'); INSERT INTO `sys_job_log` VALUES (21083, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2628毫秒', '0', '', '2022-03-21 16:15:32'); INSERT INTO `sys_job_log` VALUES (21084, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:376毫秒', '0', '', '2022-03-21 16:20:00'); INSERT INTO `sys_job_log` VALUES (21085, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:675毫秒', '0', '', '2022-03-21 16:20:00'); INSERT INTO `sys_job_log` VALUES (21086, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5272毫秒', '0', '', '2022-03-21 16:20:05'); INSERT INTO `sys_job_log` VALUES (21087, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:660毫秒', '0', '', '2022-03-21 16:30:00'); INSERT INTO `sys_job_log` VALUES (21088, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3105毫秒', '0', '', '2022-03-21 16:30:03'); INSERT INTO `sys_job_log` VALUES (21089, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:543毫秒', '0', '', '2022-03-21 16:40:00'); INSERT INTO `sys_job_log` VALUES (21090, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:868毫秒', '0', '', '2022-03-21 16:40:00'); INSERT INTO `sys_job_log` VALUES (21091, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3161毫秒', '0', '', '2022-03-21 16:40:03'); INSERT INTO `sys_job_log` VALUES (21092, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:983毫秒', '0', '', '2022-03-21 16:50:01'); INSERT INTO `sys_job_log` VALUES (21093, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3962毫秒', '0', '', '2022-03-21 16:50:03'); INSERT INTO `sys_job_log` VALUES (21094, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:839毫秒', '0', '', '2022-03-21 17:00:00'); INSERT INTO `sys_job_log` VALUES (21095, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:903毫秒', '0', '', '2022-03-21 17:00:00'); INSERT INTO `sys_job_log` VALUES (21096, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3401毫秒', '0', '', '2022-03-21 17:00:03'); INSERT INTO `sys_job_log` VALUES (21097, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:634毫秒', '0', '', '2022-03-21 17:10:00'); INSERT INTO `sys_job_log` VALUES (21098, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5275毫秒', '0', '', '2022-03-21 17:10:05'); INSERT INTO `sys_job_log` VALUES (21099, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:825毫秒', '0', '', '2022-03-21 17:15:30'); INSERT INTO `sys_job_log` VALUES (21100, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:367毫秒', '0', '', '2022-03-21 17:20:00'); INSERT INTO `sys_job_log` VALUES (21101, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:660毫秒', '0', '', '2022-03-21 17:20:00'); INSERT INTO `sys_job_log` VALUES (21102, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3080毫秒', '0', '', '2022-03-21 17:20:03'); INSERT INTO `sys_job_log` VALUES (21103, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:756毫秒', '0', '', '2022-03-21 17:30:00'); INSERT INTO `sys_job_log` VALUES (21104, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3772毫秒', '0', '', '2022-03-21 17:30:03'); INSERT INTO `sys_job_log` VALUES (21105, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1057毫秒', '0', '', '2022-03-21 17:40:01'); INSERT INTO `sys_job_log` VALUES (21106, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1260毫秒', '0', '', '2022-03-21 17:40:01'); INSERT INTO `sys_job_log` VALUES (21107, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3000毫秒', '0', '', '2022-03-21 17:40:03'); INSERT INTO `sys_job_log` VALUES (21108, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:658毫秒', '0', '', '2022-03-21 17:50:00'); INSERT INTO `sys_job_log` VALUES (21109, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5268毫秒', '0', '', '2022-03-21 17:50:05'); INSERT INTO `sys_job_log` VALUES (21110, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:392毫秒', '0', '', '2022-03-21 18:00:00'); INSERT INTO `sys_job_log` VALUES (21111, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:745毫秒', '0', '', '2022-03-21 18:00:00'); INSERT INTO `sys_job_log` VALUES (21112, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3754毫秒', '0', '', '2022-03-21 18:00:03'); INSERT INTO `sys_job_log` VALUES (21113, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:441685毫秒', '0', '', '2022-03-21 18:07:21'); INSERT INTO `sys_job_log` VALUES (21114, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:766毫秒', '0', '', '2022-03-21 18:10:00'); INSERT INTO `sys_job_log` VALUES (21115, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2883毫秒', '0', '', '2022-03-21 18:10:02'); INSERT INTO `sys_job_log` VALUES (21116, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1120毫秒', '0', '', '2022-03-21 18:15:31'); INSERT INTO `sys_job_log` VALUES (21117, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:683毫秒', '0', '', '2022-03-21 18:20:00'); INSERT INTO `sys_job_log` VALUES (21118, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:873毫秒', '0', '', '2022-03-21 18:20:00'); INSERT INTO `sys_job_log` VALUES (21119, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3169毫秒', '0', '', '2022-03-21 18:20:03'); INSERT INTO `sys_job_log` VALUES (21120, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-03-21 18:57:30'); INSERT INTO `sys_job_log` VALUES (21121, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:864毫秒', '0', '', '2022-03-21 18:57:30'); INSERT INTO `sys_job_log` VALUES (21122, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-03-21 18:57:30'); INSERT INTO `sys_job_log` VALUES (21123, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-03-21 18:57:31'); INSERT INTO `sys_job_log` VALUES (21124, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3488毫秒', '0', '', '2022-03-21 18:57:33'); INSERT INTO `sys_job_log` VALUES (21125, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3077毫秒', '0', '', '2022-03-21 18:57:36'); INSERT INTO `sys_job_log` VALUES (21126, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3742毫秒', '0', '', '2022-03-21 18:57:39'); INSERT INTO `sys_job_log` VALUES (21127, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:371毫秒', '0', '', '2022-03-21 19:00:00'); INSERT INTO `sys_job_log` VALUES (21128, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:734毫秒', '0', '', '2022-03-21 19:00:00'); INSERT INTO `sys_job_log` VALUES (21129, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3053毫秒', '0', '', '2022-03-21 19:00:03'); INSERT INTO `sys_job_log` VALUES (21130, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:830毫秒', '0', '', '2022-03-21 19:10:00'); INSERT INTO `sys_job_log` VALUES (21131, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2874毫秒', '0', '', '2022-03-21 19:10:02'); INSERT INTO `sys_job_log` VALUES (21132, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1141毫秒', '0', '', '2022-03-21 19:15:31'); INSERT INTO `sys_job_log` VALUES (21133, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:455毫秒', '0', '', '2022-03-21 19:20:00'); INSERT INTO `sys_job_log` VALUES (21134, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:762毫秒', '0', '', '2022-03-21 19:20:00'); INSERT INTO `sys_job_log` VALUES (21135, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3057毫秒', '0', '', '2022-03-21 19:20:03'); INSERT INTO `sys_job_log` VALUES (21136, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-03-21 19:30:00'); INSERT INTO `sys_job_log` VALUES (21137, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3091毫秒', '0', '', '2022-03-21 19:30:03'); INSERT INTO `sys_job_log` VALUES (21138, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:686毫秒', '0', '', '2022-03-21 19:40:00'); INSERT INTO `sys_job_log` VALUES (21139, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:684毫秒', '0', '', '2022-03-21 19:40:00'); INSERT INTO `sys_job_log` VALUES (21140, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3266毫秒', '0', '', '2022-03-21 19:40:03'); INSERT INTO `sys_job_log` VALUES (21141, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:791毫秒', '0', '', '2022-03-21 19:50:00'); INSERT INTO `sys_job_log` VALUES (21142, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3822毫秒', '0', '', '2022-03-21 19:50:03'); INSERT INTO `sys_job_log` VALUES (21143, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:340毫秒', '0', '', '2022-03-21 20:00:00'); INSERT INTO `sys_job_log` VALUES (21144, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-03-21 20:00:00'); INSERT INTO `sys_job_log` VALUES (21145, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3524毫秒', '0', '', '2022-03-21 20:00:03'); INSERT INTO `sys_job_log` VALUES (21146, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:807毫秒', '0', '', '2022-03-21 20:10:00'); INSERT INTO `sys_job_log` VALUES (21147, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4305毫秒', '0', '', '2022-03-21 20:10:04'); INSERT INTO `sys_job_log` VALUES (21148, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:803毫秒', '0', '', '2022-03-21 20:15:30'); INSERT INTO `sys_job_log` VALUES (21149, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:963毫秒', '0', '', '2022-03-21 20:20:00'); INSERT INTO `sys_job_log` VALUES (21150, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1041毫秒', '0', '', '2022-03-21 20:20:01'); INSERT INTO `sys_job_log` VALUES (21151, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4220毫秒', '0', '', '2022-03-21 20:20:04'); INSERT INTO `sys_job_log` VALUES (21152, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:233735毫秒', '0', '', '2022-03-21 20:23:53'); INSERT INTO `sys_job_log` VALUES (21153, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:693毫秒', '0', '', '2022-03-21 20:30:00'); INSERT INTO `sys_job_log` VALUES (21154, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5044毫秒', '0', '', '2022-03-21 20:30:05'); INSERT INTO `sys_job_log` VALUES (21155, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:539毫秒', '0', '', '2022-03-21 20:40:00'); INSERT INTO `sys_job_log` VALUES (21156, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:928毫秒', '0', '', '2022-03-21 20:40:00'); INSERT INTO `sys_job_log` VALUES (21157, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9210毫秒', '0', '', '2022-03-21 20:40:09'); INSERT INTO `sys_job_log` VALUES (21158, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:875毫秒', '0', '', '2022-03-21 20:50:00'); INSERT INTO `sys_job_log` VALUES (21159, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4443毫秒', '0', '', '2022-03-21 20:50:04'); INSERT INTO `sys_job_log` VALUES (21160, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:93毫秒', '0', '', '2022-03-21 21:00:00'); INSERT INTO `sys_job_log` VALUES (21161, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:729毫秒', '0', '', '2022-03-21 21:00:00'); INSERT INTO `sys_job_log` VALUES (21162, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:861毫秒', '0', '', '2022-03-21 21:00:00'); INSERT INTO `sys_job_log` VALUES (21163, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2743毫秒', '0', '', '2022-03-21 21:00:02'); INSERT INTO `sys_job_log` VALUES (21164, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:34毫秒', '0', '', '2022-03-21 21:10:00'); INSERT INTO `sys_job_log` VALUES (21165, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-03-21 21:10:00'); INSERT INTO `sys_job_log` VALUES (21166, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3512毫秒', '0', '', '2022-03-21 21:10:03'); INSERT INTO `sys_job_log` VALUES (21167, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:34毫秒', '0', '', '2022-03-21 21:15:30'); INSERT INTO `sys_job_log` VALUES (21168, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:443毫秒', '0', '', '2022-03-21 21:20:00'); INSERT INTO `sys_job_log` VALUES (21169, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:789毫秒', '0', '', '2022-03-21 21:20:00'); INSERT INTO `sys_job_log` VALUES (21170, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4791毫秒', '0', '', '2022-03-21 21:20:04'); INSERT INTO `sys_job_log` VALUES (21171, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:764毫秒', '0', '', '2022-03-21 21:30:00'); INSERT INTO `sys_job_log` VALUES (21172, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2827毫秒', '0', '', '2022-03-21 21:30:02'); INSERT INTO `sys_job_log` VALUES (21173, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:861毫秒', '0', '', '2022-03-21 21:40:00'); INSERT INTO `sys_job_log` VALUES (21174, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:873毫秒', '0', '', '2022-03-21 21:40:00'); INSERT INTO `sys_job_log` VALUES (21175, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2862毫秒', '0', '', '2022-03-21 21:40:02'); INSERT INTO `sys_job_log` VALUES (21176, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-03-21 21:50:00'); INSERT INTO `sys_job_log` VALUES (21177, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3409毫秒', '0', '', '2022-03-21 21:50:03'); INSERT INTO `sys_job_log` VALUES (21178, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:379毫秒', '0', '', '2022-03-21 22:00:00'); INSERT INTO `sys_job_log` VALUES (21179, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1391毫秒', '0', '', '2022-03-21 22:00:01'); INSERT INTO `sys_job_log` VALUES (21180, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:1644毫秒', '0', '', '2022-03-21 22:00:01'); INSERT INTO `sys_job_log` VALUES (21181, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3912毫秒', '0', '', '2022-03-21 22:00:03'); INSERT INTO `sys_job_log` VALUES (21182, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:964毫秒', '0', '', '2022-03-21 22:10:00'); INSERT INTO `sys_job_log` VALUES (21183, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2939毫秒', '0', '', '2022-03-21 22:10:02'); INSERT INTO `sys_job_log` VALUES (21184, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:26毫秒', '0', '', '2022-03-21 22:15:30'); INSERT INTO `sys_job_log` VALUES (21185, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:803毫秒', '0', '', '2022-03-21 22:20:00'); INSERT INTO `sys_job_log` VALUES (21186, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:852毫秒', '0', '', '2022-03-21 22:20:00'); INSERT INTO `sys_job_log` VALUES (21187, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2750毫秒', '0', '', '2022-03-21 22:20:02'); INSERT INTO `sys_job_log` VALUES (21188, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:858毫秒', '0', '', '2022-03-21 22:30:00'); INSERT INTO `sys_job_log` VALUES (21189, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4942毫秒', '0', '', '2022-03-21 22:30:04'); INSERT INTO `sys_job_log` VALUES (21190, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:358毫秒', '0', '', '2022-03-21 22:40:00'); INSERT INTO `sys_job_log` VALUES (21191, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-03-21 22:40:00'); INSERT INTO `sys_job_log` VALUES (21192, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3483毫秒', '0', '', '2022-03-21 22:40:03'); INSERT INTO `sys_job_log` VALUES (21193, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:918毫秒', '0', '', '2022-03-21 22:50:00'); INSERT INTO `sys_job_log` VALUES (21194, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4006毫秒', '0', '', '2022-03-21 22:50:04'); INSERT INTO `sys_job_log` VALUES (21195, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:674毫秒', '0', '', '2022-03-21 23:00:00'); INSERT INTO `sys_job_log` VALUES (21196, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1823毫秒', '0', '', '2022-03-21 23:00:01'); INSERT INTO `sys_job_log` VALUES (21197, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2742毫秒', '0', '', '2022-03-21 23:00:02'); INSERT INTO `sys_job_log` VALUES (21198, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:759毫秒', '0', '', '2022-03-21 23:10:00'); INSERT INTO `sys_job_log` VALUES (21199, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2974毫秒', '0', '', '2022-03-21 23:10:02'); INSERT INTO `sys_job_log` VALUES (21200, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:28毫秒', '0', '', '2022-03-21 23:15:30'); INSERT INTO `sys_job_log` VALUES (21201, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:354毫秒', '0', '', '2022-03-21 23:20:00'); INSERT INTO `sys_job_log` VALUES (21202, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:772毫秒', '0', '', '2022-03-21 23:20:00'); INSERT INTO `sys_job_log` VALUES (21203, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2967毫秒', '0', '', '2022-03-21 23:20:02'); INSERT INTO `sys_job_log` VALUES (21204, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:866毫秒', '0', '', '2022-03-21 23:30:00'); INSERT INTO `sys_job_log` VALUES (21205, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5294毫秒', '0', '', '2022-03-21 23:30:05'); INSERT INTO `sys_job_log` VALUES (21206, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:891毫秒', '0', '', '2022-03-21 23:40:00'); INSERT INTO `sys_job_log` VALUES (21207, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1053毫秒', '0', '', '2022-03-21 23:40:01'); INSERT INTO `sys_job_log` VALUES (21208, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5256毫秒', '0', '', '2022-03-21 23:40:05'); INSERT INTO `sys_job_log` VALUES (21209, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1931毫秒', '0', '', '2022-03-21 23:50:01'); INSERT INTO `sys_job_log` VALUES (21210, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5414毫秒', '0', '', '2022-03-21 23:50:05'); INSERT INTO `sys_job_log` VALUES (21211, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:36毫秒', '0', '', '2022-03-22 00:00:00'); INSERT INTO `sys_job_log` VALUES (21212, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:375毫秒', '0', '', '2022-03-22 00:00:00'); INSERT INTO `sys_job_log` VALUES (21213, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-03-22 00:00:00'); INSERT INTO `sys_job_log` VALUES (21214, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3258毫秒', '0', '', '2022-03-22 00:00:03'); INSERT INTO `sys_job_log` VALUES (21215, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:672毫秒', '0', '', '2022-03-22 00:00:10'); INSERT INTO `sys_job_log` VALUES (21216, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:699毫秒', '0', '', '2022-03-22 00:10:00'); INSERT INTO `sys_job_log` VALUES (21217, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5244毫秒', '0', '', '2022-03-22 00:10:05'); INSERT INTO `sys_job_log` VALUES (21218, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:34毫秒', '0', '', '2022-03-22 00:15:30'); INSERT INTO `sys_job_log` VALUES (21219, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:924毫秒', '0', '', '2022-03-22 00:20:00'); INSERT INTO `sys_job_log` VALUES (21220, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1274毫秒', '0', '', '2022-03-22 00:20:01'); INSERT INTO `sys_job_log` VALUES (21221, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3393毫秒', '0', '', '2022-03-22 00:20:03'); INSERT INTO `sys_job_log` VALUES (21222, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:665毫秒', '0', '', '2022-03-22 00:30:00'); INSERT INTO `sys_job_log` VALUES (21223, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4038毫秒', '0', '', '2022-03-22 00:30:04'); INSERT INTO `sys_job_log` VALUES (21224, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:344毫秒', '0', '', '2022-03-22 00:40:00'); INSERT INTO `sys_job_log` VALUES (21225, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:648毫秒', '0', '', '2022-03-22 00:40:00'); INSERT INTO `sys_job_log` VALUES (21226, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3042毫秒', '0', '', '2022-03-22 00:40:03'); INSERT INTO `sys_job_log` VALUES (21227, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:770毫秒', '0', '', '2022-03-22 00:50:00'); INSERT INTO `sys_job_log` VALUES (21228, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3997毫秒', '0', '', '2022-03-22 00:50:04'); INSERT INTO `sys_job_log` VALUES (21229, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:815毫秒', '0', '', '2022-03-22 01:00:00'); INSERT INTO `sys_job_log` VALUES (21230, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:935毫秒', '0', '', '2022-03-22 01:00:00'); INSERT INTO `sys_job_log` VALUES (21231, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3389毫秒', '0', '', '2022-03-22 01:00:03'); INSERT INTO `sys_job_log` VALUES (21232, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1308毫秒', '0', '', '2022-03-22 01:10:01'); INSERT INTO `sys_job_log` VALUES (21233, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3854毫秒', '0', '', '2022-03-22 01:10:03'); INSERT INTO `sys_job_log` VALUES (21234, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:26毫秒', '0', '', '2022-03-22 01:15:30'); INSERT INTO `sys_job_log` VALUES (21235, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:393毫秒', '0', '', '2022-03-22 01:20:00'); INSERT INTO `sys_job_log` VALUES (21236, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:701毫秒', '0', '', '2022-03-22 01:20:00'); INSERT INTO `sys_job_log` VALUES (21237, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2727毫秒', '0', '', '2022-03-22 01:20:02'); INSERT INTO `sys_job_log` VALUES (21238, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:770毫秒', '0', '', '2022-03-22 01:30:00'); INSERT INTO `sys_job_log` VALUES (21239, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3374毫秒', '0', '', '2022-03-22 01:30:03'); INSERT INTO `sys_job_log` VALUES (21240, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:679毫秒', '0', '', '2022-03-22 01:40:00'); INSERT INTO `sys_job_log` VALUES (21241, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:876毫秒', '0', '', '2022-03-22 01:40:00'); INSERT INTO `sys_job_log` VALUES (21242, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3000毫秒', '0', '', '2022-03-22 01:40:03'); INSERT INTO `sys_job_log` VALUES (21243, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:659毫秒', '0', '', '2022-03-22 01:50:00'); INSERT INTO `sys_job_log` VALUES (21244, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3450毫秒', '0', '', '2022-03-22 01:50:03'); INSERT INTO `sys_job_log` VALUES (21245, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:440毫秒', '0', '', '2022-03-22 02:00:00'); INSERT INTO `sys_job_log` VALUES (21246, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1048毫秒', '0', '', '2022-03-22 02:00:01'); INSERT INTO `sys_job_log` VALUES (21247, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2951毫秒', '0', '', '2022-03-22 02:00:02'); INSERT INTO `sys_job_log` VALUES (21248, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:827毫秒', '0', '', '2022-03-22 02:10:00'); INSERT INTO `sys_job_log` VALUES (21249, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2955毫秒', '0', '', '2022-03-22 02:10:02'); INSERT INTO `sys_job_log` VALUES (21250, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:28毫秒', '0', '', '2022-03-22 02:15:30'); INSERT INTO `sys_job_log` VALUES (21251, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:683毫秒', '0', '', '2022-03-22 02:20:00'); INSERT INTO `sys_job_log` VALUES (21252, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:837毫秒', '0', '', '2022-03-22 02:20:00'); INSERT INTO `sys_job_log` VALUES (21253, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2683毫秒', '0', '', '2022-03-22 02:20:02'); INSERT INTO `sys_job_log` VALUES (21254, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1580毫秒', '0', '', '2022-03-22 02:30:01'); INSERT INTO `sys_job_log` VALUES (21255, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3968毫秒', '0', '', '2022-03-22 02:30:03'); INSERT INTO `sys_job_log` VALUES (21256, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:326毫秒', '0', '', '2022-03-22 02:40:00'); INSERT INTO `sys_job_log` VALUES (21257, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:709毫秒', '0', '', '2022-03-22 02:40:00'); INSERT INTO `sys_job_log` VALUES (21258, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3669毫秒', '0', '', '2022-03-22 02:40:03'); INSERT INTO `sys_job_log` VALUES (21259, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:689毫秒', '0', '', '2022-03-22 02:50:00'); INSERT INTO `sys_job_log` VALUES (21260, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3142毫秒', '0', '', '2022-03-22 02:50:03'); INSERT INTO `sys_job_log` VALUES (21261, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:38毫秒', '0', '', '2022-03-22 03:00:00'); INSERT INTO `sys_job_log` VALUES (21262, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:638毫秒', '0', '', '2022-03-22 03:00:00'); INSERT INTO `sys_job_log` VALUES (21263, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:766毫秒', '0', '', '2022-03-22 03:00:00'); INSERT INTO `sys_job_log` VALUES (21264, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3289毫秒', '0', '', '2022-03-22 03:00:03'); INSERT INTO `sys_job_log` VALUES (21265, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2615毫秒', '0', '', '2022-03-22 12:50:02'); INSERT INTO `sys_job_log` VALUES (21266, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5854毫秒', '0', '', '2022-03-22 12:50:05'); INSERT INTO `sys_job_log` VALUES (21267, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:469毫秒', '0', '', '2022-03-22 13:00:00'); INSERT INTO `sys_job_log` VALUES (21268, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:784毫秒', '0', '', '2022-03-22 13:00:00'); INSERT INTO `sys_job_log` VALUES (21269, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4645毫秒', '0', '', '2022-03-22 13:00:04'); INSERT INTO `sys_job_log` VALUES (21270, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:802毫秒', '0', '', '2022-03-22 13:10:00'); INSERT INTO `sys_job_log` VALUES (21271, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3888毫秒', '0', '', '2022-03-22 13:10:03'); INSERT INTO `sys_job_log` VALUES (21272, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3202毫秒', '0', '', '2022-03-22 13:15:33'); INSERT INTO `sys_job_log` VALUES (21273, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:851毫秒', '0', '', '2022-03-22 13:20:00'); INSERT INTO `sys_job_log` VALUES (21274, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1029毫秒', '0', '', '2022-03-22 13:20:01'); INSERT INTO `sys_job_log` VALUES (21275, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4289毫秒', '0', '', '2022-03-22 13:20:04'); INSERT INTO `sys_job_log` VALUES (21276, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:839毫秒', '0', '', '2022-03-22 13:30:00'); INSERT INTO `sys_job_log` VALUES (21277, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3292毫秒', '0', '', '2022-03-22 13:30:03'); INSERT INTO `sys_job_log` VALUES (21278, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:509毫秒', '0', '', '2022-03-22 13:40:00'); INSERT INTO `sys_job_log` VALUES (21279, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:840毫秒', '0', '', '2022-03-22 13:40:00'); INSERT INTO `sys_job_log` VALUES (21280, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3187毫秒', '0', '', '2022-03-22 13:40:03'); INSERT INTO `sys_job_log` VALUES (21281, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:878毫秒', '0', '', '2022-03-22 13:50:00'); INSERT INTO `sys_job_log` VALUES (21282, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2649毫秒', '0', '', '2022-03-22 13:50:02'); INSERT INTO `sys_job_log` VALUES (21283, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:714毫秒', '0', '', '2022-03-22 14:00:00'); INSERT INTO `sys_job_log` VALUES (21284, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:810毫秒', '0', '', '2022-03-22 14:00:00'); INSERT INTO `sys_job_log` VALUES (21285, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5427毫秒', '0', '', '2022-03-22 14:00:05'); INSERT INTO `sys_job_log` VALUES (21286, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:675毫秒', '0', '', '2022-03-22 14:10:00'); INSERT INTO `sys_job_log` VALUES (21287, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2511毫秒', '0', '', '2022-03-22 14:10:02'); INSERT INTO `sys_job_log` VALUES (21288, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1211毫秒', '0', '', '2022-03-22 14:15:31'); INSERT INTO `sys_job_log` VALUES (21289, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:370毫秒', '0', '', '2022-03-22 14:20:00'); INSERT INTO `sys_job_log` VALUES (21290, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1030毫秒', '0', '', '2022-03-22 14:20:01'); INSERT INTO `sys_job_log` VALUES (21291, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3617毫秒', '0', '', '2022-03-22 14:20:03'); INSERT INTO `sys_job_log` VALUES (21292, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:804毫秒', '0', '', '2022-03-22 14:30:00'); INSERT INTO `sys_job_log` VALUES (21293, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3213毫秒', '0', '', '2022-03-22 14:30:03'); INSERT INTO `sys_job_log` VALUES (21294, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:816毫秒', '0', '', '2022-03-22 14:40:00'); INSERT INTO `sys_job_log` VALUES (21295, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:901毫秒', '0', '', '2022-03-22 14:40:00'); INSERT INTO `sys_job_log` VALUES (21296, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2973毫秒', '0', '', '2022-03-22 14:40:02'); INSERT INTO `sys_job_log` VALUES (21297, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:851毫秒', '0', '', '2022-03-22 14:50:00'); INSERT INTO `sys_job_log` VALUES (21298, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2210毫秒', '0', '', '2022-03-22 14:50:02'); INSERT INTO `sys_job_log` VALUES (21299, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:368毫秒', '0', '', '2022-03-22 15:00:00'); INSERT INTO `sys_job_log` VALUES (21300, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:994毫秒', '0', '', '2022-03-22 15:00:01'); INSERT INTO `sys_job_log` VALUES (21301, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3272毫秒', '0', '', '2022-03-22 15:00:03'); INSERT INTO `sys_job_log` VALUES (21302, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:490149毫秒', '0', '', '2022-03-22 15:08:10'); INSERT INTO `sys_job_log` VALUES (21303, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:782毫秒', '0', '', '2022-03-22 15:10:00'); INSERT INTO `sys_job_log` VALUES (21304, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2533毫秒', '0', '', '2022-03-22 15:10:02'); INSERT INTO `sys_job_log` VALUES (21305, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:65169毫秒', '0', '', '2022-03-22 15:11:05'); INSERT INTO `sys_job_log` VALUES (21306, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:833毫秒', '0', '', '2022-03-22 15:15:30'); INSERT INTO `sys_job_log` VALUES (21307, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:963毫秒', '0', '', '2022-03-22 15:20:00'); INSERT INTO `sys_job_log` VALUES (21308, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1096毫秒', '0', '', '2022-03-22 15:20:01'); INSERT INTO `sys_job_log` VALUES (21309, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3341毫秒', '0', '', '2022-03-22 15:20:03'); INSERT INTO `sys_job_log` VALUES (21310, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:657毫秒', '0', '', '2022-03-22 15:30:00'); INSERT INTO `sys_job_log` VALUES (21311, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2565毫秒', '0', '', '2022-03-22 15:30:02'); INSERT INTO `sys_job_log` VALUES (21312, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:983毫秒', '0', '', '2022-03-22 15:50:22'); INSERT INTO `sys_job_log` VALUES (21313, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:995毫秒', '0', '', '2022-03-22 15:50:22'); INSERT INTO `sys_job_log` VALUES (21314, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-03-22 15:50:22'); INSERT INTO `sys_job_log` VALUES (21315, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3364毫秒', '0', '', '2022-03-22 15:50:24'); INSERT INTO `sys_job_log` VALUES (21316, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2134毫秒', '0', '', '2022-03-22 15:50:26'); INSERT INTO `sys_job_log` VALUES (21317, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:413毫秒', '0', '', '2022-03-22 16:00:00'); INSERT INTO `sys_job_log` VALUES (21318, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:698毫秒', '0', '', '2022-03-22 16:00:00'); INSERT INTO `sys_job_log` VALUES (21319, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3538毫秒', '0', '', '2022-03-22 16:00:03'); INSERT INTO `sys_job_log` VALUES (21320, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:700毫秒', '0', '', '2022-03-22 16:10:00'); INSERT INTO `sys_job_log` VALUES (21321, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4163毫秒', '0', '', '2022-03-22 16:10:04'); INSERT INTO `sys_job_log` VALUES (21322, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1016毫秒', '0', '', '2022-03-22 16:15:31'); INSERT INTO `sys_job_log` VALUES (21323, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:424毫秒', '0', '', '2022-03-22 16:20:00'); INSERT INTO `sys_job_log` VALUES (21324, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:725毫秒', '0', '', '2022-03-22 16:20:00'); INSERT INTO `sys_job_log` VALUES (21325, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2538毫秒', '0', '', '2022-03-22 16:20:02'); INSERT INTO `sys_job_log` VALUES (21326, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:919毫秒', '0', '', '2022-03-22 16:30:00'); INSERT INTO `sys_job_log` VALUES (21327, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4221毫秒', '0', '', '2022-03-22 16:30:04'); INSERT INTO `sys_job_log` VALUES (21328, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:345毫秒', '0', '', '2022-03-22 16:40:00'); INSERT INTO `sys_job_log` VALUES (21329, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:910毫秒', '0', '', '2022-03-22 16:40:00'); INSERT INTO `sys_job_log` VALUES (21330, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3695毫秒', '0', '', '2022-03-22 16:40:03'); INSERT INTO `sys_job_log` VALUES (21331, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-03-22 16:50:00'); INSERT INTO `sys_job_log` VALUES (21332, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4219毫秒', '0', '', '2022-03-22 16:50:04'); INSERT INTO `sys_job_log` VALUES (21333, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:773毫秒', '0', '', '2022-03-22 17:00:00'); INSERT INTO `sys_job_log` VALUES (21334, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:945毫秒', '0', '', '2022-03-22 17:00:00'); INSERT INTO `sys_job_log` VALUES (21335, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7159毫秒', '0', '', '2022-03-22 17:00:07'); INSERT INTO `sys_job_log` VALUES (21336, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:661毫秒', '0', '', '2022-03-22 17:10:00'); INSERT INTO `sys_job_log` VALUES (21337, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3514毫秒', '0', '', '2022-03-22 17:10:03'); INSERT INTO `sys_job_log` VALUES (21338, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:983毫秒', '0', '', '2022-03-22 17:15:30'); INSERT INTO `sys_job_log` VALUES (21339, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:490毫秒', '0', '', '2022-03-22 17:20:00'); INSERT INTO `sys_job_log` VALUES (21340, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:826毫秒', '0', '', '2022-03-22 17:20:00'); INSERT INTO `sys_job_log` VALUES (21341, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4297毫秒', '0', '', '2022-03-22 17:20:04'); INSERT INTO `sys_job_log` VALUES (21342, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:732毫秒', '0', '', '2022-03-22 17:30:00'); INSERT INTO `sys_job_log` VALUES (21343, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8262毫秒', '0', '', '2022-03-22 17:30:08'); INSERT INTO `sys_job_log` VALUES (21344, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:740毫秒', '0', '', '2022-03-22 17:40:00'); INSERT INTO `sys_job_log` VALUES (21345, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:743毫秒', '0', '', '2022-03-22 17:40:00'); INSERT INTO `sys_job_log` VALUES (21346, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3562毫秒', '0', '', '2022-03-22 17:40:03'); INSERT INTO `sys_job_log` VALUES (21347, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:826毫秒', '0', '', '2022-03-22 17:50:00'); INSERT INTO `sys_job_log` VALUES (21348, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3989毫秒', '0', '', '2022-03-22 17:50:04'); INSERT INTO `sys_job_log` VALUES (21349, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:424毫秒', '0', '', '2022-03-22 18:00:00'); INSERT INTO `sys_job_log` VALUES (21350, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:694毫秒', '0', '', '2022-03-22 18:00:00'); INSERT INTO `sys_job_log` VALUES (21351, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3887毫秒', '0', '', '2022-03-22 18:00:03'); INSERT INTO `sys_job_log` VALUES (21352, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:487746毫秒', '0', '', '2022-03-22 18:08:07'); INSERT INTO `sys_job_log` VALUES (21353, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:668毫秒', '0', '', '2022-03-22 18:10:00'); INSERT INTO `sys_job_log` VALUES (21354, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3453毫秒', '0', '', '2022-03-22 18:10:03'); INSERT INTO `sys_job_log` VALUES (21355, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2758毫秒', '0', '', '2022-03-22 18:15:32'); INSERT INTO `sys_job_log` VALUES (21356, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2512毫秒', '0', '', '2022-03-22 18:20:02'); INSERT INTO `sys_job_log` VALUES (21357, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2523毫秒', '0', '', '2022-03-22 18:20:02'); INSERT INTO `sys_job_log` VALUES (21358, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5983毫秒', '0', '', '2022-03-22 18:20:05'); INSERT INTO `sys_job_log` VALUES (21359, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2028毫秒', '0', '', '2022-03-22 18:30:02'); INSERT INTO `sys_job_log` VALUES (21360, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5977毫秒', '0', '', '2022-03-22 18:30:05'); INSERT INTO `sys_job_log` VALUES (21361, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2030毫秒', '0', '', '2022-03-22 18:40:02'); INSERT INTO `sys_job_log` VALUES (21362, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2023毫秒', '0', '', '2022-03-22 18:40:02'); INSERT INTO `sys_job_log` VALUES (21363, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4701毫秒', '0', '', '2022-03-22 18:40:04'); INSERT INTO `sys_job_log` VALUES (21364, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1464毫秒', '0', '', '2022-03-22 18:50:01'); INSERT INTO `sys_job_log` VALUES (21365, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4174毫秒', '0', '', '2022-03-22 18:50:04'); INSERT INTO `sys_job_log` VALUES (21366, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2030毫秒', '0', '', '2022-03-22 19:00:02'); INSERT INTO `sys_job_log` VALUES (21367, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2022毫秒', '0', '', '2022-03-22 19:00:02'); INSERT INTO `sys_job_log` VALUES (21368, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4760毫秒', '0', '', '2022-03-22 19:00:04'); INSERT INTO `sys_job_log` VALUES (21369, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2011毫秒', '0', '', '2022-03-22 19:10:02'); INSERT INTO `sys_job_log` VALUES (21370, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10557毫秒', '0', '', '2022-03-22 19:10:10'); INSERT INTO `sys_job_log` VALUES (21371, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1840毫秒', '0', '', '2022-03-22 19:15:31'); INSERT INTO `sys_job_log` VALUES (21372, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2062毫秒', '0', '', '2022-03-22 19:20:02'); INSERT INTO `sys_job_log` VALUES (21373, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2049毫秒', '0', '', '2022-03-22 19:20:02'); INSERT INTO `sys_job_log` VALUES (21374, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6238毫秒', '0', '', '2022-03-22 19:20:06'); INSERT INTO `sys_job_log` VALUES (21375, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2010毫秒', '0', '', '2022-03-22 19:30:02'); INSERT INTO `sys_job_log` VALUES (21376, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7105毫秒', '0', '', '2022-03-22 19:30:07'); INSERT INTO `sys_job_log` VALUES (21377, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:787毫秒', '0', '', '2022-03-22 19:40:00'); INSERT INTO `sys_job_log` VALUES (21378, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:913毫秒', '0', '', '2022-03-22 19:40:00'); INSERT INTO `sys_job_log` VALUES (21379, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3348毫秒', '0', '', '2022-03-22 19:40:03'); INSERT INTO `sys_job_log` VALUES (21380, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1013毫秒', '0', '', '2022-03-22 19:50:01'); INSERT INTO `sys_job_log` VALUES (21381, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5150毫秒', '0', '', '2022-03-22 19:50:05'); INSERT INTO `sys_job_log` VALUES (21382, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:361毫秒', '0', '', '2022-03-22 20:00:00'); INSERT INTO `sys_job_log` VALUES (21383, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:790毫秒', '0', '', '2022-03-22 20:00:00'); INSERT INTO `sys_job_log` VALUES (21384, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3311毫秒', '0', '', '2022-03-22 20:00:03'); INSERT INTO `sys_job_log` VALUES (21385, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:773毫秒', '0', '', '2022-03-22 20:10:00'); INSERT INTO `sys_job_log` VALUES (21386, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2555毫秒', '0', '', '2022-03-22 20:10:02'); INSERT INTO `sys_job_log` VALUES (21387, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1385毫秒', '0', '', '2022-03-22 20:15:31'); INSERT INTO `sys_job_log` VALUES (21388, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-22 20:20:02'); INSERT INTO `sys_job_log` VALUES (21389, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2016毫秒', '0', '', '2022-03-22 20:20:02'); INSERT INTO `sys_job_log` VALUES (21390, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5029毫秒', '0', '', '2022-03-22 20:20:05'); INSERT INTO `sys_job_log` VALUES (21391, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:58357毫秒', '0', '', '2022-03-22 20:20:58'); INSERT INTO `sys_job_log` VALUES (21392, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2063毫秒', '0', '', '2022-03-22 20:30:02'); INSERT INTO `sys_job_log` VALUES (21393, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6308毫秒', '0', '', '2022-03-22 20:30:06'); INSERT INTO `sys_job_log` VALUES (21394, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:845毫秒', '0', '', '2022-03-22 20:40:00'); INSERT INTO `sys_job_log` VALUES (21395, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1220毫秒', '0', '', '2022-03-22 20:40:01'); INSERT INTO `sys_job_log` VALUES (21396, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4446毫秒', '0', '', '2022-03-22 20:40:04'); INSERT INTO `sys_job_log` VALUES (21397, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2084毫秒', '0', '', '2022-03-22 20:50:02'); INSERT INTO `sys_job_log` VALUES (21398, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9363毫秒', '0', '', '2022-03-22 20:50:09'); INSERT INTO `sys_job_log` VALUES (21399, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2027毫秒', '0', '', '2022-03-22 21:00:02'); INSERT INTO `sys_job_log` VALUES (21400, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2020毫秒', '0', '', '2022-03-22 21:00:02'); INSERT INTO `sys_job_log` VALUES (21401, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4710毫秒', '0', '', '2022-03-22 21:00:04'); INSERT INTO `sys_job_log` VALUES (21402, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:404794毫秒', '0', '', '2022-03-22 21:06:44'); INSERT INTO `sys_job_log` VALUES (21403, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:854毫秒', '0', '', '2022-03-22 21:10:00'); INSERT INTO `sys_job_log` VALUES (21404, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2016毫秒', '0', '', '2022-03-22 21:10:02'); INSERT INTO `sys_job_log` VALUES (21405, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4767毫秒', '0', '', '2022-03-22 21:10:04'); INSERT INTO `sys_job_log` VALUES (21406, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1746毫秒', '0', '', '2022-03-22 21:15:31'); INSERT INTO `sys_job_log` VALUES (21407, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2033毫秒', '0', '', '2022-03-22 21:20:02'); INSERT INTO `sys_job_log` VALUES (21408, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2025毫秒', '0', '', '2022-03-22 21:20:02'); INSERT INTO `sys_job_log` VALUES (21409, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10820毫秒', '0', '', '2022-03-22 21:20:10'); INSERT INTO `sys_job_log` VALUES (21410, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2012毫秒', '0', '', '2022-03-22 21:30:02'); INSERT INTO `sys_job_log` VALUES (21411, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5024毫秒', '0', '', '2022-03-22 21:30:05'); INSERT INTO `sys_job_log` VALUES (21412, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2043毫秒', '0', '', '2022-03-22 21:40:02'); INSERT INTO `sys_job_log` VALUES (21413, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2032毫秒', '0', '', '2022-03-22 21:40:02'); INSERT INTO `sys_job_log` VALUES (21414, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5236毫秒', '0', '', '2022-03-22 21:40:05'); INSERT INTO `sys_job_log` VALUES (21415, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2027毫秒', '0', '', '2022-03-22 21:50:02'); INSERT INTO `sys_job_log` VALUES (21416, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5205毫秒', '0', '', '2022-03-22 21:50:05'); INSERT INTO `sys_job_log` VALUES (21417, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:146毫秒', '0', '', '2022-03-22 22:00:00'); INSERT INTO `sys_job_log` VALUES (21418, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:673毫秒', '0', '', '2022-03-22 22:00:00'); INSERT INTO `sys_job_log` VALUES (21419, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1493毫秒', '0', '', '2022-03-22 22:00:01'); INSERT INTO `sys_job_log` VALUES (21420, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6018毫秒', '0', '', '2022-03-22 22:00:06'); INSERT INTO `sys_job_log` VALUES (21421, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:809毫秒', '0', '', '2022-03-22 22:10:00'); INSERT INTO `sys_job_log` VALUES (21422, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3475毫秒', '0', '', '2022-03-22 22:10:03'); INSERT INTO `sys_job_log` VALUES (21423, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1281毫秒', '0', '', '2022-03-22 22:15:31'); INSERT INTO `sys_job_log` VALUES (21424, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:733毫秒', '0', '', '2022-03-22 22:20:00'); INSERT INTO `sys_job_log` VALUES (21425, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:779毫秒', '0', '', '2022-03-22 22:20:00'); INSERT INTO `sys_job_log` VALUES (21426, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2879毫秒', '0', '', '2022-03-22 22:20:02'); INSERT INTO `sys_job_log` VALUES (21427, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:774毫秒', '0', '', '2022-03-22 22:30:00'); INSERT INTO `sys_job_log` VALUES (21428, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3514毫秒', '0', '', '2022-03-22 22:30:03'); INSERT INTO `sys_job_log` VALUES (21429, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:386毫秒', '0', '', '2022-03-22 22:40:00'); INSERT INTO `sys_job_log` VALUES (21430, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:832毫秒', '0', '', '2022-03-22 22:40:00'); INSERT INTO `sys_job_log` VALUES (21431, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6077毫秒', '0', '', '2022-03-22 22:40:06'); INSERT INTO `sys_job_log` VALUES (21432, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1757毫秒', '0', '', '2022-03-22 22:50:01'); INSERT INTO `sys_job_log` VALUES (21433, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4305毫秒', '0', '', '2022-03-22 22:50:04'); INSERT INTO `sys_job_log` VALUES (21434, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2032毫秒', '0', '', '2022-03-22 23:00:02'); INSERT INTO `sys_job_log` VALUES (21435, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2025毫秒', '0', '', '2022-03-22 23:00:02'); INSERT INTO `sys_job_log` VALUES (21436, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4345毫秒', '0', '', '2022-03-22 23:00:04'); INSERT INTO `sys_job_log` VALUES (21437, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:813毫秒', '0', '', '2022-03-22 23:10:00'); INSERT INTO `sys_job_log` VALUES (21438, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3277毫秒', '0', '', '2022-03-22 23:10:03'); INSERT INTO `sys_job_log` VALUES (21439, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1066毫秒', '0', '', '2022-03-22 23:15:31'); INSERT INTO `sys_job_log` VALUES (21440, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:321毫秒', '0', '', '2022-03-22 23:20:00'); INSERT INTO `sys_job_log` VALUES (21441, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:665毫秒', '0', '', '2022-03-22 23:20:00'); INSERT INTO `sys_job_log` VALUES (21442, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2886毫秒', '0', '', '2022-03-22 23:20:02'); INSERT INTO `sys_job_log` VALUES (21443, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:777毫秒', '0', '', '2022-03-22 23:30:00'); INSERT INTO `sys_job_log` VALUES (21444, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4879毫秒', '0', '', '2022-03-22 23:30:04'); INSERT INTO `sys_job_log` VALUES (21445, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2036毫秒', '0', '', '2022-03-22 23:40:02'); INSERT INTO `sys_job_log` VALUES (21446, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2028毫秒', '0', '', '2022-03-22 23:40:02'); INSERT INTO `sys_job_log` VALUES (21447, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4642毫秒', '0', '', '2022-03-22 23:40:04'); INSERT INTO `sys_job_log` VALUES (21448, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:860毫秒', '0', '', '2022-03-22 23:50:00'); INSERT INTO `sys_job_log` VALUES (21449, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3513毫秒', '0', '', '2022-03-22 23:50:03'); INSERT INTO `sys_job_log` VALUES (21450, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:454毫秒', '0', '', '2022-03-23 00:00:00'); INSERT INTO `sys_job_log` VALUES (21451, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-03-23 00:00:00'); INSERT INTO `sys_job_log` VALUES (21452, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4853毫秒', '0', '', '2022-03-23 00:00:04'); INSERT INTO `sys_job_log` VALUES (21453, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:625毫秒', '0', '', '2022-03-23 00:00:10'); INSERT INTO `sys_job_log` VALUES (21454, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:454125毫秒', '0', '', '2022-03-23 00:07:34'); INSERT INTO `sys_job_log` VALUES (21455, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:715毫秒', '0', '', '2022-03-23 00:10:00'); INSERT INTO `sys_job_log` VALUES (21456, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5311毫秒', '0', '', '2022-03-23 00:10:05'); INSERT INTO `sys_job_log` VALUES (21457, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1100毫秒', '0', '', '2022-03-23 00:15:31'); INSERT INTO `sys_job_log` VALUES (21458, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:325毫秒', '0', '', '2022-03-23 00:20:00'); INSERT INTO `sys_job_log` VALUES (21459, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:569毫秒', '0', '', '2022-03-23 00:20:00'); INSERT INTO `sys_job_log` VALUES (21460, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5285毫秒', '0', '', '2022-03-23 00:20:05'); INSERT INTO `sys_job_log` VALUES (21461, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-03-23 00:30:00'); INSERT INTO `sys_job_log` VALUES (21462, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4921毫秒', '0', '', '2022-03-23 00:30:04'); INSERT INTO `sys_job_log` VALUES (21463, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:322毫秒', '0', '', '2022-03-23 00:40:00'); INSERT INTO `sys_job_log` VALUES (21464, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:721毫秒', '0', '', '2022-03-23 00:40:00'); INSERT INTO `sys_job_log` VALUES (21465, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6575毫秒', '0', '', '2022-03-23 00:40:06'); INSERT INTO `sys_job_log` VALUES (21466, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:560毫秒', '0', '', '2022-03-23 00:50:00'); INSERT INTO `sys_job_log` VALUES (21467, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2968毫秒', '0', '', '2022-03-23 00:50:02'); INSERT INTO `sys_job_log` VALUES (21468, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3082毫秒', '0', '', '2022-03-23 13:10:03'); INSERT INTO `sys_job_log` VALUES (21469, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6931毫秒', '0', '', '2022-03-23 13:10:06'); INSERT INTO `sys_job_log` VALUES (21470, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:4168毫秒', '0', '', '2022-03-23 13:15:34'); INSERT INTO `sys_job_log` VALUES (21471, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:661毫秒', '0', '', '2022-03-23 13:20:00'); INSERT INTO `sys_job_log` VALUES (21472, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1248毫秒', '0', '', '2022-03-23 13:20:01'); INSERT INTO `sys_job_log` VALUES (21473, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3579毫秒', '0', '', '2022-03-23 13:20:03'); INSERT INTO `sys_job_log` VALUES (21474, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:672毫秒', '0', '', '2022-03-23 13:30:00'); INSERT INTO `sys_job_log` VALUES (21475, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3008毫秒', '0', '', '2022-03-23 13:30:03'); INSERT INTO `sys_job_log` VALUES (21476, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:375毫秒', '0', '', '2022-03-23 13:40:00'); INSERT INTO `sys_job_log` VALUES (21477, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:750毫秒', '0', '', '2022-03-23 13:40:00'); INSERT INTO `sys_job_log` VALUES (21478, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2811毫秒', '0', '', '2022-03-23 13:40:02'); INSERT INTO `sys_job_log` VALUES (21479, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1436毫秒', '0', '', '2022-03-23 13:50:01'); INSERT INTO `sys_job_log` VALUES (21480, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3663毫秒', '0', '', '2022-03-23 13:50:03'); INSERT INTO `sys_job_log` VALUES (21481, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:341毫秒', '0', '', '2022-03-23 14:00:00'); INSERT INTO `sys_job_log` VALUES (21482, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:633毫秒', '0', '', '2022-03-23 14:00:00'); INSERT INTO `sys_job_log` VALUES (21483, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4108毫秒', '0', '', '2022-03-23 14:00:04'); INSERT INTO `sys_job_log` VALUES (21484, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:775毫秒', '0', '', '2022-03-23 14:10:00'); INSERT INTO `sys_job_log` VALUES (21485, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4851毫秒', '0', '', '2022-03-23 14:10:04'); INSERT INTO `sys_job_log` VALUES (21486, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1065毫秒', '0', '', '2022-03-23 14:15:31'); INSERT INTO `sys_job_log` VALUES (21487, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:359毫秒', '0', '', '2022-03-23 14:20:00'); INSERT INTO `sys_job_log` VALUES (21488, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:636毫秒', '0', '', '2022-03-23 14:20:00'); INSERT INTO `sys_job_log` VALUES (21489, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4134毫秒', '0', '', '2022-03-23 14:20:04'); INSERT INTO `sys_job_log` VALUES (21490, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:935毫秒', '0', '', '2022-03-23 14:30:00'); INSERT INTO `sys_job_log` VALUES (21491, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4207毫秒', '0', '', '2022-03-23 14:30:04'); INSERT INTO `sys_job_log` VALUES (21492, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2119毫秒', '0', '', '2022-03-23 14:40:02'); INSERT INTO `sys_job_log` VALUES (21493, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2108毫秒', '0', '', '2022-03-23 14:40:02'); INSERT INTO `sys_job_log` VALUES (21494, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5832毫秒', '0', '', '2022-03-23 14:40:05'); INSERT INTO `sys_job_log` VALUES (21495, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2013毫秒', '0', '', '2022-03-23 14:50:02'); INSERT INTO `sys_job_log` VALUES (21496, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:810毫秒', '0', '', '2022-03-23 14:50:02'); INSERT INTO `sys_job_log` VALUES (21497, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8350毫秒', '0', '', '2022-03-23 14:50:08'); INSERT INTO `sys_job_log` VALUES (21498, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3165毫秒', '0', '', '2022-03-23 14:50:11'); INSERT INTO `sys_job_log` VALUES (21499, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2046毫秒', '0', '', '2022-03-23 15:00:02'); INSERT INTO `sys_job_log` VALUES (21500, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2020毫秒', '0', '', '2022-03-23 15:00:02'); INSERT INTO `sys_job_log` VALUES (21501, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1086毫秒', '0', '', '2022-03-23 15:00:03'); INSERT INTO `sys_job_log` VALUES (21502, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1609毫秒', '0', '', '2022-03-23 15:00:03'); INSERT INTO `sys_job_log` VALUES (21503, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5871毫秒', '0', '', '2022-03-23 15:00:05'); INSERT INTO `sys_job_log` VALUES (21504, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2616毫秒', '0', '', '2022-03-23 15:00:08'); INSERT INTO `sys_job_log` VALUES (21505, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:473281毫秒', '0', '', '2022-03-23 15:07:53'); INSERT INTO `sys_job_log` VALUES (21506, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:943毫秒', '0', '', '2022-03-23 15:10:00'); INSERT INTO `sys_job_log` VALUES (21507, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3303毫秒', '0', '', '2022-03-23 15:10:03'); INSERT INTO `sys_job_log` VALUES (21508, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:70158毫秒', '0', '', '2022-03-23 15:11:10'); INSERT INTO `sys_job_log` VALUES (21509, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:290530毫秒', '0', '', '2022-03-23 15:12:43'); INSERT INTO `sys_job_log` VALUES (21510, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1082毫秒', '0', '', '2022-03-23 15:15:31'); INSERT INTO `sys_job_log` VALUES (21511, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:730毫秒', '0', '', '2022-03-23 15:20:00'); INSERT INTO `sys_job_log` VALUES (21512, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:761毫秒', '0', '', '2022-03-23 15:20:00'); INSERT INTO `sys_job_log` VALUES (21513, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2691毫秒', '0', '', '2022-03-23 15:20:02'); INSERT INTO `sys_job_log` VALUES (21514, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:822毫秒', '0', '', '2022-03-23 15:30:00'); INSERT INTO `sys_job_log` VALUES (21515, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2878毫秒', '0', '', '2022-03-23 15:30:02'); INSERT INTO `sys_job_log` VALUES (21516, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:407毫秒', '0', '', '2022-03-23 15:40:00'); INSERT INTO `sys_job_log` VALUES (21517, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-03-23 15:40:00'); INSERT INTO `sys_job_log` VALUES (21518, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3174毫秒', '0', '', '2022-03-23 15:40:03'); INSERT INTO `sys_job_log` VALUES (21519, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:656毫秒', '0', '', '2022-03-23 15:50:00'); INSERT INTO `sys_job_log` VALUES (21520, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3744毫秒', '0', '', '2022-03-23 15:50:03'); INSERT INTO `sys_job_log` VALUES (21521, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:314毫秒', '0', '', '2022-03-23 16:00:00'); INSERT INTO `sys_job_log` VALUES (21522, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-03-23 16:00:00'); INSERT INTO `sys_job_log` VALUES (21523, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3227毫秒', '0', '', '2022-03-23 16:00:03'); INSERT INTO `sys_job_log` VALUES (21524, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:721毫秒', '0', '', '2022-03-23 16:10:00'); INSERT INTO `sys_job_log` VALUES (21525, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3372毫秒', '0', '', '2022-03-23 16:10:03'); INSERT INTO `sys_job_log` VALUES (21526, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1074毫秒', '0', '', '2022-03-23 16:15:31'); INSERT INTO `sys_job_log` VALUES (21527, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:369毫秒', '0', '', '2022-03-23 16:20:00'); INSERT INTO `sys_job_log` VALUES (21528, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:944毫秒', '0', '', '2022-03-23 16:20:01'); INSERT INTO `sys_job_log` VALUES (21529, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2929毫秒', '0', '', '2022-03-23 16:20:02'); INSERT INTO `sys_job_log` VALUES (21530, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:598毫秒', '0', '', '2022-03-23 16:30:00'); INSERT INTO `sys_job_log` VALUES (21531, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12846毫秒', '0', '', '2022-03-23 16:30:12'); INSERT INTO `sys_job_log` VALUES (21532, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:853毫秒', '0', '', '2022-03-23 16:40:00'); INSERT INTO `sys_job_log` VALUES (21533, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:972毫秒', '0', '', '2022-03-23 16:40:00'); INSERT INTO `sys_job_log` VALUES (21534, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4114毫秒', '0', '', '2022-03-23 16:40:04'); INSERT INTO `sys_job_log` VALUES (21535, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-03-23 16:50:00'); INSERT INTO `sys_job_log` VALUES (21536, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4035毫秒', '0', '', '2022-03-23 16:50:04'); INSERT INTO `sys_job_log` VALUES (21537, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:491毫秒', '0', '', '2022-03-23 17:00:00'); INSERT INTO `sys_job_log` VALUES (21538, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:828毫秒', '0', '', '2022-03-23 17:00:00'); INSERT INTO `sys_job_log` VALUES (21539, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2548毫秒', '0', '', '2022-03-23 17:00:02'); INSERT INTO `sys_job_log` VALUES (21540, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-03-23 17:10:00'); INSERT INTO `sys_job_log` VALUES (21541, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3796毫秒', '0', '', '2022-03-23 17:10:03'); INSERT INTO `sys_job_log` VALUES (21542, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1151毫秒', '0', '', '2022-03-23 17:15:31'); INSERT INTO `sys_job_log` VALUES (21543, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:229毫秒', '0', '', '2022-03-23 17:20:00'); INSERT INTO `sys_job_log` VALUES (21544, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-03-23 17:20:00'); INSERT INTO `sys_job_log` VALUES (21545, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5577毫秒', '0', '', '2022-03-23 17:20:05'); INSERT INTO `sys_job_log` VALUES (21546, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:815毫秒', '0', '', '2022-03-23 17:30:00'); INSERT INTO `sys_job_log` VALUES (21547, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2479毫秒', '0', '', '2022-03-23 17:30:02'); INSERT INTO `sys_job_log` VALUES (21548, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:402毫秒', '0', '', '2022-03-23 17:40:00'); INSERT INTO `sys_job_log` VALUES (21549, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:949毫秒', '0', '', '2022-03-23 17:40:00'); INSERT INTO `sys_job_log` VALUES (21550, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3581毫秒', '0', '', '2022-03-23 17:40:03'); INSERT INTO `sys_job_log` VALUES (21551, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1030毫秒', '0', '', '2022-03-23 17:50:01'); INSERT INTO `sys_job_log` VALUES (21552, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5145毫秒', '0', '', '2022-03-23 17:50:05'); INSERT INTO `sys_job_log` VALUES (21553, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:432毫秒', '0', '', '2022-03-23 18:00:00'); INSERT INTO `sys_job_log` VALUES (21554, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:843毫秒', '0', '', '2022-03-23 18:00:00'); INSERT INTO `sys_job_log` VALUES (21555, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4375毫秒', '0', '', '2022-03-23 18:00:04'); INSERT INTO `sys_job_log` VALUES (21556, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:507612毫秒', '0', '', '2022-03-23 18:08:27'); INSERT INTO `sys_job_log` VALUES (21557, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:743毫秒', '0', '', '2022-03-23 18:10:00'); INSERT INTO `sys_job_log` VALUES (21558, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3179毫秒', '0', '', '2022-03-23 18:10:03'); INSERT INTO `sys_job_log` VALUES (21559, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1070毫秒', '0', '', '2022-03-23 18:15:31'); INSERT INTO `sys_job_log` VALUES (21560, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:416毫秒', '0', '', '2022-03-23 18:20:00'); INSERT INTO `sys_job_log` VALUES (21561, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:867毫秒', '0', '', '2022-03-23 18:20:00'); INSERT INTO `sys_job_log` VALUES (21562, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4961毫秒', '0', '', '2022-03-23 18:20:04'); INSERT INTO `sys_job_log` VALUES (21563, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:717毫秒', '0', '', '2022-03-23 18:30:00'); INSERT INTO `sys_job_log` VALUES (21564, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3714毫秒', '0', '', '2022-03-23 18:30:03'); INSERT INTO `sys_job_log` VALUES (21565, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:338毫秒', '0', '', '2022-03-23 18:40:00'); INSERT INTO `sys_job_log` VALUES (21566, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:697毫秒', '0', '', '2022-03-23 18:40:00'); INSERT INTO `sys_job_log` VALUES (21567, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3151毫秒', '0', '', '2022-03-23 18:40:03'); INSERT INTO `sys_job_log` VALUES (21568, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:708毫秒', '0', '', '2022-03-23 18:50:00'); INSERT INTO `sys_job_log` VALUES (21569, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4735毫秒', '0', '', '2022-03-23 18:50:04'); INSERT INTO `sys_job_log` VALUES (21570, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:861毫秒', '0', '', '2022-03-23 19:00:00'); INSERT INTO `sys_job_log` VALUES (21571, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:964毫秒', '0', '', '2022-03-23 19:00:00'); INSERT INTO `sys_job_log` VALUES (21572, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3185毫秒', '0', '', '2022-03-23 19:00:03'); INSERT INTO `sys_job_log` VALUES (21573, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:918毫秒', '0', '', '2022-03-23 19:10:00'); INSERT INTO `sys_job_log` VALUES (21574, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4966毫秒', '0', '', '2022-03-23 19:10:04'); INSERT INTO `sys_job_log` VALUES (21575, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:918毫秒', '0', '', '2022-03-23 19:15:30'); INSERT INTO `sys_job_log` VALUES (21576, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:375毫秒', '0', '', '2022-03-23 19:20:00'); INSERT INTO `sys_job_log` VALUES (21577, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:876毫秒', '0', '', '2022-03-23 19:20:00'); INSERT INTO `sys_job_log` VALUES (21578, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3498毫秒', '0', '', '2022-03-23 19:20:03'); INSERT INTO `sys_job_log` VALUES (21579, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:804毫秒', '0', '', '2022-03-23 19:30:00'); INSERT INTO `sys_job_log` VALUES (21580, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3525毫秒', '0', '', '2022-03-23 19:30:03'); INSERT INTO `sys_job_log` VALUES (21581, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:864毫秒', '0', '', '2022-03-23 19:40:00'); INSERT INTO `sys_job_log` VALUES (21582, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1070毫秒', '0', '', '2022-03-23 19:40:01'); INSERT INTO `sys_job_log` VALUES (21583, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2933毫秒', '0', '', '2022-03-23 19:40:02'); INSERT INTO `sys_job_log` VALUES (21584, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:708毫秒', '0', '', '2022-03-23 19:50:00'); INSERT INTO `sys_job_log` VALUES (21585, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3241毫秒', '0', '', '2022-03-23 19:50:03'); INSERT INTO `sys_job_log` VALUES (21586, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:373毫秒', '0', '', '2022-03-23 20:00:00'); INSERT INTO `sys_job_log` VALUES (21587, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-03-23 20:00:00'); INSERT INTO `sys_job_log` VALUES (21588, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4351毫秒', '0', '', '2022-03-23 20:00:04'); INSERT INTO `sys_job_log` VALUES (21589, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:837毫秒', '0', '', '2022-03-23 20:10:00'); INSERT INTO `sys_job_log` VALUES (21590, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5675毫秒', '0', '', '2022-03-23 20:10:05'); INSERT INTO `sys_job_log` VALUES (21591, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1170毫秒', '0', '', '2022-03-23 20:15:31'); INSERT INTO `sys_job_log` VALUES (21592, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:783毫秒', '0', '', '2022-03-23 20:20:00'); INSERT INTO `sys_job_log` VALUES (21593, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:797毫秒', '0', '', '2022-03-23 20:20:00'); INSERT INTO `sys_job_log` VALUES (21594, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2535毫秒', '0', '', '2022-03-23 20:20:02'); INSERT INTO `sys_job_log` VALUES (21595, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:85508毫秒', '0', '', '2022-03-23 20:21:25'); INSERT INTO `sys_job_log` VALUES (21596, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:611毫秒', '0', '', '2022-03-23 20:30:00'); INSERT INTO `sys_job_log` VALUES (21597, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3235毫秒', '0', '', '2022-03-23 20:30:03'); INSERT INTO `sys_job_log` VALUES (21598, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:342毫秒', '0', '', '2022-03-23 20:40:00'); INSERT INTO `sys_job_log` VALUES (21599, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:699毫秒', '0', '', '2022-03-23 20:40:00'); INSERT INTO `sys_job_log` VALUES (21600, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4277毫秒', '0', '', '2022-03-23 20:40:04'); INSERT INTO `sys_job_log` VALUES (21601, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:820毫秒', '0', '', '2022-03-23 20:50:00'); INSERT INTO `sys_job_log` VALUES (21602, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4717毫秒', '0', '', '2022-03-23 20:50:04'); INSERT INTO `sys_job_log` VALUES (21603, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:839毫秒', '0', '', '2022-03-23 21:00:00'); INSERT INTO `sys_job_log` VALUES (21604, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:885毫秒', '0', '', '2022-03-23 21:00:00'); INSERT INTO `sys_job_log` VALUES (21605, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4617毫秒', '0', '', '2022-03-23 21:00:04'); INSERT INTO `sys_job_log` VALUES (21606, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:383098毫秒', '0', '', '2022-03-23 21:06:23'); INSERT INTO `sys_job_log` VALUES (21607, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:788毫秒', '0', '', '2022-03-23 21:10:00'); INSERT INTO `sys_job_log` VALUES (21608, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3092毫秒', '0', '', '2022-03-23 21:10:03'); INSERT INTO `sys_job_log` VALUES (21609, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:60608毫秒', '0', '', '2022-03-23 21:11:00'); INSERT INTO `sys_job_log` VALUES (21610, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1475毫秒', '0', '', '2022-03-23 21:15:31'); INSERT INTO `sys_job_log` VALUES (21611, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:322毫秒', '0', '', '2022-03-23 21:20:00'); INSERT INTO `sys_job_log` VALUES (21612, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:614毫秒', '0', '', '2022-03-23 21:20:00'); INSERT INTO `sys_job_log` VALUES (21613, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3772毫秒', '0', '', '2022-03-23 21:20:03'); INSERT INTO `sys_job_log` VALUES (21614, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:727毫秒', '0', '', '2022-03-23 21:30:00'); INSERT INTO `sys_job_log` VALUES (21615, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3218毫秒', '0', '', '2022-03-23 21:30:03'); INSERT INTO `sys_job_log` VALUES (21616, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:290毫秒', '0', '', '2022-03-23 21:40:00'); INSERT INTO `sys_job_log` VALUES (21617, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:809毫秒', '0', '', '2022-03-23 21:40:00'); INSERT INTO `sys_job_log` VALUES (21618, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3399毫秒', '0', '', '2022-03-23 21:40:03'); INSERT INTO `sys_job_log` VALUES (21619, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:879毫秒', '0', '', '2022-03-23 21:50:00'); INSERT INTO `sys_job_log` VALUES (21620, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4020毫秒', '0', '', '2022-03-23 21:50:04'); INSERT INTO `sys_job_log` VALUES (21621, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:201毫秒', '0', '', '2022-03-23 22:00:00'); INSERT INTO `sys_job_log` VALUES (21622, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:458毫秒', '0', '', '2022-03-23 22:00:00'); INSERT INTO `sys_job_log` VALUES (21623, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1006毫秒', '0', '', '2022-03-23 22:00:01'); INSERT INTO `sys_job_log` VALUES (21624, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4836毫秒', '0', '', '2022-03-23 22:00:04'); INSERT INTO `sys_job_log` VALUES (21625, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1435毫秒', '0', '', '2022-03-23 22:10:01'); INSERT INTO `sys_job_log` VALUES (21626, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2729毫秒', '0', '', '2022-03-23 22:10:02'); INSERT INTO `sys_job_log` VALUES (21627, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:908毫秒', '0', '', '2022-03-23 22:15:30'); INSERT INTO `sys_job_log` VALUES (21628, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:878毫秒', '0', '', '2022-03-23 22:20:00'); INSERT INTO `sys_job_log` VALUES (21629, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:891毫秒', '0', '', '2022-03-23 22:20:00'); INSERT INTO `sys_job_log` VALUES (21630, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5839毫秒', '0', '', '2022-03-23 22:20:05'); INSERT INTO `sys_job_log` VALUES (21631, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:726毫秒', '0', '', '2022-03-23 22:30:00'); INSERT INTO `sys_job_log` VALUES (21632, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6023毫秒', '0', '', '2022-03-23 22:30:06'); INSERT INTO `sys_job_log` VALUES (21633, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:410毫秒', '0', '', '2022-03-23 22:40:00'); INSERT INTO `sys_job_log` VALUES (21634, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1783毫秒', '0', '', '2022-03-23 22:40:01'); INSERT INTO `sys_job_log` VALUES (21635, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3509毫秒', '0', '', '2022-03-23 22:40:03'); INSERT INTO `sys_job_log` VALUES (21636, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:613毫秒', '0', '', '2022-03-23 22:50:00'); INSERT INTO `sys_job_log` VALUES (21637, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2775毫秒', '0', '', '2022-03-23 22:50:02'); INSERT INTO `sys_job_log` VALUES (21638, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:420毫秒', '0', '', '2022-03-23 23:00:00'); INSERT INTO `sys_job_log` VALUES (21639, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:732毫秒', '0', '', '2022-03-23 23:00:00'); INSERT INTO `sys_job_log` VALUES (21640, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3148毫秒', '0', '', '2022-03-23 23:00:03'); INSERT INTO `sys_job_log` VALUES (21641, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:929毫秒', '0', '', '2022-03-23 23:10:00'); INSERT INTO `sys_job_log` VALUES (21642, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2907毫秒', '0', '', '2022-03-23 23:10:02'); INSERT INTO `sys_job_log` VALUES (21643, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1145毫秒', '0', '', '2022-03-23 23:15:31'); INSERT INTO `sys_job_log` VALUES (21644, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:388毫秒', '0', '', '2022-03-23 23:20:00'); INSERT INTO `sys_job_log` VALUES (21645, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1654毫秒', '0', '', '2022-03-23 23:20:01'); INSERT INTO `sys_job_log` VALUES (21646, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5485毫秒', '0', '', '2022-03-23 23:20:05'); INSERT INTO `sys_job_log` VALUES (21647, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-03-23 23:30:00'); INSERT INTO `sys_job_log` VALUES (21648, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2593毫秒', '0', '', '2022-03-23 23:30:02'); INSERT INTO `sys_job_log` VALUES (21649, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:334毫秒', '0', '', '2022-03-23 23:40:00'); INSERT INTO `sys_job_log` VALUES (21650, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:658毫秒', '0', '', '2022-03-23 23:40:00'); INSERT INTO `sys_job_log` VALUES (21651, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4180毫秒', '0', '', '2022-03-23 23:40:04'); INSERT INTO `sys_job_log` VALUES (21652, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:735毫秒', '0', '', '2022-03-23 23:50:00'); INSERT INTO `sys_job_log` VALUES (21653, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3460毫秒', '0', '', '2022-03-23 23:50:03'); INSERT INTO `sys_job_log` VALUES (21654, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:280毫秒', '0', '', '2022-03-24 00:00:00'); INSERT INTO `sys_job_log` VALUES (21655, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1521毫秒', '0', '', '2022-03-24 00:00:01'); INSERT INTO `sys_job_log` VALUES (21656, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5073毫秒', '0', '', '2022-03-24 00:00:05'); INSERT INTO `sys_job_log` VALUES (21657, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:863毫秒', '0', '', '2022-03-24 00:00:10'); INSERT INTO `sys_job_log` VALUES (21658, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1202毫秒', '0', '', '2022-03-24 11:00:01'); INSERT INTO `sys_job_log` VALUES (21659, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1700毫秒', '0', '', '2022-03-24 11:00:01'); INSERT INTO `sys_job_log` VALUES (21660, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5895毫秒', '0', '', '2022-03-24 11:00:05'); INSERT INTO `sys_job_log` VALUES (21661, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:648毫秒', '0', '', '2022-03-24 11:10:00'); INSERT INTO `sys_job_log` VALUES (21662, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3337毫秒', '0', '', '2022-03-24 11:10:03'); INSERT INTO `sys_job_log` VALUES (21663, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2088毫秒', '0', '', '2022-03-24 11:15:32'); INSERT INTO `sys_job_log` VALUES (21664, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:417毫秒', '0', '', '2022-03-24 11:20:00'); INSERT INTO `sys_job_log` VALUES (21665, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:668毫秒', '0', '', '2022-03-24 11:20:00'); INSERT INTO `sys_job_log` VALUES (21666, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2846毫秒', '0', '', '2022-03-24 11:20:02'); INSERT INTO `sys_job_log` VALUES (21667, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:788毫秒', '0', '', '2022-03-24 11:30:00'); INSERT INTO `sys_job_log` VALUES (21668, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3880毫秒', '0', '', '2022-03-24 11:30:03'); INSERT INTO `sys_job_log` VALUES (21669, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:465毫秒', '0', '', '2022-03-24 11:40:00'); INSERT INTO `sys_job_log` VALUES (21670, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1023毫秒', '0', '', '2022-03-24 11:40:01'); INSERT INTO `sys_job_log` VALUES (21671, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4588毫秒', '0', '', '2022-03-24 11:40:04'); INSERT INTO `sys_job_log` VALUES (21672, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2024毫秒', '0', '', '2022-03-24 11:50:02'); INSERT INTO `sys_job_log` VALUES (21673, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8478毫秒', '0', '', '2022-03-24 11:50:08'); INSERT INTO `sys_job_log` VALUES (21674, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:482毫秒', '0', '', '2022-03-24 12:00:00'); INSERT INTO `sys_job_log` VALUES (21675, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-03-24 12:00:00'); INSERT INTO `sys_job_log` VALUES (21676, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4375毫秒', '0', '', '2022-03-24 12:00:04'); INSERT INTO `sys_job_log` VALUES (21677, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:525421毫秒', '0', '', '2022-03-24 12:08:45'); INSERT INTO `sys_job_log` VALUES (21678, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:787毫秒', '0', '', '2022-03-24 12:10:00'); INSERT INTO `sys_job_log` VALUES (21679, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4086毫秒', '0', '', '2022-03-24 12:10:04'); INSERT INTO `sys_job_log` VALUES (21680, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:666毫秒', '0', '', '2022-03-24 12:15:30'); INSERT INTO `sys_job_log` VALUES (21681, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:646毫秒', '0', '', '2022-03-24 12:20:00'); INSERT INTO `sys_job_log` VALUES (21682, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:763毫秒', '0', '', '2022-03-24 12:20:00'); INSERT INTO `sys_job_log` VALUES (21683, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4254毫秒', '0', '', '2022-03-24 12:20:04'); INSERT INTO `sys_job_log` VALUES (21684, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:785毫秒', '0', '', '2022-03-24 12:30:00'); INSERT INTO `sys_job_log` VALUES (21685, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3263毫秒', '0', '', '2022-03-24 12:30:03'); INSERT INTO `sys_job_log` VALUES (21686, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:457毫秒', '0', '', '2022-03-24 12:40:00'); INSERT INTO `sys_job_log` VALUES (21687, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:672毫秒', '0', '', '2022-03-24 12:40:00'); INSERT INTO `sys_job_log` VALUES (21688, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3417毫秒', '0', '', '2022-03-24 12:40:03'); INSERT INTO `sys_job_log` VALUES (21689, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:579毫秒', '0', '', '2022-03-24 12:50:00'); INSERT INTO `sys_job_log` VALUES (21690, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3165毫秒', '0', '', '2022-03-24 12:50:03'); INSERT INTO `sys_job_log` VALUES (21691, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:667毫秒', '0', '', '2022-03-24 13:00:00'); INSERT INTO `sys_job_log` VALUES (21692, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1801毫秒', '0', '', '2022-03-24 13:00:01'); INSERT INTO `sys_job_log` VALUES (21693, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5939毫秒', '0', '', '2022-03-24 13:00:05'); INSERT INTO `sys_job_log` VALUES (21694, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:739毫秒', '0', '', '2022-03-24 14:15:29'); INSERT INTO `sys_job_log` VALUES (21695, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:743毫秒', '0', '', '2022-03-24 14:15:29'); INSERT INTO `sys_job_log` VALUES (21696, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:932毫秒', '0', '', '2022-03-24 14:15:29'); INSERT INTO `sys_job_log` VALUES (21697, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:194毫秒', '0', '', '2022-03-24 14:15:30'); INSERT INTO `sys_job_log` VALUES (21698, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:522毫秒', '0', '', '2022-03-24 14:15:30'); INSERT INTO `sys_job_log` VALUES (21699, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:204毫秒', '0', '', '2022-03-24 14:15:30'); INSERT INTO `sys_job_log` VALUES (21700, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:704毫秒', '0', '', '2022-03-24 14:15:30'); INSERT INTO `sys_job_log` VALUES (21701, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-03-24 14:15:30'); INSERT INTO `sys_job_log` VALUES (21702, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:463毫秒', '0', '', '2022-03-24 14:15:31'); INSERT INTO `sys_job_log` VALUES (21703, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:431毫秒', '0', '', '2022-03-24 14:15:31'); INSERT INTO `sys_job_log` VALUES (21704, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:455毫秒', '0', '', '2022-03-24 14:15:32'); INSERT INTO `sys_job_log` VALUES (21705, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3520毫秒', '0', '', '2022-03-24 14:15:32'); INSERT INTO `sys_job_log` VALUES (21706, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:435毫秒', '0', '', '2022-03-24 14:15:32'); INSERT INTO `sys_job_log` VALUES (21707, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2811毫秒', '0', '', '2022-03-24 14:15:35'); INSERT INTO `sys_job_log` VALUES (21708, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2746毫秒', '0', '', '2022-03-24 14:15:38'); INSERT INTO `sys_job_log` VALUES (21709, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3014毫秒', '0', '', '2022-03-24 14:15:41'); INSERT INTO `sys_job_log` VALUES (21710, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1924毫秒', '0', '', '2022-03-24 14:15:43'); INSERT INTO `sys_job_log` VALUES (21711, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3258毫秒', '0', '', '2022-03-24 14:15:46'); INSERT INTO `sys_job_log` VALUES (21712, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4232毫秒', '0', '', '2022-03-24 14:15:50'); INSERT INTO `sys_job_log` VALUES (21713, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:310毫秒', '0', '', '2022-03-24 14:20:00'); INSERT INTO `sys_job_log` VALUES (21714, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:592毫秒', '0', '', '2022-03-24 14:20:00'); INSERT INTO `sys_job_log` VALUES (21715, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3706毫秒', '0', '', '2022-03-24 14:20:03'); INSERT INTO `sys_job_log` VALUES (21716, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:477毫秒', '0', '', '2022-03-24 14:30:00'); INSERT INTO `sys_job_log` VALUES (21717, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2443毫秒', '0', '', '2022-03-24 14:30:02'); INSERT INTO `sys_job_log` VALUES (21718, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:595毫秒', '0', '', '2022-03-24 14:40:00'); INSERT INTO `sys_job_log` VALUES (21719, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:876毫秒', '0', '', '2022-03-24 14:40:00'); INSERT INTO `sys_job_log` VALUES (21720, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3024毫秒', '0', '', '2022-03-24 14:40:03'); INSERT INTO `sys_job_log` VALUES (21721, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:646毫秒', '0', '', '2022-03-24 14:50:00'); INSERT INTO `sys_job_log` VALUES (21722, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4106毫秒', '0', '', '2022-03-24 14:50:04'); INSERT INTO `sys_job_log` VALUES (21723, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1343毫秒', '0', '', '2022-03-24 15:00:01'); INSERT INTO `sys_job_log` VALUES (21724, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1583毫秒', '0', '', '2022-03-24 15:00:01'); INSERT INTO `sys_job_log` VALUES (21725, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4026毫秒', '0', '', '2022-03-24 15:00:04'); INSERT INTO `sys_job_log` VALUES (21726, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:518624毫秒', '0', '', '2022-03-24 15:08:38'); INSERT INTO `sys_job_log` VALUES (21727, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:764毫秒', '0', '', '2022-03-24 15:10:00'); INSERT INTO `sys_job_log` VALUES (21728, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6040毫秒', '0', '', '2022-03-24 15:10:06'); INSERT INTO `sys_job_log` VALUES (21729, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:56631毫秒', '0', '', '2022-03-24 15:10:56'); INSERT INTO `sys_job_log` VALUES (21730, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1189毫秒', '0', '', '2022-03-24 15:15:31'); INSERT INTO `sys_job_log` VALUES (21731, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:473毫秒', '0', '', '2022-03-24 15:20:00'); INSERT INTO `sys_job_log` VALUES (21732, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:757毫秒', '0', '', '2022-03-24 15:20:00'); INSERT INTO `sys_job_log` VALUES (21733, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4626毫秒', '0', '', '2022-03-24 15:20:04'); INSERT INTO `sys_job_log` VALUES (21734, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:798毫秒', '0', '', '2022-03-24 15:30:00'); INSERT INTO `sys_job_log` VALUES (21735, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3065毫秒', '0', '', '2022-03-24 15:30:03'); INSERT INTO `sys_job_log` VALUES (21736, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:736毫秒', '0', '', '2022-03-24 15:40:00'); INSERT INTO `sys_job_log` VALUES (21737, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:886毫秒', '0', '', '2022-03-24 15:40:00'); INSERT INTO `sys_job_log` VALUES (21738, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3011毫秒', '0', '', '2022-03-24 15:40:03'); INSERT INTO `sys_job_log` VALUES (21739, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:161毫秒', '0', '', '2022-03-24 15:41:37'); INSERT INTO `sys_job_log` VALUES (21740, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:712毫秒', '0', '', '2022-03-24 15:50:00'); INSERT INTO `sys_job_log` VALUES (21741, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4085毫秒', '0', '', '2022-03-24 15:50:04'); INSERT INTO `sys_job_log` VALUES (21742, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:592毫秒', '0', '', '2022-03-24 16:00:00'); INSERT INTO `sys_job_log` VALUES (21743, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1093毫秒', '0', '', '2022-03-24 16:00:01'); INSERT INTO `sys_job_log` VALUES (21744, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4703毫秒', '0', '', '2022-03-24 16:00:04'); INSERT INTO `sys_job_log` VALUES (21745, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:727毫秒', '0', '', '2022-03-24 16:10:00'); INSERT INTO `sys_job_log` VALUES (21746, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4911毫秒', '0', '', '2022-03-24 16:10:04'); INSERT INTO `sys_job_log` VALUES (21747, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:975毫秒', '0', '', '2022-03-24 16:15:30'); INSERT INTO `sys_job_log` VALUES (21748, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:810毫秒', '0', '', '2022-03-24 16:20:00'); INSERT INTO `sys_job_log` VALUES (21749, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:813毫秒', '0', '', '2022-03-24 16:20:00'); INSERT INTO `sys_job_log` VALUES (21750, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5383毫秒', '0', '', '2022-03-24 16:20:05'); INSERT INTO `sys_job_log` VALUES (21751, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:683毫秒', '0', '', '2022-03-24 16:30:00'); INSERT INTO `sys_job_log` VALUES (21752, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7555毫秒', '0', '', '2022-03-24 16:30:07'); INSERT INTO `sys_job_log` VALUES (21753, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:384毫秒', '0', '', '2022-03-24 16:40:00'); INSERT INTO `sys_job_log` VALUES (21754, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:675毫秒', '0', '', '2022-03-24 16:40:00'); INSERT INTO `sys_job_log` VALUES (21755, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8509毫秒', '0', '', '2022-03-24 16:40:08'); INSERT INTO `sys_job_log` VALUES (21756, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-03-24 16:50:00'); INSERT INTO `sys_job_log` VALUES (21757, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9424毫秒', '0', '', '2022-03-24 16:50:09'); INSERT INTO `sys_job_log` VALUES (21758, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1159毫秒', '0', '', '2022-03-24 17:00:01'); INSERT INTO `sys_job_log` VALUES (21759, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1203毫秒', '0', '', '2022-03-24 17:00:01'); INSERT INTO `sys_job_log` VALUES (21760, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3988毫秒', '0', '', '2022-03-24 17:00:04'); INSERT INTO `sys_job_log` VALUES (21761, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:631毫秒', '0', '', '2022-03-24 17:10:00'); INSERT INTO `sys_job_log` VALUES (21762, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5591毫秒', '0', '', '2022-03-24 17:10:05'); INSERT INTO `sys_job_log` VALUES (21763, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:767毫秒', '0', '', '2022-03-24 17:15:30'); INSERT INTO `sys_job_log` VALUES (21764, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:521毫秒', '0', '', '2022-03-24 17:20:00'); INSERT INTO `sys_job_log` VALUES (21765, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:845毫秒', '0', '', '2022-03-24 17:20:00'); INSERT INTO `sys_job_log` VALUES (21766, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8405毫秒', '0', '', '2022-03-24 17:20:08'); INSERT INTO `sys_job_log` VALUES (21767, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:665毫秒', '0', '', '2022-03-24 17:30:00'); INSERT INTO `sys_job_log` VALUES (21768, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3030毫秒', '0', '', '2022-03-24 17:30:03'); INSERT INTO `sys_job_log` VALUES (21769, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2037毫秒', '0', '', '2022-03-24 17:40:02'); INSERT INTO `sys_job_log` VALUES (21770, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2029毫秒', '0', '', '2022-03-24 17:40:02'); INSERT INTO `sys_job_log` VALUES (21771, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:14347毫秒', '0', '', '2022-03-24 17:40:14'); INSERT INTO `sys_job_log` VALUES (21772, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:608毫秒', '0', '', '2022-03-24 17:50:00'); INSERT INTO `sys_job_log` VALUES (21773, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4887毫秒', '0', '', '2022-03-24 17:50:04'); INSERT INTO `sys_job_log` VALUES (21774, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2032毫秒', '0', '', '2022-03-24 18:00:02'); INSERT INTO `sys_job_log` VALUES (21775, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2023毫秒', '0', '', '2022-03-24 18:00:02'); INSERT INTO `sys_job_log` VALUES (21776, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4838毫秒', '0', '', '2022-03-24 18:00:04'); INSERT INTO `sys_job_log` VALUES (21777, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2045毫秒', '0', '', '2022-03-24 18:10:02'); INSERT INTO `sys_job_log` VALUES (21778, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6029毫秒', '0', '', '2022-03-24 18:10:06'); INSERT INTO `sys_job_log` VALUES (21779, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:925682毫秒', '0', '', '2022-03-24 18:15:25'); INSERT INTO `sys_job_log` VALUES (21780, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10020毫秒', '0', '', '2022-03-24 18:15:40'); INSERT INTO `sys_job_log` VALUES (21781, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1089毫秒', '0', '', '2022-03-24 18:20:01'); INSERT INTO `sys_job_log` VALUES (21782, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1164毫秒', '0', '', '2022-03-24 18:20:01'); INSERT INTO `sys_job_log` VALUES (21783, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4619毫秒', '0', '', '2022-03-24 18:20:04'); INSERT INTO `sys_job_log` VALUES (21784, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:825毫秒', '0', '', '2022-03-24 18:30:00'); INSERT INTO `sys_job_log` VALUES (21785, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3925毫秒', '0', '', '2022-03-24 18:30:03'); INSERT INTO `sys_job_log` VALUES (21786, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:744毫秒', '0', '', '2022-03-24 18:40:00'); INSERT INTO `sys_job_log` VALUES (21787, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1002毫秒', '0', '', '2022-03-24 18:40:01'); INSERT INTO `sys_job_log` VALUES (21788, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3521毫秒', '0', '', '2022-03-24 18:40:03'); INSERT INTO `sys_job_log` VALUES (21789, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1060毫秒', '0', '', '2022-03-24 18:50:01'); INSERT INTO `sys_job_log` VALUES (21790, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3725毫秒', '0', '', '2022-03-24 18:50:03'); INSERT INTO `sys_job_log` VALUES (21791, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-24 19:00:02'); INSERT INTO `sys_job_log` VALUES (21792, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2021毫秒', '0', '', '2022-03-24 19:00:02'); INSERT INTO `sys_job_log` VALUES (21793, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4934毫秒', '0', '', '2022-03-24 19:00:04'); INSERT INTO `sys_job_log` VALUES (21794, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1009毫秒', '0', '', '2022-03-24 19:10:01'); INSERT INTO `sys_job_log` VALUES (21795, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3307毫秒', '0', '', '2022-03-24 19:10:03'); INSERT INTO `sys_job_log` VALUES (21796, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:9576毫秒', '0', '', '2022-03-24 19:15:39'); INSERT INTO `sys_job_log` VALUES (21797, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2017毫秒', '0', '', '2022-03-24 19:20:02'); INSERT INTO `sys_job_log` VALUES (21798, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2014毫秒', '0', '', '2022-03-24 19:20:02'); INSERT INTO `sys_job_log` VALUES (21799, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:11403毫秒', '0', '', '2022-03-24 19:20:11'); INSERT INTO `sys_job_log` VALUES (21800, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:734毫秒', '0', '', '2022-03-24 19:30:00'); INSERT INTO `sys_job_log` VALUES (21801, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4151毫秒', '0', '', '2022-03-24 19:30:04'); INSERT INTO `sys_job_log` VALUES (21802, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:795毫秒', '0', '', '2022-03-24 19:40:00'); INSERT INTO `sys_job_log` VALUES (21803, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1043毫秒', '0', '', '2022-03-24 19:40:01'); INSERT INTO `sys_job_log` VALUES (21804, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5273毫秒', '0', '', '2022-03-24 19:40:05'); INSERT INTO `sys_job_log` VALUES (21805, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:736毫秒', '0', '', '2022-03-24 19:50:00'); INSERT INTO `sys_job_log` VALUES (21806, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4183毫秒', '0', '', '2022-03-24 19:50:04'); INSERT INTO `sys_job_log` VALUES (21807, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1458毫秒', '0', '', '2022-03-24 20:00:01'); INSERT INTO `sys_job_log` VALUES (21808, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1758毫秒', '0', '', '2022-03-24 20:00:01'); INSERT INTO `sys_job_log` VALUES (21809, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7943毫秒', '0', '', '2022-03-24 20:00:07'); INSERT INTO `sys_job_log` VALUES (21810, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2028毫秒', '0', '', '2022-03-24 20:10:02'); INSERT INTO `sys_job_log` VALUES (21811, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7973毫秒', '0', '', '2022-03-24 20:10:07'); INSERT INTO `sys_job_log` VALUES (21812, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:653毫秒', '0', '', '2022-03-24 20:15:30'); INSERT INTO `sys_job_log` VALUES (21813, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1746毫秒', '0', '', '2022-03-24 20:20:01'); INSERT INTO `sys_job_log` VALUES (21814, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-24 20:20:02'); INSERT INTO `sys_job_log` VALUES (21815, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4699毫秒', '0', '', '2022-03-24 20:20:04'); INSERT INTO `sys_job_log` VALUES (21816, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:173117毫秒', '0', '', '2022-03-24 20:22:53'); INSERT INTO `sys_job_log` VALUES (21817, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:851毫秒', '0', '', '2022-03-24 20:30:00'); INSERT INTO `sys_job_log` VALUES (21818, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3519毫秒', '0', '', '2022-03-24 20:30:03'); INSERT INTO `sys_job_log` VALUES (21819, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-03-24 20:40:02'); INSERT INTO `sys_job_log` VALUES (21820, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2011毫秒', '0', '', '2022-03-24 20:40:02'); INSERT INTO `sys_job_log` VALUES (21821, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7307毫秒', '0', '', '2022-03-24 20:40:07'); INSERT INTO `sys_job_log` VALUES (21822, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:847毫秒', '0', '', '2022-03-24 20:50:00'); INSERT INTO `sys_job_log` VALUES (21823, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4725毫秒', '0', '', '2022-03-24 20:50:04'); INSERT INTO `sys_job_log` VALUES (21824, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:397毫秒', '0', '', '2022-03-24 21:00:00'); INSERT INTO `sys_job_log` VALUES (21825, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-03-24 21:00:00'); INSERT INTO `sys_job_log` VALUES (21826, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3956毫秒', '0', '', '2022-03-24 21:00:03'); INSERT INTO `sys_job_log` VALUES (21827, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:558897毫秒', '0', '', '2022-03-24 21:05:33'); INSERT INTO `sys_job_log` VALUES (21828, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:470毫秒', '0', '', '2022-03-24 21:10:00'); INSERT INTO `sys_job_log` VALUES (21829, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:692毫秒', '0', '', '2022-03-24 21:10:00'); INSERT INTO `sys_job_log` VALUES (21830, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4215毫秒', '0', '', '2022-03-24 21:10:04'); INSERT INTO `sys_job_log` VALUES (21831, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:297671毫秒', '0', '', '2022-03-24 21:10:30'); INSERT INTO `sys_job_log` VALUES (21832, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:592毫秒', '0', '', '2022-03-24 21:15:30'); INSERT INTO `sys_job_log` VALUES (21833, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:230毫秒', '0', '', '2022-03-24 21:20:00'); INSERT INTO `sys_job_log` VALUES (21834, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-03-24 21:20:00'); INSERT INTO `sys_job_log` VALUES (21835, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4655毫秒', '0', '', '2022-03-24 21:20:04'); INSERT INTO `sys_job_log` VALUES (21836, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:712毫秒', '0', '', '2022-03-24 21:30:00'); INSERT INTO `sys_job_log` VALUES (21837, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4678毫秒', '0', '', '2022-03-24 21:30:04'); INSERT INTO `sys_job_log` VALUES (21838, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:629毫秒', '0', '', '2022-03-24 21:40:00'); INSERT INTO `sys_job_log` VALUES (21839, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:752毫秒', '0', '', '2022-03-24 21:40:00'); INSERT INTO `sys_job_log` VALUES (21840, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2792毫秒', '0', '', '2022-03-24 21:40:02'); INSERT INTO `sys_job_log` VALUES (21841, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2070毫秒', '0', '', '2022-03-24 21:50:02'); INSERT INTO `sys_job_log` VALUES (21842, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5764毫秒', '0', '', '2022-03-24 21:50:05'); INSERT INTO `sys_job_log` VALUES (21843, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:323毫秒', '0', '', '2022-03-24 22:00:00'); INSERT INTO `sys_job_log` VALUES (21844, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:755毫秒', '0', '', '2022-03-24 22:00:00'); INSERT INTO `sys_job_log` VALUES (21845, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1241毫秒', '0', '', '2022-03-24 22:00:01'); INSERT INTO `sys_job_log` VALUES (21846, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2799毫秒', '0', '', '2022-03-24 22:00:02'); INSERT INTO `sys_job_log` VALUES (21847, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-03-24 22:10:00'); INSERT INTO `sys_job_log` VALUES (21848, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4050毫秒', '0', '', '2022-03-24 22:10:04'); INSERT INTO `sys_job_log` VALUES (21849, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1389毫秒', '0', '', '2022-03-24 22:15:31'); INSERT INTO `sys_job_log` VALUES (21850, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:752毫秒', '0', '', '2022-03-24 22:20:00'); INSERT INTO `sys_job_log` VALUES (21851, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:797毫秒', '0', '', '2022-03-24 22:20:00'); INSERT INTO `sys_job_log` VALUES (21852, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2632毫秒', '0', '', '2022-03-24 22:20:02'); INSERT INTO `sys_job_log` VALUES (21853, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:743毫秒', '0', '', '2022-03-24 22:30:00'); INSERT INTO `sys_job_log` VALUES (21854, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2644毫秒', '0', '', '2022-03-24 22:30:02'); INSERT INTO `sys_job_log` VALUES (21855, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:361毫秒', '0', '', '2022-03-24 22:40:00'); INSERT INTO `sys_job_log` VALUES (21856, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:757毫秒', '0', '', '2022-03-24 22:40:00'); INSERT INTO `sys_job_log` VALUES (21857, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4210毫秒', '0', '', '2022-03-24 22:40:04'); INSERT INTO `sys_job_log` VALUES (21858, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-03-24 22:50:00'); INSERT INTO `sys_job_log` VALUES (21859, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3687毫秒', '0', '', '2022-03-24 22:50:03'); INSERT INTO `sys_job_log` VALUES (21860, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:636毫秒', '0', '', '2022-03-24 23:00:00'); INSERT INTO `sys_job_log` VALUES (21861, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1065毫秒', '0', '', '2022-03-24 23:00:01'); INSERT INTO `sys_job_log` VALUES (21862, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3918毫秒', '0', '', '2022-03-24 23:00:03'); INSERT INTO `sys_job_log` VALUES (21863, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1063毫秒', '0', '', '2022-03-24 23:10:01'); INSERT INTO `sys_job_log` VALUES (21864, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3600毫秒', '0', '', '2022-03-24 23:10:03'); INSERT INTO `sys_job_log` VALUES (21865, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:655毫秒', '0', '', '2022-03-24 23:15:30'); INSERT INTO `sys_job_log` VALUES (21866, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:372毫秒', '0', '', '2022-03-24 23:20:00'); INSERT INTO `sys_job_log` VALUES (21867, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:729毫秒', '0', '', '2022-03-24 23:20:00'); INSERT INTO `sys_job_log` VALUES (21868, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3058毫秒', '0', '', '2022-03-24 23:20:03'); INSERT INTO `sys_job_log` VALUES (21869, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1623毫秒', '0', '', '2022-03-24 23:30:01'); INSERT INTO `sys_job_log` VALUES (21870, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4869毫秒', '0', '', '2022-03-24 23:30:04'); INSERT INTO `sys_job_log` VALUES (21871, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:826毫秒', '0', '', '2022-03-24 23:40:00'); INSERT INTO `sys_job_log` VALUES (21872, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1141毫秒', '0', '', '2022-03-24 23:40:01'); INSERT INTO `sys_job_log` VALUES (21873, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3882毫秒', '0', '', '2022-03-24 23:40:03'); INSERT INTO `sys_job_log` VALUES (21874, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:734毫秒', '0', '', '2022-03-24 23:50:00'); INSERT INTO `sys_job_log` VALUES (21875, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3331毫秒', '0', '', '2022-03-24 23:50:03'); INSERT INTO `sys_job_log` VALUES (21876, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:504毫秒', '0', '', '2022-03-25 00:00:00'); INSERT INTO `sys_job_log` VALUES (21877, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:826毫秒', '0', '', '2022-03-25 00:00:00'); INSERT INTO `sys_job_log` VALUES (21878, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5679毫秒', '0', '', '2022-03-25 00:00:05'); INSERT INTO `sys_job_log` VALUES (21879, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:815毫秒', '0', '', '2022-03-25 00:00:10'); INSERT INTO `sys_job_log` VALUES (21880, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:519022毫秒', '0', '', '2022-03-25 00:08:39'); INSERT INTO `sys_job_log` VALUES (21881, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:678毫秒', '0', '', '2022-03-25 00:10:00'); INSERT INTO `sys_job_log` VALUES (21882, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3318毫秒', '0', '', '2022-03-25 00:10:03'); INSERT INTO `sys_job_log` VALUES (21883, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:652毫秒', '0', '', '2022-03-25 00:15:30'); INSERT INTO `sys_job_log` VALUES (21884, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-03-25 00:20:00'); INSERT INTO `sys_job_log` VALUES (21885, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:819毫秒', '0', '', '2022-03-25 00:20:00'); INSERT INTO `sys_job_log` VALUES (21886, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2403毫秒', '0', '', '2022-03-25 00:20:02'); INSERT INTO `sys_job_log` VALUES (21887, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:656毫秒', '0', '', '2022-03-25 00:30:00'); INSERT INTO `sys_job_log` VALUES (21888, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2662毫秒', '0', '', '2022-03-25 00:30:02'); INSERT INTO `sys_job_log` VALUES (21889, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:436毫秒', '0', '', '2022-03-25 00:40:00'); INSERT INTO `sys_job_log` VALUES (21890, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:879毫秒', '0', '', '2022-03-25 00:40:00'); INSERT INTO `sys_job_log` VALUES (21891, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5180毫秒', '0', '', '2022-03-25 00:40:05'); INSERT INTO `sys_job_log` VALUES (21892, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:765毫秒', '0', '', '2022-03-25 00:50:00'); INSERT INTO `sys_job_log` VALUES (21893, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3706毫秒', '0', '', '2022-03-25 00:50:03'); INSERT INTO `sys_job_log` VALUES (21894, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:661毫秒', '0', '', '2022-03-25 01:00:00'); INSERT INTO `sys_job_log` VALUES (21895, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1135毫秒', '0', '', '2022-03-25 01:00:01'); INSERT INTO `sys_job_log` VALUES (21896, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4256毫秒', '0', '', '2022-03-25 01:00:04'); INSERT INTO `sys_job_log` VALUES (21897, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:734毫秒', '0', '', '2022-03-25 01:10:00'); INSERT INTO `sys_job_log` VALUES (21898, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3678毫秒', '0', '', '2022-03-25 01:10:03'); INSERT INTO `sys_job_log` VALUES (21899, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:723毫秒', '0', '', '2022-03-25 01:15:30'); INSERT INTO `sys_job_log` VALUES (21900, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1148毫秒', '0', '', '2022-03-25 01:20:01'); INSERT INTO `sys_job_log` VALUES (21901, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1683毫秒', '0', '', '2022-03-25 01:20:01'); INSERT INTO `sys_job_log` VALUES (21902, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4393毫秒', '0', '', '2022-03-25 01:20:04'); INSERT INTO `sys_job_log` VALUES (21903, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:699毫秒', '0', '', '2022-03-25 01:30:00'); INSERT INTO `sys_job_log` VALUES (21904, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5992毫秒', '0', '', '2022-03-25 01:30:06'); INSERT INTO `sys_job_log` VALUES (21905, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1028毫秒', '0', '', '2022-03-25 11:15:31'); INSERT INTO `sys_job_log` VALUES (21906, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:629毫秒', '0', '', '2022-03-25 11:20:00'); INSERT INTO `sys_job_log` VALUES (21907, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1181毫秒', '0', '', '2022-03-25 11:20:01'); INSERT INTO `sys_job_log` VALUES (21908, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3905毫秒', '0', '', '2022-03-25 11:20:03'); INSERT INTO `sys_job_log` VALUES (21909, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:713毫秒', '0', '', '2022-03-25 11:30:00'); INSERT INTO `sys_job_log` VALUES (21910, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2355毫秒', '0', '', '2022-03-25 11:30:02'); INSERT INTO `sys_job_log` VALUES (21911, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:336毫秒', '0', '', '2022-03-25 11:40:00'); INSERT INTO `sys_job_log` VALUES (21912, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-03-25 11:40:00'); INSERT INTO `sys_job_log` VALUES (21913, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4961毫秒', '0', '', '2022-03-25 11:40:04'); INSERT INTO `sys_job_log` VALUES (21914, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:664毫秒', '0', '', '2022-03-25 11:50:00'); INSERT INTO `sys_job_log` VALUES (21915, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3035毫秒', '0', '', '2022-03-25 11:50:03'); INSERT INTO `sys_job_log` VALUES (21916, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:735毫秒', '0', '', '2022-03-25 12:00:00'); INSERT INTO `sys_job_log` VALUES (21917, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:960毫秒', '0', '', '2022-03-25 12:00:00'); INSERT INTO `sys_job_log` VALUES (21918, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4647毫秒', '0', '', '2022-03-25 12:00:04'); INSERT INTO `sys_job_log` VALUES (21919, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:472968毫秒', '0', '', '2022-03-25 12:07:53'); INSERT INTO `sys_job_log` VALUES (21920, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1600毫秒', '0', '', '2022-03-25 12:10:01'); INSERT INTO `sys_job_log` VALUES (21921, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4112毫秒', '0', '', '2022-03-25 12:10:04'); INSERT INTO `sys_job_log` VALUES (21922, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1487毫秒', '0', '', '2022-03-25 12:15:31'); INSERT INTO `sys_job_log` VALUES (21923, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1006毫秒', '0', '', '2022-03-25 12:20:01'); INSERT INTO `sys_job_log` VALUES (21924, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1310毫秒', '0', '', '2022-03-25 12:20:01'); INSERT INTO `sys_job_log` VALUES (21925, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6469毫秒', '0', '', '2022-03-25 12:20:06'); INSERT INTO `sys_job_log` VALUES (21926, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1189毫秒', '0', '', '2022-03-25 12:30:01'); INSERT INTO `sys_job_log` VALUES (21927, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4545毫秒', '0', '', '2022-03-25 12:30:04'); INSERT INTO `sys_job_log` VALUES (21928, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:798毫秒', '0', '', '2022-03-25 12:40:00'); INSERT INTO `sys_job_log` VALUES (21929, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:897毫秒', '0', '', '2022-03-25 12:40:00'); INSERT INTO `sys_job_log` VALUES (21930, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4301毫秒', '0', '', '2022-03-25 12:40:04'); INSERT INTO `sys_job_log` VALUES (21931, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:710毫秒', '0', '', '2022-03-25 12:50:00'); INSERT INTO `sys_job_log` VALUES (21932, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3434毫秒', '0', '', '2022-03-25 12:50:03'); INSERT INTO `sys_job_log` VALUES (21933, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:401毫秒', '0', '', '2022-03-25 13:00:00'); INSERT INTO `sys_job_log` VALUES (21934, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-03-25 13:00:00'); INSERT INTO `sys_job_log` VALUES (21935, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4645毫秒', '0', '', '2022-03-25 13:00:04'); INSERT INTO `sys_job_log` VALUES (21936, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:527毫秒', '0', '', '2022-03-25 13:10:00'); INSERT INTO `sys_job_log` VALUES (21937, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4158毫秒', '0', '', '2022-03-25 13:10:04'); INSERT INTO `sys_job_log` VALUES (21938, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:583毫秒', '0', '', '2022-03-25 13:15:30'); INSERT INTO `sys_job_log` VALUES (21939, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:722毫秒', '0', '', '2022-03-25 13:20:00'); INSERT INTO `sys_job_log` VALUES (21940, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:754毫秒', '0', '', '2022-03-25 13:20:00'); INSERT INTO `sys_job_log` VALUES (21941, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5535毫秒', '0', '', '2022-03-25 13:20:05'); INSERT INTO `sys_job_log` VALUES (21942, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:524毫秒', '0', '', '2022-03-25 13:30:00'); INSERT INTO `sys_job_log` VALUES (21943, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3012毫秒', '0', '', '2022-03-25 13:30:03'); INSERT INTO `sys_job_log` VALUES (21944, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:407毫秒', '0', '', '2022-03-25 13:40:00'); INSERT INTO `sys_job_log` VALUES (21945, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:693毫秒', '0', '', '2022-03-25 13:40:00'); INSERT INTO `sys_job_log` VALUES (21946, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3068毫秒', '0', '', '2022-03-25 13:40:03'); INSERT INTO `sys_job_log` VALUES (21947, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:615毫秒', '0', '', '2022-03-25 13:50:00'); INSERT INTO `sys_job_log` VALUES (21948, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3451毫秒', '0', '', '2022-03-25 13:50:03'); INSERT INTO `sys_job_log` VALUES (21949, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1723毫秒', '0', '', '2022-03-25 14:00:01'); INSERT INTO `sys_job_log` VALUES (21950, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-25 14:00:02'); INSERT INTO `sys_job_log` VALUES (21951, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5393毫秒', '0', '', '2022-03-25 14:00:05'); INSERT INTO `sys_job_log` VALUES (21952, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:874毫秒', '0', '', '2022-03-25 14:10:00'); INSERT INTO `sys_job_log` VALUES (21953, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3296毫秒', '0', '', '2022-03-25 14:10:03'); INSERT INTO `sys_job_log` VALUES (21954, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:551毫秒', '0', '', '2022-03-25 14:15:30'); INSERT INTO `sys_job_log` VALUES (21955, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:449毫秒', '0', '', '2022-03-25 14:20:00'); INSERT INTO `sys_job_log` VALUES (21956, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:709毫秒', '0', '', '2022-03-25 14:20:00'); INSERT INTO `sys_job_log` VALUES (21957, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3007毫秒', '0', '', '2022-03-25 14:20:03'); INSERT INTO `sys_job_log` VALUES (21958, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-03-25 14:30:00'); INSERT INTO `sys_job_log` VALUES (21959, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3097毫秒', '0', '', '2022-03-25 14:30:03'); INSERT INTO `sys_job_log` VALUES (21960, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:761毫秒', '0', '', '2022-03-25 15:02:23'); INSERT INTO `sys_job_log` VALUES (21961, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:195毫秒', '0', '', '2022-03-25 15:02:23'); INSERT INTO `sys_job_log` VALUES (21962, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:963毫秒', '0', '', '2022-03-25 15:02:23'); INSERT INTO `sys_job_log` VALUES (21963, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:536毫秒', '0', '', '2022-03-25 15:02:23'); INSERT INTO `sys_job_log` VALUES (21964, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-03-25 15:02:24'); INSERT INTO `sys_job_log` VALUES (21965, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2401毫秒', '0', '', '2022-03-25 15:02:24'); INSERT INTO `sys_job_log` VALUES (21966, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6113毫秒', '0', '', '2022-03-25 15:02:30'); INSERT INTO `sys_job_log` VALUES (21967, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2754毫秒', '0', '', '2022-03-25 15:02:33'); INSERT INTO `sys_job_log` VALUES (21968, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:830毫秒', '0', '', '2022-03-25 15:10:00'); INSERT INTO `sys_job_log` VALUES (21969, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3695毫秒', '0', '', '2022-03-25 15:10:03'); INSERT INTO `sys_job_log` VALUES (21970, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:55019毫秒', '0', '', '2022-03-25 15:10:55'); INSERT INTO `sys_job_log` VALUES (21971, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:534686毫秒', '0', '', '2022-03-25 15:11:16'); INSERT INTO `sys_job_log` VALUES (21972, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:604毫秒', '0', '', '2022-03-25 15:15:30'); INSERT INTO `sys_job_log` VALUES (21973, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:425毫秒', '0', '', '2022-03-25 15:20:00'); INSERT INTO `sys_job_log` VALUES (21974, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:893毫秒', '0', '', '2022-03-25 15:20:00'); INSERT INTO `sys_job_log` VALUES (21975, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2180毫秒', '0', '', '2022-03-25 15:20:02'); INSERT INTO `sys_job_log` VALUES (21976, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:582毫秒', '0', '', '2022-03-25 15:30:00'); INSERT INTO `sys_job_log` VALUES (21977, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4032毫秒', '0', '', '2022-03-25 15:30:04'); INSERT INTO `sys_job_log` VALUES (21978, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:738毫秒', '0', '', '2022-03-25 15:40:00'); INSERT INTO `sys_job_log` VALUES (21979, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:818毫秒', '0', '', '2022-03-25 15:40:00'); INSERT INTO `sys_job_log` VALUES (21980, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5839毫秒', '0', '', '2022-03-25 15:40:05'); INSERT INTO `sys_job_log` VALUES (21981, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:686毫秒', '0', '', '2022-03-25 15:50:00'); INSERT INTO `sys_job_log` VALUES (21982, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3474毫秒', '0', '', '2022-03-25 15:50:03'); INSERT INTO `sys_job_log` VALUES (21983, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:356毫秒', '0', '', '2022-03-25 16:00:00'); INSERT INTO `sys_job_log` VALUES (21984, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:668毫秒', '0', '', '2022-03-25 16:00:00'); INSERT INTO `sys_job_log` VALUES (21985, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3876毫秒', '0', '', '2022-03-25 16:00:03'); INSERT INTO `sys_job_log` VALUES (21986, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:606毫秒', '0', '', '2022-03-25 16:10:00'); INSERT INTO `sys_job_log` VALUES (21987, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2515毫秒', '0', '', '2022-03-25 16:10:02'); INSERT INTO `sys_job_log` VALUES (21988, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:673毫秒', '0', '', '2022-03-25 16:15:30'); INSERT INTO `sys_job_log` VALUES (21989, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:619毫秒', '0', '', '2022-03-25 16:20:00'); INSERT INTO `sys_job_log` VALUES (21990, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:833毫秒', '0', '', '2022-03-25 16:20:00'); INSERT INTO `sys_job_log` VALUES (21991, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3700毫秒', '0', '', '2022-03-25 16:20:03'); INSERT INTO `sys_job_log` VALUES (21992, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:631毫秒', '0', '', '2022-03-25 16:30:00'); INSERT INTO `sys_job_log` VALUES (21993, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3098毫秒', '0', '', '2022-03-25 16:30:03'); INSERT INTO `sys_job_log` VALUES (21994, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:387毫秒', '0', '', '2022-03-25 16:40:00'); INSERT INTO `sys_job_log` VALUES (21995, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:786毫秒', '0', '', '2022-03-25 16:40:00'); INSERT INTO `sys_job_log` VALUES (21996, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2947毫秒', '0', '', '2022-03-25 16:40:02'); INSERT INTO `sys_job_log` VALUES (21997, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:739毫秒', '0', '', '2022-03-25 16:50:00'); INSERT INTO `sys_job_log` VALUES (21998, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3093毫秒', '0', '', '2022-03-25 16:50:03'); INSERT INTO `sys_job_log` VALUES (21999, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:747毫秒', '0', '', '2022-03-25 17:00:00'); INSERT INTO `sys_job_log` VALUES (22000, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:838毫秒', '0', '', '2022-03-25 17:00:00'); INSERT INTO `sys_job_log` VALUES (22001, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6290毫秒', '0', '', '2022-03-25 17:00:06'); INSERT INTO `sys_job_log` VALUES (22002, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-03-25 17:10:00'); INSERT INTO `sys_job_log` VALUES (22003, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5989毫秒', '0', '', '2022-03-25 17:10:05'); INSERT INTO `sys_job_log` VALUES (22004, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:639毫秒', '0', '', '2022-03-25 17:15:30'); INSERT INTO `sys_job_log` VALUES (22005, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:387毫秒', '0', '', '2022-03-25 17:20:00'); INSERT INTO `sys_job_log` VALUES (22006, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:755毫秒', '0', '', '2022-03-25 17:20:00'); INSERT INTO `sys_job_log` VALUES (22007, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4135毫秒', '0', '', '2022-03-25 17:20:04'); INSERT INTO `sys_job_log` VALUES (22008, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-03-25 17:30:00'); INSERT INTO `sys_job_log` VALUES (22009, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2470毫秒', '0', '', '2022-03-25 17:30:02'); INSERT INTO `sys_job_log` VALUES (22010, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:708毫秒', '0', '', '2022-03-25 17:40:00'); INSERT INTO `sys_job_log` VALUES (22011, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:879毫秒', '0', '', '2022-03-25 17:40:00'); INSERT INTO `sys_job_log` VALUES (22012, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4930毫秒', '0', '', '2022-03-25 17:40:04'); INSERT INTO `sys_job_log` VALUES (22013, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:720毫秒', '0', '', '2022-03-25 17:50:00'); INSERT INTO `sys_job_log` VALUES (22014, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4705毫秒', '0', '', '2022-03-25 17:50:04'); INSERT INTO `sys_job_log` VALUES (22015, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:431毫秒', '0', '', '2022-03-25 18:00:00'); INSERT INTO `sys_job_log` VALUES (22016, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:853毫秒', '0', '', '2022-03-25 18:00:00'); INSERT INTO `sys_job_log` VALUES (22017, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5259毫秒', '0', '', '2022-03-25 18:00:05'); INSERT INTO `sys_job_log` VALUES (22018, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:484450毫秒', '0', '', '2022-03-25 18:08:04'); INSERT INTO `sys_job_log` VALUES (22019, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:888毫秒', '0', '', '2022-03-25 18:10:00'); INSERT INTO `sys_job_log` VALUES (22020, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4649毫秒', '0', '', '2022-03-25 18:10:04'); INSERT INTO `sys_job_log` VALUES (22021, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:685毫秒', '0', '', '2022-03-25 18:15:30'); INSERT INTO `sys_job_log` VALUES (22022, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:761毫秒', '0', '', '2022-03-25 18:20:00'); INSERT INTO `sys_job_log` VALUES (22023, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:827毫秒', '0', '', '2022-03-25 18:20:00'); INSERT INTO `sys_job_log` VALUES (22024, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4326毫秒', '0', '', '2022-03-25 18:20:04'); INSERT INTO `sys_job_log` VALUES (22025, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:798毫秒', '0', '', '2022-03-25 18:30:00'); INSERT INTO `sys_job_log` VALUES (22026, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3692毫秒', '0', '', '2022-03-25 18:30:03'); INSERT INTO `sys_job_log` VALUES (22027, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:407毫秒', '0', '', '2022-03-25 18:40:00'); INSERT INTO `sys_job_log` VALUES (22028, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:771毫秒', '0', '', '2022-03-25 18:40:00'); INSERT INTO `sys_job_log` VALUES (22029, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3537毫秒', '0', '', '2022-03-25 18:40:03'); INSERT INTO `sys_job_log` VALUES (22030, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:913毫秒', '0', '', '2022-03-25 18:50:00'); INSERT INTO `sys_job_log` VALUES (22031, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3714毫秒', '0', '', '2022-03-25 18:50:03'); INSERT INTO `sys_job_log` VALUES (22032, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:716毫秒', '0', '', '2022-03-25 19:00:00'); INSERT INTO `sys_job_log` VALUES (22033, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-03-25 19:00:00'); INSERT INTO `sys_job_log` VALUES (22034, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6823毫秒', '0', '', '2022-03-25 19:00:06'); INSERT INTO `sys_job_log` VALUES (22035, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:768毫秒', '0', '', '2022-03-25 19:10:00'); INSERT INTO `sys_job_log` VALUES (22036, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2579毫秒', '0', '', '2022-03-25 19:10:02'); INSERT INTO `sys_job_log` VALUES (22037, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:612毫秒', '0', '', '2022-03-25 19:15:30'); INSERT INTO `sys_job_log` VALUES (22038, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:461毫秒', '0', '', '2022-03-25 19:20:00'); INSERT INTO `sys_job_log` VALUES (22039, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:784毫秒', '0', '', '2022-03-25 19:20:00'); INSERT INTO `sys_job_log` VALUES (22040, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3976毫秒', '0', '', '2022-03-25 19:20:03'); INSERT INTO `sys_job_log` VALUES (22041, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:714毫秒', '0', '', '2022-03-25 19:30:00'); INSERT INTO `sys_job_log` VALUES (22042, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4315毫秒', '0', '', '2022-03-25 19:30:04'); INSERT INTO `sys_job_log` VALUES (22043, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-03-25 19:40:00'); INSERT INTO `sys_job_log` VALUES (22044, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:715毫秒', '0', '', '2022-03-25 19:40:00'); INSERT INTO `sys_job_log` VALUES (22045, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3462毫秒', '0', '', '2022-03-25 19:40:03'); INSERT INTO `sys_job_log` VALUES (22046, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:677毫秒', '0', '', '2022-03-25 19:50:00'); INSERT INTO `sys_job_log` VALUES (22047, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4474毫秒', '0', '', '2022-03-25 19:50:04'); INSERT INTO `sys_job_log` VALUES (22048, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:555毫秒', '0', '', '2022-03-25 20:00:00'); INSERT INTO `sys_job_log` VALUES (22049, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:881毫秒', '0', '', '2022-03-25 20:00:00'); INSERT INTO `sys_job_log` VALUES (22050, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4256毫秒', '0', '', '2022-03-25 20:00:04'); INSERT INTO `sys_job_log` VALUES (22051, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:639毫秒', '0', '', '2022-03-25 20:10:00'); INSERT INTO `sys_job_log` VALUES (22052, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4794毫秒', '0', '', '2022-03-25 20:10:04'); INSERT INTO `sys_job_log` VALUES (22053, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:664毫秒', '0', '', '2022-03-25 20:15:30'); INSERT INTO `sys_job_log` VALUES (22054, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:712毫秒', '0', '', '2022-03-25 20:20:00'); INSERT INTO `sys_job_log` VALUES (22055, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:769毫秒', '0', '', '2022-03-25 20:20:00'); INSERT INTO `sys_job_log` VALUES (22056, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2811毫秒', '0', '', '2022-03-25 20:20:02'); INSERT INTO `sys_job_log` VALUES (22057, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:919毫秒', '0', '', '2022-03-25 20:30:00'); INSERT INTO `sys_job_log` VALUES (22058, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3674毫秒', '0', '', '2022-03-25 20:30:03'); INSERT INTO `sys_job_log` VALUES (22059, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:900054毫秒', '0', '', '2022-03-25 20:35:00'); INSERT INTO `sys_job_log` VALUES (22060, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:354毫秒', '0', '', '2022-03-25 20:40:00'); INSERT INTO `sys_job_log` VALUES (22061, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:678毫秒', '0', '', '2022-03-25 20:40:00'); INSERT INTO `sys_job_log` VALUES (22062, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3550毫秒', '0', '', '2022-03-25 20:40:03'); INSERT INTO `sys_job_log` VALUES (22063, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:882毫秒', '0', '', '2022-03-25 20:50:00'); INSERT INTO `sys_job_log` VALUES (22064, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4309毫秒', '0', '', '2022-03-25 20:50:04'); INSERT INTO `sys_job_log` VALUES (22065, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:750毫秒', '0', '', '2022-03-25 21:00:00'); INSERT INTO `sys_job_log` VALUES (22066, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:862毫秒', '0', '', '2022-03-25 21:00:00'); INSERT INTO `sys_job_log` VALUES (22067, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2659毫秒', '0', '', '2022-03-25 21:00:02'); INSERT INTO `sys_job_log` VALUES (22068, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:519550毫秒', '0', '', '2022-03-25 21:08:39'); INSERT INTO `sys_job_log` VALUES (22069, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:648毫秒', '0', '', '2022-03-25 21:10:00'); INSERT INTO `sys_job_log` VALUES (22070, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:707毫秒', '0', '', '2022-03-25 21:10:00'); INSERT INTO `sys_job_log` VALUES (22071, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3349毫秒', '0', '', '2022-03-25 21:10:03'); INSERT INTO `sys_job_log` VALUES (22072, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:793毫秒', '0', '', '2022-03-25 21:15:30'); INSERT INTO `sys_job_log` VALUES (22073, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:446毫秒', '0', '', '2022-03-25 21:20:00'); INSERT INTO `sys_job_log` VALUES (22074, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:871毫秒', '0', '', '2022-03-25 21:20:00'); INSERT INTO `sys_job_log` VALUES (22075, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6363毫秒', '0', '', '2022-03-25 21:20:06'); INSERT INTO `sys_job_log` VALUES (22076, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-03-25 21:30:00'); INSERT INTO `sys_job_log` VALUES (22077, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3205毫秒', '0', '', '2022-03-25 21:30:03'); INSERT INTO `sys_job_log` VALUES (22078, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:745毫秒', '0', '', '2022-03-25 21:40:00'); INSERT INTO `sys_job_log` VALUES (22079, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:821毫秒', '0', '', '2022-03-25 21:40:00'); INSERT INTO `sys_job_log` VALUES (22080, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3631毫秒', '0', '', '2022-03-25 21:40:03'); INSERT INTO `sys_job_log` VALUES (22081, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:629毫秒', '0', '', '2022-03-25 21:50:00'); INSERT INTO `sys_job_log` VALUES (22082, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4784毫秒', '0', '', '2022-03-25 21:50:04'); INSERT INTO `sys_job_log` VALUES (22083, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:147毫秒', '0', '', '2022-03-25 22:00:00'); INSERT INTO `sys_job_log` VALUES (22084, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:415毫秒', '0', '', '2022-03-25 22:00:00'); INSERT INTO `sys_job_log` VALUES (22085, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1076毫秒', '0', '', '2022-03-25 22:00:01'); INSERT INTO `sys_job_log` VALUES (22086, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4981毫秒', '0', '', '2022-03-25 22:00:04'); INSERT INTO `sys_job_log` VALUES (22087, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:712毫秒', '0', '', '2022-03-25 22:10:00'); INSERT INTO `sys_job_log` VALUES (22088, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4581毫秒', '0', '', '2022-03-25 22:10:04'); INSERT INTO `sys_job_log` VALUES (22089, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:623毫秒', '0', '', '2022-03-25 22:15:30'); INSERT INTO `sys_job_log` VALUES (22090, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:690毫秒', '0', '', '2022-03-25 22:20:00'); INSERT INTO `sys_job_log` VALUES (22091, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:784毫秒', '0', '', '2022-03-25 22:20:00'); INSERT INTO `sys_job_log` VALUES (22092, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4692毫秒', '0', '', '2022-03-25 22:20:04'); INSERT INTO `sys_job_log` VALUES (22093, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1040毫秒', '0', '', '2022-03-25 22:30:01'); INSERT INTO `sys_job_log` VALUES (22094, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7218毫秒', '0', '', '2022-03-25 22:30:07'); INSERT INTO `sys_job_log` VALUES (22095, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:416毫秒', '0', '', '2022-03-25 22:40:00'); INSERT INTO `sys_job_log` VALUES (22096, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:765毫秒', '0', '', '2022-03-25 22:40:00'); INSERT INTO `sys_job_log` VALUES (22097, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3118毫秒', '0', '', '2022-03-25 22:40:03'); INSERT INTO `sys_job_log` VALUES (22098, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:588毫秒', '0', '', '2022-03-25 22:50:00'); INSERT INTO `sys_job_log` VALUES (22099, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2056毫秒', '0', '', '2022-03-25 22:50:02'); INSERT INTO `sys_job_log` VALUES (22100, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:352毫秒', '0', '', '2022-03-25 23:00:00'); INSERT INTO `sys_job_log` VALUES (22101, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-03-25 23:00:00'); INSERT INTO `sys_job_log` VALUES (22102, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3592毫秒', '0', '', '2022-03-25 23:00:03'); INSERT INTO `sys_job_log` VALUES (22103, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:677毫秒', '0', '', '2022-03-25 23:10:00'); INSERT INTO `sys_job_log` VALUES (22104, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3211毫秒', '0', '', '2022-03-25 23:10:03'); INSERT INTO `sys_job_log` VALUES (22105, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3936毫秒', '0', '', '2022-03-25 23:15:34'); INSERT INTO `sys_job_log` VALUES (22106, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2037毫秒', '0', '', '2022-03-25 23:20:02'); INSERT INTO `sys_job_log` VALUES (22107, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2050毫秒', '0', '', '2022-03-25 23:20:02'); INSERT INTO `sys_job_log` VALUES (22108, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6587毫秒', '0', '', '2022-03-25 23:20:06'); INSERT INTO `sys_job_log` VALUES (22109, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:817毫秒', '0', '', '2022-03-25 23:30:00'); INSERT INTO `sys_job_log` VALUES (22110, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3731毫秒', '0', '', '2022-03-25 23:30:03'); INSERT INTO `sys_job_log` VALUES (22111, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:769毫秒', '0', '', '2022-03-25 23:40:00'); INSERT INTO `sys_job_log` VALUES (22112, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:932毫秒', '0', '', '2022-03-25 23:40:00'); INSERT INTO `sys_job_log` VALUES (22113, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2820毫秒', '0', '', '2022-03-25 23:40:02'); INSERT INTO `sys_job_log` VALUES (22114, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:781毫秒', '0', '', '2022-03-25 23:50:00'); INSERT INTO `sys_job_log` VALUES (22115, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9067毫秒', '0', '', '2022-03-25 23:50:09'); INSERT INTO `sys_job_log` VALUES (22116, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:430毫秒', '0', '', '2022-03-26 00:00:00'); INSERT INTO `sys_job_log` VALUES (22117, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:770毫秒', '0', '', '2022-03-26 00:00:00'); INSERT INTO `sys_job_log` VALUES (22118, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3438毫秒', '0', '', '2022-03-26 00:00:03'); INSERT INTO `sys_job_log` VALUES (22119, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:1251毫秒', '0', '', '2022-03-26 00:00:11'); INSERT INTO `sys_job_log` VALUES (22120, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:659毫秒', '0', '', '2022-03-26 00:10:00'); INSERT INTO `sys_job_log` VALUES (22121, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5229毫秒', '0', '', '2022-03-26 00:10:05'); INSERT INTO `sys_job_log` VALUES (22122, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:684725毫秒', '0', '', '2022-03-26 00:11:24'); INSERT INTO `sys_job_log` VALUES (22123, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:655毫秒', '0', '', '2022-03-26 00:15:30'); INSERT INTO `sys_job_log` VALUES (22124, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:672毫秒', '0', '', '2022-03-26 00:20:00'); INSERT INTO `sys_job_log` VALUES (22125, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:857毫秒', '0', '', '2022-03-26 00:20:00'); INSERT INTO `sys_job_log` VALUES (22126, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3739毫秒', '0', '', '2022-03-26 00:20:03'); INSERT INTO `sys_job_log` VALUES (22127, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2625毫秒', '0', '', '2022-03-26 20:10:02'); INSERT INTO `sys_job_log` VALUES (22128, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6720毫秒', '0', '', '2022-03-26 20:10:06'); INSERT INTO `sys_job_log` VALUES (22129, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2069毫秒', '0', '', '2022-03-26 20:15:32'); INSERT INTO `sys_job_log` VALUES (22130, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:518毫秒', '0', '', '2022-03-26 20:20:00'); INSERT INTO `sys_job_log` VALUES (22131, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:840毫秒', '0', '', '2022-03-26 20:20:00'); INSERT INTO `sys_job_log` VALUES (22132, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9629毫秒', '0', '', '2022-03-26 20:20:09'); INSERT INTO `sys_job_log` VALUES (22133, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-03-26 20:30:00'); INSERT INTO `sys_job_log` VALUES (22134, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3865毫秒', '0', '', '2022-03-26 20:30:03'); INSERT INTO `sys_job_log` VALUES (22135, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:900045毫秒', '0', '', '2022-03-26 20:35:00'); INSERT INTO `sys_job_log` VALUES (22136, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:404毫秒', '0', '', '2022-03-26 20:40:00'); INSERT INTO `sys_job_log` VALUES (22137, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:729毫秒', '0', '', '2022-03-26 20:40:00'); INSERT INTO `sys_job_log` VALUES (22138, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3696毫秒', '0', '', '2022-03-26 20:40:03'); INSERT INTO `sys_job_log` VALUES (22139, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:677毫秒', '0', '', '2022-03-26 20:50:00'); INSERT INTO `sys_job_log` VALUES (22140, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2261毫秒', '0', '', '2022-03-26 20:50:02'); INSERT INTO `sys_job_log` VALUES (22141, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:913毫秒', '0', '', '2022-03-26 21:00:00'); INSERT INTO `sys_job_log` VALUES (22142, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1130毫秒', '0', '', '2022-03-26 21:00:01'); INSERT INTO `sys_job_log` VALUES (22143, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3097毫秒', '0', '', '2022-03-26 21:00:03'); INSERT INTO `sys_job_log` VALUES (22144, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:509641毫秒', '0', '', '2022-03-26 21:08:29'); INSERT INTO `sys_job_log` VALUES (22145, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-03-26 21:10:00'); INSERT INTO `sys_job_log` VALUES (22146, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3650毫秒', '0', '', '2022-03-26 21:10:03'); INSERT INTO `sys_job_log` VALUES (22147, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:54130毫秒', '0', '', '2022-03-26 21:10:54'); INSERT INTO `sys_job_log` VALUES (22148, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:587毫秒', '0', '', '2022-03-26 21:15:30'); INSERT INTO `sys_job_log` VALUES (22149, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:372毫秒', '0', '', '2022-03-26 21:20:00'); INSERT INTO `sys_job_log` VALUES (22150, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:800毫秒', '0', '', '2022-03-26 21:20:00'); INSERT INTO `sys_job_log` VALUES (22151, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4228毫秒', '0', '', '2022-03-26 21:20:04'); INSERT INTO `sys_job_log` VALUES (22152, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:512毫秒', '0', '', '2022-03-26 21:30:00'); INSERT INTO `sys_job_log` VALUES (22153, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3982毫秒', '0', '', '2022-03-26 21:30:03'); INSERT INTO `sys_job_log` VALUES (22154, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:656毫秒', '0', '', '2022-03-26 21:40:00'); INSERT INTO `sys_job_log` VALUES (22155, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:673毫秒', '0', '', '2022-03-26 21:40:00'); INSERT INTO `sys_job_log` VALUES (22156, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5918毫秒', '0', '', '2022-03-26 21:40:05'); INSERT INTO `sys_job_log` VALUES (22157, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:711毫秒', '0', '', '2022-03-26 21:50:00'); INSERT INTO `sys_job_log` VALUES (22158, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3839毫秒', '0', '', '2022-03-26 21:50:03'); INSERT INTO `sys_job_log` VALUES (22159, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:114毫秒', '0', '', '2022-03-26 22:00:00'); INSERT INTO `sys_job_log` VALUES (22160, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:404毫秒', '0', '', '2022-03-26 22:00:00'); INSERT INTO `sys_job_log` VALUES (22161, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:700毫秒', '0', '', '2022-03-26 22:00:00'); INSERT INTO `sys_job_log` VALUES (22162, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7069毫秒', '0', '', '2022-03-26 22:00:07'); INSERT INTO `sys_job_log` VALUES (22163, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:713毫秒', '0', '', '2022-03-26 22:10:00'); INSERT INTO `sys_job_log` VALUES (22164, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4530毫秒', '0', '', '2022-03-26 22:10:04'); INSERT INTO `sys_job_log` VALUES (22165, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:568毫秒', '0', '', '2022-03-26 22:15:30'); INSERT INTO `sys_job_log` VALUES (22166, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:577毫秒', '0', '', '2022-03-26 22:20:00'); INSERT INTO `sys_job_log` VALUES (22167, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:763毫秒', '0', '', '2022-03-26 22:20:00'); INSERT INTO `sys_job_log` VALUES (22168, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5475毫秒', '0', '', '2022-03-26 22:20:05'); INSERT INTO `sys_job_log` VALUES (22169, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-03-26 22:30:00'); INSERT INTO `sys_job_log` VALUES (22170, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2873毫秒', '0', '', '2022-03-26 22:30:02'); INSERT INTO `sys_job_log` VALUES (22171, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:395毫秒', '0', '', '2022-03-26 22:40:00'); INSERT INTO `sys_job_log` VALUES (22172, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:618毫秒', '0', '', '2022-03-26 22:40:00'); INSERT INTO `sys_job_log` VALUES (22173, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3402毫秒', '0', '', '2022-03-26 22:40:03'); INSERT INTO `sys_job_log` VALUES (22174, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-03-26 22:50:00'); INSERT INTO `sys_job_log` VALUES (22175, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2718毫秒', '0', '', '2022-03-26 22:50:02'); INSERT INTO `sys_job_log` VALUES (22176, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-03-26 23:00:00'); INSERT INTO `sys_job_log` VALUES (22177, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:756毫秒', '0', '', '2022-03-26 23:00:00'); INSERT INTO `sys_job_log` VALUES (22178, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2446毫秒', '0', '', '2022-03-26 23:00:02'); INSERT INTO `sys_job_log` VALUES (22179, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-03-26 23:10:00'); INSERT INTO `sys_job_log` VALUES (22180, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2782毫秒', '0', '', '2022-03-26 23:10:02'); INSERT INTO `sys_job_log` VALUES (22181, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:708毫秒', '0', '', '2022-03-26 23:15:30'); INSERT INTO `sys_job_log` VALUES (22182, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:356毫秒', '0', '', '2022-03-26 23:20:00'); INSERT INTO `sys_job_log` VALUES (22183, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:666毫秒', '0', '', '2022-03-26 23:20:00'); INSERT INTO `sys_job_log` VALUES (22184, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5379毫秒', '0', '', '2022-03-26 23:20:05'); INSERT INTO `sys_job_log` VALUES (22185, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:625毫秒', '0', '', '2022-03-26 23:30:00'); INSERT INTO `sys_job_log` VALUES (22186, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2887毫秒', '0', '', '2022-03-26 23:30:02'); INSERT INTO `sys_job_log` VALUES (22187, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:562毫秒', '0', '', '2022-03-26 23:40:00'); INSERT INTO `sys_job_log` VALUES (22188, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:718毫秒', '0', '', '2022-03-26 23:40:00'); INSERT INTO `sys_job_log` VALUES (22189, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3728毫秒', '0', '', '2022-03-26 23:40:03'); INSERT INTO `sys_job_log` VALUES (22190, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1064毫秒', '0', '', '2022-03-26 23:50:01'); INSERT INTO `sys_job_log` VALUES (22191, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2003毫秒', '0', '', '2022-03-26 23:50:02'); INSERT INTO `sys_job_log` VALUES (22192, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:494毫秒', '0', '', '2022-03-27 00:00:00'); INSERT INTO `sys_job_log` VALUES (22193, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:838毫秒', '0', '', '2022-03-27 00:00:00'); INSERT INTO `sys_job_log` VALUES (22194, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4011毫秒', '0', '', '2022-03-27 00:00:04'); INSERT INTO `sys_job_log` VALUES (22195, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:690毫秒', '0', '', '2022-03-27 00:00:10'); INSERT INTO `sys_job_log` VALUES (22196, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:537858毫秒', '0', '', '2022-03-27 00:08:57'); INSERT INTO `sys_job_log` VALUES (22197, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-03-27 00:10:00'); INSERT INTO `sys_job_log` VALUES (22198, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4305毫秒', '0', '', '2022-03-27 00:10:04'); INSERT INTO `sys_job_log` VALUES (22199, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:635毫秒', '0', '', '2022-03-27 00:15:30'); INSERT INTO `sys_job_log` VALUES (22200, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:586毫秒', '0', '', '2022-03-27 00:20:00'); INSERT INTO `sys_job_log` VALUES (22201, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:826毫秒', '0', '', '2022-03-27 00:20:00'); INSERT INTO `sys_job_log` VALUES (22202, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2740毫秒', '0', '', '2022-03-27 00:20:02'); INSERT INTO `sys_job_log` VALUES (22203, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-03-27 00:30:00'); INSERT INTO `sys_job_log` VALUES (22204, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3206毫秒', '0', '', '2022-03-27 00:30:03'); INSERT INTO `sys_job_log` VALUES (22205, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:326毫秒', '0', '', '2022-03-27 00:40:00'); INSERT INTO `sys_job_log` VALUES (22206, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:592毫秒', '0', '', '2022-03-27 00:40:00'); INSERT INTO `sys_job_log` VALUES (22207, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2136毫秒', '0', '', '2022-03-27 00:40:02'); INSERT INTO `sys_job_log` VALUES (22208, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:646毫秒', '0', '', '2022-03-27 00:50:00'); INSERT INTO `sys_job_log` VALUES (22209, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3186毫秒', '0', '', '2022-03-27 00:50:03'); INSERT INTO `sys_job_log` VALUES (22210, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:544毫秒', '0', '', '2022-03-27 01:00:00'); INSERT INTO `sys_job_log` VALUES (22211, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:738毫秒', '0', '', '2022-03-27 01:00:00'); INSERT INTO `sys_job_log` VALUES (22212, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3169毫秒', '0', '', '2022-03-27 01:00:03'); INSERT INTO `sys_job_log` VALUES (22213, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:702毫秒', '0', '', '2022-03-27 01:10:00'); INSERT INTO `sys_job_log` VALUES (22214, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4111毫秒', '0', '', '2022-03-27 01:10:04'); INSERT INTO `sys_job_log` VALUES (22215, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1031毫秒', '0', '', '2022-03-27 01:15:31'); INSERT INTO `sys_job_log` VALUES (22216, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:308毫秒', '0', '', '2022-03-27 01:20:00'); INSERT INTO `sys_job_log` VALUES (22217, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:522毫秒', '0', '', '2022-03-27 01:20:00'); INSERT INTO `sys_job_log` VALUES (22218, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2068毫秒', '0', '', '2022-03-27 01:20:02'); INSERT INTO `sys_job_log` VALUES (22219, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-03-27 01:30:00'); INSERT INTO `sys_job_log` VALUES (22220, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3214毫秒', '0', '', '2022-03-27 01:30:03'); INSERT INTO `sys_job_log` VALUES (22221, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:646毫秒', '0', '', '2022-03-27 01:40:00'); INSERT INTO `sys_job_log` VALUES (22222, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1681毫秒', '0', '', '2022-03-27 01:40:01'); INSERT INTO `sys_job_log` VALUES (22223, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2490毫秒', '0', '', '2022-03-27 01:40:02'); INSERT INTO `sys_job_log` VALUES (22224, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:612毫秒', '0', '', '2022-03-27 01:50:00'); INSERT INTO `sys_job_log` VALUES (22225, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3578毫秒', '0', '', '2022-03-27 01:50:03'); INSERT INTO `sys_job_log` VALUES (22226, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:344毫秒', '0', '', '2022-03-27 02:00:00'); INSERT INTO `sys_job_log` VALUES (22227, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:688毫秒', '0', '', '2022-03-27 02:00:00'); INSERT INTO `sys_job_log` VALUES (22228, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2757毫秒', '0', '', '2022-03-27 02:00:02'); INSERT INTO `sys_job_log` VALUES (22229, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:702毫秒', '0', '', '2022-03-27 02:10:00'); INSERT INTO `sys_job_log` VALUES (22230, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5959毫秒', '0', '', '2022-03-27 02:10:05'); INSERT INTO `sys_job_log` VALUES (22231, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:572毫秒', '0', '', '2022-03-27 02:15:30'); INSERT INTO `sys_job_log` VALUES (22232, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:615毫秒', '0', '', '2022-03-27 02:20:00'); INSERT INTO `sys_job_log` VALUES (22233, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:669毫秒', '0', '', '2022-03-27 02:20:00'); INSERT INTO `sys_job_log` VALUES (22234, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2450毫秒', '0', '', '2022-03-27 02:20:02'); INSERT INTO `sys_job_log` VALUES (22235, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-03-27 02:30:00'); INSERT INTO `sys_job_log` VALUES (22236, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2695毫秒', '0', '', '2022-03-27 02:30:02'); INSERT INTO `sys_job_log` VALUES (22237, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2704毫秒', '0', '', '2022-03-27 15:40:02'); INSERT INTO `sys_job_log` VALUES (22238, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2721毫秒', '0', '', '2022-03-27 15:40:02'); INSERT INTO `sys_job_log` VALUES (22239, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6382毫秒', '0', '', '2022-03-27 15:40:06'); INSERT INTO `sys_job_log` VALUES (22240, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:842毫秒', '0', '', '2022-03-27 15:50:00'); INSERT INTO `sys_job_log` VALUES (22241, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2694毫秒', '0', '', '2022-03-27 15:50:02'); INSERT INTO `sys_job_log` VALUES (22242, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:453毫秒', '0', '', '2022-03-27 16:00:00'); INSERT INTO `sys_job_log` VALUES (22243, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:657毫秒', '0', '', '2022-03-27 16:00:00'); INSERT INTO `sys_job_log` VALUES (22244, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2961毫秒', '0', '', '2022-03-27 16:00:02'); INSERT INTO `sys_job_log` VALUES (22245, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1568毫秒', '0', '', '2022-03-27 16:10:01'); INSERT INTO `sys_job_log` VALUES (22246, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5964毫秒', '0', '', '2022-03-27 16:10:05'); INSERT INTO `sys_job_log` VALUES (22247, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1932毫秒', '0', '', '2022-03-27 16:15:31'); INSERT INTO `sys_job_log` VALUES (22248, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:707毫秒', '0', '', '2022-03-27 16:20:00'); INSERT INTO `sys_job_log` VALUES (22249, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:865毫秒', '0', '', '2022-03-27 16:20:00'); INSERT INTO `sys_job_log` VALUES (22250, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3475毫秒', '0', '', '2022-03-27 16:20:03'); INSERT INTO `sys_job_log` VALUES (22251, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-03-27 16:30:00'); INSERT INTO `sys_job_log` VALUES (22252, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3342毫秒', '0', '', '2022-03-27 16:30:03'); INSERT INTO `sys_job_log` VALUES (22253, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:346毫秒', '0', '', '2022-03-27 16:40:00'); INSERT INTO `sys_job_log` VALUES (22254, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:572毫秒', '0', '', '2022-03-27 16:40:00'); INSERT INTO `sys_job_log` VALUES (22255, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4020毫秒', '0', '', '2022-03-27 16:40:04'); INSERT INTO `sys_job_log` VALUES (22256, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:674毫秒', '0', '', '2022-03-27 16:50:00'); INSERT INTO `sys_job_log` VALUES (22257, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2864毫秒', '0', '', '2022-03-27 16:50:02'); INSERT INTO `sys_job_log` VALUES (22258, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:311毫秒', '0', '', '2022-03-27 17:00:00'); INSERT INTO `sys_job_log` VALUES (22259, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-03-27 17:00:00'); INSERT INTO `sys_job_log` VALUES (22260, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3593毫秒', '0', '', '2022-03-27 17:00:03'); INSERT INTO `sys_job_log` VALUES (22261, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:589毫秒', '0', '', '2022-03-27 17:10:00'); INSERT INTO `sys_job_log` VALUES (22262, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2082毫秒', '0', '', '2022-03-27 17:10:02'); INSERT INTO `sys_job_log` VALUES (22263, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:591毫秒', '0', '', '2022-03-27 17:15:30'); INSERT INTO `sys_job_log` VALUES (22264, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:356毫秒', '0', '', '2022-03-27 17:20:00'); INSERT INTO `sys_job_log` VALUES (22265, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-03-27 17:20:00'); INSERT INTO `sys_job_log` VALUES (22266, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2969毫秒', '0', '', '2022-03-27 17:20:02'); INSERT INTO `sys_job_log` VALUES (22267, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-03-27 17:30:00'); INSERT INTO `sys_job_log` VALUES (22268, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4982毫秒', '0', '', '2022-03-27 17:30:05'); INSERT INTO `sys_job_log` VALUES (22269, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:687毫秒', '0', '', '2022-03-27 17:40:00'); INSERT INTO `sys_job_log` VALUES (22270, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:865毫秒', '0', '', '2022-03-27 17:40:00'); INSERT INTO `sys_job_log` VALUES (22271, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3059毫秒', '0', '', '2022-03-27 17:40:03'); INSERT INTO `sys_job_log` VALUES (22272, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-03-27 17:50:00'); INSERT INTO `sys_job_log` VALUES (22273, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7389毫秒', '0', '', '2022-03-27 17:50:07'); INSERT INTO `sys_job_log` VALUES (22274, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:493毫秒', '0', '', '2022-03-27 18:00:00'); INSERT INTO `sys_job_log` VALUES (22275, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:938毫秒', '0', '', '2022-03-27 18:00:00'); INSERT INTO `sys_job_log` VALUES (22276, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3039毫秒', '0', '', '2022-03-27 18:00:03'); INSERT INTO `sys_job_log` VALUES (22277, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2044毫秒', '0', '', '2022-03-27 18:10:02'); INSERT INTO `sys_job_log` VALUES (22278, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8056毫秒', '0', '', '2022-03-27 18:10:08'); INSERT INTO `sys_job_log` VALUES (22279, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:673147毫秒', '0', '', '2022-03-27 18:11:13'); INSERT INTO `sys_job_log` VALUES (22280, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:542毫秒', '0', '', '2022-03-27 18:15:30'); INSERT INTO `sys_job_log` VALUES (22281, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-03-27 18:20:00'); INSERT INTO `sys_job_log` VALUES (22282, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:930毫秒', '0', '', '2022-03-27 18:20:00'); INSERT INTO `sys_job_log` VALUES (22283, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5522毫秒', '0', '', '2022-03-27 18:20:05'); INSERT INTO `sys_job_log` VALUES (22284, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2036毫秒', '0', '', '2022-03-27 18:30:02'); INSERT INTO `sys_job_log` VALUES (22285, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7653毫秒', '0', '', '2022-03-27 18:30:07'); INSERT INTO `sys_job_log` VALUES (22286, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:364毫秒', '0', '', '2022-03-27 18:40:00'); INSERT INTO `sys_job_log` VALUES (22287, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:786毫秒', '0', '', '2022-03-27 18:40:00'); INSERT INTO `sys_job_log` VALUES (22288, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7626毫秒', '0', '', '2022-03-27 18:40:07'); INSERT INTO `sys_job_log` VALUES (22289, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:861毫秒', '0', '', '2022-03-27 18:50:00'); INSERT INTO `sys_job_log` VALUES (22290, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4849毫秒', '0', '', '2022-03-27 18:50:04'); INSERT INTO `sys_job_log` VALUES (22291, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:785毫秒', '0', '', '2022-03-27 19:00:00'); INSERT INTO `sys_job_log` VALUES (22292, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:815毫秒', '0', '', '2022-03-27 19:00:00'); INSERT INTO `sys_job_log` VALUES (22293, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4382毫秒', '0', '', '2022-03-27 19:00:04'); INSERT INTO `sys_job_log` VALUES (22294, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:945毫秒', '0', '', '2022-03-27 19:10:00'); INSERT INTO `sys_job_log` VALUES (22295, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4739毫秒', '0', '', '2022-03-27 19:10:04'); INSERT INTO `sys_job_log` VALUES (22296, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:594毫秒', '0', '', '2022-03-27 19:15:30'); INSERT INTO `sys_job_log` VALUES (22297, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2040毫秒', '0', '', '2022-03-27 19:20:02'); INSERT INTO `sys_job_log` VALUES (22298, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2029毫秒', '0', '', '2022-03-27 19:20:02'); INSERT INTO `sys_job_log` VALUES (22299, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9045毫秒', '0', '', '2022-03-27 19:20:09'); INSERT INTO `sys_job_log` VALUES (22300, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2046毫秒', '0', '', '2022-03-27 19:30:02'); INSERT INTO `sys_job_log` VALUES (22301, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7245毫秒', '0', '', '2022-03-27 19:30:07'); INSERT INTO `sys_job_log` VALUES (22302, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2042毫秒', '0', '', '2022-03-27 19:40:02'); INSERT INTO `sys_job_log` VALUES (22303, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2033毫秒', '0', '', '2022-03-27 19:40:02'); INSERT INTO `sys_job_log` VALUES (22304, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9039毫秒', '0', '', '2022-03-27 19:40:09'); INSERT INTO `sys_job_log` VALUES (22305, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:869毫秒', '0', '', '2022-03-27 19:50:00'); INSERT INTO `sys_job_log` VALUES (22306, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3843毫秒', '0', '', '2022-03-27 19:50:03'); INSERT INTO `sys_job_log` VALUES (22307, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:346毫秒', '0', '', '2022-03-27 20:00:00'); INSERT INTO `sys_job_log` VALUES (22308, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2024毫秒', '0', '', '2022-03-27 20:00:02'); INSERT INTO `sys_job_log` VALUES (22309, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12831毫秒', '0', '', '2022-03-27 20:00:12'); INSERT INTO `sys_job_log` VALUES (22310, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2020毫秒', '0', '', '2022-03-27 20:10:02'); INSERT INTO `sys_job_log` VALUES (22311, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4305毫秒', '0', '', '2022-03-27 20:10:04'); INSERT INTO `sys_job_log` VALUES (22312, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:8738毫秒', '0', '', '2022-03-27 20:15:38'); INSERT INTO `sys_job_log` VALUES (22313, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-03-27 20:20:02'); INSERT INTO `sys_job_log` VALUES (22314, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2029毫秒', '0', '', '2022-03-27 20:20:02'); INSERT INTO `sys_job_log` VALUES (22315, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6913毫秒', '0', '', '2022-03-27 20:20:06'); INSERT INTO `sys_job_log` VALUES (22316, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2040毫秒', '0', '', '2022-03-27 20:30:02'); INSERT INTO `sys_job_log` VALUES (22317, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7362毫秒', '0', '', '2022-03-27 20:30:07'); INSERT INTO `sys_job_log` VALUES (22318, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:900056毫秒', '0', '', '2022-03-27 20:35:00'); INSERT INTO `sys_job_log` VALUES (22319, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:517毫秒', '0', '', '2022-03-27 20:40:00'); INSERT INTO `sys_job_log` VALUES (22320, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:945毫秒', '0', '', '2022-03-27 20:40:00'); INSERT INTO `sys_job_log` VALUES (22321, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9496毫秒', '0', '', '2022-03-27 20:40:09'); INSERT INTO `sys_job_log` VALUES (22322, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2048毫秒', '0', '', '2022-03-27 20:50:02'); INSERT INTO `sys_job_log` VALUES (22323, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8488毫秒', '0', '', '2022-03-27 20:50:08'); INSERT INTO `sys_job_log` VALUES (22324, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2036毫秒', '0', '', '2022-03-27 21:00:02'); INSERT INTO `sys_job_log` VALUES (22325, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2030毫秒', '0', '', '2022-03-27 21:00:02'); INSERT INTO `sys_job_log` VALUES (22326, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9252毫秒', '0', '', '2022-03-27 21:00:09'); INSERT INTO `sys_job_log` VALUES (22327, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1867毫秒', '0', '', '2022-03-27 21:10:01'); INSERT INTO `sys_job_log` VALUES (22328, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3411毫秒', '0', '', '2022-03-27 21:10:03'); INSERT INTO `sys_job_log` VALUES (22329, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:94939毫秒', '0', '', '2022-03-27 21:11:34'); INSERT INTO `sys_job_log` VALUES (22330, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10029毫秒', '0', '', '2022-03-27 21:15:40'); INSERT INTO `sys_job_log` VALUES (22331, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1046818毫秒', '0', '', '2022-03-27 21:17:26'); INSERT INTO `sys_job_log` VALUES (22332, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2032毫秒', '0', '', '2022-03-27 21:20:02'); INSERT INTO `sys_job_log` VALUES (22333, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2024毫秒', '0', '', '2022-03-27 21:20:02'); INSERT INTO `sys_job_log` VALUES (22334, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:13544毫秒', '0', '', '2022-03-27 21:20:13'); INSERT INTO `sys_job_log` VALUES (22335, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:804毫秒', '0', '', '2022-03-27 21:30:00'); INSERT INTO `sys_job_log` VALUES (22336, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3354毫秒', '0', '', '2022-03-27 21:30:03'); INSERT INTO `sys_job_log` VALUES (22337, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:777毫秒', '0', '', '2022-03-27 21:40:00'); INSERT INTO `sys_job_log` VALUES (22338, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:869毫秒', '0', '', '2022-03-27 21:40:00'); INSERT INTO `sys_job_log` VALUES (22339, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3528毫秒', '0', '', '2022-03-27 21:40:03'); INSERT INTO `sys_job_log` VALUES (22340, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:827毫秒', '0', '', '2022-03-27 21:50:00'); INSERT INTO `sys_job_log` VALUES (22341, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5862毫秒', '0', '', '2022-03-27 21:50:05'); INSERT INTO `sys_job_log` VALUES (22342, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:369毫秒', '0', '', '2022-03-27 22:00:00'); INSERT INTO `sys_job_log` VALUES (22343, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:539毫秒', '0', '', '2022-03-27 22:00:00'); INSERT INTO `sys_job_log` VALUES (22344, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1418毫秒', '0', '', '2022-03-27 22:00:01'); INSERT INTO `sys_job_log` VALUES (22345, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3996毫秒', '0', '', '2022-03-27 22:00:04'); INSERT INTO `sys_job_log` VALUES (22346, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:791毫秒', '0', '', '2022-03-27 22:10:00'); INSERT INTO `sys_job_log` VALUES (22347, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2876毫秒', '0', '', '2022-03-27 22:10:02'); INSERT INTO `sys_job_log` VALUES (22348, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:587毫秒', '0', '', '2022-03-27 22:15:30'); INSERT INTO `sys_job_log` VALUES (22349, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:809毫秒', '0', '', '2022-03-27 22:20:00'); INSERT INTO `sys_job_log` VALUES (22350, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:879毫秒', '0', '', '2022-03-27 22:20:00'); INSERT INTO `sys_job_log` VALUES (22351, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2898毫秒', '0', '', '2022-03-27 22:20:02'); INSERT INTO `sys_job_log` VALUES (22352, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:863毫秒', '0', '', '2022-03-27 22:30:00'); INSERT INTO `sys_job_log` VALUES (22353, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3752毫秒', '0', '', '2022-03-27 22:30:03'); INSERT INTO `sys_job_log` VALUES (22354, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:368毫秒', '0', '', '2022-03-27 22:40:00'); INSERT INTO `sys_job_log` VALUES (22355, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:842毫秒', '0', '', '2022-03-27 22:40:00'); INSERT INTO `sys_job_log` VALUES (22356, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4129毫秒', '0', '', '2022-03-27 22:40:04'); INSERT INTO `sys_job_log` VALUES (22357, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:779毫秒', '0', '', '2022-03-27 22:50:00'); INSERT INTO `sys_job_log` VALUES (22358, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2993毫秒', '0', '', '2022-03-27 22:50:03'); INSERT INTO `sys_job_log` VALUES (22359, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-03-27 23:00:00'); INSERT INTO `sys_job_log` VALUES (22360, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:669毫秒', '0', '', '2022-03-27 23:00:00'); INSERT INTO `sys_job_log` VALUES (22361, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4065毫秒', '0', '', '2022-03-27 23:00:04'); INSERT INTO `sys_job_log` VALUES (22362, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-03-27 23:10:00'); INSERT INTO `sys_job_log` VALUES (22363, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3794毫秒', '0', '', '2022-03-27 23:10:03'); INSERT INTO `sys_job_log` VALUES (22364, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:551毫秒', '0', '', '2022-03-27 23:15:30'); INSERT INTO `sys_job_log` VALUES (22365, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:373毫秒', '0', '', '2022-03-27 23:20:00'); INSERT INTO `sys_job_log` VALUES (22366, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:682毫秒', '0', '', '2022-03-27 23:20:00'); INSERT INTO `sys_job_log` VALUES (22367, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9406毫秒', '0', '', '2022-03-27 23:20:09'); INSERT INTO `sys_job_log` VALUES (22368, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:771毫秒', '0', '', '2022-03-27 23:30:00'); INSERT INTO `sys_job_log` VALUES (22369, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3978毫秒', '0', '', '2022-03-27 23:30:03'); INSERT INTO `sys_job_log` VALUES (22370, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3289毫秒', '0', '', '2022-03-28 13:00:03'); INSERT INTO `sys_job_log` VALUES (22371, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3301毫秒', '0', '', '2022-03-28 13:00:03'); INSERT INTO `sys_job_log` VALUES (22372, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6549毫秒', '0', '', '2022-03-28 13:00:06'); INSERT INTO `sys_job_log` VALUES (22373, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1605毫秒', '0', '', '2022-03-28 13:10:01'); INSERT INTO `sys_job_log` VALUES (22374, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5326毫秒', '0', '', '2022-03-28 13:10:05'); INSERT INTO `sys_job_log` VALUES (22375, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2126毫秒', '0', '', '2022-03-28 13:15:32'); INSERT INTO `sys_job_log` VALUES (22376, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:368毫秒', '0', '', '2022-03-28 13:20:00'); INSERT INTO `sys_job_log` VALUES (22377, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:609毫秒', '0', '', '2022-03-28 13:20:00'); INSERT INTO `sys_job_log` VALUES (22378, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5786毫秒', '0', '', '2022-03-28 13:20:05'); INSERT INTO `sys_job_log` VALUES (22379, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-03-28 13:30:00'); INSERT INTO `sys_job_log` VALUES (22380, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3049毫秒', '0', '', '2022-03-28 13:30:03'); INSERT INTO `sys_job_log` VALUES (22381, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-03-28 13:40:00'); INSERT INTO `sys_job_log` VALUES (22382, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:674毫秒', '0', '', '2022-03-28 13:40:00'); INSERT INTO `sys_job_log` VALUES (22383, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3471毫秒', '0', '', '2022-03-28 13:40:03'); INSERT INTO `sys_job_log` VALUES (22384, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:675毫秒', '0', '', '2022-03-28 13:50:00'); INSERT INTO `sys_job_log` VALUES (22385, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4542毫秒', '0', '', '2022-03-28 13:50:04'); INSERT INTO `sys_job_log` VALUES (22386, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:449毫秒', '0', '', '2022-03-28 14:00:00'); INSERT INTO `sys_job_log` VALUES (22387, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:692毫秒', '0', '', '2022-03-28 14:00:00'); INSERT INTO `sys_job_log` VALUES (22388, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3934毫秒', '0', '', '2022-03-28 14:00:03'); INSERT INTO `sys_job_log` VALUES (22389, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:640毫秒', '0', '', '2022-03-28 14:10:00'); INSERT INTO `sys_job_log` VALUES (22390, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3106毫秒', '0', '', '2022-03-28 14:10:03'); INSERT INTO `sys_job_log` VALUES (22391, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:665毫秒', '0', '', '2022-03-28 14:15:30'); INSERT INTO `sys_job_log` VALUES (22392, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:816毫秒', '0', '', '2022-03-28 14:20:00'); INSERT INTO `sys_job_log` VALUES (22393, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-28 14:20:02'); INSERT INTO `sys_job_log` VALUES (22394, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6191毫秒', '0', '', '2022-03-28 14:20:06'); INSERT INTO `sys_job_log` VALUES (22395, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:822毫秒', '0', '', '2022-03-28 14:30:00'); INSERT INTO `sys_job_log` VALUES (22396, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3381毫秒', '0', '', '2022-03-28 14:30:03'); INSERT INTO `sys_job_log` VALUES (22397, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:476毫秒', '0', '', '2022-03-28 14:40:00'); INSERT INTO `sys_job_log` VALUES (22398, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:756毫秒', '0', '', '2022-03-28 14:40:00'); INSERT INTO `sys_job_log` VALUES (22399, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2495毫秒', '0', '', '2022-03-28 14:40:02'); INSERT INTO `sys_job_log` VALUES (22400, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:704毫秒', '0', '', '2022-03-28 14:50:00'); INSERT INTO `sys_job_log` VALUES (22401, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4402毫秒', '0', '', '2022-03-28 14:50:04'); INSERT INTO `sys_job_log` VALUES (22402, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-03-28 15:00:00'); INSERT INTO `sys_job_log` VALUES (22403, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-03-28 15:00:02'); INSERT INTO `sys_job_log` VALUES (22404, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3649毫秒', '0', '', '2022-03-28 15:00:03'); INSERT INTO `sys_job_log` VALUES (22405, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:492029毫秒', '0', '', '2022-03-28 15:08:12'); INSERT INTO `sys_job_log` VALUES (22406, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:829毫秒', '0', '', '2022-03-28 15:10:00'); INSERT INTO `sys_job_log` VALUES (22407, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3379毫秒', '0', '', '2022-03-28 15:10:03'); INSERT INTO `sys_job_log` VALUES (22408, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:56275毫秒', '0', '', '2022-03-28 15:10:56'); INSERT INTO `sys_job_log` VALUES (22409, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:587毫秒', '0', '', '2022-03-28 15:15:30'); INSERT INTO `sys_job_log` VALUES (22410, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-03-28 15:20:00'); INSERT INTO `sys_job_log` VALUES (22411, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-28 15:20:02'); INSERT INTO `sys_job_log` VALUES (22412, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3916毫秒', '0', '', '2022-03-28 15:20:03'); INSERT INTO `sys_job_log` VALUES (22413, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:546毫秒', '0', '', '2022-03-28 15:30:00'); INSERT INTO `sys_job_log` VALUES (22414, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4921毫秒', '0', '', '2022-03-28 15:30:04'); INSERT INTO `sys_job_log` VALUES (22415, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:590毫秒', '0', '', '2022-03-28 15:40:00'); INSERT INTO `sys_job_log` VALUES (22416, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-03-28 15:40:02'); INSERT INTO `sys_job_log` VALUES (22417, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2942毫秒', '0', '', '2022-03-28 15:40:02'); INSERT INTO `sys_job_log` VALUES (22418, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:798毫秒', '0', '', '2022-03-28 15:50:00'); INSERT INTO `sys_job_log` VALUES (22419, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5131毫秒', '0', '', '2022-03-28 15:50:05'); INSERT INTO `sys_job_log` VALUES (22420, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:568毫秒', '0', '', '2022-03-28 16:00:00'); INSERT INTO `sys_job_log` VALUES (22421, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-03-28 16:00:02'); INSERT INTO `sys_job_log` VALUES (22422, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4567毫秒', '0', '', '2022-03-28 16:00:04'); INSERT INTO `sys_job_log` VALUES (22423, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:702毫秒', '0', '', '2022-03-28 16:10:00'); INSERT INTO `sys_job_log` VALUES (22424, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4402毫秒', '0', '', '2022-03-28 16:10:04'); INSERT INTO `sys_job_log` VALUES (22425, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:657毫秒', '0', '', '2022-03-28 16:15:30'); INSERT INTO `sys_job_log` VALUES (22426, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:740毫秒', '0', '', '2022-03-28 16:20:00'); INSERT INTO `sys_job_log` VALUES (22427, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2017毫秒', '0', '', '2022-03-28 16:20:02'); INSERT INTO `sys_job_log` VALUES (22428, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3963毫秒', '0', '', '2022-03-28 16:20:03'); INSERT INTO `sys_job_log` VALUES (22429, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-03-28 16:30:00'); INSERT INTO `sys_job_log` VALUES (22430, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4470毫秒', '0', '', '2022-03-28 16:30:04'); INSERT INTO `sys_job_log` VALUES (22431, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-03-28 16:40:00'); INSERT INTO `sys_job_log` VALUES (22432, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2016毫秒', '0', '', '2022-03-28 16:40:02'); INSERT INTO `sys_job_log` VALUES (22433, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5320毫秒', '0', '', '2022-03-28 16:40:05'); INSERT INTO `sys_job_log` VALUES (22434, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:741毫秒', '0', '', '2022-03-28 16:50:00'); INSERT INTO `sys_job_log` VALUES (22435, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5141毫秒', '0', '', '2022-03-28 16:50:05'); INSERT INTO `sys_job_log` VALUES (22436, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-03-28 17:00:00'); INSERT INTO `sys_job_log` VALUES (22437, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2012毫秒', '0', '', '2022-03-28 17:00:02'); INSERT INTO `sys_job_log` VALUES (22438, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2463毫秒', '0', '', '2022-03-28 17:00:02'); INSERT INTO `sys_job_log` VALUES (22439, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:642毫秒', '0', '', '2022-03-28 17:10:00'); INSERT INTO `sys_job_log` VALUES (22440, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3192毫秒', '0', '', '2022-03-28 17:10:03'); INSERT INTO `sys_job_log` VALUES (22441, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:640毫秒', '0', '', '2022-03-28 17:15:30'); INSERT INTO `sys_job_log` VALUES (22442, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-03-28 17:20:00'); INSERT INTO `sys_job_log` VALUES (22443, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-28 17:20:02'); INSERT INTO `sys_job_log` VALUES (22444, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5934毫秒', '0', '', '2022-03-28 17:20:05'); INSERT INTO `sys_job_log` VALUES (22445, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:535毫秒', '0', '', '2022-03-28 17:30:00'); INSERT INTO `sys_job_log` VALUES (22446, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4189毫秒', '0', '', '2022-03-28 17:30:04'); INSERT INTO `sys_job_log` VALUES (22447, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:639毫秒', '0', '', '2022-03-28 18:22:24'); INSERT INTO `sys_job_log` VALUES (22448, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:679毫秒', '0', '', '2022-03-28 18:22:24'); INSERT INTO `sys_job_log` VALUES (22449, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:514毫秒', '0', '', '2022-03-28 18:22:25'); INSERT INTO `sys_job_log` VALUES (22450, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:730毫秒', '0', '', '2022-03-28 18:22:25'); INSERT INTO `sys_job_log` VALUES (22451, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-28 18:22:26'); INSERT INTO `sys_job_log` VALUES (22452, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:524毫秒', '0', '', '2022-03-28 18:22:26'); INSERT INTO `sys_job_log` VALUES (22453, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2973毫秒', '0', '', '2022-03-28 18:22:27'); INSERT INTO `sys_job_log` VALUES (22454, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:553毫秒', '0', '', '2022-03-28 18:22:27'); INSERT INTO `sys_job_log` VALUES (22455, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-28 18:22:28'); INSERT INTO `sys_job_log` VALUES (22456, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2543毫秒', '0', '', '2022-03-28 18:22:29'); INSERT INTO `sys_job_log` VALUES (22457, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-28 18:22:30'); INSERT INTO `sys_job_log` VALUES (22458, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3149毫秒', '0', '', '2022-03-28 18:22:32'); INSERT INTO `sys_job_log` VALUES (22459, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2952毫秒', '0', '', '2022-03-28 18:22:35'); INSERT INTO `sys_job_log` VALUES (22460, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4309毫秒', '0', '', '2022-03-28 18:22:40'); INSERT INTO `sys_job_log` VALUES (22461, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:672毫秒', '0', '', '2022-03-28 18:30:00'); INSERT INTO `sys_job_log` VALUES (22462, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3659毫秒', '0', '', '2022-03-28 18:30:03'); INSERT INTO `sys_job_log` VALUES (22463, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:490917毫秒', '0', '', '2022-03-28 18:30:35'); INSERT INTO `sys_job_log` VALUES (22464, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-03-28 18:40:00'); INSERT INTO `sys_job_log` VALUES (22465, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-03-28 18:40:02'); INSERT INTO `sys_job_log` VALUES (22466, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4676毫秒', '0', '', '2022-03-28 18:40:04'); INSERT INTO `sys_job_log` VALUES (22467, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:771毫秒', '0', '', '2022-03-28 18:50:00'); INSERT INTO `sys_job_log` VALUES (22468, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2718毫秒', '0', '', '2022-03-28 18:50:02'); INSERT INTO `sys_job_log` VALUES (22469, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:708毫秒', '0', '', '2022-03-28 19:00:00'); INSERT INTO `sys_job_log` VALUES (22470, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2010毫秒', '0', '', '2022-03-28 19:00:02'); INSERT INTO `sys_job_log` VALUES (22471, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3883毫秒', '0', '', '2022-03-28 19:00:03'); INSERT INTO `sys_job_log` VALUES (22472, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-03-28 19:10:00'); INSERT INTO `sys_job_log` VALUES (22473, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3686毫秒', '0', '', '2022-03-28 19:10:03'); INSERT INTO `sys_job_log` VALUES (22474, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:557毫秒', '0', '', '2022-03-28 19:15:30'); INSERT INTO `sys_job_log` VALUES (22475, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:631毫秒', '0', '', '2022-03-28 19:20:00'); INSERT INTO `sys_job_log` VALUES (22476, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-03-28 19:20:02'); INSERT INTO `sys_job_log` VALUES (22477, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5061毫秒', '0', '', '2022-03-28 19:20:05'); INSERT INTO `sys_job_log` VALUES (22478, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:618毫秒', '0', '', '2022-03-28 19:30:00'); INSERT INTO `sys_job_log` VALUES (22479, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2653毫秒', '0', '', '2022-03-28 19:30:02'); INSERT INTO `sys_job_log` VALUES (22480, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:862毫秒', '0', '', '2022-03-28 19:40:00'); INSERT INTO `sys_job_log` VALUES (22481, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2009毫秒', '0', '', '2022-03-28 19:40:02'); INSERT INTO `sys_job_log` VALUES (22482, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3754毫秒', '0', '', '2022-03-28 19:40:03'); INSERT INTO `sys_job_log` VALUES (22483, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:520毫秒', '0', '', '2022-03-28 19:50:00'); INSERT INTO `sys_job_log` VALUES (22484, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3339毫秒', '0', '', '2022-03-28 19:50:03'); INSERT INTO `sys_job_log` VALUES (22485, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-03-28 20:00:00'); INSERT INTO `sys_job_log` VALUES (22486, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2020毫秒', '0', '', '2022-03-28 20:00:02'); INSERT INTO `sys_job_log` VALUES (22487, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4558毫秒', '0', '', '2022-03-28 20:00:04'); INSERT INTO `sys_job_log` VALUES (22488, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:680毫秒', '0', '', '2022-03-28 20:10:00'); INSERT INTO `sys_job_log` VALUES (22489, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3793毫秒', '0', '', '2022-03-28 20:10:03'); INSERT INTO `sys_job_log` VALUES (22490, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:629毫秒', '0', '', '2022-03-28 20:15:30'); INSERT INTO `sys_job_log` VALUES (22491, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:754毫秒', '0', '', '2022-03-28 20:20:00'); INSERT INTO `sys_job_log` VALUES (22492, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2032毫秒', '0', '', '2022-03-28 20:20:02'); INSERT INTO `sys_job_log` VALUES (22493, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3435毫秒', '0', '', '2022-03-28 20:20:03'); INSERT INTO `sys_job_log` VALUES (22494, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:752毫秒', '0', '', '2022-03-28 20:30:00'); INSERT INTO `sys_job_log` VALUES (22495, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2915毫秒', '0', '', '2022-03-28 20:30:02'); INSERT INTO `sys_job_log` VALUES (22496, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:900097毫秒', '0', '', '2022-03-28 20:35:00'); INSERT INTO `sys_job_log` VALUES (22497, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:851毫秒', '0', '', '2022-03-28 20:40:00'); INSERT INTO `sys_job_log` VALUES (22498, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2027毫秒', '0', '', '2022-03-28 20:40:02'); INSERT INTO `sys_job_log` VALUES (22499, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2979毫秒', '0', '', '2022-03-28 20:40:02'); INSERT INTO `sys_job_log` VALUES (22500, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:934毫秒', '0', '', '2022-03-28 20:50:00'); INSERT INTO `sys_job_log` VALUES (22501, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4262毫秒', '0', '', '2022-03-28 20:50:04'); INSERT INTO `sys_job_log` VALUES (22502, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:797毫秒', '0', '', '2022-03-28 21:00:00'); INSERT INTO `sys_job_log` VALUES (22503, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2032毫秒', '0', '', '2022-03-28 21:00:02'); INSERT INTO `sys_job_log` VALUES (22504, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3583毫秒', '0', '', '2022-03-28 21:00:03'); INSERT INTO `sys_job_log` VALUES (22505, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:536605毫秒', '0', '', '2022-03-28 21:08:56'); INSERT INTO `sys_job_log` VALUES (22506, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:775毫秒', '0', '', '2022-03-28 21:10:00'); INSERT INTO `sys_job_log` VALUES (22507, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:1088毫秒', '0', '', '2022-03-28 21:10:01'); INSERT INTO `sys_job_log` VALUES (22508, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3006毫秒', '0', '', '2022-03-28 21:10:03'); INSERT INTO `sys_job_log` VALUES (22509, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:681毫秒', '0', '', '2022-03-28 21:15:30'); INSERT INTO `sys_job_log` VALUES (22510, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:768毫秒', '0', '', '2022-03-28 21:20:00'); INSERT INTO `sys_job_log` VALUES (22511, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2032毫秒', '0', '', '2022-03-28 21:20:02'); INSERT INTO `sys_job_log` VALUES (22512, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4473毫秒', '0', '', '2022-03-28 21:20:04'); INSERT INTO `sys_job_log` VALUES (22513, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:715毫秒', '0', '', '2022-03-28 21:30:00'); INSERT INTO `sys_job_log` VALUES (22514, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3424毫秒', '0', '', '2022-03-28 21:30:03'); INSERT INTO `sys_job_log` VALUES (22515, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:906毫秒', '0', '', '2022-03-28 21:40:00'); INSERT INTO `sys_job_log` VALUES (22516, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2034毫秒', '0', '', '2022-03-28 21:40:02'); INSERT INTO `sys_job_log` VALUES (22517, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3296毫秒', '0', '', '2022-03-28 21:40:03'); INSERT INTO `sys_job_log` VALUES (22518, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2011毫秒', '0', '', '2022-03-28 21:50:02'); INSERT INTO `sys_job_log` VALUES (22519, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5769毫秒', '0', '', '2022-03-28 21:50:05'); INSERT INTO `sys_job_log` VALUES (22520, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:204毫秒', '0', '', '2022-03-28 22:00:00'); INSERT INTO `sys_job_log` VALUES (22521, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:477毫秒', '0', '', '2022-03-28 22:00:00'); INSERT INTO `sys_job_log` VALUES (22522, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1626毫秒', '0', '', '2022-03-28 22:00:01'); INSERT INTO `sys_job_log` VALUES (22523, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6004毫秒', '0', '', '2022-03-28 22:00:06'); INSERT INTO `sys_job_log` VALUES (22524, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:750毫秒', '0', '', '2022-03-28 22:10:00'); INSERT INTO `sys_job_log` VALUES (22525, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3392毫秒', '0', '', '2022-03-28 22:10:03'); INSERT INTO `sys_job_log` VALUES (22526, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:596毫秒', '0', '', '2022-03-28 22:15:30'); INSERT INTO `sys_job_log` VALUES (22527, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:354毫秒', '0', '', '2022-03-28 22:20:00'); INSERT INTO `sys_job_log` VALUES (22528, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:847毫秒', '0', '', '2022-03-28 22:20:00'); INSERT INTO `sys_job_log` VALUES (22529, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3266毫秒', '0', '', '2022-03-28 22:20:03'); INSERT INTO `sys_job_log` VALUES (22530, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:695毫秒', '0', '', '2022-03-28 22:30:00'); INSERT INTO `sys_job_log` VALUES (22531, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2837毫秒', '0', '', '2022-03-28 22:30:02'); INSERT INTO `sys_job_log` VALUES (22532, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:713毫秒', '0', '', '2022-03-28 22:40:00'); INSERT INTO `sys_job_log` VALUES (22533, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:705毫秒', '0', '', '2022-03-28 22:40:00'); INSERT INTO `sys_job_log` VALUES (22534, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2804毫秒', '0', '', '2022-03-28 22:40:02'); INSERT INTO `sys_job_log` VALUES (22535, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:836毫秒', '0', '', '2022-03-28 22:50:00'); INSERT INTO `sys_job_log` VALUES (22536, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3538毫秒', '0', '', '2022-03-28 22:50:03'); INSERT INTO `sys_job_log` VALUES (22537, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:336毫秒', '0', '', '2022-03-28 23:00:00'); INSERT INTO `sys_job_log` VALUES (22538, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:782毫秒', '0', '', '2022-03-28 23:00:00'); INSERT INTO `sys_job_log` VALUES (22539, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2916毫秒', '0', '', '2022-03-28 23:00:02'); INSERT INTO `sys_job_log` VALUES (22540, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:744毫秒', '0', '', '2022-03-28 23:10:00'); INSERT INTO `sys_job_log` VALUES (22541, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2646毫秒', '0', '', '2022-03-28 23:10:02'); INSERT INTO `sys_job_log` VALUES (22542, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1078毫秒', '0', '', '2022-03-28 23:15:31'); INSERT INTO `sys_job_log` VALUES (22543, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:799毫秒', '0', '', '2022-03-28 23:20:00'); INSERT INTO `sys_job_log` VALUES (22544, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:829毫秒', '0', '', '2022-03-28 23:20:00'); INSERT INTO `sys_job_log` VALUES (22545, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4627毫秒', '0', '', '2022-03-28 23:20:04'); INSERT INTO `sys_job_log` VALUES (22546, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:767毫秒', '0', '', '2022-03-28 23:30:00'); INSERT INTO `sys_job_log` VALUES (22547, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4850毫秒', '0', '', '2022-03-28 23:30:04'); INSERT INTO `sys_job_log` VALUES (22548, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:339毫秒', '0', '', '2022-03-28 23:40:00'); INSERT INTO `sys_job_log` VALUES (22549, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:853毫秒', '0', '', '2022-03-28 23:40:00'); INSERT INTO `sys_job_log` VALUES (22550, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3989毫秒', '0', '', '2022-03-28 23:40:04'); INSERT INTO `sys_job_log` VALUES (22551, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:582毫秒', '0', '', '2022-03-28 23:50:00'); INSERT INTO `sys_job_log` VALUES (22552, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3018毫秒', '0', '', '2022-03-28 23:50:03'); INSERT INTO `sys_job_log` VALUES (22553, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:652毫秒', '0', '', '2022-03-29 00:00:00'); INSERT INTO `sys_job_log` VALUES (22554, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:715毫秒', '0', '', '2022-03-29 00:00:00'); INSERT INTO `sys_job_log` VALUES (22555, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2526毫秒', '0', '', '2022-03-29 00:00:02'); INSERT INTO `sys_job_log` VALUES (22556, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:656毫秒', '0', '', '2022-03-29 00:00:10'); INSERT INTO `sys_job_log` VALUES (22557, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:477008毫秒', '0', '', '2022-03-29 00:07:57'); INSERT INTO `sys_job_log` VALUES (22558, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:718毫秒', '0', '', '2022-03-29 00:10:00'); INSERT INTO `sys_job_log` VALUES (22559, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5616毫秒', '0', '', '2022-03-29 00:10:05'); INSERT INTO `sys_job_log` VALUES (22560, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:632毫秒', '0', '', '2022-03-29 00:15:30'); INSERT INTO `sys_job_log` VALUES (22561, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:425毫秒', '0', '', '2022-03-29 00:20:00'); INSERT INTO `sys_job_log` VALUES (22562, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-03-29 00:20:00'); INSERT INTO `sys_job_log` VALUES (22563, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2136毫秒', '0', '', '2022-03-29 00:20:02'); INSERT INTO `sys_job_log` VALUES (22564, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:641毫秒', '0', '', '2022-03-29 00:30:00'); INSERT INTO `sys_job_log` VALUES (22565, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2190毫秒', '0', '', '2022-03-29 00:30:02'); INSERT INTO `sys_job_log` VALUES (22566, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:874毫秒', '0', '', '2022-03-29 00:40:00'); INSERT INTO `sys_job_log` VALUES (22567, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:884毫秒', '0', '', '2022-03-29 00:40:00'); INSERT INTO `sys_job_log` VALUES (22568, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2695毫秒', '0', '', '2022-03-29 00:40:02'); INSERT INTO `sys_job_log` VALUES (22569, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:535毫秒', '0', '', '2022-03-29 00:50:00'); INSERT INTO `sys_job_log` VALUES (22570, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3182毫秒', '0', '', '2022-03-29 00:50:03'); INSERT INTO `sys_job_log` VALUES (22571, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:333毫秒', '0', '', '2022-03-29 01:00:00'); INSERT INTO `sys_job_log` VALUES (22572, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:634毫秒', '0', '', '2022-03-29 01:00:00'); INSERT INTO `sys_job_log` VALUES (22573, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3726毫秒', '0', '', '2022-03-29 01:00:03'); INSERT INTO `sys_job_log` VALUES (22574, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:754毫秒', '0', '', '2022-03-29 01:10:00'); INSERT INTO `sys_job_log` VALUES (22575, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3418毫秒', '0', '', '2022-03-29 01:10:03'); INSERT INTO `sys_job_log` VALUES (22576, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:594毫秒', '0', '', '2022-03-29 01:15:30'); INSERT INTO `sys_job_log` VALUES (22577, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2870毫秒', '0', '', '2022-03-29 18:15:33'); INSERT INTO `sys_job_log` VALUES (22578, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:431毫秒', '0', '', '2022-03-29 18:20:00'); INSERT INTO `sys_job_log` VALUES (22579, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1072毫秒', '0', '', '2022-03-29 18:20:01'); INSERT INTO `sys_job_log` VALUES (22580, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4080毫秒', '0', '', '2022-03-29 18:20:04'); INSERT INTO `sys_job_log` VALUES (22581, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:679毫秒', '0', '', '2022-03-29 18:30:00'); INSERT INTO `sys_job_log` VALUES (22582, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5567毫秒', '0', '', '2022-03-29 18:30:05'); INSERT INTO `sys_job_log` VALUES (22583, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:309毫秒', '0', '', '2022-03-29 18:40:00'); INSERT INTO `sys_job_log` VALUES (22584, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:646毫秒', '0', '', '2022-03-29 18:40:00'); INSERT INTO `sys_job_log` VALUES (22585, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3411毫秒', '0', '', '2022-03-29 18:40:03'); INSERT INTO `sys_job_log` VALUES (22586, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:731毫秒', '0', '', '2022-03-29 18:50:00'); INSERT INTO `sys_job_log` VALUES (22587, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3485毫秒', '0', '', '2022-03-29 18:50:03'); INSERT INTO `sys_job_log` VALUES (22588, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:583毫秒', '0', '', '2022-03-29 19:00:00'); INSERT INTO `sys_job_log` VALUES (22589, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:749毫秒', '0', '', '2022-03-29 19:00:00'); INSERT INTO `sys_job_log` VALUES (22590, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3072毫秒', '0', '', '2022-03-29 19:00:03'); INSERT INTO `sys_job_log` VALUES (22591, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:674毫秒', '0', '', '2022-03-29 19:10:00'); INSERT INTO `sys_job_log` VALUES (22592, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2221毫秒', '0', '', '2022-03-29 19:10:02'); INSERT INTO `sys_job_log` VALUES (22593, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:664毫秒', '0', '', '2022-03-29 19:15:30'); INSERT INTO `sys_job_log` VALUES (22594, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:410毫秒', '0', '', '2022-03-29 19:20:00'); INSERT INTO `sys_job_log` VALUES (22595, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:676毫秒', '0', '', '2022-03-29 19:20:00'); INSERT INTO `sys_job_log` VALUES (22596, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3052毫秒', '0', '', '2022-03-29 19:20:03'); INSERT INTO `sys_job_log` VALUES (22597, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:692毫秒', '0', '', '2022-03-29 20:24:45'); INSERT INTO `sys_job_log` VALUES (22598, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:743毫秒', '0', '', '2022-03-29 20:24:45'); INSERT INTO `sys_job_log` VALUES (22599, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:729毫秒', '0', '', '2022-03-29 20:24:45'); INSERT INTO `sys_job_log` VALUES (22600, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:213毫秒', '0', '', '2022-03-29 20:24:46'); INSERT INTO `sys_job_log` VALUES (22601, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:186毫秒', '0', '', '2022-03-29 20:24:46'); INSERT INTO `sys_job_log` VALUES (22602, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:474毫秒', '0', '', '2022-03-29 20:24:46'); INSERT INTO `sys_job_log` VALUES (22603, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:448毫秒', '0', '', '2022-03-29 20:24:46'); INSERT INTO `sys_job_log` VALUES (22604, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:445毫秒', '0', '', '2022-03-29 20:24:47'); INSERT INTO `sys_job_log` VALUES (22605, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:456毫秒', '0', '', '2022-03-29 20:24:47'); INSERT INTO `sys_job_log` VALUES (22606, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:475毫秒', '0', '', '2022-03-29 20:24:48'); INSERT INTO `sys_job_log` VALUES (22607, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3302毫秒', '0', '', '2022-03-29 20:24:48'); INSERT INTO `sys_job_log` VALUES (22608, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3205毫秒', '0', '', '2022-03-29 20:24:51'); INSERT INTO `sys_job_log` VALUES (22609, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4567毫秒', '0', '', '2022-03-29 20:24:56'); INSERT INTO `sys_job_log` VALUES (22610, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2585毫秒', '0', '', '2022-03-29 20:24:58'); INSERT INTO `sys_job_log` VALUES (22611, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4033毫秒', '0', '', '2022-03-29 20:25:02'); INSERT INTO `sys_job_log` VALUES (22612, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3385毫秒', '0', '', '2022-03-29 20:25:06'); INSERT INTO `sys_job_log` VALUES (22613, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:539毫秒', '0', '', '2022-03-29 20:30:00'); INSERT INTO `sys_job_log` VALUES (22614, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2407毫秒', '0', '', '2022-03-29 20:30:02'); INSERT INTO `sys_job_log` VALUES (22615, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:900044毫秒', '0', '', '2022-03-29 20:39:45'); INSERT INTO `sys_job_log` VALUES (22616, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:298毫秒', '0', '', '2022-03-29 20:40:00'); INSERT INTO `sys_job_log` VALUES (22617, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:513毫秒', '0', '', '2022-03-29 20:40:00'); INSERT INTO `sys_job_log` VALUES (22618, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2897毫秒', '0', '', '2022-03-29 20:40:02'); INSERT INTO `sys_job_log` VALUES (22619, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:587毫秒', '0', '', '2022-03-29 20:50:00'); INSERT INTO `sys_job_log` VALUES (22620, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1963毫秒', '0', '', '2022-03-29 20:50:01'); INSERT INTO `sys_job_log` VALUES (22621, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-03-29 21:00:00'); INSERT INTO `sys_job_log` VALUES (22622, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:725毫秒', '0', '', '2022-03-29 21:00:00'); INSERT INTO `sys_job_log` VALUES (22623, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2879毫秒', '0', '', '2022-03-29 21:00:02'); INSERT INTO `sys_job_log` VALUES (22624, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:447毫秒', '0', '', '2022-03-29 21:24:50'); INSERT INTO `sys_job_log` VALUES (22625, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:603毫秒', '0', '', '2022-03-29 21:24:50'); INSERT INTO `sys_job_log` VALUES (22626, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:695毫秒', '0', '', '2022-03-29 21:24:50'); INSERT INTO `sys_job_log` VALUES (22627, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:618毫秒', '0', '', '2022-03-29 21:24:51'); INSERT INTO `sys_job_log` VALUES (22628, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3476毫秒', '0', '', '2022-03-29 21:24:53'); INSERT INTO `sys_job_log` VALUES (22629, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5335毫秒', '0', '', '2022-03-29 21:24:58'); INSERT INTO `sys_job_log` VALUES (22630, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1519091毫秒', '0', '', '2022-03-29 21:25:19'); INSERT INTO `sys_job_log` VALUES (22631, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:54683毫秒', '0', '', '2022-03-29 21:25:44'); INSERT INTO `sys_job_log` VALUES (22632, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:455毫秒', '0', '', '2022-03-29 21:30:00'); INSERT INTO `sys_job_log` VALUES (22633, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3756毫秒', '0', '', '2022-03-29 21:30:03'); INSERT INTO `sys_job_log` VALUES (22634, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:536毫秒', '0', '', '2022-03-29 21:40:00'); INSERT INTO `sys_job_log` VALUES (22635, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:862毫秒', '0', '', '2022-03-29 21:40:00'); INSERT INTO `sys_job_log` VALUES (22636, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3399毫秒', '0', '', '2022-03-29 21:40:03'); INSERT INTO `sys_job_log` VALUES (22637, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:563毫秒', '0', '', '2022-03-29 21:50:00'); INSERT INTO `sys_job_log` VALUES (22638, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6371毫秒', '0', '', '2022-03-29 21:50:06'); INSERT INTO `sys_job_log` VALUES (22639, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:94毫秒', '0', '', '2022-03-29 22:00:00'); INSERT INTO `sys_job_log` VALUES (22640, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:306毫秒', '0', '', '2022-03-29 22:00:00'); INSERT INTO `sys_job_log` VALUES (22641, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1142毫秒', '0', '', '2022-03-29 22:00:01'); INSERT INTO `sys_job_log` VALUES (22642, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6424毫秒', '0', '', '2022-03-29 22:00:06'); INSERT INTO `sys_job_log` VALUES (22643, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:764毫秒', '0', '', '2022-03-29 22:10:00'); INSERT INTO `sys_job_log` VALUES (22644, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3295毫秒', '0', '', '2022-03-29 22:10:03'); INSERT INTO `sys_job_log` VALUES (22645, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:822毫秒', '0', '', '2022-03-29 22:15:30'); INSERT INTO `sys_job_log` VALUES (22646, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:354毫秒', '0', '', '2022-03-29 22:20:00'); INSERT INTO `sys_job_log` VALUES (22647, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:658毫秒', '0', '', '2022-03-29 22:20:00'); INSERT INTO `sys_job_log` VALUES (22648, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6199毫秒', '0', '', '2022-03-29 22:20:06'); INSERT INTO `sys_job_log` VALUES (22649, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:601毫秒', '0', '', '2022-03-29 22:30:00'); INSERT INTO `sys_job_log` VALUES (22650, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3494毫秒', '0', '', '2022-03-29 22:30:03'); INSERT INTO `sys_job_log` VALUES (22651, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:318毫秒', '0', '', '2022-03-29 22:40:00'); INSERT INTO `sys_job_log` VALUES (22652, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:728毫秒', '0', '', '2022-03-29 22:40:00'); INSERT INTO `sys_job_log` VALUES (22653, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3446毫秒', '0', '', '2022-03-29 22:40:03'); INSERT INTO `sys_job_log` VALUES (22654, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1252毫秒', '0', '', '2022-03-30 21:00:01'); INSERT INTO `sys_job_log` VALUES (22655, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1387毫秒', '0', '', '2022-03-30 21:00:01'); INSERT INTO `sys_job_log` VALUES (22656, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4020毫秒', '0', '', '2022-03-30 21:00:04'); INSERT INTO `sys_job_log` VALUES (22657, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:506456毫秒', '0', '', '2022-03-30 21:08:26'); INSERT INTO `sys_job_log` VALUES (22658, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:655毫秒', '0', '', '2022-03-30 21:10:00'); INSERT INTO `sys_job_log` VALUES (22659, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2982毫秒', '0', '', '2022-03-30 21:10:03'); INSERT INTO `sys_job_log` VALUES (22660, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:54960毫秒', '0', '', '2022-03-30 21:10:55'); INSERT INTO `sys_job_log` VALUES (22661, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:689毫秒', '0', '', '2022-03-30 21:15:30'); INSERT INTO `sys_job_log` VALUES (22662, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:311毫秒', '0', '', '2022-03-30 21:20:00'); INSERT INTO `sys_job_log` VALUES (22663, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:597毫秒', '0', '', '2022-03-30 21:20:00'); INSERT INTO `sys_job_log` VALUES (22664, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4609毫秒', '0', '', '2022-03-30 21:20:04'); INSERT INTO `sys_job_log` VALUES (22665, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:539毫秒', '0', '', '2022-03-30 21:30:00'); INSERT INTO `sys_job_log` VALUES (22666, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2638毫秒', '0', '', '2022-03-30 21:30:02'); INSERT INTO `sys_job_log` VALUES (22667, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:630毫秒', '0', '', '2022-03-30 21:40:00'); INSERT INTO `sys_job_log` VALUES (22668, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-03-30 21:40:00'); INSERT INTO `sys_job_log` VALUES (22669, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3138毫秒', '0', '', '2022-03-30 21:40:03'); INSERT INTO `sys_job_log` VALUES (22670, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-03-30 21:50:00'); INSERT INTO `sys_job_log` VALUES (22671, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2881毫秒', '0', '', '2022-03-30 21:50:02'); INSERT INTO `sys_job_log` VALUES (22672, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:70毫秒', '0', '', '2022-03-30 22:00:00'); INSERT INTO `sys_job_log` VALUES (22673, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:312毫秒', '0', '', '2022-03-30 22:00:00'); INSERT INTO `sys_job_log` VALUES (22674, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:767毫秒', '0', '', '2022-03-30 22:00:00'); INSERT INTO `sys_job_log` VALUES (22675, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3342毫秒', '0', '', '2022-03-30 22:00:03'); INSERT INTO `sys_job_log` VALUES (22676, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:685毫秒', '0', '', '2022-03-30 22:10:00'); INSERT INTO `sys_job_log` VALUES (22677, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4226毫秒', '0', '', '2022-03-30 22:10:04'); INSERT INTO `sys_job_log` VALUES (22678, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:711毫秒', '0', '', '2022-03-30 22:15:30'); INSERT INTO `sys_job_log` VALUES (22679, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:609毫秒', '0', '', '2022-03-30 22:20:00'); INSERT INTO `sys_job_log` VALUES (22680, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-03-30 22:20:00'); INSERT INTO `sys_job_log` VALUES (22681, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2762毫秒', '0', '', '2022-03-30 22:20:02'); INSERT INTO `sys_job_log` VALUES (22682, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:654毫秒', '0', '', '2022-03-30 22:30:00'); INSERT INTO `sys_job_log` VALUES (22683, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3104毫秒', '0', '', '2022-03-30 22:30:03'); INSERT INTO `sys_job_log` VALUES (22684, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:362毫秒', '0', '', '2022-03-30 22:40:00'); INSERT INTO `sys_job_log` VALUES (22685, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:645毫秒', '0', '', '2022-03-30 22:40:00'); INSERT INTO `sys_job_log` VALUES (22686, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3031毫秒', '0', '', '2022-03-30 22:40:03'); INSERT INTO `sys_job_log` VALUES (22687, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:638毫秒', '0', '', '2022-03-30 22:50:00'); INSERT INTO `sys_job_log` VALUES (22688, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3440毫秒', '0', '', '2022-03-30 22:50:03'); INSERT INTO `sys_job_log` VALUES (22689, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:647毫秒', '0', '', '2022-03-30 23:00:00'); INSERT INTO `sys_job_log` VALUES (22690, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:668毫秒', '0', '', '2022-03-30 23:00:00'); INSERT INTO `sys_job_log` VALUES (22691, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5781毫秒', '0', '', '2022-03-30 23:00:05'); INSERT INTO `sys_job_log` VALUES (22692, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:556毫秒', '0', '', '2022-03-30 23:10:00'); INSERT INTO `sys_job_log` VALUES (22693, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4120毫秒', '0', '', '2022-03-30 23:10:04'); INSERT INTO `sys_job_log` VALUES (22694, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:540毫秒', '0', '', '2022-03-30 23:15:30'); INSERT INTO `sys_job_log` VALUES (22695, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:416毫秒', '0', '', '2022-03-30 23:20:00'); INSERT INTO `sys_job_log` VALUES (22696, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:767毫秒', '0', '', '2022-03-30 23:20:00'); INSERT INTO `sys_job_log` VALUES (22697, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4636毫秒', '0', '', '2022-03-30 23:20:04'); INSERT INTO `sys_job_log` VALUES (22698, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:566毫秒', '0', '', '2022-03-30 23:30:00'); INSERT INTO `sys_job_log` VALUES (22699, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4075毫秒', '0', '', '2022-03-30 23:30:04'); INSERT INTO `sys_job_log` VALUES (22700, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:578毫秒', '0', '', '2022-03-30 23:40:00'); INSERT INTO `sys_job_log` VALUES (22701, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:663毫秒', '0', '', '2022-03-30 23:40:00'); INSERT INTO `sys_job_log` VALUES (22702, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3074毫秒', '0', '', '2022-03-30 23:40:03'); INSERT INTO `sys_job_log` VALUES (22703, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:823毫秒', '0', '', '2022-03-30 23:50:00'); INSERT INTO `sys_job_log` VALUES (22704, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4903毫秒', '0', '', '2022-03-30 23:50:04'); INSERT INTO `sys_job_log` VALUES (22705, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:576毫秒', '0', '', '2022-03-31 00:00:00'); INSERT INTO `sys_job_log` VALUES (22706, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:829毫秒', '0', '', '2022-03-31 00:00:00'); INSERT INTO `sys_job_log` VALUES (22707, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4231毫秒', '0', '', '2022-03-31 00:00:04'); INSERT INTO `sys_job_log` VALUES (22708, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:896毫秒', '0', '', '2022-03-31 00:00:10'); INSERT INTO `sys_job_log` VALUES (22709, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:512613毫秒', '0', '', '2022-03-31 00:08:32'); INSERT INTO `sys_job_log` VALUES (22710, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:533毫秒', '0', '', '2022-03-31 00:10:00'); INSERT INTO `sys_job_log` VALUES (22711, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5497毫秒', '0', '', '2022-03-31 00:10:05'); INSERT INTO `sys_job_log` VALUES (22712, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:617毫秒', '0', '', '2022-03-31 00:15:30'); INSERT INTO `sys_job_log` VALUES (22713, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:615毫秒', '0', '', '2022-03-31 00:20:00'); INSERT INTO `sys_job_log` VALUES (22714, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:875毫秒', '0', '', '2022-03-31 00:20:00'); INSERT INTO `sys_job_log` VALUES (22715, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5303毫秒', '0', '', '2022-03-31 00:20:05'); INSERT INTO `sys_job_log` VALUES (22716, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:3311毫秒', '0', '', '2022-03-31 23:00:03'); INSERT INTO `sys_job_log` VALUES (22717, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3294毫秒', '0', '', '2022-03-31 23:00:03'); INSERT INTO `sys_job_log` VALUES (22718, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8493毫秒', '0', '', '2022-03-31 23:00:08'); INSERT INTO `sys_job_log` VALUES (22719, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:813毫秒', '0', '', '2022-03-31 23:10:00'); INSERT INTO `sys_job_log` VALUES (22720, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5213毫秒', '0', '', '2022-03-31 23:10:05'); INSERT INTO `sys_job_log` VALUES (22721, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10076毫秒', '0', '', '2022-03-31 23:15:40'); INSERT INTO `sys_job_log` VALUES (22722, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:383毫秒', '0', '', '2022-03-31 23:20:00'); INSERT INTO `sys_job_log` VALUES (22723, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:710毫秒', '0', '', '2022-03-31 23:20:00'); INSERT INTO `sys_job_log` VALUES (22724, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5718毫秒', '0', '', '2022-03-31 23:20:05'); INSERT INTO `sys_job_log` VALUES (22725, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:644毫秒', '0', '', '2022-03-31 23:30:00'); INSERT INTO `sys_job_log` VALUES (22726, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3771毫秒', '0', '', '2022-03-31 23:30:03'); INSERT INTO `sys_job_log` VALUES (22727, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:693毫秒', '0', '', '2022-03-31 23:40:00'); INSERT INTO `sys_job_log` VALUES (22728, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:795毫秒', '0', '', '2022-03-31 23:40:00'); INSERT INTO `sys_job_log` VALUES (22729, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3761毫秒', '0', '', '2022-03-31 23:40:03'); INSERT INTO `sys_job_log` VALUES (22730, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:716毫秒', '0', '', '2022-03-31 23:50:00'); INSERT INTO `sys_job_log` VALUES (22731, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3004毫秒', '0', '', '2022-03-31 23:50:03'); INSERT INTO `sys_job_log` VALUES (22732, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:425毫秒', '0', '', '2022-04-01 00:00:00'); INSERT INTO `sys_job_log` VALUES (22733, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:784毫秒', '0', '', '2022-04-01 00:00:00'); INSERT INTO `sys_job_log` VALUES (22734, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6235毫秒', '0', '', '2022-04-01 00:00:06'); INSERT INTO `sys_job_log` VALUES (22735, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:873毫秒', '0', '', '2022-04-01 00:00:10'); INSERT INTO `sys_job_log` VALUES (22736, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:521965毫秒', '0', '', '2022-04-01 00:08:42'); INSERT INTO `sys_job_log` VALUES (22737, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:726毫秒', '0', '', '2022-04-01 00:10:00'); INSERT INTO `sys_job_log` VALUES (22738, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6759毫秒', '0', '', '2022-04-01 00:10:06'); INSERT INTO `sys_job_log` VALUES (22739, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2731毫秒', '0', '', '2022-04-01 21:30:02'); INSERT INTO `sys_job_log` VALUES (22740, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6251毫秒', '0', '', '2022-04-01 21:30:06'); INSERT INTO `sys_job_log` VALUES (22741, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:492毫秒', '0', '', '2022-04-01 21:40:00'); INSERT INTO `sys_job_log` VALUES (22742, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:853毫秒', '0', '', '2022-04-01 21:40:00'); INSERT INTO `sys_job_log` VALUES (22743, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3685毫秒', '0', '', '2022-04-01 21:40:03'); INSERT INTO `sys_job_log` VALUES (22744, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:869毫秒', '0', '', '2022-04-01 21:50:00'); INSERT INTO `sys_job_log` VALUES (22745, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7246毫秒', '0', '', '2022-04-01 21:50:07'); INSERT INTO `sys_job_log` VALUES (22746, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:275毫秒', '0', '', '2022-04-01 22:00:00'); INSERT INTO `sys_job_log` VALUES (22747, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:661毫秒', '0', '', '2022-04-01 22:00:00'); INSERT INTO `sys_job_log` VALUES (22748, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1164毫秒', '0', '', '2022-04-01 22:00:01'); INSERT INTO `sys_job_log` VALUES (22749, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4723毫秒', '0', '', '2022-04-01 22:00:04'); INSERT INTO `sys_job_log` VALUES (22750, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:679毫秒', '0', '', '2022-04-01 22:10:00'); INSERT INTO `sys_job_log` VALUES (22751, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3318毫秒', '0', '', '2022-04-01 22:10:03'); INSERT INTO `sys_job_log` VALUES (22752, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1375毫秒', '0', '', '2022-04-01 22:15:31'); INSERT INTO `sys_job_log` VALUES (22753, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:690毫秒', '0', '', '2022-04-01 22:20:00'); INSERT INTO `sys_job_log` VALUES (22754, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:847毫秒', '0', '', '2022-04-01 22:20:00'); INSERT INTO `sys_job_log` VALUES (22755, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3991毫秒', '0', '', '2022-04-01 22:20:04'); INSERT INTO `sys_job_log` VALUES (22756, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:736毫秒', '0', '', '2022-04-01 22:30:00'); INSERT INTO `sys_job_log` VALUES (22757, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3874毫秒', '0', '', '2022-04-01 22:30:03'); INSERT INTO `sys_job_log` VALUES (22758, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:479毫秒', '0', '', '2022-04-01 22:40:00'); INSERT INTO `sys_job_log` VALUES (22759, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:758毫秒', '0', '', '2022-04-01 22:40:00'); INSERT INTO `sys_job_log` VALUES (22760, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5074毫秒', '0', '', '2022-04-01 22:40:05'); INSERT INTO `sys_job_log` VALUES (22761, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:984毫秒', '0', '', '2022-04-01 22:50:01'); INSERT INTO `sys_job_log` VALUES (22762, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3460毫秒', '0', '', '2022-04-01 22:50:03'); INSERT INTO `sys_job_log` VALUES (22763, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:665毫秒', '0', '', '2022-04-01 23:00:00'); INSERT INTO `sys_job_log` VALUES (22764, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:830毫秒', '0', '', '2022-04-01 23:00:00'); INSERT INTO `sys_job_log` VALUES (22765, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4447毫秒', '0', '', '2022-04-01 23:00:04'); INSERT INTO `sys_job_log` VALUES (22766, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:807毫秒', '0', '', '2022-04-01 23:10:00'); INSERT INTO `sys_job_log` VALUES (22767, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3334毫秒', '0', '', '2022-04-01 23:10:03'); INSERT INTO `sys_job_log` VALUES (22768, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:574毫秒', '0', '', '2022-04-01 23:15:30'); INSERT INTO `sys_job_log` VALUES (22769, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:420毫秒', '0', '', '2022-04-01 23:20:00'); INSERT INTO `sys_job_log` VALUES (22770, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-04-01 23:20:00'); INSERT INTO `sys_job_log` VALUES (22771, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4041毫秒', '0', '', '2022-04-01 23:20:04'); INSERT INTO `sys_job_log` VALUES (22772, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:608毫秒', '0', '', '2022-04-01 23:30:00'); INSERT INTO `sys_job_log` VALUES (22773, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2866毫秒', '0', '', '2022-04-01 23:30:02'); INSERT INTO `sys_job_log` VALUES (22774, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:701毫秒', '0', '', '2022-04-01 23:40:00'); INSERT INTO `sys_job_log` VALUES (22775, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:919毫秒', '0', '', '2022-04-01 23:40:00'); INSERT INTO `sys_job_log` VALUES (22776, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4135毫秒', '0', '', '2022-04-01 23:40:04'); INSERT INTO `sys_job_log` VALUES (22777, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:499毫秒', '0', '', '2022-04-01 23:50:00'); INSERT INTO `sys_job_log` VALUES (22778, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3638毫秒', '0', '', '2022-04-01 23:50:03'); INSERT INTO `sys_job_log` VALUES (22779, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1082毫秒', '0', '', '2022-04-02 20:40:01'); INSERT INTO `sys_job_log` VALUES (22780, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1355毫秒', '0', '', '2022-04-02 20:40:01'); INSERT INTO `sys_job_log` VALUES (22781, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3360毫秒', '0', '', '2022-04-02 20:40:03'); INSERT INTO `sys_job_log` VALUES (22782, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:748毫秒', '0', '', '2022-04-02 20:50:00'); INSERT INTO `sys_job_log` VALUES (22783, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2426毫秒', '0', '', '2022-04-02 20:50:02'); INSERT INTO `sys_job_log` VALUES (22784, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:435毫秒', '0', '', '2022-04-02 21:00:00'); INSERT INTO `sys_job_log` VALUES (22785, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:753毫秒', '0', '', '2022-04-02 21:00:00'); INSERT INTO `sys_job_log` VALUES (22786, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2876毫秒', '0', '', '2022-04-02 21:00:02'); INSERT INTO `sys_job_log` VALUES (22787, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:540078毫秒', '0', '', '2022-04-02 21:09:00'); INSERT INTO `sys_job_log` VALUES (22788, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:669毫秒', '0', '', '2022-04-02 21:10:00'); INSERT INTO `sys_job_log` VALUES (22789, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2416毫秒', '0', '', '2022-04-02 21:10:02'); INSERT INTO `sys_job_log` VALUES (22790, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:57542毫秒', '0', '', '2022-04-02 21:10:57'); INSERT INTO `sys_job_log` VALUES (22791, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1466毫秒', '0', '', '2022-04-02 21:15:31'); INSERT INTO `sys_job_log` VALUES (22792, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:627毫秒', '0', '', '2022-04-02 21:20:00'); INSERT INTO `sys_job_log` VALUES (22793, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:984毫秒', '0', '', '2022-04-02 21:20:01'); INSERT INTO `sys_job_log` VALUES (22794, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2304毫秒', '0', '', '2022-04-02 21:20:02'); INSERT INTO `sys_job_log` VALUES (22795, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:599毫秒', '0', '', '2022-04-02 21:30:00'); INSERT INTO `sys_job_log` VALUES (22796, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4488毫秒', '0', '', '2022-04-02 21:30:04'); INSERT INTO `sys_job_log` VALUES (22797, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:302毫秒', '0', '', '2022-04-02 21:40:00'); INSERT INTO `sys_job_log` VALUES (22798, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:551毫秒', '0', '', '2022-04-02 21:40:00'); INSERT INTO `sys_job_log` VALUES (22799, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2272毫秒', '0', '', '2022-04-02 21:40:02'); INSERT INTO `sys_job_log` VALUES (22800, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:515毫秒', '0', '', '2022-04-02 21:50:00'); INSERT INTO `sys_job_log` VALUES (22801, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2093毫秒', '0', '', '2022-04-02 21:50:02'); INSERT INTO `sys_job_log` VALUES (22802, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:80毫秒', '0', '', '2022-04-02 22:00:00'); INSERT INTO `sys_job_log` VALUES (22803, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1124毫秒', '0', '', '2022-04-02 22:00:01'); INSERT INTO `sys_job_log` VALUES (22804, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1399毫秒', '0', '', '2022-04-02 22:00:01'); INSERT INTO `sys_job_log` VALUES (22805, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2338毫秒', '0', '', '2022-04-02 22:00:02'); INSERT INTO `sys_job_log` VALUES (22806, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1057毫秒', '0', '', '2022-04-02 22:10:01'); INSERT INTO `sys_job_log` VALUES (22807, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2251毫秒', '0', '', '2022-04-02 22:10:02'); INSERT INTO `sys_job_log` VALUES (22808, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:588毫秒', '0', '', '2022-04-02 22:15:30'); INSERT INTO `sys_job_log` VALUES (22809, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:354毫秒', '0', '', '2022-04-02 22:20:00'); INSERT INTO `sys_job_log` VALUES (22810, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:606毫秒', '0', '', '2022-04-02 22:20:00'); INSERT INTO `sys_job_log` VALUES (22811, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2427毫秒', '0', '', '2022-04-02 22:20:02'); INSERT INTO `sys_job_log` VALUES (22812, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:497毫秒', '0', '', '2022-04-02 22:30:00'); INSERT INTO `sys_job_log` VALUES (22813, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2106毫秒', '0', '', '2022-04-02 22:30:02'); INSERT INTO `sys_job_log` VALUES (22814, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-04-02 22:40:00'); INSERT INTO `sys_job_log` VALUES (22815, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-04-02 22:40:02'); INSERT INTO `sys_job_log` VALUES (22816, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5781毫秒', '0', '', '2022-04-02 22:40:05'); INSERT INTO `sys_job_log` VALUES (22817, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:748毫秒', '0', '', '2022-04-02 22:50:00'); INSERT INTO `sys_job_log` VALUES (22818, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2024毫秒', '0', '', '2022-04-02 22:50:02'); INSERT INTO `sys_job_log` VALUES (22819, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2028毫秒', '0', '', '2022-04-02 23:00:02'); INSERT INTO `sys_job_log` VALUES (22820, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2020毫秒', '0', '', '2022-04-02 23:00:02'); INSERT INTO `sys_job_log` VALUES (22821, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5709毫秒', '0', '', '2022-04-02 23:00:05'); INSERT INTO `sys_job_log` VALUES (22822, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:746毫秒', '0', '', '2022-04-02 23:10:00'); INSERT INTO `sys_job_log` VALUES (22823, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2031毫秒', '0', '', '2022-04-02 23:10:02'); INSERT INTO `sys_job_log` VALUES (22824, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:571毫秒', '0', '', '2022-04-02 23:15:30'); INSERT INTO `sys_job_log` VALUES (22825, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:626毫秒', '0', '', '2022-04-02 23:20:00'); INSERT INTO `sys_job_log` VALUES (22826, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:678毫秒', '0', '', '2022-04-02 23:20:00'); INSERT INTO `sys_job_log` VALUES (22827, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2135毫秒', '0', '', '2022-04-02 23:20:02'); INSERT INTO `sys_job_log` VALUES (22828, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:642毫秒', '0', '', '2022-04-02 23:30:00'); INSERT INTO `sys_job_log` VALUES (22829, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8262毫秒', '0', '', '2022-04-02 23:30:08'); INSERT INTO `sys_job_log` VALUES (22830, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:344毫秒', '0', '', '2022-04-02 23:40:00'); INSERT INTO `sys_job_log` VALUES (22831, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:605毫秒', '0', '', '2022-04-02 23:40:00'); INSERT INTO `sys_job_log` VALUES (22832, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1879毫秒', '0', '', '2022-04-02 23:40:01'); INSERT INTO `sys_job_log` VALUES (22833, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:615毫秒', '0', '', '2022-04-02 23:50:00'); INSERT INTO `sys_job_log` VALUES (22834, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2051毫秒', '0', '', '2022-04-02 23:50:02'); INSERT INTO `sys_job_log` VALUES (22835, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:634毫秒', '0', '', '2022-04-03 00:00:00'); INSERT INTO `sys_job_log` VALUES (22836, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:841毫秒', '0', '', '2022-04-03 00:00:00'); INSERT INTO `sys_job_log` VALUES (22837, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2350毫秒', '0', '', '2022-04-03 00:00:02'); INSERT INTO `sys_job_log` VALUES (22838, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:755毫秒', '0', '', '2022-04-03 00:00:10'); INSERT INTO `sys_job_log` VALUES (22839, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:505355毫秒', '0', '', '2022-04-03 00:08:25'); INSERT INTO `sys_job_log` VALUES (22840, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-04-03 00:10:00'); INSERT INTO `sys_job_log` VALUES (22841, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2187毫秒', '0', '', '2022-04-03 00:10:02'); INSERT INTO `sys_job_log` VALUES (22842, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:580毫秒', '0', '', '2022-04-03 00:15:30'); INSERT INTO `sys_job_log` VALUES (22843, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:345毫秒', '0', '', '2022-04-03 00:20:00'); INSERT INTO `sys_job_log` VALUES (22844, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-04-03 00:20:00'); INSERT INTO `sys_job_log` VALUES (22845, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2542毫秒', '0', '', '2022-04-03 00:20:02'); INSERT INTO `sys_job_log` VALUES (22846, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1025毫秒', '0', '', '2022-04-03 00:30:01'); INSERT INTO `sys_job_log` VALUES (22847, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2854毫秒', '0', '', '2022-04-03 00:30:02'); INSERT INTO `sys_job_log` VALUES (22848, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:653毫秒', '0', '', '2022-04-03 00:40:00'); INSERT INTO `sys_job_log` VALUES (22849, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:850毫秒', '0', '', '2022-04-03 00:40:00'); INSERT INTO `sys_job_log` VALUES (22850, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2079毫秒', '0', '', '2022-04-03 00:40:02'); INSERT INTO `sys_job_log` VALUES (22851, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:528毫秒', '0', '', '2022-04-03 00:50:00'); INSERT INTO `sys_job_log` VALUES (22852, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2349毫秒', '0', '', '2022-04-03 00:50:02'); INSERT INTO `sys_job_log` VALUES (22853, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2698毫秒', '0', '', '2022-04-03 19:10:02'); INSERT INTO `sys_job_log` VALUES (22854, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5611毫秒', '0', '', '2022-04-03 19:10:05'); INSERT INTO `sys_job_log` VALUES (22855, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2268毫秒', '0', '', '2022-04-03 19:15:32'); INSERT INTO `sys_job_log` VALUES (22856, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:370毫秒', '0', '', '2022-04-03 19:20:00'); INSERT INTO `sys_job_log` VALUES (22857, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:625毫秒', '0', '', '2022-04-03 19:20:00'); INSERT INTO `sys_job_log` VALUES (22858, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2422毫秒', '0', '', '2022-04-03 19:20:02'); INSERT INTO `sys_job_log` VALUES (22859, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:633毫秒', '0', '', '2022-04-03 19:30:00'); INSERT INTO `sys_job_log` VALUES (22860, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2021毫秒', '0', '', '2022-04-03 19:30:02'); INSERT INTO `sys_job_log` VALUES (22861, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:326毫秒', '0', '', '2022-04-03 19:40:00'); INSERT INTO `sys_job_log` VALUES (22862, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:621毫秒', '0', '', '2022-04-03 19:40:00'); INSERT INTO `sys_job_log` VALUES (22863, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2478毫秒', '0', '', '2022-04-03 19:40:02'); INSERT INTO `sys_job_log` VALUES (22864, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:765毫秒', '0', '', '2022-04-03 19:50:00'); INSERT INTO `sys_job_log` VALUES (22865, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2668毫秒', '0', '', '2022-04-03 19:50:02'); INSERT INTO `sys_job_log` VALUES (22866, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:712毫秒', '0', '', '2022-04-03 20:00:00'); INSERT INTO `sys_job_log` VALUES (22867, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:820毫秒', '0', '', '2022-04-03 20:00:00'); INSERT INTO `sys_job_log` VALUES (22868, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2433毫秒', '0', '', '2022-04-03 20:00:02'); INSERT INTO `sys_job_log` VALUES (22869, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:625毫秒', '0', '', '2022-04-03 20:10:00'); INSERT INTO `sys_job_log` VALUES (22870, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2441毫秒', '0', '', '2022-04-03 20:10:02'); INSERT INTO `sys_job_log` VALUES (22871, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:8717毫秒', '0', '', '2022-04-03 20:15:38'); INSERT INTO `sys_job_log` VALUES (22872, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:441毫秒', '0', '', '2022-04-03 20:20:00'); INSERT INTO `sys_job_log` VALUES (22873, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:766毫秒', '0', '', '2022-04-03 20:20:00'); INSERT INTO `sys_job_log` VALUES (22874, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2710毫秒', '0', '', '2022-04-03 20:20:02'); INSERT INTO `sys_job_log` VALUES (22875, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:678毫秒', '0', '', '2022-04-03 20:30:00'); INSERT INTO `sys_job_log` VALUES (22876, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2267毫秒', '0', '', '2022-04-03 20:30:02'); INSERT INTO `sys_job_log` VALUES (22877, '36壁纸网-爬虫-定时任务', 'REPTILE', 'Wallpaper_36Task._36wallpaper', '36壁纸网-爬虫-定时任务 总共耗时:900124毫秒', '0', '', '2022-04-03 20:35:00'); INSERT INTO `sys_job_log` VALUES (22878, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1827毫秒', '0', '', '2022-04-03 20:40:01'); INSERT INTO `sys_job_log` VALUES (22879, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2028毫秒', '0', '', '2022-04-03 20:40:02'); INSERT INTO `sys_job_log` VALUES (22880, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2365毫秒', '0', '', '2022-04-03 20:40:02'); INSERT INTO `sys_job_log` VALUES (22881, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2038毫秒', '0', '', '2022-04-03 20:50:02'); INSERT INTO `sys_job_log` VALUES (22882, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:10188毫秒', '0', '', '2022-04-03 20:50:10'); INSERT INTO `sys_job_log` VALUES (22883, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:370毫秒', '0', '', '2022-04-03 21:00:00'); INSERT INTO `sys_job_log` VALUES (22884, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:805毫秒', '0', '', '2022-04-03 21:00:00'); INSERT INTO `sys_job_log` VALUES (22885, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2266毫秒', '0', '', '2022-04-03 21:00:02'); INSERT INTO `sys_job_log` VALUES (22886, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:488796毫秒', '0', '', '2022-04-03 21:08:08'); INSERT INTO `sys_job_log` VALUES (22887, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-04-03 21:10:00'); INSERT INTO `sys_job_log` VALUES (22888, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2369毫秒', '0', '', '2022-04-03 21:10:02'); INSERT INTO `sys_job_log` VALUES (22889, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:57403毫秒', '0', '', '2022-04-03 21:10:57'); INSERT INTO `sys_job_log` VALUES (22890, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:618毫秒', '0', '', '2022-04-03 21:15:30'); INSERT INTO `sys_job_log` VALUES (22891, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:670毫秒', '0', '', '2022-04-03 21:20:00'); INSERT INTO `sys_job_log` VALUES (22892, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:831毫秒', '0', '', '2022-04-03 21:20:00'); INSERT INTO `sys_job_log` VALUES (22893, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2220毫秒', '0', '', '2022-04-03 21:20:02'); INSERT INTO `sys_job_log` VALUES (22894, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1746毫秒', '0', '', '2022-04-03 21:30:01'); INSERT INTO `sys_job_log` VALUES (22895, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5797毫秒', '0', '', '2022-04-03 21:30:05'); INSERT INTO `sys_job_log` VALUES (22896, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:367毫秒', '0', '', '2022-04-03 21:40:00'); INSERT INTO `sys_job_log` VALUES (22897, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:716毫秒', '0', '', '2022-04-03 21:40:00'); INSERT INTO `sys_job_log` VALUES (22898, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2285毫秒', '0', '', '2022-04-03 21:40:02'); INSERT INTO `sys_job_log` VALUES (22899, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:754毫秒', '0', '', '2022-04-03 21:50:00'); INSERT INTO `sys_job_log` VALUES (22900, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5134毫秒', '0', '', '2022-04-03 21:50:05'); INSERT INTO `sys_job_log` VALUES (22901, '检查API状态定时任务', 'SYSTEM', 'CheckApiStatusTask.checkApiStatus', '检查API状态定时任务 总共耗时:95毫秒', '0', '', '2022-04-03 22:00:00'); INSERT INTO `sys_job_log` VALUES (22902, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1207毫秒', '0', '', '2022-04-03 22:00:01'); INSERT INTO `sys_job_log` VALUES (22903, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1344毫秒', '0', '', '2022-04-03 22:00:01'); INSERT INTO `sys_job_log` VALUES (22904, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2657毫秒', '0', '', '2022-04-03 22:00:02'); INSERT INTO `sys_job_log` VALUES (22905, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:703毫秒', '0', '', '2022-04-03 22:10:00'); INSERT INTO `sys_job_log` VALUES (22906, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2471毫秒', '0', '', '2022-04-03 22:10:02'); INSERT INTO `sys_job_log` VALUES (22907, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:5070毫秒', '0', '', '2022-04-03 22:15:35'); INSERT INTO `sys_job_log` VALUES (22908, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:413毫秒', '0', '', '2022-04-03 22:20:00'); INSERT INTO `sys_job_log` VALUES (22909, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1653毫秒', '0', '', '2022-04-03 22:20:01'); INSERT INTO `sys_job_log` VALUES (22910, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3593毫秒', '0', '', '2022-04-03 22:20:03'); INSERT INTO `sys_job_log` VALUES (22911, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-04-03 22:30:00'); INSERT INTO `sys_job_log` VALUES (22912, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2290毫秒', '0', '', '2022-04-03 22:30:02'); INSERT INTO `sys_job_log` VALUES (22913, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:662毫秒', '0', '', '2022-04-03 22:40:00'); INSERT INTO `sys_job_log` VALUES (22914, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1683毫秒', '0', '', '2022-04-03 22:40:01'); INSERT INTO `sys_job_log` VALUES (22915, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2339毫秒', '0', '', '2022-04-03 22:40:02'); INSERT INTO `sys_job_log` VALUES (22916, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1922毫秒', '0', '', '2022-04-03 22:50:01'); INSERT INTO `sys_job_log` VALUES (22917, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6260毫秒', '0', '', '2022-04-03 22:50:06'); INSERT INTO `sys_job_log` VALUES (22918, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:364毫秒', '0', '', '2022-04-03 23:00:00'); INSERT INTO `sys_job_log` VALUES (22919, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:749毫秒', '0', '', '2022-04-03 23:00:00'); INSERT INTO `sys_job_log` VALUES (22920, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2798毫秒', '0', '', '2022-04-03 23:00:02'); INSERT INTO `sys_job_log` VALUES (22921, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:819毫秒', '0', '', '2022-04-03 23:10:00'); INSERT INTO `sys_job_log` VALUES (22922, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2365毫秒', '0', '', '2022-04-03 23:10:02'); INSERT INTO `sys_job_log` VALUES (22923, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:600毫秒', '0', '', '2022-04-03 23:15:30'); INSERT INTO `sys_job_log` VALUES (22924, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:751毫秒', '0', '', '2022-04-03 23:20:00'); INSERT INTO `sys_job_log` VALUES (22925, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:792毫秒', '0', '', '2022-04-03 23:20:00'); INSERT INTO `sys_job_log` VALUES (22926, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2332毫秒', '0', '', '2022-04-03 23:20:02'); INSERT INTO `sys_job_log` VALUES (22927, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:698毫秒', '0', '', '2022-04-03 23:30:00'); INSERT INTO `sys_job_log` VALUES (22928, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2289毫秒', '0', '', '2022-04-03 23:30:02'); INSERT INTO `sys_job_log` VALUES (22929, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:330毫秒', '0', '', '2022-04-03 23:40:00'); INSERT INTO `sys_job_log` VALUES (22930, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:705毫秒', '0', '', '2022-04-03 23:40:00'); INSERT INTO `sys_job_log` VALUES (22931, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2319毫秒', '0', '', '2022-04-03 23:40:02'); INSERT INTO `sys_job_log` VALUES (22932, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:658毫秒', '0', '', '2022-04-03 23:50:00'); INSERT INTO `sys_job_log` VALUES (22933, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2676毫秒', '0', '', '2022-04-03 23:50:02'); INSERT INTO `sys_job_log` VALUES (22934, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:680毫秒', '0', '', '2022-04-04 00:00:00'); INSERT INTO `sys_job_log` VALUES (22935, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:864毫秒', '0', '', '2022-04-04 00:00:00'); INSERT INTO `sys_job_log` VALUES (22936, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2353毫秒', '0', '', '2022-04-04 00:00:02'); INSERT INTO `sys_job_log` VALUES (22937, 'API预警每天调用次数初始化任务', 'SYSTEM', 'WarningTask.handleRecordDate', 'API预警每天调用次数初始化任务 总共耗时:678毫秒', '0', '', '2022-04-04 00:00:10'); INSERT INTO `sys_job_log` VALUES (22938, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:532832毫秒', '0', '', '2022-04-04 00:08:52'); INSERT INTO `sys_job_log` VALUES (22939, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:696毫秒', '0', '', '2022-04-04 00:10:00'); INSERT INTO `sys_job_log` VALUES (22940, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2805毫秒', '0', '', '2022-04-04 00:10:02'); INSERT INTO `sys_job_log` VALUES (22941, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:646毫秒', '0', '', '2022-04-04 00:15:30'); INSERT INTO `sys_job_log` VALUES (22942, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:280毫秒', '0', '', '2022-04-04 00:20:00'); INSERT INTO `sys_job_log` VALUES (22943, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:581毫秒', '0', '', '2022-04-04 00:20:00'); INSERT INTO `sys_job_log` VALUES (22944, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2354毫秒', '0', '', '2022-04-04 00:20:02'); INSERT INTO `sys_job_log` VALUES (22945, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:599毫秒', '0', '', '2022-04-04 00:30:00'); INSERT INTO `sys_job_log` VALUES (22946, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2398毫秒', '0', '', '2022-04-04 00:30:02'); INSERT INTO `sys_job_log` VALUES (22947, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:599毫秒', '0', '', '2022-04-04 00:40:00'); INSERT INTO `sys_job_log` VALUES (22948, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1153毫秒', '0', '', '2022-04-04 00:40:01'); INSERT INTO `sys_job_log` VALUES (22949, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3023毫秒', '0', '', '2022-04-04 00:40:03'); INSERT INTO `sys_job_log` VALUES (22950, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:529毫秒', '0', '', '2022-04-04 00:50:00'); INSERT INTO `sys_job_log` VALUES (22951, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2518毫秒', '0', '', '2022-04-04 00:50:02'); INSERT INTO `sys_job_log` VALUES (22952, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:315毫秒', '0', '', '2022-04-04 01:00:00'); INSERT INTO `sys_job_log` VALUES (22953, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:539毫秒', '0', '', '2022-04-04 01:00:00'); INSERT INTO `sys_job_log` VALUES (22954, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2710毫秒', '0', '', '2022-04-04 01:00:02'); INSERT INTO `sys_job_log` VALUES (22955, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-04-04 01:10:00'); INSERT INTO `sys_job_log` VALUES (22956, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2438毫秒', '0', '', '2022-04-04 01:10:02'); INSERT INTO `sys_job_log` VALUES (22957, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:631毫秒', '0', '', '2022-04-04 01:15:30'); INSERT INTO `sys_job_log` VALUES (22958, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:764毫秒', '0', '', '2022-04-04 01:20:00'); INSERT INTO `sys_job_log` VALUES (22959, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:839毫秒', '0', '', '2022-04-04 01:20:00'); INSERT INTO `sys_job_log` VALUES (22960, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2288毫秒', '0', '', '2022-04-04 01:20:02'); INSERT INTO `sys_job_log` VALUES (22961, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2040毫秒', '0', '', '2022-04-04 01:30:02'); INSERT INTO `sys_job_log` VALUES (22962, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:16120毫秒', '0', '', '2022-04-04 01:30:16'); INSERT INTO `sys_job_log` VALUES (22963, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2033毫秒', '0', '', '2022-04-04 01:40:02'); INSERT INTO `sys_job_log` VALUES (22964, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2029毫秒', '0', '', '2022-04-04 01:40:02'); INSERT INTO `sys_job_log` VALUES (22965, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:16115毫秒', '0', '', '2022-04-04 01:40:16'); INSERT INTO `sys_job_log` VALUES (22966, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2797毫秒', '0', '', '2022-04-04 16:20:02'); INSERT INTO `sys_job_log` VALUES (22967, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2780毫秒', '0', '', '2022-04-04 16:20:02'); INSERT INTO `sys_job_log` VALUES (22968, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5777毫秒', '0', '', '2022-04-04 16:20:05'); INSERT INTO `sys_job_log` VALUES (22969, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:832毫秒', '0', '', '2022-04-04 16:30:00'); INSERT INTO `sys_job_log` VALUES (22970, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2745毫秒', '0', '', '2022-04-04 16:30:02'); INSERT INTO `sys_job_log` VALUES (22971, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:375毫秒', '0', '', '2022-04-04 16:40:00'); INSERT INTO `sys_job_log` VALUES (22972, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:667毫秒', '0', '', '2022-04-04 16:40:00'); INSERT INTO `sys_job_log` VALUES (22973, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2475毫秒', '0', '', '2022-04-04 16:40:02'); INSERT INTO `sys_job_log` VALUES (22974, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:622毫秒', '0', '', '2022-04-04 16:50:00'); INSERT INTO `sys_job_log` VALUES (22975, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2284毫秒', '0', '', '2022-04-04 16:50:02'); INSERT INTO `sys_job_log` VALUES (22976, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:632毫秒', '0', '', '2022-04-04 17:00:00'); INSERT INTO `sys_job_log` VALUES (22977, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:714毫秒', '0', '', '2022-04-04 17:00:00'); INSERT INTO `sys_job_log` VALUES (22978, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2186毫秒', '0', '', '2022-04-04 17:00:02'); INSERT INTO `sys_job_log` VALUES (22979, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:590毫秒', '0', '', '2022-04-04 17:10:00'); INSERT INTO `sys_job_log` VALUES (22980, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2055毫秒', '0', '', '2022-04-04 17:10:02'); INSERT INTO `sys_job_log` VALUES (22981, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1964毫秒', '0', '', '2022-04-04 17:15:31'); INSERT INTO `sys_job_log` VALUES (22982, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:311毫秒', '0', '', '2022-04-04 17:20:00'); INSERT INTO `sys_job_log` VALUES (22983, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:588毫秒', '0', '', '2022-04-04 17:20:00'); INSERT INTO `sys_job_log` VALUES (22984, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2253毫秒', '0', '', '2022-04-04 17:20:02'); INSERT INTO `sys_job_log` VALUES (22985, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:583毫秒', '0', '', '2022-04-04 17:30:00'); INSERT INTO `sys_job_log` VALUES (22986, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2299毫秒', '0', '', '2022-04-04 17:30:02'); INSERT INTO `sys_job_log` VALUES (22987, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:620毫秒', '0', '', '2022-04-04 17:40:00'); INSERT INTO `sys_job_log` VALUES (22988, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:651毫秒', '0', '', '2022-04-04 17:40:00'); INSERT INTO `sys_job_log` VALUES (22989, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3252毫秒', '0', '', '2022-04-04 17:40:03'); INSERT INTO `sys_job_log` VALUES (22990, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1540毫秒', '0', '', '2022-04-06 08:50:01'); INSERT INTO `sys_job_log` VALUES (22991, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2589毫秒', '0', '', '2022-04-06 08:50:02'); INSERT INTO `sys_job_log` VALUES (22992, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:722毫秒', '0', '', '2022-04-06 09:00:00'); INSERT INTO `sys_job_log` VALUES (22993, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1248毫秒', '0', '', '2022-04-06 09:00:01'); INSERT INTO `sys_job_log` VALUES (22994, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3009毫秒', '0', '', '2022-04-06 09:00:03'); INSERT INTO `sys_job_log` VALUES (22995, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:704毫秒', '0', '', '2022-04-06 09:10:00'); INSERT INTO `sys_job_log` VALUES (22996, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3809毫秒', '0', '', '2022-04-06 09:10:03'); INSERT INTO `sys_job_log` VALUES (22997, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:60585毫秒', '0', '', '2022-04-06 09:11:00'); INSERT INTO `sys_job_log` VALUES (22998, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:10050毫秒', '0', '', '2022-04-06 09:15:40'); INSERT INTO `sys_job_log` VALUES (22999, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1118544毫秒', '0', '', '2022-04-06 09:18:38'); INSERT INTO `sys_job_log` VALUES (23000, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:803毫秒', '0', '', '2022-04-06 09:20:00'); INSERT INTO `sys_job_log` VALUES (23001, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1373毫秒', '0', '', '2022-04-06 09:20:01'); INSERT INTO `sys_job_log` VALUES (23002, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2316毫秒', '0', '', '2022-04-06 09:20:02'); INSERT INTO `sys_job_log` VALUES (23003, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2036毫秒', '0', '', '2022-04-06 09:30:02'); INSERT INTO `sys_job_log` VALUES (23004, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:7007毫秒', '0', '', '2022-04-06 09:30:07'); INSERT INTO `sys_job_log` VALUES (23005, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2073毫秒', '0', '', '2022-04-06 09:40:02'); INSERT INTO `sys_job_log` VALUES (23006, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2061毫秒', '0', '', '2022-04-06 09:40:02'); INSERT INTO `sys_job_log` VALUES (23007, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3889毫秒', '0', '', '2022-04-06 09:40:03'); INSERT INTO `sys_job_log` VALUES (23008, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:607毫秒', '0', '', '2022-04-06 09:50:00'); INSERT INTO `sys_job_log` VALUES (23009, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4739毫秒', '0', '', '2022-04-06 09:50:04'); INSERT INTO `sys_job_log` VALUES (23010, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1301毫秒', '0', '', '2022-04-06 10:00:01'); INSERT INTO `sys_job_log` VALUES (23011, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1660毫秒', '0', '', '2022-04-06 10:00:01'); INSERT INTO `sys_job_log` VALUES (23012, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3246毫秒', '0', '', '2022-04-06 10:00:03'); INSERT INTO `sys_job_log` VALUES (23013, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:776毫秒', '0', '', '2022-04-06 10:10:00'); INSERT INTO `sys_job_log` VALUES (23014, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4076毫秒', '0', '', '2022-04-06 10:10:04'); INSERT INTO `sys_job_log` VALUES (23015, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3614毫秒', '0', '', '2022-04-06 10:15:33'); INSERT INTO `sys_job_log` VALUES (23016, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:584毫秒', '0', '', '2022-04-06 10:20:00'); INSERT INTO `sys_job_log` VALUES (23017, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1219毫秒', '0', '', '2022-04-06 10:20:01'); INSERT INTO `sys_job_log` VALUES (23018, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3003毫秒', '0', '', '2022-04-06 10:20:03'); INSERT INTO `sys_job_log` VALUES (23019, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:682毫秒', '0', '', '2022-04-06 10:30:00'); INSERT INTO `sys_job_log` VALUES (23020, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2783毫秒', '0', '', '2022-04-06 10:30:02'); INSERT INTO `sys_job_log` VALUES (23021, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-04-06 10:40:02'); INSERT INTO `sys_job_log` VALUES (23022, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2013毫秒', '0', '', '2022-04-06 10:40:02'); INSERT INTO `sys_job_log` VALUES (23023, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:677毫秒', '0', '', '2022-04-06 10:40:02'); INSERT INTO `sys_job_log` VALUES (23024, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:834毫秒', '0', '', '2022-04-06 10:40:02'); INSERT INTO `sys_job_log` VALUES (23025, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4268毫秒', '0', '', '2022-04-06 10:40:04'); INSERT INTO `sys_job_log` VALUES (23026, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1719毫秒', '0', '', '2022-04-06 10:40:06'); INSERT INTO `sys_job_log` VALUES (23027, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1696毫秒', '0', '', '2022-04-06 10:50:01'); INSERT INTO `sys_job_log` VALUES (23028, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4306毫秒', '0', '', '2022-04-06 10:50:04'); INSERT INTO `sys_job_log` VALUES (23029, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2057毫秒', '0', '', '2022-04-06 11:00:02'); INSERT INTO `sys_job_log` VALUES (23030, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2047毫秒', '0', '', '2022-04-06 11:00:02'); INSERT INTO `sys_job_log` VALUES (23031, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2018毫秒', '0', '', '2022-04-06 11:00:04'); INSERT INTO `sys_job_log` VALUES (23032, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2014毫秒', '0', '', '2022-04-06 11:00:04'); INSERT INTO `sys_job_log` VALUES (23033, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6221毫秒', '0', '', '2022-04-06 11:00:06'); INSERT INTO `sys_job_log` VALUES (23034, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1973毫秒', '0', '', '2022-04-06 11:00:08'); INSERT INTO `sys_job_log` VALUES (23035, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-04-06 11:10:00'); INSERT INTO `sys_job_log` VALUES (23036, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3025毫秒', '0', '', '2022-04-06 11:10:03'); INSERT INTO `sys_job_log` VALUES (23037, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3301毫秒', '0', '', '2022-04-06 11:15:33'); INSERT INTO `sys_job_log` VALUES (23038, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:521毫秒', '0', '', '2022-04-06 11:20:00'); INSERT INTO `sys_job_log` VALUES (23039, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1470毫秒', '0', '', '2022-04-06 11:20:01'); INSERT INTO `sys_job_log` VALUES (23040, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1995毫秒', '0', '', '2022-04-06 11:20:02'); INSERT INTO `sys_job_log` VALUES (23041, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2098毫秒', '0', '', '2022-04-06 11:30:02'); INSERT INTO `sys_job_log` VALUES (23042, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1011毫秒', '0', '', '2022-04-06 11:30:03'); INSERT INTO `sys_job_log` VALUES (23043, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5544毫秒', '0', '', '2022-04-06 11:30:05'); INSERT INTO `sys_job_log` VALUES (23044, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1810毫秒', '0', '', '2022-04-06 11:30:07'); INSERT INTO `sys_job_log` VALUES (23045, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-04-06 11:40:02'); INSERT INTO `sys_job_log` VALUES (23046, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2015毫秒', '0', '', '2022-04-06 11:40:02'); INSERT INTO `sys_job_log` VALUES (23047, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:448毫秒', '0', '', '2022-04-06 11:40:02'); INSERT INTO `sys_job_log` VALUES (23048, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:815毫秒', '0', '', '2022-04-06 11:40:02'); INSERT INTO `sys_job_log` VALUES (23049, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4360毫秒', '0', '', '2022-04-06 11:40:04'); INSERT INTO `sys_job_log` VALUES (23050, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1878毫秒', '0', '', '2022-04-06 11:40:06'); INSERT INTO `sys_job_log` VALUES (23051, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:626毫秒', '0', '', '2022-04-06 11:50:00'); INSERT INTO `sys_job_log` VALUES (23052, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2970毫秒', '0', '', '2022-04-06 11:50:02'); INSERT INTO `sys_job_log` VALUES (23053, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-04-06 12:00:02'); INSERT INTO `sys_job_log` VALUES (23054, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2031毫秒', '0', '', '2022-04-06 12:00:02'); INSERT INTO `sys_job_log` VALUES (23055, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3954毫秒', '0', '', '2022-04-06 12:00:03'); INSERT INTO `sys_job_log` VALUES (23056, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-04-06 12:10:00'); INSERT INTO `sys_job_log` VALUES (23057, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2196毫秒', '0', '', '2022-04-06 12:10:02'); INSERT INTO `sys_job_log` VALUES (23058, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:678924毫秒', '0', '', '2022-04-06 12:11:18'); INSERT INTO `sys_job_log` VALUES (23059, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2700毫秒', '0', '', '2022-04-06 12:15:32'); INSERT INTO `sys_job_log` VALUES (23060, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:633毫秒', '0', '', '2022-04-06 12:20:00'); INSERT INTO `sys_job_log` VALUES (23061, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1254毫秒', '0', '', '2022-04-06 12:20:01'); INSERT INTO `sys_job_log` VALUES (23062, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3213毫秒', '0', '', '2022-04-06 12:20:03'); INSERT INTO `sys_job_log` VALUES (23063, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2030毫秒', '0', '', '2022-04-06 12:30:02'); INSERT INTO `sys_job_log` VALUES (23064, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5761毫秒', '0', '', '2022-04-06 12:30:05'); INSERT INTO `sys_job_log` VALUES (23065, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:639毫秒', '0', '', '2022-04-06 12:40:00'); INSERT INTO `sys_job_log` VALUES (23066, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1582毫秒', '0', '', '2022-04-06 12:40:01'); INSERT INTO `sys_job_log` VALUES (23067, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3317毫秒', '0', '', '2022-04-06 12:40:03'); INSERT INTO `sys_job_log` VALUES (23068, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-04-06 12:50:00'); INSERT INTO `sys_job_log` VALUES (23069, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5114毫秒', '0', '', '2022-04-06 12:50:05'); INSERT INTO `sys_job_log` VALUES (23070, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:641毫秒', '0', '', '2022-04-06 13:00:00'); INSERT INTO `sys_job_log` VALUES (23071, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1248毫秒', '0', '', '2022-04-06 13:00:01'); INSERT INTO `sys_job_log` VALUES (23072, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3404毫秒', '0', '', '2022-04-06 13:00:03'); INSERT INTO `sys_job_log` VALUES (23073, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:847毫秒', '0', '', '2022-04-06 13:10:00'); INSERT INTO `sys_job_log` VALUES (23074, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3105毫秒', '0', '', '2022-04-06 13:10:03'); INSERT INTO `sys_job_log` VALUES (23075, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2669毫秒', '0', '', '2022-04-06 13:15:32'); INSERT INTO `sys_job_log` VALUES (23076, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:639毫秒', '0', '', '2022-04-06 13:20:00'); INSERT INTO `sys_job_log` VALUES (23077, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1510毫秒', '0', '', '2022-04-06 13:20:01'); INSERT INTO `sys_job_log` VALUES (23078, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3170毫秒', '0', '', '2022-04-06 13:20:03'); INSERT INTO `sys_job_log` VALUES (23079, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2046毫秒', '0', '', '2022-04-06 13:30:02'); INSERT INTO `sys_job_log` VALUES (23080, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3935毫秒', '0', '', '2022-04-06 13:30:03'); INSERT INTO `sys_job_log` VALUES (23081, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:233毫秒', '0', '', '2022-04-06 13:40:00'); INSERT INTO `sys_job_log` VALUES (23082, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:653毫秒', '0', '', '2022-04-06 13:40:00'); INSERT INTO `sys_job_log` VALUES (23083, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3819毫秒', '0', '', '2022-04-06 13:40:03'); INSERT INTO `sys_job_log` VALUES (23084, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:816毫秒', '0', '', '2022-04-06 13:50:00'); INSERT INTO `sys_job_log` VALUES (23085, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4207毫秒', '0', '', '2022-04-06 13:50:04'); INSERT INTO `sys_job_log` VALUES (23086, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2633毫秒', '0', '', '2022-04-06 14:00:02'); INSERT INTO `sys_job_log` VALUES (23087, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2656毫秒', '0', '', '2022-04-06 14:00:02'); INSERT INTO `sys_job_log` VALUES (23088, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:827毫秒', '0', '', '2022-04-06 14:00:03'); INSERT INTO `sys_job_log` VALUES (23089, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1094毫秒', '0', '', '2022-04-06 14:00:03'); INSERT INTO `sys_job_log` VALUES (23090, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5482毫秒', '0', '', '2022-04-06 14:00:05'); INSERT INTO `sys_job_log` VALUES (23091, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1999毫秒', '0', '', '2022-04-06 14:00:07'); INSERT INTO `sys_job_log` VALUES (23092, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2015毫秒', '0', '', '2022-04-06 14:10:02'); INSERT INTO `sys_job_log` VALUES (23093, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:811毫秒', '0', '', '2022-04-06 14:10:02'); INSERT INTO `sys_job_log` VALUES (23094, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5332毫秒', '0', '', '2022-04-06 14:10:05'); INSERT INTO `sys_job_log` VALUES (23095, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1878毫秒', '0', '', '2022-04-06 14:10:07'); INSERT INTO `sys_job_log` VALUES (23096, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1581毫秒', '0', '', '2022-04-06 14:15:31'); INSERT INTO `sys_job_log` VALUES (23097, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:652毫秒', '0', '', '2022-04-06 14:20:00'); INSERT INTO `sys_job_log` VALUES (23098, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1210毫秒', '0', '', '2022-04-06 14:20:01'); INSERT INTO `sys_job_log` VALUES (23099, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2025毫秒', '0', '', '2022-04-06 14:20:02'); INSERT INTO `sys_job_log` VALUES (23100, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:782毫秒', '0', '', '2022-04-06 14:30:00'); INSERT INTO `sys_job_log` VALUES (23101, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3664毫秒', '0', '', '2022-04-06 14:30:03'); INSERT INTO `sys_job_log` VALUES (23102, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:671毫秒', '0', '', '2022-04-06 14:40:00'); INSERT INTO `sys_job_log` VALUES (23103, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1375毫秒', '0', '', '2022-04-06 14:40:01'); INSERT INTO `sys_job_log` VALUES (23104, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3372毫秒', '0', '', '2022-04-06 14:40:03'); INSERT INTO `sys_job_log` VALUES (23105, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:663毫秒', '0', '', '2022-04-06 14:50:00'); INSERT INTO `sys_job_log` VALUES (23106, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5167毫秒', '0', '', '2022-04-06 14:50:05'); INSERT INTO `sys_job_log` VALUES (23107, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:656毫秒', '0', '', '2022-04-06 15:00:00'); INSERT INTO `sys_job_log` VALUES (23108, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1205毫秒', '0', '', '2022-04-06 15:00:01'); INSERT INTO `sys_job_log` VALUES (23109, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2110毫秒', '0', '', '2022-04-06 15:00:02'); INSERT INTO `sys_job_log` VALUES (23110, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:415毫秒', '0', '', '2022-04-06 15:10:00'); INSERT INTO `sys_job_log` VALUES (23111, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-04-06 15:10:00'); INSERT INTO `sys_job_log` VALUES (23112, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2228毫秒', '0', '', '2022-04-06 15:10:02'); INSERT INTO `sys_job_log` VALUES (23113, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1567毫秒', '0', '', '2022-04-06 15:15:31'); INSERT INTO `sys_job_log` VALUES (23114, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1017389毫秒', '0', '', '2022-04-06 15:16:57'); INSERT INTO `sys_job_log` VALUES (23115, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2273毫秒', '0', '', '2022-04-06 15:20:02'); INSERT INTO `sys_job_log` VALUES (23116, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2272毫秒', '0', '', '2022-04-06 15:20:02'); INSERT INTO `sys_job_log` VALUES (23117, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:920毫秒', '0', '', '2022-04-06 15:20:03'); INSERT INTO `sys_job_log` VALUES (23118, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1080毫秒', '0', '', '2022-04-06 15:20:03'); INSERT INTO `sys_job_log` VALUES (23119, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6503毫秒', '0', '', '2022-04-06 15:20:06'); INSERT INTO `sys_job_log` VALUES (23120, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2001毫秒', '0', '', '2022-04-06 15:20:08'); INSERT INTO `sys_job_log` VALUES (23121, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1220毫秒', '0', '', '2022-04-06 15:30:01'); INSERT INTO `sys_job_log` VALUES (23122, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:532毫秒', '0', '', '2022-04-06 15:30:01'); INSERT INTO `sys_job_log` VALUES (23123, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2793毫秒', '0', '', '2022-04-06 15:30:02'); INSERT INTO `sys_job_log` VALUES (23124, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1864毫秒', '0', '', '2022-04-06 15:30:04'); INSERT INTO `sys_job_log` VALUES (23125, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:226毫秒', '0', '', '2022-04-06 15:40:00'); INSERT INTO `sys_job_log` VALUES (23126, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:646毫秒', '0', '', '2022-04-06 15:40:00'); INSERT INTO `sys_job_log` VALUES (23127, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2083毫秒', '0', '', '2022-04-06 15:40:02'); INSERT INTO `sys_job_log` VALUES (23128, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2014毫秒', '0', '', '2022-04-06 15:50:02'); INSERT INTO `sys_job_log` VALUES (23129, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1051毫秒', '0', '', '2022-04-06 15:50:03'); INSERT INTO `sys_job_log` VALUES (23130, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4485毫秒', '0', '', '2022-04-06 15:50:04'); INSERT INTO `sys_job_log` VALUES (23131, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1984毫秒', '0', '', '2022-04-06 15:50:06'); INSERT INTO `sys_job_log` VALUES (23132, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-04-06 16:00:02'); INSERT INTO `sys_job_log` VALUES (23133, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2012毫秒', '0', '', '2022-04-06 16:00:02'); INSERT INTO `sys_job_log` VALUES (23134, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:455毫秒', '0', '', '2022-04-06 16:00:02'); INSERT INTO `sys_job_log` VALUES (23135, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:830毫秒', '0', '', '2022-04-06 16:00:02'); INSERT INTO `sys_job_log` VALUES (23136, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4325毫秒', '0', '', '2022-04-06 16:00:04'); INSERT INTO `sys_job_log` VALUES (23137, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1736毫秒', '0', '', '2022-04-06 16:00:06'); INSERT INTO `sys_job_log` VALUES (23138, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2017毫秒', '0', '', '2022-04-06 16:10:02'); INSERT INTO `sys_job_log` VALUES (23139, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4926毫秒', '0', '', '2022-04-06 16:10:04'); INSERT INTO `sys_job_log` VALUES (23140, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:862毫秒', '0', '', '2022-04-06 16:15:30'); INSERT INTO `sys_job_log` VALUES (23141, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1502毫秒', '0', '', '2022-04-06 16:20:01'); INSERT INTO `sys_job_log` VALUES (23142, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1593毫秒', '0', '', '2022-04-06 16:20:01'); INSERT INTO `sys_job_log` VALUES (23143, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3657毫秒', '0', '', '2022-04-06 16:20:03'); INSERT INTO `sys_job_log` VALUES (23144, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1615毫秒', '0', '', '2022-04-06 16:30:01'); INSERT INTO `sys_job_log` VALUES (23145, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2835毫秒', '0', '', '2022-04-06 16:30:02'); INSERT INTO `sys_job_log` VALUES (23146, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:211毫秒', '0', '', '2022-04-06 16:40:00'); INSERT INTO `sys_job_log` VALUES (23147, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:596毫秒', '0', '', '2022-04-06 16:40:00'); INSERT INTO `sys_job_log` VALUES (23148, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2993毫秒', '0', '', '2022-04-06 16:40:03'); INSERT INTO `sys_job_log` VALUES (23149, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2031毫秒', '0', '', '2022-04-06 16:50:02'); INSERT INTO `sys_job_log` VALUES (23150, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4089毫秒', '0', '', '2022-04-06 16:50:04'); INSERT INTO `sys_job_log` VALUES (23151, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:239毫秒', '0', '', '2022-04-06 17:00:00'); INSERT INTO `sys_job_log` VALUES (23152, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:595毫秒', '0', '', '2022-04-06 17:00:00'); INSERT INTO `sys_job_log` VALUES (23153, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2171毫秒', '0', '', '2022-04-06 17:00:02'); INSERT INTO `sys_job_log` VALUES (23154, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1388毫秒', '0', '', '2022-04-07 08:40:01'); INSERT INTO `sys_job_log` VALUES (23155, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1356毫秒', '0', '', '2022-04-07 08:40:01'); INSERT INTO `sys_job_log` VALUES (23156, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1412毫秒', '0', '', '2022-04-07 08:40:01'); INSERT INTO `sys_job_log` VALUES (23157, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2213毫秒', '0', '', '2022-04-07 08:50:02'); INSERT INTO `sys_job_log` VALUES (23158, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6038毫秒', '0', '', '2022-04-07 08:50:06'); INSERT INTO `sys_job_log` VALUES (23159, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:369毫秒', '0', '', '2022-04-07 09:00:00'); INSERT INTO `sys_job_log` VALUES (23160, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:728毫秒', '0', '', '2022-04-07 09:00:00'); INSERT INTO `sys_job_log` VALUES (23161, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3090毫秒', '0', '', '2022-04-07 09:00:03'); INSERT INTO `sys_job_log` VALUES (23162, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:760毫秒', '0', '', '2022-04-07 09:10:00'); INSERT INTO `sys_job_log` VALUES (23163, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3364毫秒', '0', '', '2022-04-07 09:10:03'); INSERT INTO `sys_job_log` VALUES (23164, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:52737毫秒', '0', '', '2022-04-07 09:10:52'); INSERT INTO `sys_job_log` VALUES (23165, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:662毫秒', '0', '', '2022-04-07 09:15:30'); INSERT INTO `sys_job_log` VALUES (23166, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1072143毫秒', '0', '', '2022-04-07 09:17:52'); INSERT INTO `sys_job_log` VALUES (23167, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:592毫秒', '0', '', '2022-04-07 09:20:00'); INSERT INTO `sys_job_log` VALUES (23168, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1409毫秒', '0', '', '2022-04-07 09:20:01'); INSERT INTO `sys_job_log` VALUES (23169, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5065毫秒', '0', '', '2022-04-07 09:20:05'); INSERT INTO `sys_job_log` VALUES (23170, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:635毫秒', '0', '', '2022-04-07 09:30:00'); INSERT INTO `sys_job_log` VALUES (23171, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2343毫秒', '0', '', '2022-04-07 09:30:02'); INSERT INTO `sys_job_log` VALUES (23172, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:262毫秒', '0', '', '2022-04-07 09:40:00'); INSERT INTO `sys_job_log` VALUES (23173, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:686毫秒', '0', '', '2022-04-07 09:40:00'); INSERT INTO `sys_job_log` VALUES (23174, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3319毫秒', '0', '', '2022-04-07 09:40:03'); INSERT INTO `sys_job_log` VALUES (23175, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:670毫秒', '0', '', '2022-04-07 09:50:00'); INSERT INTO `sys_job_log` VALUES (23176, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2586毫秒', '0', '', '2022-04-07 09:50:02'); INSERT INTO `sys_job_log` VALUES (23177, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:543毫秒', '0', '', '2022-04-07 10:00:00'); INSERT INTO `sys_job_log` VALUES (23178, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1341毫秒', '0', '', '2022-04-07 10:00:01'); INSERT INTO `sys_job_log` VALUES (23179, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2309毫秒', '0', '', '2022-04-07 10:00:02'); INSERT INTO `sys_job_log` VALUES (23180, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2038毫秒', '0', '', '2022-04-07 10:10:02'); INSERT INTO `sys_job_log` VALUES (23181, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4109毫秒', '0', '', '2022-04-07 10:10:04'); INSERT INTO `sys_job_log` VALUES (23182, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:765毫秒', '0', '', '2022-04-07 10:15:30'); INSERT INTO `sys_job_log` VALUES (23183, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:223毫秒', '0', '', '2022-04-07 10:20:00'); INSERT INTO `sys_job_log` VALUES (23184, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:547毫秒', '0', '', '2022-04-07 10:20:00'); INSERT INTO `sys_job_log` VALUES (23185, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3118毫秒', '0', '', '2022-04-07 10:20:03'); INSERT INTO `sys_job_log` VALUES (23186, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:506毫秒', '0', '', '2022-04-07 10:30:00'); INSERT INTO `sys_job_log` VALUES (23187, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2049毫秒', '0', '', '2022-04-07 10:30:02'); INSERT INTO `sys_job_log` VALUES (23188, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:599毫秒', '0', '', '2022-04-07 10:40:00'); INSERT INTO `sys_job_log` VALUES (23189, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1510毫秒', '0', '', '2022-04-07 10:40:01'); INSERT INTO `sys_job_log` VALUES (23190, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3096毫秒', '0', '', '2022-04-07 10:40:03'); INSERT INTO `sys_job_log` VALUES (23191, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-04-07 10:50:00'); INSERT INTO `sys_job_log` VALUES (23192, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5794毫秒', '0', '', '2022-04-07 10:50:05'); INSERT INTO `sys_job_log` VALUES (23193, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:516毫秒', '0', '', '2022-04-07 11:00:00'); INSERT INTO `sys_job_log` VALUES (23194, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1180毫秒', '0', '', '2022-04-07 11:00:01'); INSERT INTO `sys_job_log` VALUES (23195, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2153毫秒', '0', '', '2022-04-07 11:00:02'); INSERT INTO `sys_job_log` VALUES (23196, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:624毫秒', '0', '', '2022-04-07 11:10:00'); INSERT INTO `sys_job_log` VALUES (23197, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4174毫秒', '0', '', '2022-04-07 11:10:04'); INSERT INTO `sys_job_log` VALUES (23198, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1534毫秒', '0', '', '2022-04-07 11:15:31'); INSERT INTO `sys_job_log` VALUES (23199, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:519毫秒', '0', '', '2022-04-07 11:20:00'); INSERT INTO `sys_job_log` VALUES (23200, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1482毫秒', '0', '', '2022-04-07 11:20:01'); INSERT INTO `sys_job_log` VALUES (23201, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2995毫秒', '0', '', '2022-04-07 11:20:03'); INSERT INTO `sys_job_log` VALUES (23202, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:612毫秒', '0', '', '2022-04-07 11:30:00'); INSERT INTO `sys_job_log` VALUES (23203, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2004毫秒', '0', '', '2022-04-07 11:30:02'); INSERT INTO `sys_job_log` VALUES (23204, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:204毫秒', '0', '', '2022-04-07 11:40:00'); INSERT INTO `sys_job_log` VALUES (23205, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-04-07 11:40:00'); INSERT INTO `sys_job_log` VALUES (23206, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3166毫秒', '0', '', '2022-04-07 11:40:03'); INSERT INTO `sys_job_log` VALUES (23207, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-04-07 11:50:00'); INSERT INTO `sys_job_log` VALUES (23208, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3871毫秒', '0', '', '2022-04-07 11:50:03'); INSERT INTO `sys_job_log` VALUES (23209, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:79毫秒', '0', '', '2022-04-07 12:00:00'); INSERT INTO `sys_job_log` VALUES (23210, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:567毫秒', '0', '', '2022-04-07 12:00:00'); INSERT INTO `sys_job_log` VALUES (23211, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1168毫秒', '0', '', '2022-04-07 12:00:01'); INSERT INTO `sys_job_log` VALUES (23212, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4083毫秒', '0', '', '2022-04-07 12:00:04'); INSERT INTO `sys_job_log` VALUES (23213, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:592毫秒', '0', '', '2022-04-07 12:10:00'); INSERT INTO `sys_job_log` VALUES (23214, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1922毫秒', '0', '', '2022-04-07 12:10:01'); INSERT INTO `sys_job_log` VALUES (23215, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:752毫秒', '0', '', '2022-04-07 12:15:30'); INSERT INTO `sys_job_log` VALUES (23216, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:527毫秒', '0', '', '2022-04-07 12:20:00'); INSERT INTO `sys_job_log` VALUES (23217, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2022毫秒', '0', '', '2022-04-07 12:20:02'); INSERT INTO `sys_job_log` VALUES (23218, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3214毫秒', '0', '', '2022-04-07 12:20:03'); INSERT INTO `sys_job_log` VALUES (23219, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:554毫秒', '0', '', '2022-04-07 12:30:00'); INSERT INTO `sys_job_log` VALUES (23220, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3118毫秒', '0', '', '2022-04-07 12:30:03'); INSERT INTO `sys_job_log` VALUES (23221, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:551毫秒', '0', '', '2022-04-07 12:40:00'); INSERT INTO `sys_job_log` VALUES (23222, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1440毫秒', '0', '', '2022-04-07 12:40:01'); INSERT INTO `sys_job_log` VALUES (23223, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3151毫秒', '0', '', '2022-04-07 12:40:03'); INSERT INTO `sys_job_log` VALUES (23224, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:675毫秒', '0', '', '2022-04-07 12:50:00'); INSERT INTO `sys_job_log` VALUES (23225, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4365毫秒', '0', '', '2022-04-07 12:50:04'); INSERT INTO `sys_job_log` VALUES (23226, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:639毫秒', '0', '', '2022-04-07 13:00:00'); INSERT INTO `sys_job_log` VALUES (23227, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1251毫秒', '0', '', '2022-04-07 13:00:01'); INSERT INTO `sys_job_log` VALUES (23228, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4144毫秒', '0', '', '2022-04-07 13:00:04'); INSERT INTO `sys_job_log` VALUES (23229, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:678毫秒', '0', '', '2022-04-07 13:10:00'); INSERT INTO `sys_job_log` VALUES (23230, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2876毫秒', '0', '', '2022-04-07 13:10:02'); INSERT INTO `sys_job_log` VALUES (23231, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:616毫秒', '0', '', '2022-04-07 13:15:30'); INSERT INTO `sys_job_log` VALUES (23232, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1493毫秒', '0', '', '2022-04-07 13:20:01'); INSERT INTO `sys_job_log` VALUES (23233, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1531毫秒', '0', '', '2022-04-07 13:20:01'); INSERT INTO `sys_job_log` VALUES (23234, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2987毫秒', '0', '', '2022-04-07 13:20:02'); INSERT INTO `sys_job_log` VALUES (23235, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:510毫秒', '0', '', '2022-04-07 13:30:00'); INSERT INTO `sys_job_log` VALUES (23236, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2842毫秒', '0', '', '2022-04-07 13:30:02'); INSERT INTO `sys_job_log` VALUES (23237, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:216毫秒', '0', '', '2022-04-07 13:40:00'); INSERT INTO `sys_job_log` VALUES (23238, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:504毫秒', '0', '', '2022-04-07 13:40:00'); INSERT INTO `sys_job_log` VALUES (23239, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1911毫秒', '0', '', '2022-04-07 13:40:01'); INSERT INTO `sys_job_log` VALUES (23240, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:691毫秒', '0', '', '2022-04-07 13:50:00'); INSERT INTO `sys_job_log` VALUES (23241, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4106毫秒', '0', '', '2022-04-07 13:50:04'); INSERT INTO `sys_job_log` VALUES (23242, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:541毫秒', '0', '', '2022-04-07 14:00:00'); INSERT INTO `sys_job_log` VALUES (23243, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1166毫秒', '0', '', '2022-04-07 14:00:01'); INSERT INTO `sys_job_log` VALUES (23244, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3163毫秒', '0', '', '2022-04-07 14:00:03'); INSERT INTO `sys_job_log` VALUES (23245, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:581毫秒', '0', '', '2022-04-07 14:10:00'); INSERT INTO `sys_job_log` VALUES (23246, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4254毫秒', '0', '', '2022-04-07 14:10:04'); INSERT INTO `sys_job_log` VALUES (23247, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1643毫秒', '0', '', '2022-04-07 14:15:31'); INSERT INTO `sys_job_log` VALUES (23248, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:601毫秒', '0', '', '2022-04-07 14:20:00'); INSERT INTO `sys_job_log` VALUES (23249, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1187毫秒', '0', '', '2022-04-07 14:20:01'); INSERT INTO `sys_job_log` VALUES (23250, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2971毫秒', '0', '', '2022-04-07 14:20:02'); INSERT INTO `sys_job_log` VALUES (23251, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-04-07 14:30:00'); INSERT INTO `sys_job_log` VALUES (23252, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3057毫秒', '0', '', '2022-04-07 14:30:03'); INSERT INTO `sys_job_log` VALUES (23253, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:462毫秒', '0', '', '2022-04-07 14:40:00'); INSERT INTO `sys_job_log` VALUES (23254, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:658毫秒', '0', '', '2022-04-07 14:40:00'); INSERT INTO `sys_job_log` VALUES (23255, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3953毫秒', '0', '', '2022-04-07 14:40:03'); INSERT INTO `sys_job_log` VALUES (23256, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1741毫秒', '0', '', '2022-04-07 14:50:01'); INSERT INTO `sys_job_log` VALUES (23257, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3169毫秒', '0', '', '2022-04-07 14:50:03'); INSERT INTO `sys_job_log` VALUES (23258, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:234毫秒', '0', '', '2022-04-07 15:00:00'); INSERT INTO `sys_job_log` VALUES (23259, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:647毫秒', '0', '', '2022-04-07 15:00:00'); INSERT INTO `sys_job_log` VALUES (23260, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3003毫秒', '0', '', '2022-04-07 15:00:03'); INSERT INTO `sys_job_log` VALUES (23261, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:371毫秒', '0', '', '2022-04-07 15:10:00'); INSERT INTO `sys_job_log` VALUES (23262, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:555毫秒', '0', '', '2022-04-07 15:10:00'); INSERT INTO `sys_job_log` VALUES (23263, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2202毫秒', '0', '', '2022-04-07 15:10:02'); INSERT INTO `sys_job_log` VALUES (23264, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:821567毫秒', '0', '', '2022-04-07 15:13:41'); INSERT INTO `sys_job_log` VALUES (23265, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:627毫秒', '0', '', '2022-04-07 15:15:30'); INSERT INTO `sys_job_log` VALUES (23266, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:436毫秒', '0', '', '2022-04-07 15:20:00'); INSERT INTO `sys_job_log` VALUES (23267, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:548毫秒', '0', '', '2022-04-07 15:20:00'); INSERT INTO `sys_job_log` VALUES (23268, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1966毫秒', '0', '', '2022-04-07 15:20:01'); INSERT INTO `sys_job_log` VALUES (23269, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:555毫秒', '0', '', '2022-04-07 15:30:00'); INSERT INTO `sys_job_log` VALUES (23270, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2081毫秒', '0', '', '2022-04-07 15:30:02'); INSERT INTO `sys_job_log` VALUES (23271, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:213毫秒', '0', '', '2022-04-07 15:40:00'); INSERT INTO `sys_job_log` VALUES (23272, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:617毫秒', '0', '', '2022-04-07 15:40:00'); INSERT INTO `sys_job_log` VALUES (23273, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2202毫秒', '0', '', '2022-04-07 15:40:02'); INSERT INTO `sys_job_log` VALUES (23274, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:572毫秒', '0', '', '2022-04-07 15:50:00'); INSERT INTO `sys_job_log` VALUES (23275, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2931毫秒', '0', '', '2022-04-07 15:50:02'); INSERT INTO `sys_job_log` VALUES (23276, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:533毫秒', '0', '', '2022-04-07 16:00:00'); INSERT INTO `sys_job_log` VALUES (23277, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-04-07 16:00:00'); INSERT INTO `sys_job_log` VALUES (23278, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1988毫秒', '0', '', '2022-04-07 16:00:01'); INSERT INTO `sys_job_log` VALUES (23279, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-04-07 16:10:00'); INSERT INTO `sys_job_log` VALUES (23280, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2900毫秒', '0', '', '2022-04-07 16:10:02'); INSERT INTO `sys_job_log` VALUES (23281, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:808毫秒', '0', '', '2022-04-07 16:15:30'); INSERT INTO `sys_job_log` VALUES (23282, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:290毫秒', '0', '', '2022-04-07 16:20:00'); INSERT INTO `sys_job_log` VALUES (23283, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:587毫秒', '0', '', '2022-04-07 16:20:00'); INSERT INTO `sys_job_log` VALUES (23284, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2046毫秒', '0', '', '2022-04-07 16:20:02'); INSERT INTO `sys_job_log` VALUES (23285, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1510毫秒', '0', '', '2022-04-07 16:30:01'); INSERT INTO `sys_job_log` VALUES (23286, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6176毫秒', '0', '', '2022-04-07 16:30:06'); INSERT INTO `sys_job_log` VALUES (23287, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:222毫秒', '0', '', '2022-04-07 16:40:00'); INSERT INTO `sys_job_log` VALUES (23288, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:602毫秒', '0', '', '2022-04-07 16:40:00'); INSERT INTO `sys_job_log` VALUES (23289, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3386毫秒', '0', '', '2022-04-07 16:40:03'); INSERT INTO `sys_job_log` VALUES (23290, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:606毫秒', '0', '', '2022-04-07 16:50:00'); INSERT INTO `sys_job_log` VALUES (23291, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3127毫秒', '0', '', '2022-04-07 16:50:03'); INSERT INTO `sys_job_log` VALUES (23292, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:593毫秒', '0', '', '2022-04-07 17:00:00'); INSERT INTO `sys_job_log` VALUES (23293, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1200毫秒', '0', '', '2022-04-07 17:00:01'); INSERT INTO `sys_job_log` VALUES (23294, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2945毫秒', '0', '', '2022-04-07 17:00:02'); INSERT INTO `sys_job_log` VALUES (23295, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2018毫秒', '0', '', '2022-04-07 17:10:02'); INSERT INTO `sys_job_log` VALUES (23296, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5583毫秒', '0', '', '2022-04-07 17:10:05'); INSERT INTO `sys_job_log` VALUES (23297, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3898毫秒', '0', '', '2022-04-07 17:15:33'); INSERT INTO `sys_job_log` VALUES (23298, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2084毫秒', '0', '', '2022-04-07 17:20:02'); INSERT INTO `sys_job_log` VALUES (23299, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2063毫秒', '0', '', '2022-04-07 17:20:02'); INSERT INTO `sys_job_log` VALUES (23300, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:9322毫秒', '0', '', '2022-04-07 17:20:09'); INSERT INTO `sys_job_log` VALUES (23301, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:790毫秒', '0', '', '2022-04-07 17:30:00'); INSERT INTO `sys_job_log` VALUES (23302, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2880毫秒', '0', '', '2022-04-07 17:30:02'); INSERT INTO `sys_job_log` VALUES (23303, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1510毫秒', '0', '', '2022-04-08 08:40:01'); INSERT INTO `sys_job_log` VALUES (23304, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1775毫秒', '0', '', '2022-04-08 08:40:01'); INSERT INTO `sys_job_log` VALUES (23305, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3167毫秒', '0', '', '2022-04-08 08:40:03'); INSERT INTO `sys_job_log` VALUES (23306, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:757毫秒', '0', '', '2022-04-08 08:50:00'); INSERT INTO `sys_job_log` VALUES (23307, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4321毫秒', '0', '', '2022-04-08 08:50:04'); INSERT INTO `sys_job_log` VALUES (23308, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2572毫秒', '0', '', '2022-04-08 09:00:02'); INSERT INTO `sys_job_log` VALUES (23309, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2569毫秒', '0', '', '2022-04-08 09:00:02'); INSERT INTO `sys_job_log` VALUES (23310, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5606毫秒', '0', '', '2022-04-08 09:00:05'); INSERT INTO `sys_job_log` VALUES (23311, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:575毫秒', '0', '', '2022-04-08 09:10:00'); INSERT INTO `sys_job_log` VALUES (23312, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2985毫秒', '0', '', '2022-04-08 09:10:03'); INSERT INTO `sys_job_log` VALUES (23313, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:61661毫秒', '0', '', '2022-04-08 09:11:01'); INSERT INTO `sys_job_log` VALUES (23314, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:958毫秒', '0', '', '2022-04-08 09:15:30'); INSERT INTO `sys_job_log` VALUES (23315, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1070954毫秒', '0', '', '2022-04-08 09:17:50'); INSERT INTO `sys_job_log` VALUES (23316, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:609毫秒', '0', '', '2022-04-08 09:20:00'); INSERT INTO `sys_job_log` VALUES (23317, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1221毫秒', '0', '', '2022-04-08 09:20:01'); INSERT INTO `sys_job_log` VALUES (23318, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2905毫秒', '0', '', '2022-04-08 09:20:02'); INSERT INTO `sys_job_log` VALUES (23319, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:623毫秒', '0', '', '2022-04-08 09:30:00'); INSERT INTO `sys_job_log` VALUES (23320, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3145毫秒', '0', '', '2022-04-08 09:30:03'); INSERT INTO `sys_job_log` VALUES (23321, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:723毫秒', '0', '', '2022-04-08 09:40:00'); INSERT INTO `sys_job_log` VALUES (23322, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1922毫秒', '0', '', '2022-04-08 09:40:01'); INSERT INTO `sys_job_log` VALUES (23323, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3622毫秒', '0', '', '2022-04-08 09:40:03'); INSERT INTO `sys_job_log` VALUES (23324, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:807毫秒', '0', '', '2022-04-08 09:50:00'); INSERT INTO `sys_job_log` VALUES (23325, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3463毫秒', '0', '', '2022-04-08 09:50:03'); INSERT INTO `sys_job_log` VALUES (23326, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:616毫秒', '0', '', '2022-04-08 10:00:00'); INSERT INTO `sys_job_log` VALUES (23327, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1232毫秒', '0', '', '2022-04-08 10:00:01'); INSERT INTO `sys_job_log` VALUES (23328, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3180毫秒', '0', '', '2022-04-08 10:00:03'); INSERT INTO `sys_job_log` VALUES (23329, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:604毫秒', '0', '', '2022-04-08 10:10:00'); INSERT INTO `sys_job_log` VALUES (23330, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3046毫秒', '0', '', '2022-04-08 10:10:03'); INSERT INTO `sys_job_log` VALUES (23331, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2691毫秒', '0', '', '2022-04-08 10:15:32'); INSERT INTO `sys_job_log` VALUES (23332, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:792毫秒', '0', '', '2022-04-08 10:20:00'); INSERT INTO `sys_job_log` VALUES (23333, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1539毫秒', '0', '', '2022-04-08 10:20:01'); INSERT INTO `sys_job_log` VALUES (23334, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3207毫秒', '0', '', '2022-04-08 10:20:03'); INSERT INTO `sys_job_log` VALUES (23335, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2322毫秒', '0', '', '2022-04-08 10:30:02'); INSERT INTO `sys_job_log` VALUES (23336, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4499毫秒', '0', '', '2022-04-08 10:30:04'); INSERT INTO `sys_job_log` VALUES (23337, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2092毫秒', '0', '', '2022-04-08 10:40:02'); INSERT INTO `sys_job_log` VALUES (23338, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2091毫秒', '0', '', '2022-04-08 10:40:02'); INSERT INTO `sys_job_log` VALUES (23339, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4293毫秒', '0', '', '2022-04-08 10:40:04'); INSERT INTO `sys_job_log` VALUES (23340, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1561毫秒', '0', '', '2022-04-08 10:50:01'); INSERT INTO `sys_job_log` VALUES (23341, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3117毫秒', '0', '', '2022-04-08 10:50:03'); INSERT INTO `sys_job_log` VALUES (23342, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:510毫秒', '0', '', '2022-04-08 11:00:00'); INSERT INTO `sys_job_log` VALUES (23343, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:585毫秒', '0', '', '2022-04-08 11:00:00'); INSERT INTO `sys_job_log` VALUES (23344, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2059毫秒', '0', '', '2022-04-08 11:00:02'); INSERT INTO `sys_job_log` VALUES (23345, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2033毫秒', '0', '', '2022-04-08 11:10:02'); INSERT INTO `sys_job_log` VALUES (23346, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4051毫秒', '0', '', '2022-04-08 11:10:04'); INSERT INTO `sys_job_log` VALUES (23347, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2917毫秒', '0', '', '2022-04-08 11:15:32'); INSERT INTO `sys_job_log` VALUES (23348, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:712毫秒', '0', '', '2022-04-08 11:15:33'); INSERT INTO `sys_job_log` VALUES (23349, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:3059毫秒', '0', '', '2022-04-08 11:30:03'); INSERT INTO `sys_job_log` VALUES (23350, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6614毫秒', '0', '', '2022-04-08 11:30:06'); INSERT INTO `sys_job_log` VALUES (23351, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:681毫秒', '0', '', '2022-04-08 11:40:00'); INSERT INTO `sys_job_log` VALUES (23352, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2101毫秒', '0', '', '2022-04-08 11:40:02'); INSERT INTO `sys_job_log` VALUES (23353, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3749毫秒', '0', '', '2022-04-08 11:40:03'); INSERT INTO `sys_job_log` VALUES (23354, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:552毫秒', '0', '', '2022-04-08 11:50:00'); INSERT INTO `sys_job_log` VALUES (23355, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3925毫秒', '0', '', '2022-04-08 11:50:03'); INSERT INTO `sys_job_log` VALUES (23356, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:628毫秒', '0', '', '2022-04-08 12:00:00'); INSERT INTO `sys_job_log` VALUES (23357, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-04-08 12:00:02'); INSERT INTO `sys_job_log` VALUES (23358, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2329毫秒', '0', '', '2022-04-08 12:00:02'); INSERT INTO `sys_job_log` VALUES (23359, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1062毫秒', '0', '', '2022-04-08 12:10:01'); INSERT INTO `sys_job_log` VALUES (23360, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3718毫秒', '0', '', '2022-04-08 12:10:03'); INSERT INTO `sys_job_log` VALUES (23361, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2792毫秒', '0', '', '2022-04-08 12:15:32'); INSERT INTO `sys_job_log` VALUES (23362, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:661毫秒', '0', '', '2022-04-08 12:20:00'); INSERT INTO `sys_job_log` VALUES (23363, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:910毫秒', '0', '', '2022-04-08 12:20:00'); INSERT INTO `sys_job_log` VALUES (23364, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4506毫秒', '0', '', '2022-04-08 12:20:04'); INSERT INTO `sys_job_log` VALUES (23365, '新浪新闻-爬虫-定时任务', 'REPTILE', 'SinaTask.sinaNews', '新浪新闻-爬虫-定时任务 总共耗时:1482778毫秒', '0', '', '2022-04-08 12:24:42'); INSERT INTO `sys_job_log` VALUES (23366, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2047毫秒', '0', '', '2022-04-08 12:30:02'); INSERT INTO `sys_job_log` VALUES (23367, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4542毫秒', '0', '', '2022-04-08 12:30:04'); INSERT INTO `sys_job_log` VALUES (23368, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:309毫秒', '0', '', '2022-04-08 12:40:00'); INSERT INTO `sys_job_log` VALUES (23369, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:638毫秒', '0', '', '2022-04-08 12:40:00'); INSERT INTO `sys_job_log` VALUES (23370, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3068毫秒', '0', '', '2022-04-08 12:40:03'); INSERT INTO `sys_job_log` VALUES (23371, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:600毫秒', '0', '', '2022-04-08 12:50:00'); INSERT INTO `sys_job_log` VALUES (23372, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3001毫秒', '0', '', '2022-04-08 12:50:03'); INSERT INTO `sys_job_log` VALUES (23373, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:572毫秒', '0', '', '2022-04-08 13:00:00'); INSERT INTO `sys_job_log` VALUES (23374, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1483毫秒', '0', '', '2022-04-08 13:00:01'); INSERT INTO `sys_job_log` VALUES (23375, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2126毫秒', '0', '', '2022-04-08 13:00:02'); INSERT INTO `sys_job_log` VALUES (23376, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:565毫秒', '0', '', '2022-04-08 13:10:00'); INSERT INTO `sys_job_log` VALUES (23377, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2149毫秒', '0', '', '2022-04-08 13:10:02'); INSERT INTO `sys_job_log` VALUES (23378, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:1581毫秒', '0', '', '2022-04-08 13:15:31'); INSERT INTO `sys_job_log` VALUES (23379, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:227毫秒', '0', '', '2022-04-08 13:20:00'); INSERT INTO `sys_job_log` VALUES (23380, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:551毫秒', '0', '', '2022-04-08 13:20:00'); INSERT INTO `sys_job_log` VALUES (23381, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2182毫秒', '0', '', '2022-04-08 13:20:02'); INSERT INTO `sys_job_log` VALUES (23382, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:543毫秒', '0', '', '2022-04-08 13:30:00'); INSERT INTO `sys_job_log` VALUES (23383, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:1977毫秒', '0', '', '2022-04-08 13:30:01'); INSERT INTO `sys_job_log` VALUES (23384, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1487毫秒', '0', '', '2022-04-08 13:40:01'); INSERT INTO `sys_job_log` VALUES (23385, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2020毫秒', '0', '', '2022-04-08 13:40:02'); INSERT INTO `sys_job_log` VALUES (23386, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3693毫秒', '0', '', '2022-04-08 13:40:03'); INSERT INTO `sys_job_log` VALUES (23387, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:570毫秒', '0', '', '2022-04-08 13:50:00'); INSERT INTO `sys_job_log` VALUES (23388, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3191毫秒', '0', '', '2022-04-08 13:50:03'); INSERT INTO `sys_job_log` VALUES (23389, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1640毫秒', '0', '', '2022-04-08 14:00:01'); INSERT INTO `sys_job_log` VALUES (23390, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2013毫秒', '0', '', '2022-04-08 14:00:02'); INSERT INTO `sys_job_log` VALUES (23391, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3076毫秒', '0', '', '2022-04-08 14:00:03'); INSERT INTO `sys_job_log` VALUES (23392, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:610毫秒', '0', '', '2022-04-08 14:10:00'); INSERT INTO `sys_job_log` VALUES (23393, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2952毫秒', '0', '', '2022-04-08 14:10:02'); INSERT INTO `sys_job_log` VALUES (23394, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:3383毫秒', '0', '', '2022-04-08 14:15:33'); INSERT INTO `sys_job_log` VALUES (23395, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2049毫秒', '0', '', '2022-04-08 14:20:02'); INSERT INTO `sys_job_log` VALUES (23396, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2039毫秒', '0', '', '2022-04-08 14:20:02'); INSERT INTO `sys_job_log` VALUES (23397, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6231毫秒', '0', '', '2022-04-08 14:20:06'); INSERT INTO `sys_job_log` VALUES (23398, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:734毫秒', '0', '', '2022-04-08 14:30:00'); INSERT INTO `sys_job_log` VALUES (23399, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:4154毫秒', '0', '', '2022-04-08 14:30:04'); INSERT INTO `sys_job_log` VALUES (23400, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2039毫秒', '0', '', '2022-04-08 14:40:02'); INSERT INTO `sys_job_log` VALUES (23401, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2031毫秒', '0', '', '2022-04-08 14:40:02'); INSERT INTO `sys_job_log` VALUES (23402, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:14834毫秒', '0', '', '2022-04-08 14:40:14'); INSERT INTO `sys_job_log` VALUES (23403, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1661毫秒', '0', '', '2022-04-08 14:50:01'); INSERT INTO `sys_job_log` VALUES (23404, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3118毫秒', '0', '', '2022-04-08 14:50:03'); INSERT INTO `sys_job_log` VALUES (23405, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2081毫秒', '0', '', '2022-04-08 15:00:02'); INSERT INTO `sys_job_log` VALUES (23406, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2067毫秒', '0', '', '2022-04-08 15:00:02'); INSERT INTO `sys_job_log` VALUES (23407, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3307毫秒', '0', '', '2022-04-08 15:00:03'); INSERT INTO `sys_job_log` VALUES (23408, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2998毫秒', '0', '', '2022-04-08 15:10:03'); INSERT INTO `sys_job_log` VALUES (23409, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:6755毫秒', '0', '', '2022-04-08 15:10:06'); INSERT INTO `sys_job_log` VALUES (23410, '文案网-爬虫-定时任务', 'REPTILE', 'CopyWritingNetworkTask.copyWritingNetwork', '文案网-爬虫-定时任务 总共耗时:62942毫秒', '0', '', '2022-04-08 15:11:02'); INSERT INTO `sys_job_log` VALUES (23411, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2762毫秒', '0', '', '2022-04-08 15:15:32'); INSERT INTO `sys_job_log` VALUES (23412, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2062毫秒', '0', '', '2022-04-08 15:20:02'); INSERT INTO `sys_job_log` VALUES (23413, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2055毫秒', '0', '', '2022-04-08 15:20:02'); INSERT INTO `sys_job_log` VALUES (23414, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:12028毫秒', '0', '', '2022-04-08 15:20:12'); INSERT INTO `sys_job_log` VALUES (23415, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1799毫秒', '0', '', '2022-04-08 15:30:01'); INSERT INTO `sys_job_log` VALUES (23416, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3442毫秒', '0', '', '2022-04-08 15:30:03'); INSERT INTO `sys_job_log` VALUES (23417, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:767毫秒', '0', '', '2022-04-08 15:40:00'); INSERT INTO `sys_job_log` VALUES (23418, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:775毫秒', '0', '', '2022-04-08 15:40:00'); INSERT INTO `sys_job_log` VALUES (23419, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:756毫秒', '0', '', '2022-04-08 15:40:00'); INSERT INTO `sys_job_log` VALUES (23420, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2556毫秒', '0', '', '2022-04-08 15:50:02'); INSERT INTO `sys_job_log` VALUES (23421, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5407毫秒', '0', '', '2022-04-08 15:50:05'); INSERT INTO `sys_job_log` VALUES (23422, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:662毫秒', '0', '', '2022-04-08 16:00:00'); INSERT INTO `sys_job_log` VALUES (23423, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:825毫秒', '0', '', '2022-04-08 16:00:00'); INSERT INTO `sys_job_log` VALUES (23424, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2310毫秒', '0', '', '2022-04-08 16:00:02'); INSERT INTO `sys_job_log` VALUES (23425, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:30毫秒', '0', '', '2022-04-08 16:10:00'); INSERT INTO `sys_job_log` VALUES (23426, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:45毫秒', '0', '', '2022-04-08 16:10:00'); INSERT INTO `sys_job_log` VALUES (23427, '微信搜狗-爬虫-定时任务', 'REPTILE', 'WeiXinSouGouTask.weiXinSouGou', '微信搜狗-爬虫-定时任务 总共耗时:2453毫秒', '0', '', '2022-04-08 16:15:32'); INSERT INTO `sys_job_log` VALUES (23428, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2949毫秒', '0', '', '2022-04-08 16:20:02'); INSERT INTO `sys_job_log` VALUES (23429, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2968毫秒', '0', '', '2022-04-08 16:20:02'); INSERT INTO `sys_job_log` VALUES (23430, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2022毫秒', '0', '', '2022-04-08 16:20:05'); INSERT INTO `sys_job_log` VALUES (23431, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2015毫秒', '0', '', '2022-04-08 16:20:05'); INSERT INTO `sys_job_log` VALUES (23432, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:8861毫秒', '0', '', '2022-04-08 16:20:08'); INSERT INTO `sys_job_log` VALUES (23433, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2128毫秒', '0', '', '2022-04-08 16:20:11'); INSERT INTO `sys_job_log` VALUES (23434, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2685毫秒', '0', '', '2022-04-08 16:30:02'); INSERT INTO `sys_job_log` VALUES (23435, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:5515毫秒', '0', '', '2022-04-08 16:30:05'); INSERT INTO `sys_job_log` VALUES (23436, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:2014毫秒', '0', '', '2022-04-08 16:40:02'); INSERT INTO `sys_job_log` VALUES (23437, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:2014毫秒', '0', '', '2022-04-08 16:40:02'); INSERT INTO `sys_job_log` VALUES (23438, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3714毫秒', '0', '', '2022-04-08 16:40:03'); INSERT INTO `sys_job_log` VALUES (23439, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:1845毫秒', '0', '', '2022-04-08 16:50:01'); INSERT INTO `sys_job_log` VALUES (23440, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:3499毫秒', '0', '', '2022-04-08 16:50:03'); INSERT INTO `sys_job_log` VALUES (23441, '热搜榜定时任务', 'API', 'TopSearchTask.getTopSearch', '热搜榜定时任务 总共耗时:637毫秒', '0', '', '2022-04-08 17:00:00'); INSERT INTO `sys_job_log` VALUES (23442, '天气预报定时任务', 'API', 'WeatherTask.execute', '天气预报定时任务 总共耗时:1242毫秒', '0', '', '2022-04-08 17:00:01'); INSERT INTO `sys_job_log` VALUES (23443, '文案调用任务', 'API', 'CopyWritingTask.execute', '文案调用任务 总共耗时:2992毫秒', '0', '', '2022-04-08 17:00:03'); -- ---------------------------- -- Table structure for sys_logininfor -- ---------------------------- DROP TABLE IF EXISTS `sys_logininfor`; CREATE TABLE `sys_logininfor` ( `info_id` bigint NOT NULL AUTO_INCREMENT COMMENT '访问ID', `user_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '用户账号', `ipaddr` varchar(128) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '登录IP地址', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '登录状态(0成功 1失败)', `msg` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '提示信息', `access_time` datetime NULL DEFAULT NULL COMMENT '访问时间', PRIMARY KEY (`info_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 394 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统访问记录' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_logininfor -- ---------------------------- INSERT INTO `sys_logininfor` VALUES (100, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-24 20:06:46'); INSERT INTO `sys_logininfor` VALUES (101, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-24 23:06:06'); INSERT INTO `sys_logininfor` VALUES (102, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-24 23:06:23'); INSERT INTO `sys_logininfor` VALUES (103, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-24 23:06:27'); INSERT INTO `sys_logininfor` VALUES (104, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-25 14:32:05'); INSERT INTO `sys_logininfor` VALUES (105, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 09:57:24'); INSERT INTO `sys_logininfor` VALUES (106, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 16:28:46'); INSERT INTO `sys_logininfor` VALUES (107, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 16:28:52'); INSERT INTO `sys_logininfor` VALUES (108, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 16:34:28'); INSERT INTO `sys_logininfor` VALUES (109, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 16:34:34'); INSERT INTO `sys_logininfor` VALUES (110, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 16:44:47'); INSERT INTO `sys_logininfor` VALUES (111, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 16:44:51'); INSERT INTO `sys_logininfor` VALUES (112, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 16:45:09'); INSERT INTO `sys_logininfor` VALUES (113, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 16:45:15'); INSERT INTO `sys_logininfor` VALUES (114, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 16:46:26'); INSERT INTO `sys_logininfor` VALUES (115, 'test', '127.0.0.1', '1', '用户密码错误', '2021-12-26 16:46:31'); INSERT INTO `sys_logininfor` VALUES (116, 'test', '127.0.0.1', '0', '登录成功', '2021-12-26 16:46:38'); INSERT INTO `sys_logininfor` VALUES (117, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 16:51:21'); INSERT INTO `sys_logininfor` VALUES (118, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 16:57:27'); INSERT INTO `sys_logininfor` VALUES (119, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 16:57:34'); INSERT INTO `sys_logininfor` VALUES (120, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 17:07:22'); INSERT INTO `sys_logininfor` VALUES (121, 'test', '127.0.0.1', '0', '登录成功', '2021-12-26 17:07:31'); INSERT INTO `sys_logininfor` VALUES (122, 'test', '127.0.0.1', '0', '退出成功', '2021-12-26 17:08:13'); INSERT INTO `sys_logininfor` VALUES (123, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 17:08:16'); INSERT INTO `sys_logininfor` VALUES (124, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 17:10:30'); INSERT INTO `sys_logininfor` VALUES (125, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 17:10:34'); INSERT INTO `sys_logininfor` VALUES (126, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 17:11:05'); INSERT INTO `sys_logininfor` VALUES (127, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 17:12:19'); INSERT INTO `sys_logininfor` VALUES (128, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 17:12:35'); INSERT INTO `sys_logininfor` VALUES (129, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 17:14:33'); INSERT INTO `sys_logininfor` VALUES (130, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 17:14:36'); INSERT INTO `sys_logininfor` VALUES (131, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 17:19:14'); INSERT INTO `sys_logininfor` VALUES (132, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 17:19:41'); INSERT INTO `sys_logininfor` VALUES (133, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 17:21:20'); INSERT INTO `sys_logininfor` VALUES (134, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 18:40:50'); INSERT INTO `sys_logininfor` VALUES (135, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 18:48:40'); INSERT INTO `sys_logininfor` VALUES (136, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 18:49:28'); INSERT INTO `sys_logininfor` VALUES (137, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 18:49:34'); INSERT INTO `sys_logininfor` VALUES (138, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-26 18:49:46'); INSERT INTO `sys_logininfor` VALUES (139, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 18:49:59'); INSERT INTO `sys_logininfor` VALUES (140, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-26 18:56:22'); INSERT INTO `sys_logininfor` VALUES (141, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-27 08:39:53'); INSERT INTO `sys_logininfor` VALUES (142, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-27 18:59:59'); INSERT INTO `sys_logininfor` VALUES (143, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-28 08:32:55'); INSERT INTO `sys_logininfor` VALUES (144, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-28 09:53:27'); INSERT INTO `sys_logininfor` VALUES (145, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-28 19:29:01'); INSERT INTO `sys_logininfor` VALUES (146, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-28 19:29:55'); INSERT INTO `sys_logininfor` VALUES (147, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-29 08:41:09'); INSERT INTO `sys_logininfor` VALUES (148, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-29 13:03:48'); INSERT INTO `sys_logininfor` VALUES (149, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-29 13:03:48'); INSERT INTO `sys_logininfor` VALUES (150, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-29 13:03:52'); INSERT INTO `sys_logininfor` VALUES (151, 'admin', '127.0.0.1', '0', '退出成功', '2021-12-29 13:05:02'); INSERT INTO `sys_logininfor` VALUES (152, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-29 13:05:04'); INSERT INTO `sys_logininfor` VALUES (153, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-29 18:52:12'); INSERT INTO `sys_logininfor` VALUES (154, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-29 20:16:43'); INSERT INTO `sys_logininfor` VALUES (155, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-29 22:56:43'); INSERT INTO `sys_logininfor` VALUES (156, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-30 09:16:50'); INSERT INTO `sys_logininfor` VALUES (157, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-30 18:21:28'); INSERT INTO `sys_logininfor` VALUES (158, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-31 00:20:45'); INSERT INTO `sys_logininfor` VALUES (159, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-31 08:46:18'); INSERT INTO `sys_logininfor` VALUES (160, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-31 16:10:04'); INSERT INTO `sys_logininfor` VALUES (161, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-31 16:19:06'); INSERT INTO `sys_logininfor` VALUES (162, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-31 16:56:38'); INSERT INTO `sys_logininfor` VALUES (163, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-31 17:01:20'); INSERT INTO `sys_logininfor` VALUES (164, 'admin', '127.0.0.1', '0', '登录成功', '2021-12-31 17:10:25'); INSERT INTO `sys_logininfor` VALUES (165, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-01 00:59:31'); INSERT INTO `sys_logininfor` VALUES (166, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-01 15:01:39'); INSERT INTO `sys_logininfor` VALUES (167, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-01 23:23:49'); INSERT INTO `sys_logininfor` VALUES (168, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-02 12:30:39'); INSERT INTO `sys_logininfor` VALUES (169, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-02 21:13:41'); INSERT INTO `sys_logininfor` VALUES (170, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-03 19:06:36'); INSERT INTO `sys_logininfor` VALUES (171, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-03 22:13:29'); INSERT INTO `sys_logininfor` VALUES (172, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-05 14:22:44'); INSERT INTO `sys_logininfor` VALUES (173, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-05 20:45:48'); INSERT INTO `sys_logininfor` VALUES (174, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-06 09:54:28'); INSERT INTO `sys_logininfor` VALUES (175, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-06 20:19:32'); INSERT INTO `sys_logininfor` VALUES (176, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-07 08:56:59'); INSERT INTO `sys_logininfor` VALUES (177, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-07 09:01:30'); INSERT INTO `sys_logininfor` VALUES (178, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-07 09:01:34'); INSERT INTO `sys_logininfor` VALUES (179, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-07 09:10:30'); INSERT INTO `sys_logininfor` VALUES (180, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-07 09:10:36'); INSERT INTO `sys_logininfor` VALUES (181, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-07 09:11:12'); INSERT INTO `sys_logininfor` VALUES (182, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-07 09:11:23'); INSERT INTO `sys_logininfor` VALUES (183, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-07 09:12:30'); INSERT INTO `sys_logininfor` VALUES (184, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-07 09:13:55'); INSERT INTO `sys_logininfor` VALUES (185, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-07 19:58:17'); INSERT INTO `sys_logininfor` VALUES (186, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-08 01:00:53'); INSERT INTO `sys_logininfor` VALUES (187, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-08 13:14:41'); INSERT INTO `sys_logininfor` VALUES (188, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-09 10:57:34'); INSERT INTO `sys_logininfor` VALUES (189, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-09 11:20:25'); INSERT INTO `sys_logininfor` VALUES (190, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-09 11:20:29'); INSERT INTO `sys_logininfor` VALUES (191, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-09 11:20:58'); INSERT INTO `sys_logininfor` VALUES (192, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-09 11:21:03'); INSERT INTO `sys_logininfor` VALUES (193, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-09 11:22:17'); INSERT INTO `sys_logininfor` VALUES (194, 'xjs', '127.0.0.1', '0', '注册成功', '2022-01-09 11:22:35'); INSERT INTO `sys_logininfor` VALUES (195, 'xjs', '127.0.0.1', '0', '登录成功', '2022-01-09 11:22:44'); INSERT INTO `sys_logininfor` VALUES (196, 'xjs', '127.0.0.1', '0', '退出成功', '2022-01-09 11:22:50'); INSERT INTO `sys_logininfor` VALUES (197, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-09 11:22:53'); INSERT INTO `sys_logininfor` VALUES (198, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-09 11:23:42'); INSERT INTO `sys_logininfor` VALUES (199, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-09 11:24:00'); INSERT INTO `sys_logininfor` VALUES (200, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-09 11:33:49'); INSERT INTO `sys_logininfor` VALUES (201, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-09 11:35:21'); INSERT INTO `sys_logininfor` VALUES (202, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-09 11:43:19'); INSERT INTO `sys_logininfor` VALUES (203, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-09 11:47:21'); INSERT INTO `sys_logininfor` VALUES (204, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-09 11:48:32'); INSERT INTO `sys_logininfor` VALUES (205, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-09 11:54:49'); INSERT INTO `sys_logininfor` VALUES (206, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-10 08:47:06'); INSERT INTO `sys_logininfor` VALUES (207, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-10 09:28:56'); INSERT INTO `sys_logininfor` VALUES (208, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-10 09:53:00'); INSERT INTO `sys_logininfor` VALUES (209, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-10 10:02:57'); INSERT INTO `sys_logininfor` VALUES (210, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-10 22:04:46'); INSERT INTO `sys_logininfor` VALUES (211, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-10 23:04:48'); INSERT INTO `sys_logininfor` VALUES (212, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-11 08:42:25'); INSERT INTO `sys_logininfor` VALUES (213, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-11 10:00:13'); INSERT INTO `sys_logininfor` VALUES (214, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-11 15:41:37'); INSERT INTO `sys_logininfor` VALUES (215, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-11 20:44:22'); INSERT INTO `sys_logininfor` VALUES (216, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-11 20:53:31'); INSERT INTO `sys_logininfor` VALUES (217, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-12 14:12:50'); INSERT INTO `sys_logininfor` VALUES (218, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-12 18:29:31'); INSERT INTO `sys_logininfor` VALUES (219, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-13 08:40:26'); INSERT INTO `sys_logininfor` VALUES (220, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-13 15:19:43'); INSERT INTO `sys_logininfor` VALUES (221, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-13 21:22:12'); INSERT INTO `sys_logininfor` VALUES (222, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-13 21:46:22'); INSERT INTO `sys_logininfor` VALUES (223, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-13 21:46:37'); INSERT INTO `sys_logininfor` VALUES (224, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-14 11:56:53'); INSERT INTO `sys_logininfor` VALUES (225, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-14 16:22:58'); INSERT INTO `sys_logininfor` VALUES (226, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-14 16:23:00'); INSERT INTO `sys_logininfor` VALUES (227, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-14 18:25:27'); INSERT INTO `sys_logininfor` VALUES (228, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-14 18:28:48'); INSERT INTO `sys_logininfor` VALUES (229, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-15 09:50:06'); INSERT INTO `sys_logininfor` VALUES (230, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-15 10:57:18'); INSERT INTO `sys_logininfor` VALUES (231, 'test', '127.0.0.1', '1', '用户密码错误', '2022-01-15 10:57:21'); INSERT INTO `sys_logininfor` VALUES (232, 'test', '127.0.0.1', '0', '登录成功', '2022-01-15 10:57:25'); INSERT INTO `sys_logininfor` VALUES (233, 'test', '127.0.0.1', '0', '退出成功', '2022-01-15 10:57:36'); INSERT INTO `sys_logininfor` VALUES (234, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-15 10:57:39'); INSERT INTO `sys_logininfor` VALUES (235, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-15 10:57:55'); INSERT INTO `sys_logininfor` VALUES (236, 'test', '127.0.0.1', '0', '登录成功', '2022-01-15 10:58:01'); INSERT INTO `sys_logininfor` VALUES (237, 'test', '127.0.0.1', '0', '退出成功', '2022-01-15 11:07:30'); INSERT INTO `sys_logininfor` VALUES (238, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-15 11:07:32'); INSERT INTO `sys_logininfor` VALUES (239, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-15 17:27:47'); INSERT INTO `sys_logininfor` VALUES (240, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-15 17:27:49'); INSERT INTO `sys_logininfor` VALUES (241, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-15 21:53:16'); INSERT INTO `sys_logininfor` VALUES (242, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-15 21:53:21'); INSERT INTO `sys_logininfor` VALUES (243, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-16 17:12:23'); INSERT INTO `sys_logininfor` VALUES (244, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-17 09:09:08'); INSERT INTO `sys_logininfor` VALUES (245, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-18 09:18:44'); INSERT INTO `sys_logininfor` VALUES (246, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-18 20:04:18'); INSERT INTO `sys_logininfor` VALUES (247, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-19 08:40:52'); INSERT INTO `sys_logininfor` VALUES (248, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-19 19:24:33'); INSERT INTO `sys_logininfor` VALUES (249, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-19 19:25:43'); INSERT INTO `sys_logininfor` VALUES (250, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-19 20:57:45'); INSERT INTO `sys_logininfor` VALUES (251, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-20 09:06:24'); INSERT INTO `sys_logininfor` VALUES (252, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-20 18:32:49'); INSERT INTO `sys_logininfor` VALUES (253, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-20 18:44:18'); INSERT INTO `sys_logininfor` VALUES (254, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-21 08:46:53'); INSERT INTO `sys_logininfor` VALUES (255, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-21 11:32:22'); INSERT INTO `sys_logininfor` VALUES (256, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-21 11:32:29'); INSERT INTO `sys_logininfor` VALUES (257, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-21 11:36:36'); INSERT INTO `sys_logininfor` VALUES (258, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-21 11:37:58'); INSERT INTO `sys_logininfor` VALUES (259, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-21 11:38:00'); INSERT INTO `sys_logininfor` VALUES (260, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-21 11:44:01'); INSERT INTO `sys_logininfor` VALUES (261, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-21 11:44:02'); INSERT INTO `sys_logininfor` VALUES (262, 'admin', '127.0.0.1', '0', '退出成功', '2022-01-21 11:44:25'); INSERT INTO `sys_logininfor` VALUES (263, 'ry', '127.0.0.1', '1', '对不起,您的账号已被删除', '2022-01-21 11:44:28'); INSERT INTO `sys_logininfor` VALUES (264, 'test', '127.0.0.1', '1', '用户密码错误', '2022-01-21 11:44:54'); INSERT INTO `sys_logininfor` VALUES (265, 'test', '127.0.0.1', '0', '登录成功', '2022-01-21 11:44:59'); INSERT INTO `sys_logininfor` VALUES (266, 'test', '127.0.0.1', '0', '退出成功', '2022-01-21 11:45:33'); INSERT INTO `sys_logininfor` VALUES (267, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-21 11:45:35'); INSERT INTO `sys_logininfor` VALUES (268, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-21 19:31:01'); INSERT INTO `sys_logininfor` VALUES (269, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-22 11:01:16'); INSERT INTO `sys_logininfor` VALUES (270, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-23 19:52:21'); INSERT INTO `sys_logininfor` VALUES (271, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-24 08:54:29'); INSERT INTO `sys_logininfor` VALUES (272, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-24 18:54:29'); INSERT INTO `sys_logininfor` VALUES (273, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-25 08:33:10'); INSERT INTO `sys_logininfor` VALUES (274, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-25 11:12:35'); INSERT INTO `sys_logininfor` VALUES (275, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-25 14:48:24'); INSERT INTO `sys_logininfor` VALUES (276, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-25 17:55:01'); INSERT INTO `sys_logininfor` VALUES (277, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-26 08:36:35'); INSERT INTO `sys_logininfor` VALUES (278, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-26 13:23:40'); INSERT INTO `sys_logininfor` VALUES (279, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-26 13:40:01'); INSERT INTO `sys_logininfor` VALUES (280, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-26 14:53:04'); INSERT INTO `sys_logininfor` VALUES (281, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-26 19:05:11'); INSERT INTO `sys_logininfor` VALUES (282, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-27 09:14:15'); INSERT INTO `sys_logininfor` VALUES (283, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-27 16:10:30'); INSERT INTO `sys_logininfor` VALUES (284, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-27 23:38:13'); INSERT INTO `sys_logininfor` VALUES (285, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-29 14:06:56'); INSERT INTO `sys_logininfor` VALUES (286, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-29 15:29:21'); INSERT INTO `sys_logininfor` VALUES (287, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-30 23:42:54'); INSERT INTO `sys_logininfor` VALUES (288, 'admin', '127.0.0.1', '0', '登录成功', '2022-01-31 20:53:15'); INSERT INTO `sys_logininfor` VALUES (289, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-01 16:01:27'); INSERT INTO `sys_logininfor` VALUES (290, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-02 17:41:49'); INSERT INTO `sys_logininfor` VALUES (291, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-02 20:17:01'); INSERT INTO `sys_logininfor` VALUES (292, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-02 23:27:45'); INSERT INTO `sys_logininfor` VALUES (293, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-03 19:50:14'); INSERT INTO `sys_logininfor` VALUES (294, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-07 19:59:04'); INSERT INTO `sys_logininfor` VALUES (295, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-08 09:49:04'); INSERT INTO `sys_logininfor` VALUES (296, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-08 20:48:14'); INSERT INTO `sys_logininfor` VALUES (297, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-09 08:41:54'); INSERT INTO `sys_logininfor` VALUES (298, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-12 22:06:38'); INSERT INTO `sys_logininfor` VALUES (299, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-14 11:33:02'); INSERT INTO `sys_logininfor` VALUES (300, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-14 16:52:30'); INSERT INTO `sys_logininfor` VALUES (301, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-14 17:09:09'); INSERT INTO `sys_logininfor` VALUES (302, '', '127.0.0.1', '0', '退出成功', '2022-02-16 10:58:55'); INSERT INTO `sys_logininfor` VALUES (303, '', '127.0.0.1', '0', '退出成功', '2022-02-16 10:58:56'); INSERT INTO `sys_logininfor` VALUES (304, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-16 10:58:59'); INSERT INTO `sys_logininfor` VALUES (305, '', '127.0.0.1', '0', '退出成功', '2022-02-16 13:35:10'); INSERT INTO `sys_logininfor` VALUES (306, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-16 13:35:14'); INSERT INTO `sys_logininfor` VALUES (307, '', '127.0.0.1', '0', '退出成功', '2022-02-16 16:07:01'); INSERT INTO `sys_logininfor` VALUES (308, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-16 16:07:03'); INSERT INTO `sys_logininfor` VALUES (309, 'admin', '127.0.0.1', '0', '退出成功', '2022-02-21 16:14:19'); INSERT INTO `sys_logininfor` VALUES (310, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-21 16:14:21'); INSERT INTO `sys_logininfor` VALUES (311, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-22 11:42:37'); INSERT INTO `sys_logininfor` VALUES (312, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-22 19:30:42'); INSERT INTO `sys_logininfor` VALUES (313, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-22 20:04:13'); INSERT INTO `sys_logininfor` VALUES (314, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-23 08:44:27'); INSERT INTO `sys_logininfor` VALUES (315, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-23 13:40:10'); INSERT INTO `sys_logininfor` VALUES (316, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-24 08:56:54'); INSERT INTO `sys_logininfor` VALUES (317, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-24 19:14:45'); INSERT INTO `sys_logininfor` VALUES (318, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-25 08:35:36'); INSERT INTO `sys_logininfor` VALUES (319, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-25 21:55:38'); INSERT INTO `sys_logininfor` VALUES (320, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-25 22:51:28'); INSERT INTO `sys_logininfor` VALUES (321, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-26 11:02:58'); INSERT INTO `sys_logininfor` VALUES (322, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-26 11:24:51'); INSERT INTO `sys_logininfor` VALUES (323, 'admin', '192.168.1.8', '0', '登录成功', '2022-02-27 19:24:53'); INSERT INTO `sys_logininfor` VALUES (324, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-27 19:26:41'); INSERT INTO `sys_logininfor` VALUES (325, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-27 19:35:57'); INSERT INTO `sys_logininfor` VALUES (326, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-28 08:50:32'); INSERT INTO `sys_logininfor` VALUES (327, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-28 16:19:36'); INSERT INTO `sys_logininfor` VALUES (328, 'admin', '127.0.0.1', '0', '登录成功', '2022-02-28 22:32:03'); INSERT INTO `sys_logininfor` VALUES (329, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-01 08:38:14'); INSERT INTO `sys_logininfor` VALUES (330, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-01 21:57:41'); INSERT INTO `sys_logininfor` VALUES (331, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-01 22:41:44'); INSERT INTO `sys_logininfor` VALUES (332, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-02 08:37:41'); INSERT INTO `sys_logininfor` VALUES (333, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-02 21:11:45'); INSERT INTO `sys_logininfor` VALUES (334, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-03 08:31:33'); INSERT INTO `sys_logininfor` VALUES (335, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-03 16:31:31'); INSERT INTO `sys_logininfor` VALUES (336, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-03 18:04:47'); INSERT INTO `sys_logininfor` VALUES (337, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-03 20:52:55'); INSERT INTO `sys_logininfor` VALUES (338, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-04 08:33:10'); INSERT INTO `sys_logininfor` VALUES (339, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-04 17:10:21'); INSERT INTO `sys_logininfor` VALUES (340, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-04 22:52:32'); INSERT INTO `sys_logininfor` VALUES (341, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-05 21:34:55'); INSERT INTO `sys_logininfor` VALUES (342, 'admin', '127.0.0.1', '0', '退出成功', '2022-03-05 21:35:16'); INSERT INTO `sys_logininfor` VALUES (343, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-05 21:35:18'); INSERT INTO `sys_logininfor` VALUES (344, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-05 23:49:18'); INSERT INTO `sys_logininfor` VALUES (345, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-06 09:32:17'); INSERT INTO `sys_logininfor` VALUES (346, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-06 19:08:41'); INSERT INTO `sys_logininfor` VALUES (347, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-06 23:39:36'); INSERT INTO `sys_logininfor` VALUES (348, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-07 00:45:23'); INSERT INTO `sys_logininfor` VALUES (349, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-07 08:45:43'); INSERT INTO `sys_logininfor` VALUES (350, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-07 22:32:09'); INSERT INTO `sys_logininfor` VALUES (351, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-08 08:43:11'); INSERT INTO `sys_logininfor` VALUES (352, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-09 08:56:29'); INSERT INTO `sys_logininfor` VALUES (353, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-09 20:13:26'); INSERT INTO `sys_logininfor` VALUES (354, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-10 10:26:59'); INSERT INTO `sys_logininfor` VALUES (355, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-10 15:52:17'); INSERT INTO `sys_logininfor` VALUES (356, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-11 08:36:47'); INSERT INTO `sys_logininfor` VALUES (357, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-14 08:55:25'); INSERT INTO `sys_logininfor` VALUES (358, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-14 10:14:52'); INSERT INTO `sys_logininfor` VALUES (359, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-15 08:41:19'); INSERT INTO `sys_logininfor` VALUES (360, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-15 20:13:57'); INSERT INTO `sys_logininfor` VALUES (361, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-16 08:47:19'); INSERT INTO `sys_logininfor` VALUES (362, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-16 22:25:52'); INSERT INTO `sys_logininfor` VALUES (363, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-17 08:38:26'); INSERT INTO `sys_logininfor` VALUES (364, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-18 08:34:00'); INSERT INTO `sys_logininfor` VALUES (365, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-18 13:42:13'); INSERT INTO `sys_logininfor` VALUES (366, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-18 14:34:56'); INSERT INTO `sys_logininfor` VALUES (367, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-18 19:05:24'); INSERT INTO `sys_logininfor` VALUES (368, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-19 10:47:24'); INSERT INTO `sys_logininfor` VALUES (369, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-19 22:40:34'); INSERT INTO `sys_logininfor` VALUES (370, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-20 10:10:15'); INSERT INTO `sys_logininfor` VALUES (371, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-21 15:03:10'); INSERT INTO `sys_logininfor` VALUES (372, 'admin', '127.0.0.1', '0', '退出成功', '2022-03-21 16:41:26'); INSERT INTO `sys_logininfor` VALUES (373, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-21 16:41:56'); INSERT INTO `sys_logininfor` VALUES (374, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-22 12:43:27'); INSERT INTO `sys_logininfor` VALUES (375, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-23 13:53:40'); INSERT INTO `sys_logininfor` VALUES (376, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-24 10:57:35'); INSERT INTO `sys_logininfor` VALUES (377, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-25 11:16:24'); INSERT INTO `sys_logininfor` VALUES (378, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-26 20:10:16'); INSERT INTO `sys_logininfor` VALUES (379, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-27 16:53:49'); INSERT INTO `sys_logininfor` VALUES (380, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-27 22:31:51'); INSERT INTO `sys_logininfor` VALUES (381, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-28 12:59:57'); INSERT INTO `sys_logininfor` VALUES (382, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-28 21:34:40'); INSERT INTO `sys_logininfor` VALUES (383, 'admin', '127.0.0.1', '0', '退出成功', '2022-03-28 21:41:26'); INSERT INTO `sys_logininfor` VALUES (384, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-28 21:41:30'); INSERT INTO `sys_logininfor` VALUES (385, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-29 18:13:22'); INSERT INTO `sys_logininfor` VALUES (386, 'admin', '127.0.0.1', '0', '登录成功', '2022-03-30 20:52:38'); INSERT INTO `sys_logininfor` VALUES (387, 'admin', '127.0.0.1', '0', '登录成功', '2022-04-01 00:13:46'); INSERT INTO `sys_logininfor` VALUES (388, 'admin', '127.0.0.1', '0', '登录成功', '2022-04-01 21:32:21'); INSERT INTO `sys_logininfor` VALUES (389, 'admin', '127.0.0.1', '0', '登录成功', '2022-04-02 20:34:52'); INSERT INTO `sys_logininfor` VALUES (390, 'admin', '127.0.0.1', '0', '登录成功', '2022-04-03 19:17:23'); INSERT INTO `sys_logininfor` VALUES (391, 'admin', '127.0.0.1', '0', '登录成功', '2022-04-06 08:46:39'); INSERT INTO `sys_logininfor` VALUES (392, 'admin', '127.0.0.1', '0', '登录成功', '2022-04-07 08:43:05'); INSERT INTO `sys_logininfor` VALUES (393, 'admin', '127.0.0.1', '0', '登录成功', '2022-04-08 08:36:19'); -- ---------------------------- -- Table structure for sys_menu -- ---------------------------- DROP TABLE IF EXISTS `sys_menu`; CREATE TABLE `sys_menu` ( `menu_id` bigint NOT NULL AUTO_INCREMENT COMMENT '菜单ID', `menu_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '菜单名称', `parent_id` bigint NULL DEFAULT 0 COMMENT '父菜单ID', `order_num` int NULL DEFAULT 0 COMMENT '显示顺序', `path` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '路由地址', `component` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '组件路径', `query` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '路由参数', `is_frame` int NULL DEFAULT 1 COMMENT '是否为外链(0是 1否)', `is_cache` int NULL DEFAULT 0 COMMENT '是否缓存(0缓存 1不缓存)', `menu_type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)', `visible` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '菜单状态(0显示 1隐藏)', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '菜单状态(0正常 1停用)', `perms` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '权限标识', `icon` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '#' COMMENT '菜单图标', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '备注', PRIMARY KEY (`menu_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 2134 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '菜单权限表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_menu -- ---------------------------- INSERT INTO `sys_menu` VALUES (1, '系统管理', 0, 2, 'system', NULL, '', 1, 1, 'M', '0', '0', '', 'system', 'admin', '2021-12-24 17:05:44', 'admin', '2022-03-15 11:24:56', '系统管理目录'); INSERT INTO `sys_menu` VALUES (2, '系统监控', 0, 3, 'monitor', NULL, '', 1, 1, 'M', '0', '0', '', 'monitor', 'admin', '2021-12-24 17:05:44', 'admin', '2022-03-21 01:58:27', '系统监控目录'); INSERT INTO `sys_menu` VALUES (3, '系统工具', 0, 3, 'tool', NULL, '', 1, 1, 'M', '0', '0', '', 'tool', 'admin', '2021-12-24 17:05:44', '', NULL, '系统工具目录'); INSERT INTO `sys_menu` VALUES (100, '用户管理', 1, 1, 'user', 'system/user/index', '', 1, 1, 'C', '0', '0', 'system:user:list', 'user', 'admin', '2021-12-24 17:05:44', '', NULL, '用户管理菜单'); INSERT INTO `sys_menu` VALUES (101, '角色管理', 1, 2, 'role', 'system/role/index', '', 1, 1, 'C', '0', '0', 'system:role:list', 'peoples', 'admin', '2021-12-24 17:05:44', '', NULL, '角色管理菜单'); INSERT INTO `sys_menu` VALUES (102, '菜单管理', 1, 3, 'menu', 'system/menu/index', '', 1, 1, 'C', '0', '0', 'system:menu:list', 'tree-table', 'admin', '2021-12-24 17:05:44', '', NULL, '菜单管理菜单'); INSERT INTO `sys_menu` VALUES (103, '部门管理', 1, 4, 'dept', 'system/dept/index', '', 1, 1, 'C', '0', '0', 'system:dept:list', 'tree', 'admin', '2021-12-24 17:05:44', '', NULL, '部门管理菜单'); INSERT INTO `sys_menu` VALUES (104, '岗位管理', 1, 5, 'post', 'system/post/index', '', 1, 1, 'C', '0', '0', 'system:post:list', 'post', 'admin', '2021-12-24 17:05:44', '', NULL, '岗位管理菜单'); INSERT INTO `sys_menu` VALUES (105, '字典管理', 1, 6, 'dict', 'system/dict/index', '', 1, 1, 'C', '0', '0', 'system:dict:list', 'dict', 'admin', '2021-12-24 17:05:44', '', NULL, '字典管理菜单'); INSERT INTO `sys_menu` VALUES (106, '参数设置', 1, 7, 'config', 'system/config/index', '', 1, 1, 'C', '0', '0', 'system:config:list', 'edit', 'admin', '2021-12-24 17:05:44', '', NULL, '参数设置菜单'); INSERT INTO `sys_menu` VALUES (107, '通知公告', 1, 8, 'notice', 'system/notice/index', '', 1, 1, 'C', '0', '0', 'system:notice:list', 'message', 'admin', '2021-12-24 17:05:44', '', NULL, '通知公告菜单'); INSERT INTO `sys_menu` VALUES (108, '日志管理', 1, 9, 'log', '', '', 1, 1, 'M', '0', '0', '', 'log', 'admin', '2021-12-24 17:05:44', '', NULL, '日志管理菜单'); INSERT INTO `sys_menu` VALUES (109, '在线用户', 2, 2, 'online', 'monitor/online/index', '', 1, 1, 'C', '0', '0', 'monitor:online:list', 'online', 'admin', '2021-12-24 17:05:44', 'admin', '2022-01-02 15:11:13', '在线用户菜单'); INSERT INTO `sys_menu` VALUES (110, '定时任务', 2, 2, 'job', 'monitor/job/index', '', 1, 1, 'C', '0', '0', 'monitor:job:list', 'job', 'admin', '2021-12-24 17:05:44', '', NULL, '定时任务菜单'); INSERT INTO `sys_menu` VALUES (111, 'Sentinel控制台', 2, 3, 'http://localhost:8718', '', '', 0, 1, 'C', '0', '0', 'monitor:sentinel:list', 'sentinel', 'admin', '2021-12-24 17:05:44', '', NULL, '流量控制菜单'); INSERT INTO `sys_menu` VALUES (112, 'Nacos控制台', 2, 4, 'http://localhost:8848/nacos', '', '', 0, 1, 'C', '0', '0', 'monitor:nacos:list', 'nacos', 'admin', '2021-12-24 17:05:44', '', NULL, '服务治理菜单'); INSERT INTO `sys_menu` VALUES (113, 'Admin控制台', 2, 5, 'http://localhost:9100/login', '', '', 0, 1, 'C', '0', '0', 'monitor:server:list', 'server', 'admin', '2021-12-24 17:05:44', '', NULL, '服务监控菜单'); INSERT INTO `sys_menu` VALUES (114, '表单构建', 3, 1, 'build', 'tool/build/index', '', 1, 1, 'C', '0', '0', 'tool:build:list', 'build', 'admin', '2021-12-24 17:05:44', '', NULL, '表单构建菜单'); INSERT INTO `sys_menu` VALUES (115, '代码生成', 3, 2, 'gen', 'tool/gen/index', '', 1, 1, 'C', '0', '0', 'tool:gen:list', 'code', 'admin', '2021-12-24 17:05:44', '', NULL, '代码生成菜单'); INSERT INTO `sys_menu` VALUES (116, '系统接口', 3, 3, 'http://localhost:8080/doc.html', '', '', 0, 1, 'C', '0', '0', 'tool:swagger:list', 'swagger', 'admin', '2021-12-24 17:05:44', 'admin', '2021-12-25 15:05:51', '系统接口菜单'); INSERT INTO `sys_menu` VALUES (500, '操作日志', 108, 1, 'operlog', 'system/operlog/index', '', 1, 1, 'C', '0', '0', 'system:operlog:list', 'form', 'admin', '2021-12-24 17:05:44', '', NULL, '操作日志菜单'); INSERT INTO `sys_menu` VALUES (501, '登录日志', 108, 2, 'logininfor', 'system/logininfor/index', '', 1, 1, 'C', '0', '0', 'system:logininfor:list', 'logininfor', 'admin', '2021-12-24 17:05:44', '', NULL, '登录日志菜单'); INSERT INTO `sys_menu` VALUES (1001, '用户查询', 100, 1, '', '', '', 1, 1, 'F', '0', '0', 'system:user:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1002, '用户新增', 100, 2, '', '', '', 1, 1, 'F', '0', '0', 'system:user:add', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1003, '用户修改', 100, 3, '', '', '', 1, 1, 'F', '0', '0', 'system:user:edit', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1004, '用户删除', 100, 4, '', '', '', 1, 1, 'F', '0', '0', 'system:user:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1005, '用户导出', 100, 5, '', '', '', 1, 1, 'F', '0', '0', 'system:user:export', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1006, '用户导入', 100, 6, '', '', '', 1, 1, 'F', '0', '0', 'system:user:import', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1007, '重置密码', 100, 7, '', '', '', 1, 1, 'F', '0', '0', 'system:user:resetPwd', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1008, '角色查询', 101, 1, '', '', '', 1, 1, 'F', '0', '0', 'system:role:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1009, '角色新增', 101, 2, '', '', '', 1, 1, 'F', '0', '0', 'system:role:add', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1010, '角色修改', 101, 3, '', '', '', 1, 1, 'F', '0', '0', 'system:role:edit', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1011, '角色删除', 101, 4, '', '', '', 1, 1, 'F', '0', '0', 'system:role:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1012, '角色导出', 101, 5, '', '', '', 1, 1, 'F', '0', '0', 'system:role:export', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1013, '菜单查询', 102, 1, '', '', '', 1, 1, 'F', '0', '0', 'system:menu:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1014, '菜单新增', 102, 2, '', '', '', 1, 1, 'F', '0', '0', 'system:menu:add', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1015, '菜单修改', 102, 3, '', '', '', 1, 1, 'F', '0', '0', 'system:menu:edit', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1016, '菜单删除', 102, 4, '', '', '', 1, 1, 'F', '0', '0', 'system:menu:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1017, '部门查询', 103, 1, '', '', '', 1, 1, 'F', '0', '0', 'system:dept:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1018, '部门新增', 103, 2, '', '', '', 1, 1, 'F', '0', '0', 'system:dept:add', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1019, '部门修改', 103, 3, '', '', '', 1, 1, 'F', '0', '0', 'system:dept:edit', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1020, '部门删除', 103, 4, '', '', '', 1, 1, 'F', '0', '0', 'system:dept:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1021, '岗位查询', 104, 1, '', '', '', 1, 1, 'F', '0', '0', 'system:post:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1022, '岗位新增', 104, 2, '', '', '', 1, 1, 'F', '0', '0', 'system:post:add', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1023, '岗位修改', 104, 3, '', '', '', 1, 1, 'F', '0', '0', 'system:post:edit', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1024, '岗位删除', 104, 4, '', '', '', 1, 1, 'F', '0', '0', 'system:post:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1025, '岗位导出', 104, 5, '', '', '', 1, 1, 'F', '0', '0', 'system:post:export', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1026, '字典查询', 105, 1, '#', '', '', 1, 1, 'F', '0', '0', 'system:dict:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1027, '字典新增', 105, 2, '#', '', '', 1, 1, 'F', '0', '0', 'system:dict:add', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1028, '字典修改', 105, 3, '#', '', '', 1, 1, 'F', '0', '0', 'system:dict:edit', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1029, '字典删除', 105, 4, '#', '', '', 1, 1, 'F', '0', '0', 'system:dict:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1030, '字典导出', 105, 5, '#', '', '', 1, 1, 'F', '0', '0', 'system:dict:export', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1031, '参数查询', 106, 1, '#', '', '', 1, 1, 'F', '0', '0', 'system:config:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1032, '参数新增', 106, 2, '#', '', '', 1, 1, 'F', '0', '0', 'system:config:add', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1033, '参数修改', 106, 3, '#', '', '', 1, 1, 'F', '0', '0', 'system:config:edit', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1034, '参数删除', 106, 4, '#', '', '', 1, 1, 'F', '0', '0', 'system:config:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1035, '参数导出', 106, 5, '#', '', '', 1, 1, 'F', '0', '0', 'system:config:export', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1036, '公告查询', 107, 1, '#', '', '', 1, 1, 'F', '0', '0', 'system:notice:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1037, '公告新增', 107, 2, '#', '', '', 1, 1, 'F', '0', '0', 'system:notice:add', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1038, '公告修改', 107, 3, '#', '', '', 1, 1, 'F', '0', '0', 'system:notice:edit', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1039, '公告删除', 107, 4, '#', '', '', 1, 1, 'F', '0', '0', 'system:notice:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1040, '操作查询', 500, 1, '#', '', '', 1, 1, 'F', '0', '0', 'system:operlog:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1041, '操作删除', 500, 2, '#', '', '', 1, 1, 'F', '0', '0', 'system:operlog:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1042, '日志导出', 500, 4, '#', '', '', 1, 1, 'F', '0', '0', 'system:operlog:export', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1043, '登录查询', 501, 1, '#', '', '', 1, 1, 'F', '0', '0', 'system:logininfor:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1044, '登录删除', 501, 2, '#', '', '', 1, 1, 'F', '0', '0', 'system:logininfor:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1045, '日志导出', 501, 3, '#', '', '', 1, 1, 'F', '0', '0', 'system:logininfor:export', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1046, '在线查询', 109, 1, '#', '', '', 1, 1, 'F', '0', '0', 'monitor:online:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1047, '批量强退', 109, 2, '#', '', '', 1, 1, 'F', '0', '0', 'monitor:online:batchLogout', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1048, '单条强退', 109, 3, '#', '', '', 1, 1, 'F', '0', '0', 'monitor:online:forceLogout', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1049, '任务查询', 110, 1, '#', '', '', 1, 1, 'F', '0', '0', 'monitor:job:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1050, '任务新增', 110, 2, '#', '', '', 1, 1, 'F', '0', '0', 'monitor:job:add', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1051, '任务修改', 110, 3, '#', '', '', 1, 1, 'F', '0', '0', 'monitor:job:edit', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1052, '任务删除', 110, 4, '#', '', '', 1, 1, 'F', '0', '0', 'monitor:job:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1053, '状态修改', 110, 5, '#', '', '', 1, 1, 'F', '0', '0', 'monitor:job:changeStatus', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1054, '任务导出', 110, 7, '#', '', '', 1, 1, 'F', '0', '0', 'monitor:job:export', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1055, '生成查询', 115, 1, '#', '', '', 1, 1, 'F', '0', '0', 'tool:gen:query', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1056, '生成修改', 115, 2, '#', '', '', 1, 1, 'F', '0', '0', 'tool:gen:edit', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1057, '生成删除', 115, 3, '#', '', '', 1, 1, 'F', '0', '0', 'tool:gen:remove', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1058, '导入代码', 115, 2, '#', '', '', 1, 1, 'F', '0', '0', 'tool:gen:import', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1059, '预览代码', 115, 4, '#', '', '', 1, 1, 'F', '0', '0', 'tool:gen:preview', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (1060, '生成代码', 115, 5, '#', '', '', 1, 1, 'F', '0', '0', 'tool:gen:code', '#', 'admin', '2021-12-24 17:05:44', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2000, '业务菜单', 0, 0, 'business', NULL, NULL, 1, 1, 'M', '0', '0', '', 'icon_hangdong', 'admin', '2021-12-26 15:49:31', 'admin', '2022-03-01 11:06:04', ''); INSERT INTO `sys_menu` VALUES (2001, '业务日志', 2000, 8, 'logs', NULL, NULL, 1, 1, 'M', '0', '0', '', 'search', 'admin', '2021-12-26 15:51:22', 'admin', '2022-02-24 22:11:44', ''); INSERT INTO `sys_menu` VALUES (2009, 'API日志', 2001, 1, 'apilog', 'business/log/apilog/index', NULL, 1, 1, 'C', '0', '0', 'log:apilog:list', 'tree', 'admin', '2021-12-26 16:03:08', 'admin', '2022-01-13 11:15:56', '日志菜单'); INSERT INTO `sys_menu` VALUES (2010, '日志查询', 2009, 1, '#', '', NULL, 1, 1, 'F', '0', '0', 'log:apilog:query', '#', 'admin', '2021-12-26 16:03:08', 'admin', '2022-01-13 11:16:09', ''); INSERT INTO `sys_menu` VALUES (2013, '日志删除', 2009, 4, '#', '', NULL, 1, 1, 'F', '0', '0', 'log:apilog:remove', '#', 'admin', '2021-12-26 16:03:08', 'admin', '2022-01-13 11:16:16', ''); INSERT INTO `sys_menu` VALUES (2014, '日志导出', 2009, 5, '#', '', NULL, 1, 1, 'F', '0', '0', 'log:apilog:export', '#', 'admin', '2021-12-26 16:03:08', 'admin', '2022-01-13 11:16:24', ''); INSERT INTO `sys_menu` VALUES (2015, '翻译管理', 2024, 1, 'translation', 'business/openapi/translation/index', NULL, 1, 1, 'C', '0', '0', 'openapi:translation:api', 'education', 'admin', '2021-12-26 22:33:56', 'admin', '2021-12-29 15:06:47', ''); INSERT INTO `sys_menu` VALUES (2016, '平台数据', 2000, 2, 'apidata', NULL, NULL, 1, 1, 'M', '0', '0', '', 'dict', 'admin', '2021-12-28 19:38:17', 'admin', '2021-12-29 13:20:30', ''); INSERT INTO `sys_menu` VALUES (2017, '文案管理', 2016, 1, 'wenan', 'business/openapi/copywriting/index', NULL, 1, 1, 'C', '0', '0', 'openapi:copywriting:list', 'edit', 'admin', '2021-12-28 19:38:49', 'admin', '2021-12-29 10:19:54', ''); INSERT INTO `sys_menu` VALUES (2019, '文案查询', 2017, 1, '#', '', NULL, 1, 1, 'F', '0', '0', 'openapi:copywriting:query', '#', 'admin', '2021-12-28 20:24:35', 'admin', '2021-12-29 10:20:02', ''); INSERT INTO `sys_menu` VALUES (2023, '文案导出', 2017, 5, '#', '', NULL, 1, 1, 'F', '0', '0', 'openapi:copywriting:export', '#', 'admin', '2021-12-28 20:24:35', 'admin', '2021-12-29 10:20:18', ''); INSERT INTO `sys_menu` VALUES (2024, '英语模块', 2000, 1, 'english', NULL, NULL, 1, 1, 'M', '0', '0', NULL, 'download', 'admin', '2021-12-29 15:06:31', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2025, '英语单词', 2024, 1, 'word', 'business/english/word/index', NULL, 1, 1, 'C', '0', '0', 'english:word:list', 'tool', 'admin', '2021-12-29 17:06:48', 'admin', '2021-12-29 18:56:31', '英语单词菜单'); INSERT INTO `sys_menu` VALUES (2026, '英语单词查询', 2025, 1, '#', '', NULL, 1, 1, 'F', '0', '0', 'english:word:query', '#', 'admin', '2021-12-29 17:06:48', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2027, '英语单词新增', 2025, 2, '#', '', NULL, 1, 1, 'F', '0', '0', 'english:word:add', '#', 'admin', '2021-12-29 17:06:48', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2028, '英语单词修改', 2025, 3, '#', '', NULL, 1, 1, 'F', '0', '0', 'english:word:edit', '#', 'admin', '2021-12-29 17:06:48', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2029, '英语单词删除', 2025, 4, '#', '', NULL, 1, 1, 'F', '0', '0', 'english:word:remove', '#', 'admin', '2021-12-29 17:06:48', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2030, '英语单词导出', 2025, 5, '#', '', NULL, 1, 1, 'F', '0', '0', 'english:word:export', '#', 'admin', '2021-12-29 17:06:48', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2031, '英语单词收藏夹', 2025, 1, '', NULL, NULL, 1, 1, 'F', '0', '0', 'english:word:collect', '#', 'admin', '2021-12-30 23:06:06', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2032, '单词收藏夹', 2024, 1, 'collect', 'business/english/word/collect', NULL, 1, 1, 'C', '1', '0', 'english:word:collect', 'user', 'admin', '2021-12-30 23:13:55', 'admin', '2021-12-30 23:42:33', ''); INSERT INTO `sys_menu` VALUES (2033, '英语一言', 2016, 1, 'oneenglish', 'business/openapi/oneenglish/index', NULL, 1, 1, 'C', '0', '0', 'openapi:oneenglish:list', 'select', 'admin', '2021-12-31 17:59:40', 'admin', '2021-12-31 18:09:29', '英语一言菜单'); INSERT INTO `sys_menu` VALUES (2034, '英语一言查询', 2033, 1, '#', '', NULL, 1, 1, 'F', '0', '0', 'openapi:oneenglish:query', '#', 'admin', '2021-12-31 17:59:40', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2035, '英语一言删除', 2033, 4, '#', '', NULL, 1, 1, 'F', '0', '0', 'openapi:oneenglish:remove', '#', 'admin', '2021-12-31 17:59:40', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2036, '英语一言导出', 2033, 5, '#', '', NULL, 1, 1, 'F', '0', '0', 'openapi:oneenglish:export', '#', 'admin', '2021-12-31 17:59:40', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2037, '平台预警', 2000, 4, 'warning', NULL, NULL, 1, 1, 'M', '0', '0', NULL, 'druid', 'admin', '2022-01-01 22:06:15', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2038, 'API预警信息', 2037, 1, 'apiwarninginfo', 'business/warning/apiwarninginfo/index', NULL, 1, 1, 'C', '0', '0', 'warning:apiwarning:list', 'textarea', 'admin', '2022-01-01 22:08:08', 'admin', '2022-01-15 10:24:09', 'API预警菜单'); INSERT INTO `sys_menu` VALUES (2039, 'API预警查询', 2038, 1, '#', '', NULL, 1, 1, 'F', '0', '0', 'warning:apiwarning:query', '#', 'admin', '2022-01-01 22:08:08', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2041, 'API预警修改', 2038, 3, '#', '', NULL, 1, 1, 'F', '0', '0', 'warning:apiwarning:edit', '#', 'admin', '2022-01-01 22:08:08', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2043, 'API预警导出', 2038, 5, '#', '', NULL, 1, 1, 'F', '0', '0', 'warning:apiwarning:export', '#', 'admin', '2022-01-01 22:08:08', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2044, '服务监控', 2045, 1, 'service', 'business/monitor/service/index', NULL, 1, 1, 'C', '0', '0', 'monitor:service:list', 'dashboard', 'admin', '2022-01-02 15:11:08', 'admin', '2022-01-02 15:33:20', ''); INSERT INTO `sys_menu` VALUES (2045, '业务监控', 2000, 8, 'monitor', NULL, NULL, 1, 1, 'M', '0', '0', '', 'date', 'admin', '2022-01-02 15:32:55', 'admin', '2022-02-24 22:11:57', ''); INSERT INTO `sys_menu` VALUES (2046, '文案重复删除', 2017, 2, '', NULL, NULL, 1, 1, 'F', '0', '0', 'openapi:copywriting:remove', '#', 'admin', '2022-01-06 17:07:00', 'admin', '2022-01-15 10:12:13', ''); INSERT INTO `sys_menu` VALUES (2047, 'API预警内容', 2037, 1, 'warning', 'business/warning/apiwarning/index', NULL, 1, 1, 'C', '0', '0', 'warning:warning:list', 'zip', 'admin', '2022-01-07 16:13:56', 'admin', '2022-01-07 20:02:31', 'api预警菜单'); INSERT INTO `sys_menu` VALUES (2048, 'api预警查询', 2047, 1, '#', '', NULL, 1, 1, 'F', '0', '0', 'warning:warning:query', '#', 'admin', '2022-01-07 16:13:56', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2049, '每日一句', 2016, 1, 'aword', 'business/openapi/aword/index', NULL, 1, 1, 'C', '0', '0', 'openapi:aword:list', 'star', 'admin', '2022-01-08 21:49:22', 'admin', '2022-01-08 21:50:26', '每日一句菜单'); INSERT INTO `sys_menu` VALUES (2050, '每日一句查询', 2049, 1, '#', '', NULL, 1, 1, 'F', '0', '0', 'openapi:aword:query', '#', 'admin', '2022-01-08 21:49:22', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2051, '每日一句删除', 2049, 4, '#', '', NULL, 1, 1, 'F', '0', '0', 'openapi:aword:remove', '#', 'admin', '2022-01-08 21:49:22', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2052, '每日一句导出', 2049, 5, '#', '', NULL, 1, 1, 'F', '0', '0', 'openapi:aword:export', '#', 'admin', '2022-01-08 21:49:22', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2053, '热搜榜', 2016, 1, 'topsearch', 'business/openapi/topsearch/index', NULL, 1, 1, 'C', '0', '0', 'openapi:topsearch:list', 'chart', 'admin', '2022-01-12 15:17:43', 'admin', '2022-01-15 10:16:09', ''); INSERT INTO `sys_menu` VALUES (2054, 'Redis监控', 2045, 1, 'redis', 'business/monitor/redis/index', NULL, 1, 1, 'C', '0', '0', 'monitor:redis:list', 'question', 'admin', '2022-01-12 20:08:22', 'admin', '2022-01-12 20:09:12', ''); INSERT INTO `sys_menu` VALUES (2055, 'api预警处理', 2047, 2, '', NULL, NULL, 1, 1, 'F', '0', '0', 'warning:warning:handle', '#', 'admin', '2022-01-15 10:28:14', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2056, 'api预警清空', 2047, 2, '', NULL, NULL, 1, 1, 'F', '0', '0', 'warning:warning:remove', '#', 'admin', '2022-01-15 11:38:58', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2057, 'api预警全部标记已读', 2047, 2, '', NULL, NULL, 1, 1, 'F', '0', '0', 'warning:warning:handleAll', 'edit', 'admin', '2022-01-15 12:06:08', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2058, '平台工具', 2000, 5, 'tools', NULL, NULL, 1, 1, 'M', '0', '0', NULL, 'qq', 'admin', '2022-01-17 16:42:13', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2059, 'API工具', 2058, 1, 'apitools', 'business/tools/apitools/index', NULL, 1, 1, 'C', '0', '0', 'openapi:apitools:list', 'money', 'admin', '2022-01-17 16:43:47', 'admin', '2022-01-17 16:48:56', ''); INSERT INTO `sys_menu` VALUES (2060, '性能监控', 2045, 1, 'performance', 'business/monitor/performance/index', NULL, 1, 1, 'C', '0', '0', 'monitor:performance:list', 'input', 'admin', '2022-01-18 09:19:47', 'admin', '2022-01-18 09:20:29', ''); INSERT INTO `sys_menu` VALUES (2061, '节假日', 2059, 1, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:holiday', '#', 'admin', '2022-01-18 11:50:36', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2062, '数据统计', 2000, 7, 'statistics', NULL, NULL, 1, 1, 'M', '0', '0', NULL, 'guide', 'admin', '2022-01-21 17:04:20', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2063, 'API统计', 2062, 1, 'apistatistics', 'business/statistics/apistatistics/index', NULL, 1, 1, 'C', '0', '0', 'statistics:apistatistics:list', 'phone', 'admin', '2022-01-21 17:05:17', 'admin', '2022-01-25 14:52:08', ''); INSERT INTO `sys_menu` VALUES (2064, 'MM图片', 2059, 1, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:beautypicture', '#', 'admin', '2022-01-25 14:53:02', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2065, '历史今天', 2059, 2, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:historytoday', '#', 'admin', '2022-01-25 14:53:39', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2066, '身份证查询', 2059, 3, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:idcardquery', '#', 'admin', '2022-01-25 14:54:06', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2067, '手机归属地', 2059, 3, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:mobilebelong', '#', 'admin', '2022-01-25 14:54:38', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2068, '实时天气', 2059, 3, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:nowweather', '#', 'admin', '2022-01-25 14:55:01', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2069, '预报天气', 2059, 4, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:forecastweather', '#', 'admin', '2022-01-25 14:55:21', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2070, '垃圾分类', 2059, 3, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:garbagesorting', '#', 'admin', '2022-01-25 14:55:40', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2071, '简繁转换', 2059, 5, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:simplecomplex', '#', 'admin', '2022-01-25 14:55:58', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2072, '汉语字典', 2059, 4, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:chinesedict', '#', 'admin', '2022-01-25 14:56:22', 'admin', '2022-01-25 14:56:38', ''); INSERT INTO `sys_menu` VALUES (2073, 'IP信息', 2059, 4, '', NULL, NULL, 1, 1, 'F', '0', '0', 'open:apitools:ipinfo', '#', 'admin', '2022-01-25 14:56:59', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2074, '天气统计', 2062, 2, 'weather', 'business/statistics/weatherstatistics/index', NULL, 1, 1, 'C', '0', '0', 'statistics:weatherstatistics:list', 'size', 'admin', '2022-01-25 16:39:00', 'admin', '2022-01-25 16:40:49', ''); INSERT INTO `sys_menu` VALUES (2075, '爬虫数据', 2000, 2, 'webmagic', NULL, NULL, 1, 1, 'M', '0', '0', '', 'bug', 'admin', '2022-02-15 21:21:16', 'admin', '2022-02-24 22:11:50', ''); INSERT INTO `sys_menu` VALUES (2076, '新浪新闻', 2075, 1, 'sinaNews', 'business/webmagic/sina/sinaNews/index', NULL, 1, 1, 'C', '0', '0', 'webmagic:sinaNews:list', 'logininfor', 'admin', '2022-02-15 21:22:16', 'admin', '2022-02-15 21:44:56', ''); INSERT INTO `sys_menu` VALUES (2077, '新浪新闻删除', 2076, 1, '', NULL, NULL, 1, 1, 'F', '0', '0', 'webmagic:sinaNews:remove', '#', 'admin', '2022-02-15 21:45:19', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2078, '文案网', 2075, 2, 'copyWritingNetwork', 'business/webmagic/copywritingnetwork/index', NULL, 1, 1, 'C', '0', '0', 'webmagic:copyWritingNetwork:list', 'example', 'admin', '2022-02-17 09:32:24', 'admin', '2022-02-17 09:50:44', ''); INSERT INTO `sys_menu` VALUES (2079, '文案网删除按钮', 2078, 1, '', NULL, NULL, 1, 1, 'F', '0', '0', 'webmagic:copyWritingNetwork:remove', '#', 'admin', '2022-02-17 09:59:59', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2080, '文案网导出按钮', 2078, 2, '', NULL, NULL, 1, 1, 'F', '0', '0', 'webmagic:copyWritingNetwork:export', '#', 'admin', '2022-02-17 10:00:20', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2081, '爬虫日志', 2001, 2, 'reptileLog', 'business/log/reptilelog/index', NULL, 1, 1, 'C', '0', '0', 'log:webmagicLog:list', 'online', 'admin', '2022-02-17 16:30:22', 'admin', '2022-02-17 16:55:43', ''); INSERT INTO `sys_menu` VALUES (2082, '爬虫日志删除按钮', 2081, 1, '', NULL, NULL, 1, 1, 'F', '0', '0', 'log:webmagicLog:remove', '#', 'admin', '2022-02-17 16:56:06', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2083, '爬虫日志导出按钮', 2081, 2, '', NULL, NULL, 1, 1, 'F', '0', '0', 'log:webmagicLog:export', '#', 'admin', '2022-02-17 16:56:27', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2084, '36壁纸', 2075, 3, '_36wallpaper', NULL, NULL, 1, 1, 'M', '0', '0', NULL, 'time', 'admin', '2022-02-21 11:19:05', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2085, '配置', 2084, 2, 'settings', 'business/webmagic/_36wallpaper/settings/index', NULL, 1, 1, 'C', '0', '0', 'webmagic:_36wallpaper:list', 'tool', 'admin', '2022-02-21 11:19:51', 'admin', '2022-02-21 16:16:55', ''); INSERT INTO `sys_menu` VALUES (2086, '壁纸', 2084, 1, 'show', 'business/webmagic/_36wallpaper/show/index', NULL, 1, 1, 'C', '0', '0', 'webmagic:_36wallpaper:list', 'tab', 'admin', '2022-02-21 11:21:20', 'admin', '2022-03-18 09:04:56', ''); INSERT INTO `sys_menu` VALUES (2087, '微信搜狗', 2075, 2, 'weixin_sougou', 'business/webmagic/weixinsougou/index', '', 1, 1, 'C', '0', '0', 'webmagic:weixinsougou:list', 'time', 'admin', '2022-02-22 10:04:36', 'admin', '2022-03-18 09:04:37', ''); INSERT INTO `sys_menu` VALUES (2088, '尚融宝', 0, 0, 'srb', NULL, NULL, 1, 1, 'M', '0', '1', '', '教育培训', 'admin', '2022-03-01 09:38:21', 'admin', '2022-03-14 16:39:03', ''); INSERT INTO `sys_menu` VALUES (2089, '积分管理', 2088, 1, 'integral', NULL, NULL, 1, 1, 'M', '0', '0', NULL, 'lock', 'admin', '2022-03-01 09:39:16', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2090, '积分列表', 2089, 1, 'integralList', 'srb/integral/index', NULL, 1, 1, 'C', '0', '0', 'srb:integralGrade:list', '首页图标', 'admin', '2022-03-01 09:45:53', 'admin', '2022-03-03 16:36:26', ''); INSERT INTO `sys_menu` VALUES (2091, '新增积分', 2089, 2, 'form', 'srb/integral/form', '', 1, 1, 'C', '0', '0', 'srb:integralGrade:save', '84svg', 'admin', '2022-03-01 09:46:18', 'admin', '2022-03-01 17:30:16', ''); INSERT INTO `sys_menu` VALUES (2092, '任务日志', 2001, 3, 'taskLog', 'business/log/tasklog/index', NULL, 1, 1, 'C', '0', '0', 'log:taskLog:list', 'validCode', 'admin', '2022-03-01 09:53:34', 'admin', '2022-03-01 09:54:13', ''); INSERT INTO `sys_menu` VALUES (2093, '任务日志删除按钮', 2092, 1, '', NULL, NULL, 1, 1, 'F', '0', '0', 'log:taskLog:remove', '#', 'admin', '2022-03-01 11:28:28', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2094, '任务日志导出按钮', 2092, 2, '', NULL, NULL, 1, 1, 'F', '0', '0', 'log:taskLog:export', '#', 'admin', '2022-03-01 11:28:50', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2095, '积分删除', 2090, 1, '', NULL, NULL, 1, 1, 'F', '0', '0', 'srb:integralGrade:remove', '#', 'admin', '2022-03-01 14:31:32', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2096, '积分修改', 2090, 1, '', NULL, NULL, 1, 0, 'F', '0', '0', 'srb:integralGrade:update', 'icon_tianxie', 'admin', '2022-03-01 22:44:13', 'admin', '2022-03-01 22:44:27', ''); INSERT INTO `sys_menu` VALUES (2097, '文章列表', 2098, 1, 'articleList', 'business/english/article/index', NULL, 1, 0, 'C', '0', '0', 'english:article:list', 'icon_tongzhi', 'admin', '2022-03-03 10:49:53', 'admin', '2022-03-03 16:38:07', ''); INSERT INTO `sys_menu` VALUES (2098, '英语文章', 2024, 1, 'article', NULL, NULL, 1, 0, 'M', '0', '0', NULL, 'icon_suo', 'admin', '2022-03-03 11:16:03', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2099, '添加文章', 2098, 1, 'add', 'business/english/article/add', '', 1, 0, 'C', '0', '0', 'english:article:add', 'icon_zan', 'admin', '2022-03-03 11:17:03', 'admin', '2022-03-03 11:39:03', ''); INSERT INTO `sys_menu` VALUES (2100, '文章详情', 2098, 1, 'details', 'business/english/article/details', NULL, 1, 0, 'C', '1', '0', 'english:article:query', 'icon_tongxuelu', 'admin', '2022-03-03 14:09:16', 'admin', '2022-03-03 14:09:43', ''); INSERT INTO `sys_menu` VALUES (2101, '文章修改', 2097, 1, '', NULL, NULL, 1, 0, 'F', '0', '0', 'english:article:edit', '#', 'admin', '2022-03-03 14:43:51', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2102, '文章删除', 2097, 2, '', NULL, NULL, 1, 0, 'F', '0', '0', 'english:article:remove', '#', 'admin', '2022-03-03 14:44:06', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2103, '商城', 0, 1, 'mall', NULL, NULL, 1, 0, 'M', '0', '0', '', 'icon_juhui', 'admin', '2022-03-15 11:21:42', 'admin', '2022-03-22 16:23:41', ''); INSERT INTO `sys_menu` VALUES (2104, '商品系统', 2103, 1, 'product', NULL, NULL, 1, 0, 'M', '0', '0', '', 'svg_collect', 'admin', '2022-03-15 11:23:06', 'admin', '2022-03-21 01:58:52', ''); INSERT INTO `sys_menu` VALUES (2105, '分类维护', 2104, 1, 'category', 'mall/product/category', NULL, 1, 0, 'C', '0', '0', '', 'input', 'admin', '2022-03-15 11:24:38', 'admin', '2022-03-15 11:27:01', ''); INSERT INTO `sys_menu` VALUES (2106, '品牌管理', 2104, 1, 'brand', 'mall/product/brand', NULL, 1, 0, 'C', '0', '0', '', 'list', 'admin', '2022-03-15 15:34:13', 'admin', '2022-03-15 15:35:38', ''); INSERT INTO `sys_menu` VALUES (2107, '平台属性', 2104, 3, 'mall-attribute', NULL, NULL, 1, 0, 'M', '0', '0', NULL, 'radio', 'admin', '2022-03-16 11:51:16', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2108, '属性分组', 2107, 1, 'attribute-group', 'mall/product/attribute/attr-group', NULL, 1, 0, 'C', '0', '0', '', 'international', 'admin', '2022-03-16 11:51:47', 'admin', '2022-03-16 13:31:05', ''); INSERT INTO `sys_menu` VALUES (2109, '规格参数', 2107, 3, 'base-attr', 'mall/product/attribute/base-attr', NULL, 1, 0, 'C', '0', '0', '', 'icon_saoma', 'admin', '2022-03-17 11:11:23', 'admin', '2022-03-17 11:17:26', ''); INSERT INTO `sys_menu` VALUES (2110, '微信爬取', 2075, 3, 'weixin_crawler', 'business/webmagic/weixincrawler/index', NULL, 1, 0, 'C', '0', '0', 'webmagic:weixinlink:list', 'wechat', 'admin', '2022-03-18 09:01:31', 'admin', '2022-03-18 09:03:45', ''); INSERT INTO `sys_menu` VALUES (2111, '删除按钮', 2087, 1, '', NULL, NULL, 1, 0, 'F', '0', '0', 'webmagic:weixinsougou:remove', '#', 'admin', '2022-03-18 09:05:45', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2112, '导出按钮', 2087, 1, '', NULL, NULL, 1, 0, 'F', '0', '0', 'webmagic:weixinsougou:export', 'peoples', 'admin', '2022-03-18 09:06:25', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2113, '修改', 2085, 1, '', NULL, NULL, 1, 0, 'F', '0', '0', 'webmagic:_36wallpaper:update', '#', 'admin', '2022-03-18 09:37:46', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2114, '重置', 2085, 2, '', NULL, NULL, 1, 0, 'F', '0', '0', 'webmagic:_36wallpaper:update', '#', 'admin', '2022-03-18 09:38:11', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2115, '修改', 2110, 1, '', NULL, NULL, 1, 0, 'F', '0', '0', 'webmagic:weixinlink:update', '#', 'admin', '2022-03-18 09:39:06', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2116, '重置', 2110, 2, '', NULL, NULL, 1, 0, 'F', '0', '0', 'webmagic:weixinlink:reset', '#', 'admin', '2022-03-18 09:39:27', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2117, '销售属性', 2107, 1, 'sale-attr', 'mall/product/attribute/sale-attr', NULL, 1, 0, 'C', '0', '0', '', 'icon_zhuye', 'admin', '2022-03-18 15:15:40', 'admin', '2022-03-18 15:16:24', ''); INSERT INTO `sys_menu` VALUES (2118, '会员系统', 2103, 2, 'mall-member', NULL, NULL, 1, 0, 'M', '0', '0', '', 'number', 'admin', '2022-03-18 23:10:36', 'admin', '2022-03-21 01:59:00', ''); INSERT INTO `sys_menu` VALUES (2119, '会员等级', 2118, 1, 'member-level', 'mall/member/level', NULL, 1, 0, 'C', '0', '0', '', 'select', 'admin', '2022-03-18 23:11:17', 'admin', '2022-03-18 23:11:40', ''); INSERT INTO `sys_menu` VALUES (2120, '商品维护', 2104, 3, 'product-maintain', NULL, NULL, 1, 0, 'M', '0', '0', NULL, 'shopping', 'admin', '2022-03-19 15:36:36', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2121, '发布商品', 2120, 1, 'publish-product', 'mall/product/maintain/spuadd', NULL, 1, 0, 'C', '0', '0', '', 'icon_paihang', 'admin', '2022-03-19 15:38:11', 'admin', '2022-03-19 15:55:36', ''); INSERT INTO `sys_menu` VALUES (2122, 'spu管理', 2120, 3, 'product-spu', 'mall/product/maintain/spu', NULL, 1, 0, 'C', '0', '0', '', 'job', 'admin', '2022-03-20 21:21:41', 'admin', '2022-03-20 21:22:56', ''); INSERT INTO `sys_menu` VALUES (2123, '商品管理', 2120, 5, 'product-sku', 'mall/product/maintain/manager', NULL, 1, 0, 'C', '0', '0', '', 'system', 'admin', '2022-03-21 01:59:34', 'admin', '2022-03-21 02:01:02', ''); INSERT INTO `sys_menu` VALUES (2124, '仓库系统', 2103, 4, 'ware', NULL, NULL, 1, 0, 'M', '0', '0', NULL, 'theme', 'admin', '2022-03-22 16:25:42', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2125, '仓库维护', 2124, 1, 'ware-maintain', 'mall/ware/wareinfo/wareinfo', NULL, 1, 0, 'C', '0', '0', '', 'textarea', 'admin', '2022-03-22 16:38:18', 'admin', '2022-03-22 16:47:01', ''); INSERT INTO `sys_menu` VALUES (2126, '通用数据', 2000, 3, 'common-data', NULL, NULL, 1, 0, 'M', '0', '0', NULL, 'time-range', 'admin', '2022-03-22 17:29:53', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2127, '区域数据', 2126, 1, 'area-data', 'business/openapi/commondata/Area', NULL, 1, 0, 'C', '0', '0', 'openapi:area:list', 'nested', 'admin', '2022-03-22 17:30:30', 'admin', '2022-03-23 00:48:32', ''); INSERT INTO `sys_menu` VALUES (2128, '联网获取新数据', 2127, 1, '', NULL, NULL, 1, 0, 'F', '0', '0', 'openapi:area:rest', '#', 'admin', '2022-03-23 00:49:07', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2129, '仓库库存', 2124, 3, 'ware-sku', 'mall/ware/waresku/waresku', NULL, 1, 0, 'C', '0', '0', '', 'post', 'admin', '2022-03-23 21:14:04', 'admin', '2022-03-23 21:14:17', ''); INSERT INTO `sys_menu` VALUES (2130, '采购单维护', 2124, 4, 'purchase-maintain', NULL, NULL, 1, 0, 'M', '0', '0', NULL, 'icon_yuyin', 'admin', '2022-03-23 22:33:38', '', NULL, ''); INSERT INTO `sys_menu` VALUES (2131, '采购需求', 2130, 1, 'purchase-demand', 'mall/ware/warepurchase/purchasedetail', NULL, 1, 0, 'C', '0', '0', '', 'icon_zan', 'admin', '2022-03-23 22:34:36', 'admin', '2022-03-23 23:34:51', ''); INSERT INTO `sys_menu` VALUES (2132, '采购单', 2130, 2, 'purchase', 'mall/ware/warepurchase/purchase', NULL, 1, 0, 'C', '0', '0', '', 'question', 'admin', '2022-03-23 22:56:50', 'admin', '2022-03-23 22:57:00', ''); INSERT INTO `sys_menu` VALUES (2133, 'spu规格', 2107, 5, 'spu-attribute', 'mall/product/attribute/attrupdate', NULL, 1, 0, 'C', '1', '0', '', 'tab', 'admin', '2022-03-24 18:51:41', 'admin', '2022-03-24 18:51:59', ''); -- ---------------------------- -- Table structure for sys_notice -- ---------------------------- DROP TABLE IF EXISTS `sys_notice`; CREATE TABLE `sys_notice` ( `notice_id` int NOT NULL AUTO_INCREMENT COMMENT '公告ID', `notice_title` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '公告标题', `notice_type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '公告类型(1通知 2公告)', `notice_content` longblob NULL COMMENT '公告内容', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '公告状态(0正常 1关闭)', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', PRIMARY KEY (`notice_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '通知公告表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_notice -- ---------------------------- INSERT INTO `sys_notice` VALUES (10, '公告', '1', 0x3C703EEFBC81EFBC81EFBC813C2F703E, '0', 'admin', '2022-01-02 12:44:17', '', NULL, NULL); -- ---------------------------- -- Table structure for sys_oper_log -- ---------------------------- DROP TABLE IF EXISTS `sys_oper_log`; CREATE TABLE `sys_oper_log` ( `oper_id` bigint NOT NULL AUTO_INCREMENT COMMENT '日志主键', `title` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '模块标题', `business_type` int NULL DEFAULT 0 COMMENT '业务类型(0其它 1新增 2修改 3删除)', `method` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '方法名称', `request_method` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '请求方式', `operator_type` int NULL DEFAULT 0 COMMENT '操作类别(0其它 1后台用户 2手机端用户)', `oper_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '操作人员', `dept_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '部门名称', `oper_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '请求URL', `oper_ip` varchar(128) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '主机地址', `oper_location` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '操作地点', `oper_param` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '请求参数', `json_result` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '返回参数', `status` int NULL DEFAULT 0 COMMENT '操作状态(0正常 1异常)', `error_msg` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '错误消息', `oper_time` datetime NULL DEFAULT NULL COMMENT '操作时间', PRIMARY KEY (`oper_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 14024 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '操作日志记录' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_oper_log -- ---------------------------- INSERT INTO `sys_oper_log` VALUES (100, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/4', '127.0.0.1', '', NULL, '{\"msg\":\"菜单已分配,不允许删除\",\"code\":500}', 0, NULL, '2021-12-24 20:12:37'); INSERT INTO `sys_oper_log` VALUES (101, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"guide\",\"orderNum\":\"4\",\"menuName\":\"若依官网\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"http://ruoyi.vip\",\"children\":[],\"createTime\":1640336744000,\"updateBy\":\"admin\",\"isFrame\":\"0\",\"menuId\":4,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 20:12:44'); INSERT INTO `sys_oper_log` VALUES (102, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/4', '127.0.0.1', '', NULL, '{\"msg\":\"菜单已分配,不允许删除\",\"code\":500}', 0, NULL, '2021-12-24 20:12:46'); INSERT INTO `sys_oper_log` VALUES (103, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"query\":\"\",\"icon\":\"guide\",\"orderNum\":\"4\",\"menuName\":\"若依官网\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"http://ruoyi.vip\",\"children\":[],\"createTime\":1640336744000,\"updateBy\":\"admin\",\"isFrame\":\"0\",\"menuId\":4,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 20:12:52'); INSERT INTO `sys_oper_log` VALUES (104, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/4', '127.0.0.1', '', NULL, '{\"msg\":\"菜单已分配,不允许删除\",\"code\":500}', 0, NULL, '2021-12-24 20:12:54'); INSERT INTO `sys_oper_log` VALUES (105, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"query\":\"\",\"icon\":\"guide\",\"orderNum\":\"4\",\"menuName\":\"若依官网\",\"params\":{},\"isCache\":\"0\",\"path\":\"http://ruoyi.vip\",\"children\":[],\"createTime\":1640336744000,\"updateBy\":\"admin\",\"isFrame\":\"0\",\"menuId\":4,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 20:13:53'); INSERT INTO `sys_oper_log` VALUES (106, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/4', '127.0.0.1', '', NULL, '{\"msg\":\"菜单已分配,不允许删除\",\"code\":500}', 0, NULL, '2021-12-24 20:13:56'); INSERT INTO `sys_oper_log` VALUES (107, '字典类型', 9, 'com.ruoyi.system.controller.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/dict/type/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 20:20:00'); INSERT INTO `sys_oper_log` VALUES (108, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/109', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:35:11'); INSERT INTO `sys_oper_log` VALUES (109, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/108', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:35:12'); INSERT INTO `sys_oper_log` VALUES (110, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/102', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:35:14'); INSERT INTO `sys_oper_log` VALUES (111, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/101', '127.0.0.1', '', NULL, '{\"msg\":\"存在下级部门,不允许删除\",\"code\":500}', 0, NULL, '2021-12-24 21:35:16'); INSERT INTO `sys_oper_log` VALUES (112, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/103', '127.0.0.1', '', NULL, '{\"msg\":\"部门存在用户,不允许删除\",\"code\":500}', 0, NULL, '2021-12-24 21:35:19'); INSERT INTO `sys_oper_log` VALUES (113, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/103', '127.0.0.1', '', NULL, '{\"msg\":\"部门存在用户,不允许删除\",\"code\":500}', 0, NULL, '2021-12-24 21:35:23'); INSERT INTO `sys_oper_log` VALUES (114, '用户管理', 3, 'com.ruoyi.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/2', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:35:32'); INSERT INTO `sys_oper_log` VALUES (115, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"roles\":[{\"flag\":false,\"roleId\":1,\"admin\":true,\"dataScope\":\"1\",\"params\":{},\"roleSort\":\"1\",\"deptCheckStrictly\":false,\"menuCheckStrictly\":false,\"roleKey\":\"admin\",\"roleName\":\"超级管理员\",\"status\":\"0\"}],\"phonenumber\":\"18907084291\",\"admin\":true,\"loginDate\":1640336744000,\"remark\":\"管理员\",\"delFlag\":\"0\",\"password\":\"\",\"postIds\":[1],\"loginIp\":\"127.0.0.1\",\"email\":\"1294405880@qq.com\",\"nickName\":\"谢哥\",\"sex\":\"0\",\"deptId\":103,\"avatar\":\"\",\"dept\":{\"deptName\":\"研发部门\",\"leader\":\"若依\",\"deptId\":103,\"orderNum\":\"1\",\"params\":{},\"parentId\":101,\"children\":[],\"status\":\"0\"},\"params\":{},\"userName\":\"admin\",\"userId\":1,\"createBy\":\"admin\",\"roleIds\":[1],\"createTime\":1640336744000,\"status\":\"0\"}', NULL, 1, '不允许操作超级管理员用户', '2021-12-24 21:36:07'); INSERT INTO `sys_oper_log` VALUES (116, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"roles\":[{\"flag\":false,\"roleId\":1,\"admin\":true,\"dataScope\":\"1\",\"params\":{},\"roleSort\":\"1\",\"deptCheckStrictly\":false,\"menuCheckStrictly\":false,\"roleKey\":\"admin\",\"roleName\":\"超级管理员\",\"status\":\"0\"}],\"phonenumber\":\"18907084291\",\"admin\":true,\"loginDate\":1640336744000,\"remark\":\"管理员\",\"delFlag\":\"0\",\"password\":\"\",\"postIds\":[1],\"loginIp\":\"127.0.0.1\",\"email\":\"1294405880@qq.com\",\"nickName\":\"谢哥\",\"sex\":\"0\",\"deptId\":103,\"avatar\":\"\",\"dept\":{\"deptName\":\"研发部门\",\"leader\":\"若依\",\"deptId\":103,\"orderNum\":\"1\",\"params\":{},\"parentId\":101,\"children\":[],\"status\":\"0\"},\"params\":{},\"userName\":\"admin\",\"userId\":1,\"createBy\":\"admin\",\"roleIds\":[1],\"createTime\":1640336744000,\"status\":\"0\"}', NULL, 1, '不允许操作超级管理员用户', '2021-12-24 21:36:11'); INSERT INTO `sys_oper_log` VALUES (117, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"roles\":[{\"flag\":false,\"roleId\":1,\"admin\":true,\"dataScope\":\"1\",\"params\":{},\"roleSort\":\"1\",\"deptCheckStrictly\":false,\"menuCheckStrictly\":false,\"roleKey\":\"admin\",\"roleName\":\"超级管理员\",\"status\":\"0\"}],\"phonenumber\":\"18907084291\",\"admin\":true,\"loginDate\":1640336744000,\"remark\":\"管理员\",\"delFlag\":\"0\",\"password\":\"\",\"updateBy\":\"admin\",\"postIds\":[1],\"loginIp\":\"127.0.0.1\",\"email\":\"1294405880@qq.com\",\"nickName\":\"谢哥\",\"sex\":\"0\",\"deptId\":103,\"avatar\":\"\",\"dept\":{\"deptName\":\"研发部门\",\"leader\":\"若依\",\"deptId\":103,\"orderNum\":\"1\",\"params\":{},\"parentId\":101,\"children\":[],\"status\":\"0\"},\"params\":{},\"userName\":\"admin\",\"userId\":1,\"createBy\":\"admin\",\"roleIds\":[1],\"createTime\":1640336744000,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:37:41'); INSERT INTO `sys_oper_log` VALUES (118, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/user/changeStatus', '127.0.0.1', '', '{\"admin\":true,\"updateBy\":\"admin\",\"params\":{},\"userId\":1,\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:38:14'); INSERT INTO `sys_oper_log` VALUES (119, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/user/changeStatus', '127.0.0.1', '', '{\"admin\":true,\"updateBy\":\"admin\",\"params\":{},\"userId\":1,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:38:17'); INSERT INTO `sys_oper_log` VALUES (120, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/user/changeStatus', '127.0.0.1', '', '{\"admin\":true,\"params\":{},\"userId\":1,\"status\":\"1\"}', NULL, 1, '不允许停用超级管理员用户', '2021-12-24 21:45:18'); INSERT INTO `sys_oper_log` VALUES (121, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/user/changeStatus', '127.0.0.1', '', '{\"admin\":true,\"params\":{},\"userId\":1,\"status\":\"1\"}', NULL, 1, '不允许停用超级管理员用户', '2021-12-24 21:45:24'); INSERT INTO `sys_oper_log` VALUES (122, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/user/changeStatus', '127.0.0.1', '', '{\"admin\":true,\"params\":{},\"userId\":1,\"status\":\"1\"}', NULL, 1, '不允许停用超级管理员用户', '2021-12-24 21:45:32'); INSERT INTO `sys_oper_log` VALUES (123, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/user/changeStatus', '127.0.0.1', '', '{\"admin\":true,\"params\":{},\"userId\":1,\"status\":\"1\"}', NULL, 1, '不允许停用超级管理员用户', '2021-12-24 21:45:35'); INSERT INTO `sys_oper_log` VALUES (124, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/107', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:45:44'); INSERT INTO `sys_oper_log` VALUES (125, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/106', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:45:46'); INSERT INTO `sys_oper_log` VALUES (126, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/105', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:45:47'); INSERT INTO `sys_oper_log` VALUES (127, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/104', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:45:49'); INSERT INTO `sys_oper_log` VALUES (128, '部门管理', 3, 'com.ruoyi.system.controller.SysDeptController.remove()', 'DELETE', 1, 'admin', NULL, '/dept/103', '127.0.0.1', '', NULL, '{\"msg\":\"部门存在用户,不允许删除\",\"code\":500}', 0, NULL, '2021-12-24 21:45:51'); INSERT INTO `sys_oper_log` VALUES (129, '部门管理', 2, 'com.ruoyi.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"deptName\":\"若依科技\",\"leader\":\"谢哥\",\"deptId\":100,\"orderNum\":\"0\",\"delFlag\":\"0\",\"params\":{},\"parentId\":0,\"createBy\":\"admin\",\"children\":[],\"createTime\":1640336744000,\"phone\":\"18907084291\",\"updateBy\":\"admin\",\"ancestors\":\"0\",\"email\":\"1294405880@qq.com\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:46:10'); INSERT INTO `sys_oper_log` VALUES (130, '部门管理', 2, 'com.ruoyi.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"deptName\":\"谢哥科技\",\"leader\":\"谢哥\",\"deptId\":100,\"orderNum\":\"0\",\"delFlag\":\"0\",\"params\":{},\"parentId\":0,\"createBy\":\"admin\",\"children\":[],\"createTime\":1640336744000,\"phone\":\"18907084291\",\"updateBy\":\"admin\",\"ancestors\":\"0\",\"email\":\"1294405880@qq.com\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:46:18'); INSERT INTO `sys_oper_log` VALUES (131, '部门管理', 2, 'com.ruoyi.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"deptName\":\"深圳总公司\",\"leader\":\"谢哥\",\"deptId\":101,\"orderNum\":\"1\",\"delFlag\":\"0\",\"params\":{},\"parentId\":100,\"createBy\":\"admin\",\"children\":[],\"createTime\":1640336744000,\"phone\":\"18907084291\",\"updateBy\":\"admin\",\"ancestors\":\"0,100\",\"email\":\"1294405880@qq.com\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:46:41'); INSERT INTO `sys_oper_log` VALUES (132, '部门管理', 2, 'com.ruoyi.system.controller.SysDeptController.edit()', 'PUT', 1, 'admin', NULL, '/dept', '127.0.0.1', '', '{\"deptName\":\"南昌公司\",\"leader\":\"谢哥\",\"deptId\":101,\"orderNum\":\"1\",\"delFlag\":\"0\",\"params\":{},\"parentId\":100,\"createBy\":\"admin\",\"children\":[],\"createTime\":1640336744000,\"phone\":\"18907084291\",\"updateBy\":\"admin\",\"ancestors\":\"0,100\",\"email\":\"1294405880@qq.com\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:46:57'); INSERT INTO `sys_oper_log` VALUES (133, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/4', '127.0.0.1', '', NULL, '{\"msg\":\"菜单已分配,不允许删除\",\"code\":500}', 0, NULL, '2021-12-24 21:47:26'); INSERT INTO `sys_oper_log` VALUES (134, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:47:37'); INSERT INTO `sys_oper_log` VALUES (135, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":1,\"admin\":true,\"remark\":\"超级管理员\",\"dataScope\":\"1\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"1\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"menuCheckStrictly\":true,\"roleKey\":\"admin\",\"roleName\":\"超级管理员\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116],\"status\":\"0\"}', NULL, 1, '不允许操作超级管理员角色', '2021-12-24 21:47:51'); INSERT INTO `sys_oper_log` VALUES (136, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/4', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:47:55'); INSERT INTO `sys_oper_log` VALUES (137, '岗位管理', 3, 'com.ruoyi.system.controller.SysPostController.remove()', 'DELETE', 1, 'admin', NULL, '/post/4', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:48:43'); INSERT INTO `sys_oper_log` VALUES (138, '岗位管理', 3, 'com.ruoyi.system.controller.SysPostController.remove()', 'DELETE', 1, 'admin', NULL, '/post/3', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:48:45'); INSERT INTO `sys_oper_log` VALUES (139, '岗位管理', 3, 'com.ruoyi.system.controller.SysPostController.remove()', 'DELETE', 1, 'admin', NULL, '/post/2', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:48:47'); INSERT INTO `sys_oper_log` VALUES (140, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"账号自助-是否开启用户注册功能\",\"configKey\":\"sys.account.registerUser\",\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"configId\":4,\"remark\":\"是否开启注册用户功能(true开启,false关闭)\",\"configType\":\"Y\",\"configValue\":\"true\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:49:51'); INSERT INTO `sys_oper_log` VALUES (141, '通知公告', 3, 'com.ruoyi.system.controller.SysNoticeController.remove()', 'DELETE', 1, 'admin', NULL, '/notice/2', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:50:15'); INSERT INTO `sys_oper_log` VALUES (142, '通知公告', 3, 'com.ruoyi.system.controller.SysNoticeController.remove()', 'DELETE', 1, 'admin', NULL, '/notice/1', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-24 21:50:16'); INSERT INTO `sys_oper_log` VALUES (143, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"swagger\",\"orderNum\":\"3\",\"menuName\":\"系统接口\",\"params\":{},\"parentId\":3,\"isCache\":\"0\",\"path\":\"http://localhost:8080/doc.html\",\"component\":\"\",\"children\":[],\"createTime\":1640336744000,\"updateBy\":\"admin\",\"isFrame\":\"0\",\"menuId\":116,\"menuType\":\"C\",\"perms\":\"tool:swagger:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-25 15:05:51'); INSERT INTO `sys_oper_log` VALUES (144, '字典类型', 9, 'com.ruoyi.system.controller.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/dict/type/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-25 23:01:17'); INSERT INTO `sys_oper_log` VALUES (145, '字典类型', 3, 'com.ruoyi.system.controller.SysDictDataController.remove()', 'DELETE', 1, 'admin', NULL, '/dict/data/3', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-25 23:02:43'); INSERT INTO `sys_oper_log` VALUES (146, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"翻译API类型\",\"remark\":\"翻译软件类型\",\"params\":{},\"dictType\":\"translation_type\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-25 23:04:29'); INSERT INTO `sys_oper_log` VALUES (147, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"default\",\"dictSort\":3,\"remark\":\"谷歌翻译\",\"params\":{},\"dictType\":\"translation_type\",\"dictLabel\":\"google\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-25 23:04:58'); INSERT INTO `sys_oper_log` VALUES (148, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"default\",\"dictSort\":1,\"remark\":\"百度翻译\",\"params\":{},\"dictType\":\"translation_type\",\"dictLabel\":\"baidu\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-25 23:05:14'); INSERT INTO `sys_oper_log` VALUES (149, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"default\",\"dictSort\":2,\"remark\":\"有道翻译\",\"params\":{},\"dictType\":\"translation_type\",\"dictLabel\":\"youdao\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-25 23:05:31'); INSERT INTO `sys_oper_log` VALUES (150, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'english_word', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 11:05:34'); INSERT INTO `sys_oper_log` VALUES (151, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/english_word', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 11:05:44'); INSERT INTO `sys_oper_log` VALUES (152, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2021-12-26 11:12:33'); INSERT INTO `sys_oper_log` VALUES (153, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2021-12-26 11:12:39'); INSERT INTO `sys_oper_log` VALUES (154, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"http://127.0.0.1:9300/statics/2021/12/26/02df6617-d9fb-443c-9059-b714c9b54619.jpeg\",\"code\":200}', 0, NULL, '2021-12-26 11:13:04'); INSERT INTO `sys_oper_log` VALUES (155, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2021-12-26 11:18:04'); INSERT INTO `sys_oper_log` VALUES (156, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 13:23:53'); INSERT INTO `sys_oper_log` VALUES (157, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"0\",\"listClass\":\"default\",\"dictSort\":0,\"remark\":\"其他\",\"params\":{},\"dictType\":\"sys_oper_type\",\"dictLabel\":\"其他\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 13:27:04'); INSERT INTO `sys_oper_log` VALUES (158, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"0\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"其他\",\"params\":{},\"dictType\":\"sys_oper_type\",\"dictLabel\":\"其他\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1640496424000,\"dictCode\":103,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 13:27:24'); INSERT INTO `sys_oper_log` VALUES (159, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"default\",\"dictSort\":1,\"remark\":\"百度翻译\",\"params\":{},\"dictType\":\"translation_type\",\"dictLabel\":\"百度\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1640444714000,\"dictCode\":101,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 13:27:50'); INSERT INTO `sys_oper_log` VALUES (160, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"success\",\"dictSort\":2,\"remark\":\"有道翻译\",\"params\":{},\"dictType\":\"translation_type\",\"dictLabel\":\"有道\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1640444731000,\"dictCode\":102,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 13:27:58'); INSERT INTO `sys_oper_log` VALUES (162, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"danger\",\"dictSort\":3,\"remark\":\"谷歌翻译\",\"params\":{},\"dictType\":\"translation_type\",\"dictLabel\":\"谷歌\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1640444698000,\"dictCode\":100,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 13:28:11'); INSERT INTO `sys_oper_log` VALUES (163, '操作日志', 3, 'com.ruoyi.system.controller.SysOperlogController.remove()', 'DELETE', 1, 'admin', NULL, '/operlog/161', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 13:29:15'); INSERT INTO `sys_oper_log` VALUES (164, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 13:53:37'); INSERT INTO `sys_oper_log` VALUES (165, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 13:53:55'); INSERT INTO `sys_oper_log` VALUES (166, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 13:54:52'); INSERT INTO `sys_oper_log` VALUES (167, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 13:55:41'); INSERT INTO `sys_oper_log` VALUES (168, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 13:55:45'); INSERT INTO `sys_oper_log` VALUES (169, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 13:55:45'); INSERT INTO `sys_oper_log` VALUES (170, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 13:56:44'); INSERT INTO `sys_oper_log` VALUES (171, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 13:56:58'); INSERT INTO `sys_oper_log` VALUES (172, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 13:59:59'); INSERT INTO `sys_oper_log` VALUES (173, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:00:24'); INSERT INTO `sys_oper_log` VALUES (174, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:01:10'); INSERT INTO `sys_oper_log` VALUES (175, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:01:43'); INSERT INTO `sys_oper_log` VALUES (176, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:01:56'); INSERT INTO `sys_oper_log` VALUES (177, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:02:36'); INSERT INTO `sys_oper_log` VALUES (178, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:02:37'); INSERT INTO `sys_oper_log` VALUES (179, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:03:13'); INSERT INTO `sys_oper_log` VALUES (180, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:04:31'); INSERT INTO `sys_oper_log` VALUES (181, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:08:38'); INSERT INTO `sys_oper_log` VALUES (182, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:09:26'); INSERT INTO `sys_oper_log` VALUES (183, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:15:41'); INSERT INTO `sys_oper_log` VALUES (184, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:17:22'); INSERT INTO `sys_oper_log` VALUES (185, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:17:43'); INSERT INTO `sys_oper_log` VALUES (186, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:19:05'); INSERT INTO `sys_oper_log` VALUES (187, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:20:01'); INSERT INTO `sys_oper_log` VALUES (188, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:39:25'); INSERT INTO `sys_oper_log` VALUES (189, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:42:43'); INSERT INTO `sys_oper_log` VALUES (190, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:45:06'); INSERT INTO `sys_oper_log` VALUES (191, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:45:30'); INSERT INTO `sys_oper_log` VALUES (192, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 14:58:41'); INSERT INTO `sys_oper_log` VALUES (193, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 15:00:29'); INSERT INTO `sys_oper_log` VALUES (194, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I am\",\"src\":\"我是\"}]}}', 0, NULL, '2021-12-26 15:03:05'); INSERT INTO `sys_oper_log` VALUES (195, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_log', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 15:43:16'); INSERT INTO `sys_oper_log` VALUES (196, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"online\",\"orderNum\":\"5\",\"menuName\":\"业务菜单\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"english\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 15:49:31'); INSERT INTO `sys_oper_log` VALUES (197, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"online\",\"orderNum\":\"5\",\"menuName\":\"业务菜单\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"english\",\"children\":[],\"createTime\":1640504971000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2000,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 15:50:10'); INSERT INTO `sys_oper_log` VALUES (198, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"search\",\"orderNum\":\"1\",\"menuName\":\"业务日志\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"translation\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 15:51:22'); INSERT INTO `sys_oper_log` VALUES (199, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"search\",\"orderNum\":\"1\",\"menuName\":\"业务日志\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"log\",\"children\":[],\"createTime\":1640505082000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2001,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 15:54:06'); INSERT INTO `sys_oper_log` VALUES (200, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"button\",\"orderNum\":\"1\",\"menuName\":\"API日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"apilog\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 15:54:41'); INSERT INTO `sys_oper_log` VALUES (201, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"button\",\"orderNum\":\"5\",\"menuName\":\"API日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"apilog\",\"children\":[],\"createTime\":1640505280000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2002,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 15:55:27'); INSERT INTO `sys_oper_log` VALUES (202, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"search\",\"orderNum\":\"1\",\"menuName\":\"业务日志\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"logs\",\"children\":[],\"createTime\":1640505082000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2001,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 15:57:04'); INSERT INTO `sys_oper_log` VALUES (203, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2002', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 15:57:14'); INSERT INTO `sys_oper_log` VALUES (204, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/api_log', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 15:57:39'); INSERT INTO `sys_oper_log` VALUES (205, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', NULL, NULL, 0, NULL, '2021-12-26 15:58:02'); INSERT INTO `sys_oper_log` VALUES (206, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2003', '127.0.0.1', '', NULL, '{\"msg\":\"存在子菜单,不允许删除\",\"code\":500}', 0, NULL, '2021-12-26 16:03:26'); INSERT INTO `sys_oper_log` VALUES (207, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2004', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:03:29'); INSERT INTO `sys_oper_log` VALUES (208, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2005', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:03:31'); INSERT INTO `sys_oper_log` VALUES (209, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2006', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:03:33'); INSERT INTO `sys_oper_log` VALUES (210, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2007', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:03:35'); INSERT INTO `sys_oper_log` VALUES (211, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2008', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:03:36'); INSERT INTO `sys_oper_log` VALUES (212, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2003', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:03:38'); INSERT INTO `sys_oper_log` VALUES (213, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"1\",\"menuName\":\"API日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"log\",\"component\":\"business/english/log/index\",\"children\":[],\"createTime\":1640505788000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2009,\"menuType\":\"C\",\"perms\":\"english:log:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:10:19'); INSERT INTO `sys_oper_log` VALUES (214, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"我是你大爹\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I\'m your big father\",\"src\":\"我是你大爹\"}]}}', 0, NULL, '2021-12-26 16:16:43'); INSERT INTO `sys_oper_log` VALUES (215, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":1,\"admin\":true,\"remark\":\"超级管理员\",\"dataScope\":\"1\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"1\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"menuCheckStrictly\":true,\"roleKey\":\"admin\",\"roleName\":\"超级管理员\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116,2000,2001,2009,2010,2011,2012,2013,2014],\"status\":\"0\"}', NULL, 1, '不允许操作超级管理员角色', '2021-12-26 16:21:50'); INSERT INTO `sys_oper_log` VALUES (216, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":1,\"admin\":true,\"remark\":\"超级管理员\",\"dataScope\":\"1\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"1\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"menuCheckStrictly\":true,\"roleKey\":\"admin\",\"roleName\":\"超级管理员\",\"menuIds\":[],\"status\":\"0\"}', NULL, 1, '不允许操作超级管理员角色', '2021-12-26 16:22:20'); INSERT INTO `sys_oper_log` VALUES (217, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/user/changeStatus', '127.0.0.1', '', '{\"admin\":true,\"params\":{},\"userId\":1,\"status\":\"1\"}', NULL, 1, '不允许停用超级管理员用户', '2021-12-26 16:24:21'); INSERT INTO `sys_oper_log` VALUES (218, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.changeStatus()', 'PUT', 1, 'admin', NULL, '/user/changeStatus', '127.0.0.1', '', '{\"admin\":true,\"params\":{},\"userId\":1,\"status\":\"1\"}', NULL, 1, '不允许停用超级管理员用户', '2021-12-26 16:25:49'); INSERT INTO `sys_oper_log` VALUES (219, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":1,\"admin\":true,\"remark\":\"超级管理员\",\"dataScope\":\"1\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"1\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"menuCheckStrictly\":true,\"roleKey\":\"admin\",\"roleName\":\"超级管理员\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116,2000,2001,2009,2010,2011,2012,2013,2014],\"status\":\"0\"}', NULL, 1, '不允许操作超级管理员角色', '2021-12-26 16:25:57'); INSERT INTO `sys_oper_log` VALUES (220, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116,2000,2001,2009,2010,2011,2012,2013,2014],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:26:06'); INSERT INTO `sys_oper_log` VALUES (221, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"roles\":[{\"flag\":false,\"roleId\":1,\"admin\":true,\"dataScope\":\"1\",\"params\":{},\"roleSort\":\"1\",\"deptCheckStrictly\":false,\"menuCheckStrictly\":false,\"roleKey\":\"admin\",\"roleName\":\"超级管理员\",\"status\":\"0\"}],\"phonenumber\":\"18907084291\",\"admin\":true,\"loginDate\":1640336744000,\"remark\":\"管理员\",\"delFlag\":\"0\",\"password\":\"\",\"updateBy\":\"admin\",\"postIds\":[1],\"loginIp\":\"127.0.0.1\",\"email\":\"1294405880@qq.com\",\"nickName\":\"谢哥\",\"sex\":\"0\",\"deptId\":103,\"avatar\":\"http://127.0.0.1:9300/statics/2021/12/26/02df6617-d9fb-443c-9059-b714c9b54619.jpeg\",\"dept\":{\"deptName\":\"研发部门\",\"leader\":\"若依\",\"deptId\":103,\"orderNum\":\"1\",\"params\":{},\"parentId\":101,\"children\":[],\"status\":\"0\"},\"params\":{},\"userName\":\"admin\",\"userId\":1,\"createBy\":\"admin\",\"roleIds\":[1,2],\"createTime\":1640336744000,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:26:21'); INSERT INTO `sys_oper_log` VALUES (222, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116,2000,2001,2009,2010,2011,2012,2013,2014],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:29:19'); INSERT INTO `sys_oper_log` VALUES (223, '日志', 1, 'com.xjs.log.controller.ApiLogController.add()', 'POST', 1, 'admin', NULL, '/log', '127.0.0.1', '', '{}', NULL, 1, 'english:log:add', '2021-12-26 16:37:48'); INSERT INTO `sys_oper_log` VALUES (224, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2011', '127.0.0.1', '', NULL, '{\"msg\":\"菜单已分配,不允许删除\",\"code\":500}', 0, NULL, '2021-12-26 16:40:59'); INSERT INTO `sys_oper_log` VALUES (225, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2012', '127.0.0.1', '', NULL, '{\"msg\":\"菜单已分配,不允许删除\",\"code\":500}', 0, NULL, '2021-12-26 16:41:18'); INSERT INTO `sys_oper_log` VALUES (226, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:41:37'); INSERT INTO `sys_oper_log` VALUES (227, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2012', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:41:44'); INSERT INTO `sys_oper_log` VALUES (228, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2011', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:41:47'); INSERT INTO `sys_oper_log` VALUES (229, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116,2000,2001,2009,2010,2013,2014],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:44:03'); INSERT INTO `sys_oper_log` VALUES (230, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.dataScope()', 'PUT', 1, 'admin', NULL, '/role/dataScope', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"deptIds\":[100,101,103],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:44:19'); INSERT INTO `sys_oper_log` VALUES (231, '用户管理', 1, 'com.ruoyi.system.controller.SysUserController.add()', 'POST', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"phonenumber\":\"17607993928\",\"admin\":false,\"password\":\"$2a$10$ymmp7bP7DzDuERqJk0ataOyP5sGQJs4GgVjOwqM5MgV5QNG.IYQ2q\",\"postIds\":[1],\"email\":\"123946@qq.com\",\"nickName\":\"大哥\",\"sex\":\"1\",\"deptId\":100,\"params\":{},\"userName\":\"test\",\"userId\":100,\"createBy\":\"admin\",\"roleIds\":[2],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 16:46:07'); INSERT INTO `sys_oper_log` VALUES (232, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'test', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"menuCheckStrictly\":true,\"roleKey\":\"admin\",\"roleName\":\"普通角色\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116,2000,2001,2009,2010,2013,2014],\"status\":\"0\"}', '{\"msg\":\"修改角色\'普通角色\'失败,角色权限已存在\",\"code\":500}', 0, NULL, '2021-12-26 16:47:36'); INSERT INTO `sys_oper_log` VALUES (233, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116,2000,2001,2009,2010,2013,2014],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 17:05:42'); INSERT INTO `sys_oper_log` VALUES (234, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 17:07:18'); INSERT INTO `sys_oper_log` VALUES (235, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116,2000,2001,2009,2010,2013,2014],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 17:08:26'); INSERT INTO `sys_oper_log` VALUES (236, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Obstruction mage\",\"src\":\"碍事法师\"}]}}', 0, NULL, '2021-12-26 19:23:28'); INSERT INTO `sys_oper_log` VALUES (237, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"啊啊啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ah, ah\",\"src\":\"啊啊啊\"}]}}', 0, NULL, '2021-12-26 19:23:28'); INSERT INTO `sys_oper_log` VALUES (238, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Obstruction mage\",\"src\":\"碍事法师\"}]}}', 0, NULL, '2021-12-26 19:23:33'); INSERT INTO `sys_oper_log` VALUES (239, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":1}', NULL, 1, '', '2021-12-26 19:53:16'); INSERT INTO `sys_oper_log` VALUES (240, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Obstruction mage\",\"src\":\"碍事法师\"}]}}', 0, NULL, '2021-12-26 19:54:21'); INSERT INTO `sys_oper_log` VALUES (241, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Obstruction mage\",\"src\":\"碍事法师\"}]}}', 0, NULL, '2021-12-26 19:54:34'); INSERT INTO `sys_oper_log` VALUES (242, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Obstruction mage\",\"src\":\"碍事法师\"}]}}', 0, NULL, '2021-12-26 21:11:20'); INSERT INTO `sys_oper_log` VALUES (243, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":5,\"errorCode\":0,\"transResult\":[{\"tgt\":\"Out of the way the mage\",\"src\":\"碍事法师\"}],\"type\":\"ZH_CN2EN\"}}', 0, NULL, '2021-12-26 21:13:03'); INSERT INTO `sys_oper_log` VALUES (244, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":2}', NULL, 1, '无效的token', '2021-12-26 21:14:41'); INSERT INTO `sys_oper_log` VALUES (245, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":2}', NULL, 1, '无效的token', '2021-12-26 21:14:41'); INSERT INTO `sys_oper_log` VALUES (246, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":2}', NULL, 1, '无效的token', '2021-12-26 21:14:42'); INSERT INTO `sys_oper_log` VALUES (247, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"tgt\":\"Out of the way the mage\",\"src\":\"碍事法师\"}],\"type\":\"ZH_CN2EN\"}}', 0, NULL, '2021-12-26 21:15:19'); INSERT INTO `sys_oper_log` VALUES (248, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"tgt\":\"Out of the way the mage\",\"src\":\"碍事法师\"}],\"type\":\"ZH_CN2EN\"}}', 0, NULL, '2021-12-26 21:15:21'); INSERT INTO `sys_oper_log` VALUES (249, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"tgt\":\"Out of the way the mage\",\"src\":\"碍事法师\"}],\"type\":\"ZH_CN2EN\"}}', 0, NULL, '2021-12-26 21:15:22'); INSERT INTO `sys_oper_log` VALUES (250, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Obstruction mage\",\"src\":\"碍事法师\"}]}}', 0, NULL, '2021-12-26 21:15:34'); INSERT INTO `sys_oper_log` VALUES (251, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":1}', NULL, 1, 'expect \':\' at 0, actual =', '2021-12-26 21:20:54'); INSERT INTO `sys_oper_log` VALUES (252, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":1}', NULL, 1, 'expect \':\' at 0, actual =', '2021-12-26 21:21:54'); INSERT INTO `sys_oper_log` VALUES (253, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', NULL, '/translation', '127.0.0.1', '', '{\"q\":\"碍事法师\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Obstruction mage\",\"src\":\"碍事法师\"}]}}', 0, NULL, '2021-12-26 21:25:30'); INSERT INTO `sys_oper_log` VALUES (254, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700,1475092292748152800,1475092863987118000,1475092871331344400,1475092875391430700,1475092927153336300,1475094269737517000,1475094521165070300,1475095427738714000', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 21:25:59'); INSERT INTO `sys_oper_log` VALUES (255, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700,1475092292748152800,1475092863987118000,1475092871331344400,1475092875391430700,1475092927153336300,1475094269737517000,1475094521165070300,1475095427738714000', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 21:26:04'); INSERT INTO `sys_oper_log` VALUES (256, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 21:28:27'); INSERT INTO `sys_oper_log` VALUES (257, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 21:28:36'); INSERT INTO `sys_oper_log` VALUES (258, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 21:31:22'); INSERT INTO `sys_oper_log` VALUES (259, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 21:33:48'); INSERT INTO `sys_oper_log` VALUES (260, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 21:33:55'); INSERT INTO `sys_oper_log` VALUES (261, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 21:35:33'); INSERT INTO `sys_oper_log` VALUES (262, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 21:36:11'); INSERT INTO `sys_oper_log` VALUES (263, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 22:01:41'); INSERT INTO `sys_oper_log` VALUES (264, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', NULL, '/log/1475091862664220700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-26 22:03:59'); INSERT INTO `sys_oper_log` VALUES (265, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"education\",\"orderNum\":\"1\",\"menuName\":\"翻译管理\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"translation\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 22:33:56'); INSERT INTO `sys_oper_log` VALUES (266, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"education\",\"orderNum\":\"1\",\"menuName\":\"翻译管理\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"translation\",\"component\":\"business/english/translation/index\",\"children\":[],\"createTime\":1640529236000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2015,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 22:35:24'); INSERT INTO `sys_oper_log` VALUES (267, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"education\",\"orderNum\":\"1\",\"menuName\":\"翻译管理\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"translation\",\"component\":\"business/english/translation/index\",\"children\":[],\"createTime\":1640529236000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2015,\"menuType\":\"C\",\"perms\":\"english:translation:api\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 22:36:21'); INSERT INTO `sys_oper_log` VALUES (268, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tree\",\"orderNum\":\"1\",\"menuName\":\"API日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"log\",\"component\":\"business/english/log/index\",\"children\":[],\"createTime\":1640505788000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2009,\"menuType\":\"C\",\"perms\":\"english:log:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-26 22:40:51'); INSERT INTO `sys_oper_log` VALUES (269, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"search\",\"orderNum\":\"2\",\"menuName\":\"业务日志\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"logs\",\"children\":[],\"createTime\":1640505082000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2001,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-27 10:11:07'); INSERT INTO `sys_oper_log` VALUES (270, '用户管理', 2, 'com.ruoyi.system.controller.SysUserController.edit()', 'PUT', 1, 'admin', NULL, '/user', '127.0.0.1', '', '{\"roles\":[{\"flag\":false,\"roleId\":1,\"admin\":true,\"dataScope\":\"1\",\"params\":{},\"roleSort\":\"1\",\"deptCheckStrictly\":false,\"menuCheckStrictly\":false,\"roleKey\":\"admin\",\"roleName\":\"超级管理员\",\"status\":\"0\"},{\"flag\":false,\"roleId\":2,\"admin\":false,\"dataScope\":\"2\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":false,\"menuCheckStrictly\":false,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"status\":\"0\"}],\"phonenumber\":\"18907084291\",\"admin\":true,\"loginDate\":1640336744000,\"remark\":\"管理员\",\"delFlag\":\"0\",\"password\":\"\",\"updateBy\":\"admin\",\"postIds\":[1],\"loginIp\":\"127.0.0.1\",\"email\":\"1294405880@qq.com\",\"nickName\":\"谢哥\",\"sex\":\"0\",\"deptId\":100,\"avatar\":\"http://127.0.0.1:9300/statics/2021/12/26/02df6617-d9fb-443c-9059-b714c9b54619.jpeg\",\"dept\":{\"deptName\":\"研发部门\",\"leader\":\"若依\",\"deptId\":103,\"orderNum\":\"1\",\"params\":{},\"parentId\":101,\"children\":[],\"status\":\"0\"},\"params\":{},\"userName\":\"admin\",\"userId\":1,\"createBy\":\"admin\",\"roleIds\":[1,2],\"createTime\":1640336744000,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-27 13:35:57'); INSERT INTO `sys_oper_log` VALUES (271, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"阿斯放\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":28,\"errorCode\":0,\"transResult\":[{\"tgt\":\"He put\",\"src\":\"阿斯放\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 15:37:25'); INSERT INTO `sys_oper_log` VALUES (272, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"tgt\":\"ah\",\"src\":\"啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 15:40:48'); INSERT INTO `sys_oper_log` VALUES (273, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"挨打的\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Beaten\",\"src\":\"挨打的\"}]}}', 0, '', '2021-12-27 15:43:10'); INSERT INTO `sys_oper_log` VALUES (274, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"挨打的啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Beaten\",\"src\":\"挨打的啊\"}]}}', 0, '', '2021-12-27 15:43:43'); INSERT INTO `sys_oper_log` VALUES (275, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"的点点滴滴\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":6,\"errorCode\":0,\"transResult\":[{\"tgt\":\"The dribs and drabs\",\"src\":\"的点点滴滴\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 15:44:12'); INSERT INTO `sys_oper_log` VALUES (276, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"的点点滴滴\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Bit by bit\",\"src\":\"的点点滴滴\"}]}}', 0, '', '2021-12-27 15:44:30'); INSERT INTO `sys_oper_log` VALUES (277, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"的点点滴滴啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Bit by bit\",\"src\":\"的点点滴滴啊\"}]}}', 0, '', '2021-12-27 15:45:29'); INSERT INTO `sys_oper_log` VALUES (278, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你爸\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"I\'m your daddy\",\"src\":\"我是你爸\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 15:45:56'); INSERT INTO `sys_oper_log` VALUES (279, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你爸!!!\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I\'m your father!!!\",\"src\":\"我是你爸!!!\"}]}}', 0, '', '2021-12-27 15:46:04'); INSERT INTO `sys_oper_log` VALUES (280, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊啊啊发所\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ah ah ah ah ah ah hair\",\"src\":\"啊啊啊啊发所\"}]}}', 0, '', '2021-12-27 15:48:23'); INSERT INTO `sys_oper_log` VALUES (281, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"事实上符合\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":4,\"errorCode\":0,\"transResult\":[{\"dst\":\"In fact meet\",\"src\":\"事实上符合\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 15:48:52'); INSERT INTO `sys_oper_log` VALUES (282, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"很优秀\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":7,\"errorCode\":0,\"transResult\":[{\"dst\":\"Very good\",\"src\":\"很优秀\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 15:49:33'); INSERT INTO `sys_oper_log` VALUES (283, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"按时发放时\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"When issued on time\",\"src\":\"按时发放时\"}]}}', 0, '', '2021-12-27 15:50:00'); INSERT INTO `sys_oper_log` VALUES (284, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"飒沓\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"Sayin stack\",\"src\":\"飒沓\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 15:57:46'); INSERT INTO `sys_oper_log` VALUES (285, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"飒沓啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":18,\"errorCode\":0,\"transResult\":[{\"dst\":\"Sayin stack!\",\"src\":\"飒沓啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 15:57:48'); INSERT INTO `sys_oper_log` VALUES (286, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"飒沓啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"SA Da\",\"src\":\"飒沓啊\"}]}}', 0, '', '2021-12-27 15:57:54'); INSERT INTO `sys_oper_log` VALUES (287, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你的大跌\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I\'m your big fall\",\"src\":\"我是你的大跌\"}]}}', 0, '', '2021-12-27 16:06:32'); INSERT INTO `sys_oper_log` VALUES (288, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你的大跌\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":13,\"errorCode\":0,\"transResult\":[{\"dst\":\"I am your\",\"src\":\"我是你的大跌\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 16:06:35'); INSERT INTO `sys_oper_log` VALUES (289, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你的大跌\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"I am your\",\"src\":\"我是你的大跌\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 16:50:51'); INSERT INTO `sys_oper_log` VALUES (290, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你的大跌\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"I am your\",\"src\":\"我是你的大跌\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 16:50:57'); INSERT INTO `sys_oper_log` VALUES (291, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你的大跌??啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":15,\"errorCode\":0,\"transResult\":[{\"dst\":\"I am your crash??\",\"src\":\"我是你的大跌??\"},{\"dst\":\"ah\",\"src\":\"啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 16:51:06'); INSERT INTO `sys_oper_log` VALUES (292, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你的大跌??啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I\'m your big fall?? ah\",\"src\":\"我是你的大跌??啊\"}]}}', 0, '', '2021-12-27 16:51:21'); INSERT INTO `sys_oper_log` VALUES (293, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你的大跌??啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I\'m your big fall?? ah\",\"src\":\"我是你的大跌??啊\"}]}}', 0, '', '2021-12-27 16:51:28'); INSERT INTO `sys_oper_log` VALUES (294, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"通用翻译API可为用户提供实时优质的多语言翻译服务,只需传入待翻译的内容,并指定要翻译的源语言(支持源语言语种自动检测)和目标语言,即可得到相应的翻译结果。\\n\\n现已支持200+语种互译,覆盖4万多个语言方向,可前往百度翻译官方网站体验。\\n\\n支持翻译结果同步至网盘保存,尊享版还可支持自定义术语、词典、语音合成等功能。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The general translation API can provide users with real-time high-quality multilingual translation services. Just pass in the content to be translated and specify the source language (supporting automatic detection of source language) and target language to be translated to obtain the corresponding translation results.\",\"src\":\"通用翻译API可为用户提供实时优质的多语言翻译服务,只需传入待翻译的内容,并指定要翻译的源语言(支持源语言语种自动检测)和目标语言,即可得到相应的翻译结果。\"}]}}', 0, '', '2021-12-27 17:10:41'); INSERT INTO `sys_oper_log` VALUES (295, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"通用翻译API可为用户提供实时优质的多语言翻译服务,只需传入待翻译的内容,并指定要翻译的源语言(支持源语言语种自动检测)和目标语言,即可得到相应的翻译结果。\\n\\n现已支持200+语种互译,覆盖4万多个语言方向,可前往百度翻译官方网站体验。\\n\\n支持翻译结果同步至网盘保存,尊享版还可支持自定义术语、词典、语音合成等功能。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":73,\"errorCode\":0,\"transResult\":[{\"dst\":\"General translation API can provide users with real-time multilingual translation service, just need to pass in the contents of translation, and specify the translation of the source language (support source language automatic detection) and the target language, obtains the corresponding translation results.\",\"src\":\"通用翻译API可为用户提供实时优质的多语言翻译服务,只需传入待翻译的内容,并指定要翻译的源语言(支持源语言语种自动检测)和目标语言,即可得到相应的翻译结果。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 17:12:44'); INSERT INTO `sys_oper_log` VALUES (296, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"通用翻译API可为用户提供实时优质的多语言翻译服务,只需传入待翻译的内容,并指定要翻译的源语言(支持源语言语种自动检测)和目标语言,即可得到相应的翻译结果。\\n\\n现已支持200+语种互译,覆盖4万多个语言方向,可前往百度翻译官方网站体验。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":2,\"errorCode\":0,\"transResult\":[{\"dst\":\"General translation API can provide users with real-time multilingual translation service, just need to pass in the contents of translation, and specify the translation of the source language (support source language automatic detection) and the target language, obtains the corresponding translation results.\",\"src\":\"通用翻译API可为用户提供实时优质的多语言翻译服务,只需传入待翻译的内容,并指定要翻译的源语言(支持源语言语种自动检测)和目标语言,即可得到相应的翻译结果。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 17:12:52'); INSERT INTO `sys_oper_log` VALUES (297, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"通用翻译API可为用户提供实时优质的多语言翻译服务,只需传入待翻译的内容,并指定要翻译的源语言(支持源语言语种自动检测)和目标语言,即可得到相应的翻译结果。\\n\\n现已支持200+语种互译,覆盖4万多个语言方向,可前往百度翻译官方网站体验。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The general translation API can provide users with real-time high-quality multilingual translation services. Just pass in the content to be translated and specify the source language (supporting automatic detection of source language) and target language to be translated to obtain the corresponding translation results.\",\"src\":\"通用翻译API可为用户提供实时优质的多语言翻译服务,只需传入待翻译的内容,并指定要翻译的源语言(支持源语言语种自动检测)和目标语言,即可得到相应的翻译结果。\"}]}}', 0, '', '2021-12-27 17:12:56'); INSERT INTO `sys_oper_log` VALUES (298, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"通用翻译API可为用户提供实时优质的多语言翻译服务,只需传入待翻译的内容,并指定要翻译的源语言(支持源语言语种自动检测)和目标语言,即可得到相应的翻译结果。\\n\\n现已支持200+语种互译,覆盖4万多个语言方向,可前往百度翻译官方网站体验。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The general translation API can provide users with real-time high-quality multilingual translation services. Just pass in the content to be translated and specify the source language (supporting automatic detection of source language) and target language to be translated to obtain the corresponding translation results.\",\"src\":\"通用翻译API可为用户提供实时优质的多语言翻译服务,只需传入待翻译的内容,并指定要翻译的源语言(支持源语言语种自动检测)和目标语言,即可得到相应的翻译结果。\"}]}}', 0, '', '2021-12-27 17:13:01'); INSERT INTO `sys_oper_log` VALUES (299, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"种互译,覆盖4万多个语言方向,可前往百度翻译官方网站体验。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"There are three kinds of mutual translation, covering more than 40000 language directions. You can go to Baidu translation official website to experience.\",\"src\":\"种互译,覆盖4万多个语言方向,可前往百度翻译官方网站体验。\"}]}}', 0, '', '2021-12-27 17:13:06'); INSERT INTO `sys_oper_log` VALUES (300, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"种互译,覆盖4万多\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"There are more than 40000 kinds of mutual translations\",\"src\":\"种互译,覆盖4万多\"}]}}', 0, '', '2021-12-27 17:13:13'); INSERT INTO `sys_oper_log` VALUES (301, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"种互译,覆盖4万多\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"There are more than 40000 kinds of mutual translations\",\"src\":\"种互译,覆盖4万多\"}]}}', 0, '', '2021-12-27 17:13:17'); INSERT INTO `sys_oper_log` VALUES (302, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\" color: #00afff;\\n\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"it\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"颜色:%35afff;\",\"src\":\"color: #00afff;\"}]}}', 0, '', '2021-12-27 17:13:20'); INSERT INTO `sys_oper_log` VALUES (303, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\" min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\'\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Min: 3, Max: 5, message: \'length between 3 and 5 characters\', trigger:\' blur \'Min: 3, Max: 5, message:\' length between 3 and 5 characters\', trigger: \'blur\' Min: 3, Max: 5, message: \'length between 3 and 5 characters\', trigger:\' blur \'Min: 3, Max: 5, message:\' length between 3 and 5 characters\', trigger: \'blur\' Min: 3, Max: 5, message: \'length between 3 and 5 characters\', trigger:\' blur \'Min: 3, Max: 5, message:\' length between 3 and 5 characters\', trigger: \'blur\'\",\"src\":\"min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\'\"}]}}', 0, '', '2021-12-27 17:25:32'); INSERT INTO `sys_oper_log` VALUES (304, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\" min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字 min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\' min: 3, max: 5, message: \'长度在 3 到 5 个字符\', trigger: \'blur\'符\', trigger: \'blur\'\",\"translationType\":1}', '', 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1\r\n### The error may exist in com/xjs/log/mapper/ApiLogMapper.java (best guess)\r\n### The error may involve com.xjs.log.mapper.ApiLogMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO api_log ( id, api_name, url, method, request, response, is_success ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1\n; Data truncation: Data too long for column \'response\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1', '2021-12-27 17:25:37'); INSERT INTO `sys_oper_log` VALUES (305, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\",\\n {\\n min: 1,\\n max: 50,\\n message: \'长度在 1 到 50 个字符\',\\n trigger: \'blur\'\\n },\\n {\\n min: 1,\\n max: 50,\\n message: \'长度在 1 到 50 个字符\',\\n trigger: \'blur\'\\n },\\n {\\n min: 1,\\n max: 50,\\n message: \'长度在 1 到 50 个字符\',\\n trigger: \'blur\',\\n {\\n min: 1,\\n max: 50,\\n message: \'长度在 1 到 50 个字符\',\\n trigger: \'blur\'\\n }\\n }\",\"translationType\":1}', '', 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1\r\n### The error may exist in com/xjs/log/mapper/ApiLogMapper.java (best guess)\r\n### The error may involve com.xjs.log.mapper.ApiLogMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO api_log ( id, api_name, url, method, request, response, is_success ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1\n; Data truncation: Data too long for column \'response\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1', '2021-12-27 17:26:34'); INSERT INTO `sys_oper_log` VALUES (306, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"ah\",\"src\":\"啊\"}]}}', 0, '', '2021-12-27 17:26:56'); INSERT INTO `sys_oper_log` VALUES (307, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊blurblurblurblurblurblurblur啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ah, blueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblue\",\"src\":\"啊blurblurblurblurblurblurblur啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊\"}]}}', 0, '', '2021-12-27 17:28:37'); INSERT INTO `sys_oper_log` VALUES (308, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊blurblurblurblurblurblurblur啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊blur阿打发\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ah blueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblueblue\",\"src\":\"啊blurblurblurblurblurblurblur啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊blur阿打发\"}]}}', 0, '', '2021-12-27 17:28:49'); INSERT INTO `sys_oper_log` VALUES (309, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father Your father I\'m your father I\'m your father I\'m your father I\'m your father\",\"src\":\"我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸\"}]}}', 0, '', '2021-12-27 19:00:57'); INSERT INTO `sys_oper_log` VALUES (310, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father Your father I\'m your father I\'m your father I\'m your father I\'m your father\",\"src\":\"我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸\"}]}}', 0, '', '2021-12-27 19:01:14'); INSERT INTO `sys_oper_log` VALUES (311, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father I\'m your father Your father I\'m your father I\'m your father I\'m your father I\'m your father\",\"src\":\"我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸\"}]}}', 0, '', '2021-12-27 19:01:21'); INSERT INTO `sys_oper_log` VALUES (312, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你阿爸爸我是我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":223,\"errorCode\":0,\"transResult\":[{\"dst\":\"I am your father I o is I am your dad, I am your father o, I am your dad, I am your father o, I am your dad, I am your father o, I am your dad, I am your father o, I am your dad, I am your father o, I am your dad, I am your father o, I am your dad, I am your father o, I am your dad, I am your father o, I am your dad, I am your father I were you\",\"src\":\"我是你阿爸爸我是我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿爸爸我是你阿\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 19:01:54'); INSERT INTO `sys_oper_log` VALUES (313, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你还好吗\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"Are you ok\",\"src\":\"你还好吗\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 19:04:12'); INSERT INTO `sys_oper_log` VALUES (314, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":57,\"errorCode\":0,\"transResult\":[{\"dst\":\"Agghh agghh agghh agghh agghh agghh agghh agghh agghh agghh agghh agghh agghh agghh agghh ohoo\",\"src\":\"啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 19:04:59'); INSERT INTO `sys_oper_log` VALUES (315, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"ahhh\",\"src\":\"啊啊啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 19:05:08'); INSERT INTO `sys_oper_log` VALUES (316, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"暗示法法师嘎嘎哈司法所\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":14,\"errorCode\":0,\"transResult\":[{\"dst\":\"Suggestive method mage, judicial offices\",\"src\":\"暗示法法师嘎嘎哈司法所\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 19:05:14'); INSERT INTO `sys_oper_log` VALUES (317, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"暗示法法师嘎嘎哈司法所\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Suggestive mage gagaha judicial office\",\"src\":\"暗示法法师嘎嘎哈司法所\"}]}}', 0, '', '2021-12-27 19:05:17'); INSERT INTO `sys_oper_log` VALUES (318, '字典类型', 3, 'com.ruoyi.system.controller.SysDictDataController.remove()', 'DELETE', 1, 'admin', NULL, '/dict/data/100', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-27 19:37:07'); INSERT INTO `sys_oper_log` VALUES (319, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"暗示法法师嘎嘎哈司法所\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"Suggestive method mage, judicial offices\",\"src\":\"暗示法法师嘎嘎哈司法所\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 19:37:14'); INSERT INTO `sys_oper_log` VALUES (320, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"暗示法法师嘎嘎哈司法所a \",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":15,\"errorCode\":0,\"transResult\":[{\"dst\":\"Mage gaga ha judicial offices a suggested method\",\"src\":\"暗示法法师嘎嘎哈司法所a\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 19:37:17'); INSERT INTO `sys_oper_log` VALUES (321, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/log/1475430582680506370', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-27 19:58:35'); INSERT INTO `sys_oper_log` VALUES (322, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"aaa\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"aaa\",\"src\":\"aaa\"}]}}', 0, '', '2021-12-27 20:02:42'); INSERT INTO `sys_oper_log` VALUES (323, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好爱了\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Love\",\"src\":\"好爱了\"}]}}', 0, '', '2021-12-27 20:04:51'); INSERT INTO `sys_oper_log` VALUES (324, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好爱了\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Love\",\"src\":\"好爱了\"}]}}', 0, '', '2021-12-27 20:05:48'); INSERT INTO `sys_oper_log` VALUES (325, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好爱了\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Love\",\"src\":\"好爱了\"}]}}', 0, '', '2021-12-27 20:10:01'); INSERT INTO `sys_oper_log` VALUES (326, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好爱了啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I love you so much\",\"src\":\"好爱了啊\"}]}}', 0, '', '2021-12-27 20:10:03'); INSERT INTO `sys_oper_log` VALUES (327, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好爱了啊!\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Good love!\",\"src\":\"好爱了啊!\"}]}}', 0, '', '2021-12-27 20:10:32'); INSERT INTO `sys_oper_log` VALUES (328, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好爱了啊!我\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Good love! I\",\"src\":\"好爱了啊!我\"}]}}', 0, '', '2021-12-27 20:14:35'); INSERT INTO `sys_oper_log` VALUES (329, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好爱了啊!我!\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Good love! I!\",\"src\":\"好爱了啊!我!\"}]}}', 0, '', '2021-12-27 20:15:31'); INSERT INTO `sys_oper_log` VALUES (330, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好爱了啊!我!1我\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Good love! I! 1 I\",\"src\":\"好爱了啊!我!1我\"}]}}', 0, '', '2021-12-27 20:22:56'); INSERT INTO `sys_oper_log` VALUES (331, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好爱了啊!我!1我1我\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Good love! I! 1 me 1 me\",\"src\":\"好爱了啊!我!1我1我\"}]}}', 0, '', '2021-12-27 20:26:51'); INSERT INTO `sys_oper_log` VALUES (332, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.translation()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不管怎样,我终相信这个世界是美好的。\",\"createTime\":1640613346014,\"id\":1475465430086385666,\"source\":\"佚名\"}}', 0, '', '2021-12-27 21:55:46'); INSERT INTO `sys_oper_log` VALUES (333, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.translation()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个人经过不同程度的锻炼,就获得不同程度的修养、不同程度的效益。好比香料,捣得愈碎,磨得愈细,香得愈浓烈。\",\"createTime\":1640613369781,\"id\":1475465529784991746,\"source\":\"杨绛\"}}', 0, '', '2021-12-27 21:56:09'); INSERT INTO `sys_oper_log` VALUES (334, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.translation()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我尽可能不去缅怀往事,因为来时的路不可能回头。\",\"createTime\":1640614452587,\"id\":1475470071360585729,\"source\":\"三毛\"}}', 0, '', '2021-12-27 22:14:12'); INSERT INTO `sys_oper_log` VALUES (335, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.translation()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"斯为泰山而不骄,汝为流水而不躁。\",\"createTime\":1640614454405,\"id\":1475470078977441795,\"source\":\"佚名\"}}', 0, '', '2021-12-27 22:14:14'); INSERT INTO `sys_oper_log` VALUES (336, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.translation()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\" 不论你在什么时候开始,重要的是开始之后就不要轻言放弃。\",\"createTime\":1640614455542,\"id\":1475470083733782531,\"source\":\"佚名\"}}', 0, '', '2021-12-27 22:14:15'); INSERT INTO `sys_oper_log` VALUES (337, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你还好吗\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"Are you ok\",\"src\":\"你还好吗\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-27 22:15:40'); INSERT INTO `sys_oper_log` VALUES (338, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的梦想是个小胖子,那我就多等它一会儿吧。\",\"createTime\":1640615571787,\"id\":1475474765663375362,\"source\":\"佚名\"}}', 0, '', '2021-12-27 22:32:51'); INSERT INTO `sys_oper_log` VALUES (339, '定时任务', 1, 'com.ruoyi.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"* 0/15 0/1 * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640620800000,\"invokeTarget\":\"CopyWritingTask\",\"misfirePolicy\":\"2\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-27 23:58:45'); INSERT INTO `sys_oper_log` VALUES (340, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"* 0/15 0/1 * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640620800000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask\",\"misfirePolicy\":\"2\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-27 23:59:37'); INSERT INTO `sys_oper_log` VALUES (341, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-27 23:59:41'); INSERT INTO `sys_oper_log` VALUES (342, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:02:53'); INSERT INTO `sys_oper_log` VALUES (343, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:03:05'); INSERT INTO `sys_oper_log` VALUES (344, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:04:15'); INSERT INTO `sys_oper_log` VALUES (345, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:04:32'); INSERT INTO `sys_oper_log` VALUES (346, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"* 0/15 0/1 * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640621700000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"2\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:05:04'); INSERT INTO `sys_oper_log` VALUES (347, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:05:31'); INSERT INTO `sys_oper_log` VALUES (348, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:05:38'); INSERT INTO `sys_oper_log` VALUES (349, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:05:49'); INSERT INTO `sys_oper_log` VALUES (350, '定时任务', 3, 'com.ruoyi.job.controller.SysJobController.remove()', 'DELETE', 1, 'admin', NULL, '/job/3', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:05:55'); INSERT INTO `sys_oper_log` VALUES (351, '定时任务', 3, 'com.ruoyi.job.controller.SysJobController.remove()', 'DELETE', 1, 'admin', NULL, '/job/2', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:05:57'); INSERT INTO `sys_oper_log` VALUES (352, '定时任务', 3, 'com.ruoyi.job.controller.SysJobController.remove()', 'DELETE', 1, 'admin', NULL, '/job/1', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:05:59'); INSERT INTO `sys_oper_log` VALUES (353, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:14:06'); INSERT INTO `sys_oper_log` VALUES (354, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:15:13'); INSERT INTO `sys_oper_log` VALUES (355, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0 0/10 * * * ? \",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640622600000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"2\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 00:21:32'); INSERT INTO `sys_oper_log` VALUES (356, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"想见就见的日子,要好好珍惜,多多见面。\",\"createTime\":1640658413299,\"id\":1475654455981764610,\"source\":\"佚名\"}}', 0, '', '2021-12-28 10:26:53'); INSERT INTO `sys_oper_log` VALUES (357, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有些事情,刚开始都知道结局,我们都在赌。\",\"createTime\":1640658435481,\"id\":1475654549024010242,\"source\":\"佚名\"}}', 0, '', '2021-12-28 10:27:15'); INSERT INTO `sys_oper_log` VALUES (358, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"单月单日单人徘,身形寂寥惹尘埃\",\"createTime\":1640658449692,\"id\":1475654608625070082,\"source\":\"佚名\"}}', 0, '', '2021-12-28 10:27:29'); INSERT INTO `sys_oper_log` VALUES (359, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"享受生活中的每一件小事,因为有一天当你回头看,会发现它们都很重要。\",\"createTime\":1640663071727,\"id\":1475673994811355137,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:44:31'); INSERT INTO `sys_oper_log` VALUES (360, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"* * * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640663132000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 11:45:31'); INSERT INTO `sys_oper_log` VALUES (361, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 11:46:55'); INSERT INTO `sys_oper_log` VALUES (362, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0 0/10 * * * ? \",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640663400000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 11:46:58'); INSERT INTO `sys_oper_log` VALUES (363, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:30'); INSERT INTO `sys_oper_log` VALUES (364, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:31'); INSERT INTO `sys_oper_log` VALUES (365, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:31'); INSERT INTO `sys_oper_log` VALUES (366, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:32'); INSERT INTO `sys_oper_log` VALUES (367, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:32'); INSERT INTO `sys_oper_log` VALUES (368, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:33'); INSERT INTO `sys_oper_log` VALUES (369, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:33'); INSERT INTO `sys_oper_log` VALUES (370, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:34'); INSERT INTO `sys_oper_log` VALUES (371, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:34'); INSERT INTO `sys_oper_log` VALUES (372, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:35'); INSERT INTO `sys_oper_log` VALUES (373, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:35'); INSERT INTO `sys_oper_log` VALUES (374, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:47:36'); INSERT INTO `sys_oper_log` VALUES (375, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:48:23'); INSERT INTO `sys_oper_log` VALUES (376, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:52:10'); INSERT INTO `sys_oper_log` VALUES (377, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:52:24'); INSERT INTO `sys_oper_log` VALUES (378, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:52:24'); INSERT INTO `sys_oper_log` VALUES (379, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:52:25'); INSERT INTO `sys_oper_log` VALUES (380, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:52:25'); INSERT INTO `sys_oper_log` VALUES (381, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:52:54'); INSERT INTO `sys_oper_log` VALUES (382, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:52:54'); INSERT INTO `sys_oper_log` VALUES (383, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 11:52:55'); INSERT INTO `sys_oper_log` VALUES (384, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"夫君子之行,静以修身,俭以养德,非淡泊无以明志,非宁静无以致远。\",\"createTime\":1640663162000,\"id\":1475674374546862082,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:05:55'); INSERT INTO `sys_oper_log` VALUES (385, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"雨下了那么多日,它没有弄湿过我,是我心底在雨季,我自己弄湿了自己。\",\"createTime\":1640663161000,\"id\":1475674367156498435,\"source\":\"三毛\"}}', 0, '', '2021-12-28 13:06:04'); INSERT INTO `sys_oper_log` VALUES (386, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们从一惊一乍的孩童,变成了冷冷清清的大人。\",\"createTime\":1640663161000,\"id\":1475674368016330755,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:06:42'); INSERT INTO `sys_oper_log` VALUES (387, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一无所有又怎样?我还有我的青春。\",\"createTime\":1640652600000,\"id\":1475630073569763330,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:07:18'); INSERT INTO `sys_oper_log` VALUES (388, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"无论这个世界对你怎样,都请你一如既往的努力、勇敢、充满希望。\",\"createTime\":1640663161000,\"id\":1475674369933127683,\"source\":\"毕淑敏 《愿你与这世界温暖相拥》\"}}', 0, '', '2021-12-28 13:07:55'); INSERT INTO `sys_oper_log` VALUES (389, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生命只有一次,用尽全力,去做你想做的事,去成为你想成为的人。\",\"createTime\":1640663161000,\"id\":1475674369404645378,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:08:04'); INSERT INTO `sys_oper_log` VALUES (390, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不管怎样,我终相信这个世界是美好的。\",\"createTime\":1640663162000,\"id\":1475674372206440450,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:08:09'); INSERT INTO `sys_oper_log` VALUES (391, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没有谁是一座孤岛,每本书都是一个世界。\",\"createTime\":1640620778000,\"id\":1475496601079975938,\"source\":\"加布瑞埃拉·泽文《岛上书店》\"}}', 0, '', '2021-12-28 13:09:24'); INSERT INTO `sys_oper_log` VALUES (392, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个人经过不同程度的锻炼,就获得不同程度的修养、不同程度的效益。好比香料,捣得愈碎,磨得愈细,香得愈浓烈。\",\"createTime\":1640613370000,\"id\":1475465529784991746,\"source\":\"杨绛\"}}', 0, '', '2021-12-28 13:09:54'); INSERT INTO `sys_oper_log` VALUES (393, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你说的迈不过的苦难,有人早已习以为常。\",\"createTime\":1640662801000,\"id\":1475672859933405185,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:10:39'); INSERT INTO `sys_oper_log` VALUES (394, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"斯为泰山而不骄,汝为流水而不躁。\",\"createTime\":1640614454000,\"id\":1475470078977441795,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:10:52'); INSERT INTO `sys_oper_log` VALUES (395, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一直相信,会有一个高度,让我看到不一样的风景。\",\"createTime\":1640663171000,\"id\":1475674411456737283,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:11:14'); INSERT INTO `sys_oper_log` VALUES (396, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你这年纪,风月都好看,爱恨都浪漫。\",\"createTime\":1640663172000,\"id\":1475674415596515330,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:11:15'); INSERT INTO `sys_oper_log` VALUES (397, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我尽可能不去缅怀往事,因为来时的路不可能回头。\",\"createTime\":1640614453000,\"id\":1475470071360585729,\"source\":\"三毛\"}}', 0, '', '2021-12-28 13:11:52'); INSERT INTO `sys_oper_log` VALUES (398, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我尽可能不去缅怀往事,因为来时的路不可能回头。\",\"createTime\":1640663178000,\"id\":1475674440787505154,\"source\":\"三毛\"}}', 0, '', '2021-12-28 13:12:13'); INSERT INTO `sys_oper_log` VALUES (399, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"向日葵告诉我,只要面对着阳光努力向上,日子就会变得单纯而美好。\",\"createTime\":1640621700000,\"id\":1475500469553664003,\"source\":\"几米《又寂寞又美好》\"}}', 0, '', '2021-12-28 13:13:29'); INSERT INTO `sys_oper_log` VALUES (400, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"记得当时年纪小,你爱谈天我爱笑。\",\"createTime\":1640663182000,\"id\":1475674457522778114,\"source\":\"三毛\"}}', 0, '', '2021-12-28 13:13:40'); INSERT INTO `sys_oper_log` VALUES (401, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"故事的开头总是这样,适逢其会,猝不及防。故事的结局总是这样,花开两朵,天各一方。\",\"createTime\":1640621712000,\"id\":1475500519742705667,\"source\":\"张嘉佳\"}}', 0, '', '2021-12-28 13:14:13'); INSERT INTO `sys_oper_log` VALUES (402, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"当你的才华撑不起你的野心时,那你就应该静下心来学习;当你的经济还撑不起你的梦想时,那你就应该踏实的去工作。\",\"createTime\":1640659201000,\"id\":1475657760313176065,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:18:45'); INSERT INTO `sys_oper_log` VALUES (403, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每一个不曾起舞的日子,都是对生命的辜负。\",\"createTime\":1640663180000,\"id\":1475674449176113155,\"source\":\"尼采\"}}', 0, '', '2021-12-28 13:19:17'); INSERT INTO `sys_oper_log` VALUES (404, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我一个人行走江湖,走马观花不会为谁驻足\",\"createTime\":1640663161000,\"id\":1475674369673080834,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:22:11'); INSERT INTO `sys_oper_log` VALUES (405, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你不能左右天气,但你能转变你的心情。\",\"createTime\":1640618647000,\"id\":1475487662858768386,\"source\":\"李嘉诚\"}}', 0, '', '2021-12-28 13:31:20'); INSERT INTO `sys_oper_log` VALUES (406, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:39:20'); INSERT INTO `sys_oper_log` VALUES (407, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:39:29'); INSERT INTO `sys_oper_log` VALUES (408, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:39:30'); INSERT INTO `sys_oper_log` VALUES (409, '文案管理', 0, 'com.xjs.copywriting.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心中有山壑,眉目作山河。\",\"createTime\":1640663207000,\"id\":1475674562535567363,\"source\":\"佚名\"}}', 0, '', '2021-12-28 13:39:48'); INSERT INTO `sys_oper_log` VALUES (410, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发\",\"translationType\":1}', '', 1, 'api.fanyi.baidu.com executing POST http://api.fanyi.baidu.com/api/trans/vip/translate', '2021-12-28 13:55:11'); INSERT INTO `sys_oper_log` VALUES (411, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发\",\"translationType\":1}', '', 1, '百度翻译接口调用异常', '2021-12-28 13:56:16'); INSERT INTO `sys_oper_log` VALUES (412, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊\",\"translationType\":1}', '', 1, '百度翻译接口调用异常', '2021-12-28 14:05:49'); INSERT INTO `sys_oper_log` VALUES (413, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊\",\"translationType\":1}', '', 1, '百度翻译接口调用异常', '2021-12-28 14:06:35'); INSERT INTO `sys_oper_log` VALUES (414, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊啊\",\"translationType\":1}', '', 1, '百度翻译接口调用异常', '2021-12-28 14:09:03'); INSERT INTO `sys_oper_log` VALUES (415, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊啊\",\"translationType\":1}', '', 1, '百度翻译接口调用异常', '2021-12-28 14:14:28'); INSERT INTO `sys_oper_log` VALUES (416, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ah, ah, ah\",\"src\":\"啊啊发啊啊\"}]}}', 0, '', '2021-12-28 14:16:41'); INSERT INTO `sys_oper_log` VALUES (417, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊啊\",\"translationType\":1}', '', 1, '百度翻译接口调用异常', '2021-12-28 14:16:55'); INSERT INTO `sys_oper_log` VALUES (418, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ah, ah, ah\",\"src\":\"啊啊发啊啊\"}]}}', 0, '', '2021-12-28 14:17:55'); INSERT INTO `sys_oper_log` VALUES (419, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊啊啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ah, ah, ah\",\"src\":\"啊啊发啊啊啊\"}]}}', 0, '', '2021-12-28 14:17:57'); INSERT INTO `sys_oper_log` VALUES (420, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊啊啊大大大\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ah, ah, ah, ah, big\",\"src\":\"啊啊发啊啊啊大大大\"}]}}', 0, '', '2021-12-28 14:18:05'); INSERT INTO `sys_oper_log` VALUES (421, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊啊啊大大大阿萨法\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ah, FA, ah, Da Da, Asafa\",\"src\":\"啊啊发啊啊啊大大大阿萨法\"}]}}', 0, '', '2021-12-28 14:18:21'); INSERT INTO `sys_oper_log` VALUES (422, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊发啊啊啊大大大阿萨法啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":35,\"errorCode\":0,\"transResult\":[{\"dst\":\"Sigh hair ahhh great athar method greatly\",\"src\":\"啊啊发啊啊啊大大大阿萨法啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 14:18:26'); INSERT INTO `sys_oper_log` VALUES (423, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"爱搭搭多\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":12,\"errorCode\":0,\"transResult\":[{\"dst\":\"Take more than love\",\"src\":\"爱搭搭多\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 14:34:29'); INSERT INTO `sys_oper_log` VALUES (424, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"爱搭搭多啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":11,\"errorCode\":0,\"transResult\":[{\"dst\":\"Love take more\",\"src\":\"爱搭搭多啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 14:34:40'); INSERT INTO `sys_oper_log` VALUES (425, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"爱搭搭多啊啊发发\",\"translationType\":2}', '', 1, 'fanyi.youdao.com executing GET http://fanyi.youdao.com/translate?doctype=json&i=%E7%88%B1%E6%90%AD%E6%90%AD%E5%A4%9A%E5%95%8A%E5%95%8A%E5%8F%91%E5%8F%91&type=AUTO', '2021-12-28 14:35:45'); INSERT INTO `sys_oper_log` VALUES (426, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"爱搭搭多啊啊发发\",\"translationType\":2}', '', 1, '有道翻译接口调用异常', '2021-12-28 14:36:42'); INSERT INTO `sys_oper_log` VALUES (427, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你妈\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"Your mama\",\"src\":\"你妈\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 14:37:00'); INSERT INTO `sys_oper_log` VALUES (428, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 14:46:03'); INSERT INTO `sys_oper_log` VALUES (429, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0 0/10 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640674200000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 14:47:37'); INSERT INTO `sys_oper_log` VALUES (430, '翻译管理', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你傻吗\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":31,\"errorCode\":0,\"transResult\":[{\"dst\":\"Are you stupid?\",\"src\":\"你傻吗\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 15:10:10'); INSERT INTO `sys_oper_log` VALUES (431, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你傻吗!!!\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":11,\"errorCode\":0,\"transResult\":[{\"dst\":\"You silly!!!!!!\",\"src\":\"你傻吗!!!\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 15:11:56'); INSERT INTO `sys_oper_log` VALUES (432, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你是\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"You are a\",\"src\":\"你是\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 19:30:11'); INSERT INTO `sys_oper_log` VALUES (433, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你是\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"You are a\",\"src\":\"你是\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 19:32:10'); INSERT INTO `sys_oper_log` VALUES (434, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你是!\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"You are!\",\"src\":\"你是!\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 19:32:36'); INSERT INTO `sys_oper_log` VALUES (435, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"dict\",\"orderNum\":\"2\",\"menuName\":\"天行数据\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"tianxing\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 19:38:17'); INSERT INTO `sys_oper_log` VALUES (436, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"edit\",\"orderNum\":\"1\",\"menuName\":\"文案管理\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"wenan\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 19:38:49'); INSERT INTO `sys_oper_log` VALUES (437, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 19:45:12'); INSERT INTO `sys_oper_log` VALUES (438, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"edit\",\"orderNum\":\"1\",\"menuName\":\"文案管理\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"wenan\",\"component\":\"business/english/copywriting/index\",\"children\":[],\"createTime\":1640691529000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2017,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:09:22'); INSERT INTO `sys_oper_log` VALUES (439, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"edit\",\"orderNum\":\"1\",\"menuName\":\"文案管理\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"wenan\",\"component\":\"business/english/copywriting/index\",\"children\":[],\"createTime\":1640691529000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2017,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:09:22'); INSERT INTO `sys_oper_log` VALUES (440, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"edit\",\"orderNum\":\"1\",\"menuName\":\"文案管理\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"wenan\",\"component\":\"business/english/copywriting/index\",\"children\":[],\"createTime\":1640691529000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2017,\"menuType\":\"C\",\"perms\":\"english:log:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:09:39'); INSERT INTO `sys_oper_log` VALUES (441, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"edit\",\"orderNum\":\"1\",\"menuName\":\"文案管理\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"wenan\",\"component\":\"business/english/copywriting/index\",\"children\":[],\"createTime\":1640691529000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2017,\"menuType\":\"C\",\"perms\":\"english:copywriting:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:09:52'); INSERT INTO `sys_oper_log` VALUES (442, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:12:49'); INSERT INTO `sys_oper_log` VALUES (443, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_copywriting', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:13:07'); INSERT INTO `sys_oper_log` VALUES (444, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"copywriting_type\",\"remark\":\"文案类型\",\"params\":{},\"dictType\":\"文案类型\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:15:46'); INSERT INTO `sys_oper_log` VALUES (445, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1640693746000,\"updateBy\":\"admin\",\"dictName\":\"文案类型\",\"remark\":\"文案类型\",\"dictId\":101,\"params\":{},\"dictType\":\"copywriting_type\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:16:07'); INSERT INTO `sys_oper_log` VALUES (446, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"info\",\"dictSort\":1,\"remark\":\"朋友圈文案\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"朋友圈文案\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:16:32'); INSERT INTO `sys_oper_log` VALUES (447, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"网易云热评\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"网易云热评\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:16:44'); INSERT INTO `sys_oper_log` VALUES (448, 'API日志', 5, 'com.xjs.log.controller.ApiLogController.export()', 'POST', 1, 'admin', '', '/log/export', '127.0.0.1', '', '{}', '', 0, '', '2021-12-28 20:19:14'); INSERT INTO `sys_oper_log` VALUES (449, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2020', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:25:00'); INSERT INTO `sys_oper_log` VALUES (450, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2022', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:25:07'); INSERT INTO `sys_oper_log` VALUES (451, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"1\",\"menuName\":\"文案api,通过api获取文案信息查询\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2019,\"menuType\":\"F\",\"perms\":\"english:copywriting:query\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:25:25'); INSERT INTO `sys_oper_log` VALUES (452, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"3\",\"menuName\":\"文案api,通过api获取文案信息修改\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2021,\"menuType\":\"F\",\"perms\":\"english:copywriting:edit\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:25:47'); INSERT INTO `sys_oper_log` VALUES (453, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"5\",\"menuName\":\"文案api,通过api获取文案信息导出\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2023,\"menuType\":\"F\",\"perms\":\"english:copywriting:export\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:25:58'); INSERT INTO `sys_oper_log` VALUES (454, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"1\",\"menuName\":\"文案api,通过api获取文案信息查询\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2019,\"menuType\":\"F\",\"perms\":\"english:copywriting:query\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:26:06'); INSERT INTO `sys_oper_log` VALUES (455, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"1\",\"menuName\":\"文案信息查询\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2019,\"menuType\":\"F\",\"perms\":\"english:copywriting:query\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:26:30'); INSERT INTO `sys_oper_log` VALUES (456, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"1\",\"menuName\":\"文案查询\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2019,\"menuType\":\"F\",\"perms\":\"english:copywriting:query\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:26:34'); INSERT INTO `sys_oper_log` VALUES (457, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"3\",\"menuName\":\"文案修改\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2021,\"menuType\":\"F\",\"perms\":\"english:copywriting:edit\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:26:40'); INSERT INTO `sys_oper_log` VALUES (458, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"5\",\"menuName\":\"文案导出\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2023,\"menuType\":\"F\",\"perms\":\"english:copywriting:export\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 20:26:47'); INSERT INTO `sys_oper_log` VALUES (460, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你还好吗\\n\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"Are you ok\",\"src\":\"你还好吗\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 22:04:57'); INSERT INTO `sys_oper_log` VALUES (461, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我很好\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I\'m fine\",\"src\":\"我很好\"}]}}', 0, '', '2021-12-28 22:05:06'); INSERT INTO `sys_oper_log` VALUES (462, '操作日志', 3, 'com.ruoyi.system.controller.SysOperlogController.remove()', 'DELETE', 1, 'admin', NULL, '/operlog/459', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 22:08:19'); INSERT INTO `sys_oper_log` VALUES (463, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"online\",\"orderNum\":\"0\",\"menuName\":\"业务菜单\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"english\",\"children\":[],\"createTime\":1640504971000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2000,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-28 23:02:13'); INSERT INTO `sys_oper_log` VALUES (464, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你的女朋友有缺点吗? :有,像星星一样的多。 那你的女朋友有优点吗? :有,像太阳一样的少。 那你为什么还喜欢她? :因为太阳一出现,星星就不见了。\",\"createTime\":1640705148720,\"id\":1475850478505648131,\"source\":\"亲爱的你\",\"type\":2}}', 0, '', '2021-12-28 23:25:48'); INSERT INTO `sys_oper_log` VALUES (465, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"高二那年班主任对我们说: 其实我并不反对你们谈恋爱, 只是你们记得要找一个有担当的, 那些一看见老师就松开你手的, 要来有什么用?\",\"createTime\":1640705205373,\"id\":1475850716146524163,\"source\":\"那些你很冒险的梦\",\"type\":2}}', 0, '', '2021-12-28 23:26:45'); INSERT INTO `sys_oper_log` VALUES (466, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一颗沙里看出一个世界, 一朵野花里一座天堂, 把无限放在你的手掌上, 永恒在一刹那里收藏。\",\"createTime\":1640705278663,\"id\":1475851023526092803,\"source\":\"北岛\",\"type\":1}}', 0, '', '2021-12-28 23:27:58'); INSERT INTO `sys_oper_log` VALUES (467, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你知道有些鸟儿是注定不会被关在笼子里的,它的每一片羽毛,都闪烁着自由的光辉。\",\"createTime\":1640705288026,\"id\":1475851062801555459,\"source\":\"肖申克的救赎\",\"type\":1}}', 0, '', '2021-12-28 23:28:08'); INSERT INTO `sys_oper_log` VALUES (468, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"翟潇闻,新的一年,你也要每天开心哦[多多调皮]\",\"createTime\":1640705604707,\"id\":1475852391095689218,\"source\":\"赤脚追光\",\"type\":2}}', 0, '', '2021-12-28 23:33:24'); INSERT INTO `sys_oper_log` VALUES (469, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"把圈子变小,把语言变干净,把成绩往上提,把故事往心里收一收,现在想要的以后都会有。\",\"createTime\":1640705606519,\"id\":1475852398704156673,\"source\":\"绊\",\"type\":2}}', 0, '', '2021-12-28 23:33:26'); INSERT INTO `sys_oper_log` VALUES (470, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"大盗原来是个将军,但不愿意接受册封,想拿赏赐的明珠给喜欢的人当弹弓打鸟,但回家的途中得知喜欢的人已经死了,庭前只剩下枇杷树了。所以故乡近在一箭的距离,却不敢回去面对现实惶惶不可前。只好当了睥睨四野的大盗。 ――转自专辑封面。\",\"createTime\":1640705608000,\"id\":1475852404865589250,\"source\":\"盗将行\",\"type\":2}}', 0, '', '2021-12-28 23:33:28'); INSERT INTO `sys_oper_log` VALUES (471, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"中年以后的男人 时常会觉得孤独 因为他一睁开眼睛 周围都是要依靠他的人 却没有他可以依靠的人 ――张爱玲\",\"createTime\":1640705627363,\"id\":1475852486075703298,\"source\":\"父亲写的散文诗\",\"type\":2}}', 0, '', '2021-12-28 23:33:47'); INSERT INTO `sys_oper_log` VALUES (472, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你相信吗 也许在另一个平行时空 有一个跟你长得很像很像的人 正在热烈得爱着那个你爱不到的人\",\"createTime\":1640705628900,\"id\":1475852492534931459,\"source\":\"想见你想见你想见你\",\"type\":2}}', 0, '', '2021-12-28 23:33:48'); INSERT INTO `sys_oper_log` VALUES (473, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每个人都有属于自己的时刻表,别让任何人打乱你人生的节奏。\",\"createTime\":1640705630400,\"id\":1475852498855747585,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:33:50'); INSERT INTO `sys_oper_log` VALUES (474, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你是一树一枯荣 是我最向往的温柔。\",\"createTime\":1640705631942,\"id\":1475852505281421314,\"source\":\"关山酒\",\"type\":2}}', 0, '', '2021-12-28 23:33:51'); INSERT INTO `sys_oper_log` VALUES (475, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们生来孤独,有何苦闯进人群自取其辱。\",\"createTime\":1640705633230,\"id\":1475852510679490562,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:33:53'); INSERT INTO `sys_oper_log` VALUES (476, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我拼尽了所有,奇迹却没有发生。\",\"createTime\":1640705634380,\"id\":1475852515532300289,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:33:54'); INSERT INTO `sys_oper_log` VALUES (477, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我一个人行走江湖,走马观花不会为谁驻足\",\"createTime\":1640705635495,\"id\":1475852520179589123,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:33:55'); INSERT INTO `sys_oper_log` VALUES (478, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今晚也要梦到我\",\"createTime\":1640705636462,\"id\":1475852524239675395,\"source\":\"R&B All Night\",\"type\":2}}', 0, '', '2021-12-28 23:33:56'); INSERT INTO `sys_oper_log` VALUES (479, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世上再美的风景,都不及回家的那段路。\",\"createTime\":1640705637692,\"id\":1475852529428029442,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:33:57'); INSERT INTO `sys_oper_log` VALUES (480, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"以为是乏味的城市,却遇见彩色的梦和许多美好。\",\"createTime\":1640705638790,\"id\":1475852534041763841,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:33:58'); INSERT INTO `sys_oper_log` VALUES (481, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一定要爱着点什么,恰似草木对光阴的钟情。\",\"createTime\":1640705640751,\"id\":1475852542254211073,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:34:00'); INSERT INTO `sys_oper_log` VALUES (482, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你说枯木逢春 我说生不逢时 你说生不逢时 我说时不逢人 你说时不逢人 我说逢人不是你 假如有下辈子 我希望枯木逢春 我逢你\",\"createTime\":1640705642522,\"id\":1475852549673934849,\"source\":\"这一生关于你的风景\",\"type\":2}}', 0, '', '2021-12-28 23:34:02'); INSERT INTO `sys_oper_log` VALUES (483, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果可以许一个愿望 成为一个简单 温柔 且有力量的人吧。\",\"createTime\":1640705645384,\"id\":1475852561711587329,\"source\":\"南常\",\"type\":2}}', 0, '', '2021-12-28 23:34:05'); INSERT INTO `sys_oper_log` VALUES (484, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在所有的道别里,我最喜欢明天见。\",\"createTime\":1640705701410,\"id\":1475852796680691713,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:35:01'); INSERT INTO `sys_oper_log` VALUES (485, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生活就像骑自行车,只有不断前进,才能保持平衡。\",\"createTime\":1640705773418,\"id\":1475853098691551235,\"source\":\"爱因斯坦\",\"type\":1}}', 0, '', '2021-12-28 23:36:13'); INSERT INTO `sys_oper_log` VALUES (486, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我是她千头万绪的晴朗,是她遥遥余生的方向;她是我格外漫长的时光,是我的来日也有方长。\",\"createTime\":1640705775222,\"id\":1475853106274852867,\"source\":\"给Lyon的歌\",\"type\":2}}', 0, '', '2021-12-28 23:36:15'); INSERT INTO `sys_oper_log` VALUES (487, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"纵使生活没那么容易 我还是想把你放在未来里 一生欢喜 不为世俗所及\",\"createTime\":1640705777595,\"id\":1475853116227936258,\"source\":\"有可能的夜晚\",\"type\":2}}', 0, '', '2021-12-28 23:36:17'); INSERT INTO `sys_oper_log` VALUES (488, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你说枯木逢春 我说生不逢时 你说生不逢时 我说时不逢人 你说时不逢人 我说逢人不是你 假如有下辈子 我希望枯木逢春 我逢你\",\"createTime\":1640705779984,\"id\":1475853126239739906,\"source\":\"这一生关于你的风景\",\"type\":2}}', 0, '', '2021-12-28 23:36:19'); INSERT INTO `sys_oper_log` VALUES (489, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这首歌刚出来的时候真的没有想过出完整版,就想着哼了两句片段还蛮不错的。后来编完整版的时候因为整首歌效果,前面不想太低,就把副歌部分就升高了很多。但我不是专业的,唱高点也真的不行,气也不足,声音也不那么好听,这也是我第一次录的完整版的歌,确实也有些紧绷了,我会努力作出越来越好的歌\",\"createTime\":1640705803204,\"id\":1475853223639867393,\"source\":\"时迁\",\"type\":2}}', 0, '', '2021-12-28 23:36:43'); INSERT INTO `sys_oper_log` VALUES (490, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"这首歌刚出来的时候真的没有想过出完整版,\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":34,\"errorCode\":0,\"transResult\":[{\"dst\":\"This song is really hadn\'t thought of as the full version,\",\"src\":\"这首歌刚出来的时候真的没有想过出完整版,\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 23:37:11'); INSERT INTO `sys_oper_log` VALUES (491, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"这首歌刚出来的时候真的没有想过出完整版,就想着哼了两句片段还蛮不错的。后来编完整版的时候因为整首歌效果,前面不想太低,就把副歌部分就\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":57,\"errorCode\":0,\"transResult\":[{\"dst\":\"This song really hadn\'t thought of as the full version, just thinking of the hum or two fragments still pretty good.\",\"src\":\"这首歌刚出来的时候真的没有想过出完整版,就想着哼了两句片段还蛮不错的。\"},{\"dst\":\"Then make up the full version of time because the whole song effect, don\'t want to in front is too low, the chorus part is\",\"src\":\"后来编完整版的时候因为整首歌效果,前面不想太低,就把副歌部分就\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-28 23:37:21'); INSERT INTO `sys_oper_log` VALUES (492, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我有几千万里的山光想与你说 这沿途的星辰也想粒粒分明摘取下来交由你 等你的日子也欢喜你\",\"createTime\":1640705894407,\"id\":1475853606185558017,\"source\":\"那女孩对我说(女生正式版)\",\"type\":2}}', 0, '', '2021-12-28 23:38:14'); INSERT INTO `sys_oper_log` VALUES (493, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人间情事太俗,不如一个人看日出\",\"createTime\":1640705901599,\"id\":1475853636342603779,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:38:21'); INSERT INTO `sys_oper_log` VALUES (494, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我像个笨拙的小丑,把一切都搞砸了。\",\"createTime\":1640705939068,\"id\":1475853793515757570,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:38:59'); INSERT INTO `sys_oper_log` VALUES (495, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"享受生活中的每一件小事,因为有一天当你回头看,会发现它们都很重要。\",\"createTime\":1640705986603,\"id\":1475853992862638083,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:39:46'); INSERT INTO `sys_oper_log` VALUES (496, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我迈过人间万物,从不慌张,唯独你踏过山水,归来那一刻,我方寸大乱 。\",\"createTime\":1640706013917,\"id\":1475854107430051843,\"source\":\"佚名\",\"type\":2}}', 0, '', '2021-12-28 23:40:13'); INSERT INTO `sys_oper_log` VALUES (497, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"无论这个世界对你怎样,都请你一如既往的努力、勇敢、充满希望。\",\"createTime\":1640706016160,\"id\":1475854116821098498,\"source\":\"毕淑敏 《愿你与这世界温暖相拥》\",\"type\":1}}', 0, '', '2021-12-28 23:40:16'); INSERT INTO `sys_oper_log` VALUES (498, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"愿你所有的情深意重,都能换来岁月温柔,愿你一生努力,一生被爱,想要的都拥有,得不到的都释怀。\",\"createTime\":1640706018991,\"id\":1475854128699367427,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-28 23:40:18'); INSERT INTO `sys_oper_log` VALUES (499, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你羡慕的生活背后 都有你吃不了的苦。\",\"createTime\":1640708111412,\"id\":1475862904970108929,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 00:15:11'); INSERT INTO `sys_oper_log` VALUES (500, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我佯装起身,在残旧情书上,续了一笔。我盛装出席,在宾客满座的宴席上,吻你一次。\",\"createTime\":1640739116776,\"id\":1475992950898053122,\"source\":\"环\",\"type\":2}}', 0, '', '2021-12-29 08:51:56'); INSERT INTO `sys_oper_log` VALUES (501, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我佯装起身,在残旧情书上,续了一笔。我盛装出席,在宾客满座的宴席上,吻你一次。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":33,\"errorCode\":0,\"transResult\":[{\"dst\":\"I pretend to get up, on the travel-weary love letters, to continue.\",\"src\":\"我佯装起身,在残旧情书上,续了一笔。\"},{\"dst\":\"I dressed up to attend, full banquet, the guests kiss you again.\",\"src\":\"我盛装出席,在宾客满座的宴席上,吻你一次。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 08:52:08'); INSERT INTO `sys_oper_log` VALUES (502, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我佯装起身,在残旧情书上,续了一笔。我盛装出席,在宾客满座的宴席上,吻你一次。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I pretended to get up and continued my old love letter. I\'ll dress up and kiss you once at a banquet full of guests.\",\"src\":\"我佯装起身,在残旧情书上,续了一笔。我盛装出席,在宾客满座的宴席上,吻你一次。\"}]}}', 0, '', '2021-12-29 08:52:18'); INSERT INTO `sys_oper_log` VALUES (503, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们要有最朴素的生活,与最遥远的梦想。即使明日天寒地冻,路远马亡。\",\"createTime\":1640739168496,\"id\":1475993167831650305,\"source\":\"七堇年《被窝是青春的坟墓》\",\"type\":1}}', 0, '', '2021-12-29 08:52:48'); INSERT INTO `sys_oper_log` VALUES (504, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我们要有最朴素的生活,与最遥远的梦想。即使明日天寒地冻,路远马亡。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":32,\"errorCode\":0,\"transResult\":[{\"dst\":\"We want to have the most simple life, and the most distant dream.\",\"src\":\"我们要有最朴素的生活,与最遥远的梦想。\"},{\"dst\":\"Even cold tomorrow, road far horse dead.\",\"src\":\"即使明日天寒地冻,路远马亡。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 08:53:17'); INSERT INTO `sys_oper_log` VALUES (505, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"We want to have the most simple life, and the most distant dream. Even cold tomorrow, road far horse dead.\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":52,\"errorCode\":0,\"transResult\":[{\"dst\":\"我们想要最简单的生活,最遥远的梦想。\",\"src\":\"We want to have the most simple life, and the most distant dream. \"},{\"dst\":\"明天更冷,路远马死了。\",\"src\":\"Even cold tomorrow, road far horse dead.\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2021-12-29 08:53:56'); INSERT INTO `sys_oper_log` VALUES (506, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们要有最朴素的生活,与最遥远的梦想。即使明日天寒地冻,路远马亡。\",\"createTime\":1640739168000,\"id\":1475993167831650305,\"source\":\"七堇年《被窝是青春的坟墓》\"}}', 0, '', '2021-12-29 08:54:39'); INSERT INTO `sys_oper_log` VALUES (507, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"落日余晖的温暖,清风拂面的温柔,天空每天的五彩缤纷,都是我存在的意义。\",\"createTime\":1640739399699,\"id\":1475994137525374978,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 08:56:39'); INSERT INTO `sys_oper_log` VALUES (508, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“山野千里,你是我藏在星星里的浪漫”\",\"createTime\":1640740964877,\"id\":1476000702336749570,\"source\":\"归寻\",\"type\":2}}', 0, '', '2021-12-29 09:22:44'); INSERT INTO `sys_oper_log` VALUES (509, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"online\",\"orderNum\":\"0\",\"menuName\":\"业务菜单\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"openapi\",\"children\":[],\"createTime\":1640504971000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2000,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 10:18:18'); INSERT INTO `sys_oper_log` VALUES (510, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"education\",\"orderNum\":\"1\",\"menuName\":\"翻译管理\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"translation\",\"component\":\"business/openapi/translation/index\",\"children\":[],\"createTime\":1640529236000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2015,\"menuType\":\"C\",\"perms\":\"openapi:translation:api\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 10:18:45'); INSERT INTO `sys_oper_log` VALUES (511, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tree\",\"orderNum\":\"1\",\"menuName\":\"API日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"log\",\"component\":\"business/openapi/log/index\",\"children\":[],\"createTime\":1640505788000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2009,\"menuType\":\"C\",\"perms\":\"openapi:log:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 10:19:40'); INSERT INTO `sys_oper_log` VALUES (512, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"edit\",\"orderNum\":\"1\",\"menuName\":\"文案管理\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"wenan\",\"component\":\"business/openapi/copywriting/index\",\"children\":[],\"createTime\":1640691529000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2017,\"menuType\":\"C\",\"perms\":\"openapi:copywriting:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 10:19:54'); INSERT INTO `sys_oper_log` VALUES (513, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"1\",\"menuName\":\"文案查询\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2019,\"menuType\":\"F\",\"perms\":\"openapi:copywriting:query\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 10:20:02'); INSERT INTO `sys_oper_log` VALUES (514, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"3\",\"menuName\":\"文案修改\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2021,\"menuType\":\"F\",\"perms\":\"openapi:copywriting:edit\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 10:20:11'); INSERT INTO `sys_oper_log` VALUES (515, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"5\",\"menuName\":\"文案导出\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640694275000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2023,\"menuType\":\"F\",\"perms\":\"openapi:copywriting:export\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 10:20:18'); INSERT INTO `sys_oper_log` VALUES (516, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你所看见的和感受到的,你所喜爱和理解的,全是你正在穿越的风景。\",\"createTime\":1640743201000,\"id\":1476010081924567043,\"source\":\"佚名\"}}', 0, '', '2021-12-29 10:20:38'); INSERT INTO `sys_oper_log` VALUES (517, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"别说16hours了 你想我等多久我都等你 只要你和我说 让我等你\",\"createTime\":1640744652908,\"id\":1476016171064135683,\"source\":\"R&B All Night\",\"type\":2}}', 0, '', '2021-12-29 10:24:12'); INSERT INTO `sys_oper_log` VALUES (518, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??a\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"??A.\",\"src\":\"??a\"}]}}', 0, '', '2021-12-29 10:24:16'); INSERT INTO `sys_oper_log` VALUES (519, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??a\",\"translationType\":2}', '', 1, '有道翻译接口调用异常', '2021-12-29 10:24:20'); INSERT INTO `sys_oper_log` VALUES (520, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??a\",\"translationType\":2}', '', 1, '有道翻译接口调用异常', '2021-12-29 10:26:20'); INSERT INTO `sys_oper_log` VALUES (521, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??aaa啊 \",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"?? AAA\",\"src\":\"??aaa啊\"}]}}', 0, '', '2021-12-29 10:26:47'); INSERT INTO `sys_oper_log` VALUES (522, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??aaa啊 !\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":5,\"errorCode\":0,\"transResult\":[{\"dst\":\"??\",\"src\":\"??\"},{\"dst\":\"Aaa!\",\"src\":\"aaa啊 !\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 10:26:58'); INSERT INTO `sys_oper_log` VALUES (523, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??aaa\",\"translationType\":2}', '', 1, '有道翻译接口调用异常', '2021-12-29 10:27:07'); INSERT INTO `sys_oper_log` VALUES (524, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??aaa\",\"translationType\":2}', '', 1, '有道翻译接口调用异常', '2021-12-29 10:28:06'); INSERT INTO `sys_oper_log` VALUES (525, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??aaa\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":40,\"transResult\":[{\"dst\":\"??aaa\",\"src\":\"??aaa\"}],\"type\":\"UNSUPPORTED\"}}', 0, '', '2021-12-29 10:29:32'); INSERT INTO `sys_oper_log` VALUES (526, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??aaa1\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":40,\"transResult\":[{\"dst\":\"??aaa1\",\"src\":\"??aaa1\"}],\"type\":\"UNSUPPORTED\"}}', 0, '', '2021-12-29 10:29:47'); INSERT INTO `sys_oper_log` VALUES (527, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??aaa12\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":40,\"transResult\":[{\"dst\":\"??aaa12\",\"src\":\"??aaa12\"}],\"type\":\"UNSUPPORTED\"}}', 0, '', '2021-12-29 10:29:51'); INSERT INTO `sys_oper_log` VALUES (528, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"??aaa12啊啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":13,\"errorCode\":0,\"transResult\":[{\"dst\":\"??\",\"src\":\"??\"},{\"dst\":\"Aaa12...\",\"src\":\"aaa12啊啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 10:29:57'); INSERT INTO `sys_oper_log` VALUES (529, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/log/1476016821122519041', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-29 10:31:05'); INSERT INTO `sys_oper_log` VALUES (530, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/log/1476017632829394945,1476017616249311233', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-29 10:31:14'); INSERT INTO `sys_oper_log` VALUES (531, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"经典台词\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"经典台词\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 10:43:26'); INSERT INTO `sys_oper_log` VALUES (532, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"什么都不做,才会来不及。\",\"createTime\":1640746604178,\"id\":1476024355308851201,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 10:56:44'); INSERT INTO `sys_oper_log` VALUES (533, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"和弦顺序依次为:E-#Gm-#Cm-A-B,不断循环。扫弦可以自由组合。\",\"createTime\":1640746607106,\"id\":1476024367572996098,\"source\":\"Reality\",\"type\":2}}', 0, '', '2021-12-29 10:56:47'); INSERT INTO `sys_oper_log` VALUES (534, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"酸甜苦辣自己尝,大风大浪自己扛。\",\"createTime\":1640746609633,\"id\":1476024378167808002,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 10:56:49'); INSERT INTO `sys_oper_log` VALUES (535, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这歌让我有种嫦娥在蹦迪的错觉\",\"createTime\":1640746611901,\"id\":1476024387730821121,\"source\":\"广寒宫\",\"type\":2}}', 0, '', '2021-12-29 10:56:51'); INSERT INTO `sys_oper_log` VALUES (536, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"正在长大,正在为以后的生活奔波。 \",\"createTime\":1640746614519,\"id\":1476024398656983042,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 10:56:54'); INSERT INTO `sys_oper_log` VALUES (537, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"上天不会给人再来一次的机会,因为再来一次结果并不会有什么不同。\",\"createTime\":1640746617083,\"id\":1476024409469898754,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 10:56:57'); INSERT INTO `sys_oper_log` VALUES (538, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"4\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"名人名言\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"名人名言\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 11:07:28'); INSERT INTO `sys_oper_log` VALUES (539, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"早说拉!吓的人家小心肝扑通扑通的\\\" \\\"不必了吧!我跟他也没什么好聊的!\\\"\",\"createTime\":1640747401000,\"id\":1476027697850392578,\"source\":\"鹿鼎记\"}}', 0, '', '2021-12-29 11:20:34'); INSERT INTO `sys_oper_log` VALUES (540, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"啊啊啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ah, ah\",\"src\":\"啊啊啊\"}]}}', 0, '', '2021-12-29 11:20:39'); INSERT INTO `sys_oper_log` VALUES (541, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"牌品牌\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":7,\"errorCode\":0,\"transResult\":[{\"dst\":\"Brand brand\",\"src\":\"牌品牌\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 11:20:44'); INSERT INTO `sys_oper_log` VALUES (542, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"以后别遇到像我这样的人敏感多疑 总是吵着让你陪我经常瞎想 总让你很累吧 但又希望碰到这样的人 因为这样的人真的真的很爱你\",\"createTime\":1640748051442,\"id\":1476030425595031553,\"source\":\"敏感多疑\",\"type\":2}}', 0, '', '2021-12-29 11:20:51'); INSERT INTO `sys_oper_log` VALUES (543, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你不能同时又有青春又有关于青春的知识。因为青春忙于生活,而顾不得去了解;而知识为着要生活,而忙于自我寻求。\",\"createTime\":1640748567797,\"id\":1476032591340666881,\"source\":\"纪伯伦\",\"type\":4}}', 0, '', '2021-12-29 11:29:27'); INSERT INTO `sys_oper_log` VALUES (544, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0 0/3 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640748780000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 11:30:22'); INSERT INTO `sys_oper_log` VALUES (545, '文案管理', 5, 'com.xjs.copywriting.controller.CopyWritingController.export()', 'POST', 1, 'admin', '', '/copyWriting/export', '127.0.0.1', '', '{}', '', 0, '', '2021-12-29 11:31:31'); INSERT INTO `sys_oper_log` VALUES (546, '文案管理', 5, 'com.xjs.copywriting.controller.CopyWritingController.export()', 'POST', 1, 'admin', '', '/copyWriting/export', '127.0.0.1', '', '{}', '', 0, '', '2021-12-29 11:33:55'); INSERT INTO `sys_oper_log` VALUES (547, 'API日志', 5, 'com.xjs.log.controller.ApiLogController.export()', 'POST', 1, 'admin', '', '/log/export', '127.0.0.1', '', '{}', '', 0, '', '2021-12-29 11:33:58'); INSERT INTO `sys_oper_log` VALUES (548, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"也要感謝日文原唱授權讓我演唱,希望這首歌、這個版本、這部戲,可以在你們心裡起風,在風起時陪伴你們,這會是歌者最甜美的收穫。 文/吴青峰\",\"createTime\":1640754316796,\"id\":1476056704385974273,\"source\":\"起风了\",\"type\":2}}', 0, '', '2021-12-29 13:05:16'); INSERT INTO `sys_oper_log` VALUES (549, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真理气壮,永远不怕真理,勇敢地拥护真理,把真理告诉别人,为真理而战斗。\",\"createTime\":1640754326385,\"id\":1476056744567406595,\"source\":\"刘少奇\",\"type\":4}}', 0, '', '2021-12-29 13:05:26'); INSERT INTO `sys_oper_log` VALUES (550, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要奢望别人给你经济上的任何帮助,钱对任何人都是不够用的。\",\"createTime\":1640754456121,\"id\":1476057288761573378,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:07:36'); INSERT INTO `sys_oper_log` VALUES (551, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你怎么可以这样 你应该再上去唱首嘻唰唰的\",\"createTime\":1640754458934,\"id\":1476057300572733441,\"source\":\"好心分手\",\"type\":2}}', 0, '', '2021-12-29 13:07:38'); INSERT INTO `sys_oper_log` VALUES (552, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有些事情,刚开始都知道结局,我们都在赌。\",\"createTime\":1640754459985,\"id\":1476057304951586818,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:07:39'); INSERT INTO `sys_oper_log` VALUES (553, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"杀心可息,匡扶正义之心不可息。\",\"createTime\":1640754460960,\"id\":1476057309074587649,\"source\":\"少林寺\",\"type\":3}}', 0, '', '2021-12-29 13:07:40'); INSERT INTO `sys_oper_log` VALUES (554, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"假如你把秘密告诉了风,就别怪风把它告诉整片森林。\",\"createTime\":1640754479369,\"id\":1476057386233004034,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:07:59'); INSERT INTO `sys_oper_log` VALUES (555, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"劳动是人类的命运。\",\"createTime\":1640754567079,\"id\":1476057754169933825,\"source\":\"荷马\",\"type\":4}}', 0, '', '2021-12-29 13:09:27'); INSERT INTO `sys_oper_log` VALUES (556, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"17岁,高三。在重点高中的重点班。 有很多梦想,有很多喜欢的东西,有很多想要去的地方,也有很多责任,有很多人对我寄予厚望,170天后高考,我可以哭,但不能输,老子要考清华。\",\"createTime\":1640754567918,\"id\":1476057757672177667,\"source\":\"那些你很冒险的梦\",\"type\":2}}', 0, '', '2021-12-29 13:09:27'); INSERT INTO `sys_oper_log` VALUES (557, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"能够自洽地活着就已经是一件挺了不起的事情了。\",\"createTime\":1640754572958,\"id\":1476057778832441346,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:09:32'); INSERT INTO `sys_oper_log` VALUES (558, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你要安静的优秀,悄无声息的坚强。\",\"createTime\":1640754580829,\"id\":1476057811829030915,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:09:40'); INSERT INTO `sys_oper_log` VALUES (559, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"见过磕长头的人吗?他们的脸和手都很脏,可是心灵却很干净\",\"createTime\":1640754583296,\"id\":1476057822163795970,\"source\":\"可可西里\",\"type\":3}}', 0, '', '2021-12-29 13:09:43'); INSERT INTO `sys_oper_log` VALUES (560, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"可惜情深似海也成陈年旧爱,只怪时间过太快把往事深埋。\",\"createTime\":1640754587539,\"id\":1476057839968616449,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:09:47'); INSERT INTO `sys_oper_log` VALUES (561, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们不能样样胜利,但可以事事尽力;我们不能日日平安,但可以时时欢喜。\",\"createTime\":1640754589560,\"id\":1476057848449499138,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:09:49'); INSERT INTO `sys_oper_log` VALUES (562, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"记住,千万不要相信女人,越漂亮的女人就越会骗人。\",\"createTime\":1640754590976,\"id\":1476057854346690562,\"source\":\"倚天屠龙记\",\"type\":3}}', 0, '', '2021-12-29 13:09:50'); INSERT INTO `sys_oper_log` VALUES (563, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"答案很长,我准备用一生的时间来回答,你准备要听了吗?\",\"createTime\":1640754592768,\"id\":1476057861862883330,\"source\":\"林徽因\",\"type\":1}}', 0, '', '2021-12-29 13:09:52'); INSERT INTO `sys_oper_log` VALUES (564, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"看在党国的份上,拉兄弟一把吧。\",\"createTime\":1640754631102,\"id\":1476058022664110083,\"source\":\"南征北战\",\"type\":3}}', 0, '', '2021-12-29 13:10:31'); INSERT INTO `sys_oper_log` VALUES (565, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"年轻人,我告诉你,击倒对手最好的方法就是用手枪,练武的目的是为了将人的体能推向最高极限,如果你想能达到这种境界,就必须了解宇宙苍生。\",\"createTime\":1640754655877,\"id\":1476058126577991682,\"source\":\"精武英雄\",\"type\":3}}', 0, '', '2021-12-29 13:10:55'); INSERT INTO `sys_oper_log` VALUES (566, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"光阴给我们经验,读书给我们知识。\",\"createTime\":1640754658472,\"id\":1476058137487376385,\"source\":\"奥斯特洛夫斯基\",\"type\":4}}', 0, '', '2021-12-29 13:10:58'); INSERT INTO `sys_oper_log` VALUES (567, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"当别人不需要你的时候你要学会自己走开,多一点自知之明,少一点自作多情。\",\"createTime\":1640754693793,\"id\":1476058285642776578,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:11:33'); INSERT INTO `sys_oper_log` VALUES (568, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"说了你又不听,听了你又不懂,懂了你又不做,做了你又做错,错了你又不认,认了你又不改,改了你又不服,不服你又不说\",\"createTime\":1640754728124,\"id\":1476058429645815809,\"source\":\"江湖\",\"type\":3}}', 0, '', '2021-12-29 13:12:08'); INSERT INTO `sys_oper_log` VALUES (569, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你确定这就是爱吗 真的爱我吗 手牵着手漫步斜阳就当作浪漫 两个人眺望远方 以为爱的晴朗 当我回头望 却已泪湿了眼眶 当夕阳变成星光 当爱情换了方向 你一如过往 对爱太紧张 但未来又会怎样 未知的明天总让我彷徨 谁给我力量 我不怕你爱不爱我 只害怕你以为爱我 抓紧我不算拥有 你总学不会放手\",\"createTime\":1640754730289,\"id\":1476058438718095362,\"source\":\"这就是爱吗\",\"type\":2}}', 0, '', '2021-12-29 13:12:10'); INSERT INTO `sys_oper_log` VALUES (570, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"情深不寿 慧极必伤 所有偏执来源于热爱 这是感情 情有余而意志薄 这是人性 善于自控却不能控人 善控行而控不了心 徒添烦恼 坚持一文不值 我的坚持来源于我的坚信 只来源于我 可是我只是我 不是你 大梦一场终成空 情深不寿亦是伤 进退两难 谁能放过 天作之合 是互相折磨\",\"createTime\":1640754731485,\"id\":1476058443700928514,\"source\":\"空\",\"type\":2}}', 0, '', '2021-12-29 13:12:11'); INSERT INTO `sys_oper_log` VALUES (571, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"夜来了, 我点上白蜡烛 ,看它的眼泪淌成什么形象。\",\"createTime\":1640754732080,\"id\":1476058446204928002,\"source\":\"三毛\",\"type\":1}}', 0, '', '2021-12-29 13:12:12'); INSERT INTO `sys_oper_log` VALUES (572, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"成功=艰苦的劳动+正确的方法+少说空话。\",\"createTime\":1640754733271,\"id\":1476058451179372547,\"source\":\"爱因斯坦\",\"type\":4}}', 0, '', '2021-12-29 13:12:13'); INSERT INTO `sys_oper_log` VALUES (573, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"开始懂了,是因为自己成为了故事里的人。\",\"createTime\":1640754734612,\"id\":1476058456808128515,\"source\":\"\",\"type\":1}}', 0, '', '2021-12-29 13:12:14'); INSERT INTO `sys_oper_log` VALUES (574, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"苦难和成功是同义词,人们千方百计想躲避的苦难,其实是他们一直渴求的成功。\",\"createTime\":1640754736049,\"id\":1476058462847926275,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:12:16'); INSERT INTO `sys_oper_log` VALUES (575, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"篝火能把严寒驱散,团结能把困难赶跑。\",\"createTime\":1640754738125,\"id\":1476058471559495682,\"source\":\"(壮族)谚语\",\"type\":4}}', 0, '', '2021-12-29 13:12:18'); INSERT INTO `sys_oper_log` VALUES (576, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"dict\",\"orderNum\":\"2\",\"menuName\":\"平台数据\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"apidata\",\"children\":[],\"createTime\":1640691497000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2016,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 13:20:30'); INSERT INTO `sys_oper_log` VALUES (577, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"5\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"Ten-API 一言\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"一言\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 13:21:25'); INSERT INTO `sys_oper_log` VALUES (578, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"5\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"Ten-API 一言\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"一言\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1640755285000,\"dictCode\":108,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 13:21:33'); INSERT INTO `sys_oper_log` VALUES (579, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"友谊既不需要奴隶,也不允许有统治者,友谊最喜欢平等。\",\"createTime\":1640756660918,\"id\":1476066536325283843,\"source\":\"冈察洛夫(俄国)\",\"type\":4}}', 0, '', '2021-12-29 13:44:20'); INSERT INTO `sys_oper_log` VALUES (580, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sia × Alan Walker 联名限量\",\"createTime\":1640756664182,\"id\":1476066550015492098,\"source\":\"Move Your Body (Alan Walker Remix)\",\"type\":2}}', 0, '', '2021-12-29 13:44:24'); INSERT INTO `sys_oper_log` VALUES (581, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"信仰,是人们所必须的。什么也不信的人不会有幸福。\",\"createTime\":1640756667460,\"id\":1476066563810557953,\"source\":\"雨果\",\"type\":4}}', 0, '', '2021-12-29 13:44:27'); INSERT INTO `sys_oper_log` VALUES (582, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"天才就是劳动,人的天赋就像火花,它可以熄灭,也可以燃烧起来,而逼它燃烧成熊熊大火的方法只有一个,就是劳动再劳动。\",\"createTime\":1640756668475,\"id\":1476066568059387906,\"source\":\"高尔基\",\"type\":4}}', 0, '', '2021-12-29 13:44:28'); INSERT INTO `sys_oper_log` VALUES (583, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不管怎样,我终相信这个世界是美好的。\",\"createTime\":1640692938000,\"id\":1475799262580879362,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:44:29'); INSERT INTO `sys_oper_log` VALUES (584, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我是一名国家铁路普铁工作者,我在乌局的百里风区上班,有时候真的很羡慕高铁的人啊,鲜花和掌声都是他们的,而我们面对的只有风沙和油污,其实想想,高铁沐浴阳光,普铁在暗处承载着国家经济命脉,有根有花才完美\",\"createTime\":1640756670117,\"id\":1476066574921269250,\"source\":\"我和我的祖国\",\"type\":2}}', 0, '', '2021-12-29 13:44:30'); INSERT INTO `sys_oper_log` VALUES (585, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"纵使生活没那么容易 我还是想把你放在未来里 一生欢喜 不为世俗所及\",\"createTime\":1640705778000,\"id\":1475853116227936258,\"source\":\"有可能的夜晚\",\"type\":2}}', 0, '', '2021-12-29 13:44:31'); INSERT INTO `sys_oper_log` VALUES (586, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"简单的喜欢最长远,懂你的人最温暖。\",\"createTime\":1640756671626,\"id\":1476066581254668290,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:44:31'); INSERT INTO `sys_oper_log` VALUES (587, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要亏待每一份热情,不要讨好任何冷漠。\",\"createTime\":1640756672603,\"id\":1476066585381863426,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:44:32'); INSERT INTO `sys_oper_log` VALUES (588, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"说了你又不听,听了你又不懂,懂了你又不做,做了你又做错,错了你又不认,认了你又不改,改了你又不服,不服你又不说\",\"createTime\":1640754728000,\"id\":1476058429645815809,\"source\":\"江湖\",\"type\":3}}', 0, '', '2021-12-29 13:44:33'); INSERT INTO `sys_oper_log` VALUES (589, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只要有想见的人/就不是孤身一人。\",\"createTime\":1640756674036,\"id\":1476066591371329537,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:44:34'); INSERT INTO `sys_oper_log` VALUES (590, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有些人,尤其是儿童,常常在生人或他们的长辈面前显出一种村俗的羞怯态度,他们的思想、言辞、容貌,全都显得狼狈不堪;自己在紊乱中也失去了主宰,什么事情都做不成,至少做来显得不自然,不优雅,不能因此得到人家的喜悦与欢迎。医治这种毛病的惟一办法也与医治其他毛病的办法一样,要使他们通过练习养成一种相反的习惯,而主要的就是多交各种朋友。\",\"createTime\":1640756674532,\"id\":1476066593422344194,\"source\":\"洛克\",\"type\":4}}', 0, '', '2021-12-29 13:44:34'); INSERT INTO `sys_oper_log` VALUES (591, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一天之中最完美的时光在黎明。\",\"createTime\":1640663167000,\"id\":1475674394604023810,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:44:35'); INSERT INTO `sys_oper_log` VALUES (592, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"就算你与全世界背道而驰 也还有人不顾所以地爱你\",\"createTime\":1640756675710,\"id\":1476066598380011521,\"source\":\"还有我\",\"type\":2}}', 0, '', '2021-12-29 13:44:35'); INSERT INTO `sys_oper_log` VALUES (593, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在成功中朋友认识我们,在逆境中我们了解朋友。\",\"createTime\":1640756677241,\"id\":1476066604772130819,\"source\":\"丘顿·柯林斯\",\"type\":4}}', 0, '', '2021-12-29 13:44:37'); INSERT INTO `sys_oper_log` VALUES (594, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"求求菩萨救救我!\",\"createTime\":1640756708185,\"id\":1476066734611005441,\"source\":\"神鬼奇航(Pirates of the caribbean)\",\"type\":3}}', 0, '', '2021-12-29 13:45:08'); INSERT INTO `sys_oper_log` VALUES (595, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只有大胆地去放弃一段感情,才会收获一段回忆。\",\"createTime\":1640756709135,\"id\":1476066738557845507,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:45:09'); INSERT INTO `sys_oper_log` VALUES (596, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有勤又有俭,生活甜又甜。\",\"createTime\":1640756709397,\"id\":1476066739702890498,\"source\":\"谚语\",\"type\":4}}', 0, '', '2021-12-29 13:45:09'); INSERT INTO `sys_oper_log` VALUES (597, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与有肝胆人共事,从无字句处读书。\",\"createTime\":1640756709505,\"id\":1476066740151681025,\"source\":\"周恩来\",\"type\":4}}', 0, '', '2021-12-29 13:45:09'); INSERT INTO `sys_oper_log` VALUES (598, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"遇见你爱意汹涌 看世间万物都浪漫心动\",\"createTime\":1640756709781,\"id\":1476066741271560194,\"source\":\"嚣张\",\"type\":2}}', 0, '', '2021-12-29 13:45:09'); INSERT INTO `sys_oper_log` VALUES (599, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的梦想是个小胖子,那我就多等它一会儿吧。\",\"createTime\":1640756709867,\"id\":1476066741670019073,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:45:09'); INSERT INTO `sys_oper_log` VALUES (600, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们可以躲过校领导,躲过班主任,躲过摄像头,但还是没能躲过毕业。\",\"createTime\":1640756710157,\"id\":1476066742869590019,\"source\":\"祝你爱我到天荒地老\",\"type\":2}}', 0, '', '2021-12-29 13:45:10'); INSERT INTO `sys_oper_log` VALUES (601, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"为朋友提供方便也即为自己做好事。\",\"createTime\":1640756710232,\"id\":1476066743179968514,\"source\":\"伊拉斯漠\",\"type\":4}}', 0, '', '2021-12-29 13:45:10'); INSERT INTO `sys_oper_log` VALUES (602, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果你特别喜欢听英文歌,又没有那么多钱购买专辑的话,可以去下载外媒的Spotify ,没有版权限制,所以你不用付费\",\"createTime\":1640756710546,\"id\":1476066744496979970,\"source\":\"Love Story\",\"type\":2}}', 0, '', '2021-12-29 13:45:10'); INSERT INTO `sys_oper_log` VALUES (603, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"妈妈们都有个通病 只要你说了哪样菜好吃 她们就频繁地煮那道菜 直到你厌烦的埋怨了为止 其实她们这辈子 就是在拼命的把你觉得好的 给你 都给你 爱的不知所措而已\",\"createTime\":1640756710612,\"id\":1476066744761221122,\"source\":\"妈是心中的茉莉花\",\"type\":2}}', 0, '', '2021-12-29 13:45:10'); INSERT INTO `sys_oper_log` VALUES (604, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"当一个人因为厌倦的缘故而失去观赏美的东西的愿望的时候,欣赏那种美的要求也不能不消失。\",\"createTime\":1640756710989,\"id\":1476066746338279426,\"source\":\"车尔尼雪夫斯基\",\"type\":4}}', 0, '', '2021-12-29 13:45:10'); INSERT INTO `sys_oper_log` VALUES (605, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"废物!?我费尽一生精力.将十种杀人武器聚集在一起.超级武器霸王.要你命三千!西瓜刀!毒药!火药!硫酸!单车炼!手枪!手榴弹!杀虫剂!每一样都是能独当一面的杀人武器!现在聚在一起.看你怕不怕!\",\"createTime\":1640756711350,\"id\":1476066747860811778,\"source\":\"凌凌漆大战金鎗客\",\"type\":3}}', 0, '', '2021-12-29 13:45:11'); INSERT INTO `sys_oper_log` VALUES (606, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我打你应该,不打你悲哀!\",\"createTime\":1640756711631,\"id\":1476066749051994114,\"source\":\"少林足球\",\"type\":3}}', 0, '', '2021-12-29 13:45:11'); INSERT INTO `sys_oper_log` VALUES (607, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从来我们都是人间匆匆过客,凡来尘往,你去我留,不过如此。\",\"createTime\":1640756711711,\"id\":1476066749370761219,\"source\":\"三毛\",\"type\":1}}', 0, '', '2021-12-29 13:45:11'); INSERT INTO `sys_oper_log` VALUES (608, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"若能避开猛烈的欢喜,自然不会有悲痛的来袭。\",\"createTime\":1640663175000,\"id\":1475674428179427331,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:45:11'); INSERT INTO `sys_oper_log` VALUES (609, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一直敲一扇不愿意为你开的门是不礼貌的\",\"createTime\":1640756712082,\"id\":1476066750952013826,\"source\":\"有名无份\",\"type\":2}}', 0, '', '2021-12-29 13:45:12'); INSERT INTO `sys_oper_log` VALUES (610, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有些女子的见识就寓于容貌之中,她们所有智慧在眸子里闪动。\",\"createTime\":1640756712318,\"id\":1476066751937675267,\"source\":\"爱·扬格\",\"type\":4}}', 0, '', '2021-12-29 13:45:12'); INSERT INTO `sys_oper_log` VALUES (611, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"美德有如名香,经燃烧或压抑而其香愈烈:盖幸运最难显露恶德而厄运最能显露美德也。\",\"createTime\":1640756712444,\"id\":1476066752457768963,\"source\":\"培根\",\"type\":4}}', 0, '', '2021-12-29 13:45:12'); INSERT INTO `sys_oper_log` VALUES (612, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"所有的科学都是错误先真理而生,错误在先比错误在后好。\",\"createTime\":1640756755100,\"id\":1476066931399360514,\"source\":\"沃尔波斯\",\"type\":4}}', 0, '', '2021-12-29 13:45:55'); INSERT INTO `sys_oper_log` VALUES (613, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"当下的年轻人需要意识到一件事, 活在这个时代中 焦虑、痛苦、 甚至努力得不到回报都是普通人人生的常态 这个世界,也许远不值得你为此忧虑一生\",\"createTime\":1640756757641,\"id\":1476066942044504065,\"source\":\"执此一念\",\"type\":2}}', 0, '', '2021-12-29 13:45:57'); INSERT INTO `sys_oper_log` VALUES (614, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世如明镜,人在这里头走,四面八方都是自己\",\"createTime\":1640692942000,\"id\":1475799278556983297,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:45:59'); INSERT INTO `sys_oper_log` VALUES (615, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"看见评论里有好多人说自己喜欢的那个他,其实我好羡慕你们,我连一个喜欢的人都没有[可爱]像我这种都没有喜欢的人听这么悲伤的情歌真的好吗!\",\"createTime\":1640756815291,\"id\":1476067183850323970,\"source\":\"其实都没有\",\"type\":2}}', 0, '', '2021-12-29 13:46:55'); INSERT INTO `sys_oper_log` VALUES (616, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"白日莫空过,青春不再来。\",\"createTime\":1640756835611,\"id\":1476067269032443907,\"source\":\"林宽\",\"type\":4}}', 0, '', '2021-12-29 13:47:15'); INSERT INTO `sys_oper_log` VALUES (617, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要把所有的夜归还给星河,把所有的春光归还给疏疏篱落,把所有的慵慵沉迷与不前,归还给过去的我。明日之我,胸中有丘壑,立马振山河\",\"createTime\":1640756843557,\"id\":1476067302393937922,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 13:47:23'); INSERT INTO `sys_oper_log` VALUES (618, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世界以痛吻我,要我报之以歌。\",\"createTime\":1640756847193,\"id\":1476067317631844353,\"source\":\"泰戈尔\",\"type\":1}}', 0, '', '2021-12-29 13:47:27'); INSERT INTO `sys_oper_log` VALUES (619, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你笑的好讨厌啊,我要你哭!\",\"createTime\":1640756849323,\"id\":1476067326548934658,\"source\":\"铁鸡斗蜈蚣\",\"type\":3}}', 0, '', '2021-12-29 13:47:29'); INSERT INTO `sys_oper_log` VALUES (620, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"读不在三更五鼓,功只怕一曝十寒。\",\"createTime\":1640756859837,\"id\":1476067370693984258,\"source\":\"郭沫若\",\"type\":4}}', 0, '', '2021-12-29 13:47:39'); INSERT INTO `sys_oper_log` VALUES (621, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从通利福利亚到云景南大街,从新生代到小有名气的音乐人。成长的镜头里你一直勇往直前,这条高速公路没有捷径,你哼着歌速度加到180迈,沿途的风景被你记下。就算没有终点我们也一直陪你\",\"createTime\":1640756908433,\"id\":1476067574486831106,\"source\":\"到底要怎么样\",\"type\":2}}', 0, '', '2021-12-29 13:48:28'); INSERT INTO `sys_oper_log` VALUES (622, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"弈棋与胜己者对,则日进;与不如己者对,则日退。取友之道亦然。\",\"createTime\":1640756917554,\"id\":1476067612772438017,\"source\":\"申涵光\",\"type\":4}}', 0, '', '2021-12-29 13:48:37'); INSERT INTO `sys_oper_log` VALUES (623, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"弈棋与胜己者对,则日进;与不如己者对,则日退。取友之道亦然。\",\"createTime\":1640756918000,\"id\":1476067612772438017,\"source\":\"申涵光\"}}', 0, '', '2021-12-29 13:48:47'); INSERT INTO `sys_oper_log` VALUES (624, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与其仓皇追赶日落,我更想静待漫天繁星。\",\"createTime\":1640757061000,\"id\":1476068213157695491,\"source\":\"网易云《等》热评\"}}', 0, '', '2021-12-29 13:51:30'); INSERT INTO `sys_oper_log` VALUES (625, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1640757421000,\"id\":1476069724956823553,\"source\":\"施企巴乔夫\"}}', 0, '', '2021-12-29 13:59:41'); INSERT INTO `sys_oper_log` VALUES (626, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1640757421000,\"id\":1476069724956823553,\"source\":\"施企巴乔夫\"}}', 0, '', '2021-12-29 13:59:48'); INSERT INTO `sys_oper_log` VALUES (627, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1640757421000,\"id\":1476069724956823553,\"source\":\"施企巴乔夫\"}}', 0, '', '2021-12-29 14:00:29'); INSERT INTO `sys_oper_log` VALUES (628, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1640757421000,\"id\":1476069724956823553,\"source\":\"施企巴乔夫\"}}', 0, '', '2021-12-29 14:00:43'); INSERT INTO `sys_oper_log` VALUES (629, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你给我记住!战场上只有一个头!\",\"createTime\":1640757651310,\"id\":1476070690372444162,\"source\":\"投名状\",\"type\":3}}', 0, '', '2021-12-29 14:00:51'); INSERT INTO `sys_oper_log` VALUES (630, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真是个垃圾场。\",\"createTime\":1640757655225,\"id\":1476070706784755714,\"source\":\"Beyond the forest\",\"type\":3}}', 0, '', '2021-12-29 14:00:55'); INSERT INTO `sys_oper_log` VALUES (631, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"刘翔是唯一一个在直线跑道上真正打败黑人的运动员,甚至创造了连白人都没做到的记录。刘翔参加了48次世界大赛,36次冠军,6次亚军,3次季军,然而有些人却只记得他退赛2次\",\"createTime\":1640757665058,\"id\":1476070747977015298,\"source\":\"Nevada (feat. Cozi Zuehlsdorff)\",\"type\":2}}', 0, '', '2021-12-29 14:01:05'); INSERT INTO `sys_oper_log` VALUES (632, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这公主丑得实在惊人,想本王征战沙场数十载,从来没有如此惊心动魄过,\",\"createTime\":1640757671402,\"id\":1476070774589874178,\"source\":\"龙凤店\",\"type\":3}}', 0, '', '2021-12-29 14:01:11'); INSERT INTO `sys_oper_log` VALUES (633, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"少废话,能打赢你就是好拳。\",\"createTime\":1640757681370,\"id\":1476070816444833794,\"source\":\"精武英雄\",\"type\":3}}', 0, '', '2021-12-29 14:01:21'); INSERT INTO `sys_oper_log` VALUES (634, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只看一个人的著作,结果是不大好的:你就得不到多方面的优点。必须如蜜蜂一样,采过许多花,这才能酿出蜜来,倘若叮在一处,所得就非常有限,枯燥了。\",\"createTime\":1640757687252,\"id\":1476070841069592578,\"source\":\"鲁迅\",\"type\":4}}', 0, '', '2021-12-29 14:01:27'); INSERT INTO `sys_oper_log` VALUES (635, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"年轻的时候,总是以为自己是全世界最棒的,肩负着惊天地泣鬼神的重任。年少时这些豪情狂妄而单纯,却那么有韵味,像早春旷野里的气息。\",\"createTime\":1640757692145,\"id\":1476070861600710658,\"source\":\"玻璃之城\",\"type\":3}}', 0, '', '2021-12-29 14:01:32'); INSERT INTO `sys_oper_log` VALUES (636, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你试图揭开其中的奥秘但是你永远不会知道真相因为..当然..你并不是真正在寻找其实.,,,. 你并不想知道解答你只是希望被 ...........骗\",\"createTime\":1640757698532,\"id\":1476070888423284738,\"source\":\"顶尖对决\",\"type\":3}}', 0, '', '2021-12-29 14:01:38'); INSERT INTO `sys_oper_log` VALUES (637, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"走得突然,我们来不及告别,这样也好,因为我们永远不告别。\",\"createTime\":1640757706590,\"id\":1476070922216792066,\"source\":\"三毛\",\"type\":1}}', 0, '', '2021-12-29 14:01:46'); INSERT INTO `sys_oper_log` VALUES (638, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"短不过一瞬长不过永远\",\"createTime\":1640757714562,\"id\":1476070955674755073,\"source\":\"如果 爱\",\"type\":3}}', 0, '', '2021-12-29 14:01:54'); INSERT INTO `sys_oper_log` VALUES (639, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"最高境界就是手中无剑,心中也无剑,就是以大胸怀包容一切,那便是和平,便是不杀。\",\"createTime\":1640757721652,\"id\":1476070985370427395,\"source\":\"英雄\",\"type\":3}}', 0, '', '2021-12-29 14:02:01'); INSERT INTO `sys_oper_log` VALUES (640, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人们睡不着的时候都会数星星,那星星睡不着的时候会不会数人呢?\",\"createTime\":1640757725181,\"id\":1476071000146960386,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:02:05'); INSERT INTO `sys_oper_log` VALUES (641, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人们睡不着的时候都会数星星,那星星睡不着的时候会不会数人呢?\",\"createTime\":1640757725000,\"id\":1476071000146960386,\"source\":\"佚名\"}}', 0, '', '2021-12-29 14:02:12'); INSERT INTO `sys_oper_log` VALUES (642, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生很简单,做了决定就不要后悔。\",\"createTime\":1640757803675,\"id\":1476071329412407298,\"source\":\"玩命关头3:东京甩尾(The fast and furious 3 : tokyo drift)\",\"type\":3}}', 0, '', '2021-12-29 14:03:23'); INSERT INTO `sys_oper_log` VALUES (643, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与人交往要有底线,值得的真心相待不辜负,不值得的一笑而过不再多说。\",\"createTime\":1640757815135,\"id\":1476071377483325441,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:03:35'); INSERT INTO `sys_oper_log` VALUES (644, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"照顾好你黑色的头发,挑剔的胃和爱笑的眼睛,认真对待你的每一件衣服,每一双鞋子,每一顿早餐,每一场睡眠。\",\"createTime\":1640757826256,\"id\":1476071424098820098,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:03:46'); INSERT INTO `sys_oper_log` VALUES (645, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"光怪陆离都经历,山川湖海放心里。\",\"createTime\":1640757830133,\"id\":1476071440364331011,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:03:50'); INSERT INTO `sys_oper_log` VALUES (646, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"美德有如名香,经燃烧或压抑而其香愈烈:盖幸运最难显露恶德而厄运最能显露美德也。\",\"createTime\":1640757834639,\"id\":1476071459297419265,\"source\":\"培根\",\"type\":4}}', 0, '', '2021-12-29 14:03:54'); INSERT INTO `sys_oper_log` VALUES (647, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"至乐莫如读书,至要莫如教子。\",\"createTime\":1640757844024,\"id\":1476071498644185090,\"source\":\"《增广贤文》\",\"type\":4}}', 0, '', '2021-12-29 14:04:04'); INSERT INTO `sys_oper_log` VALUES (648, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在我党的一切实际工作中,凡属正确的领导,必须是从群众中来,到群众中去。\",\"createTime\":1640757848125,\"id\":1476071515878580225,\"source\":\"毛泽东\",\"type\":4}}', 0, '', '2021-12-29 14:04:08'); INSERT INTO `sys_oper_log` VALUES (649, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生的跑道是固定的。大自然只给人一条路线,而这条路线也只能够跑一次。\",\"createTime\":1640757852310,\"id\":1476071533385605121,\"source\":\"西塞罗\",\"type\":4}}', 0, '', '2021-12-29 14:04:12'); INSERT INTO `sys_oper_log` VALUES (650, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我只是在必要的时候才会勇敢,勇敢并不代表你要到处闯祸。\",\"createTime\":1640757859334,\"id\":1476071562892533762,\"source\":\"狮子王 The lion king\",\"type\":3}}', 0, '', '2021-12-29 14:04:19'); INSERT INTO `sys_oper_log` VALUES (651, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"刚缺柔是浪费力气,柔缺刚是攻而不克,缺一不可。\",\"createTime\":1640757862725,\"id\":1476071577073475587,\"source\":\"精武英雄\",\"type\":3}}', 0, '', '2021-12-29 14:04:22'); INSERT INTO `sys_oper_log` VALUES (652, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"小扇引微凉,悠悠夏日长。\",\"createTime\":1640757868207,\"id\":1476071600108593154,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:04:28'); INSERT INTO `sys_oper_log` VALUES (653, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世人谓我恋长安,其实只恋长安某。\",\"createTime\":1640757880383,\"id\":1476071651149078531,\"source\":\"青丝\",\"type\":2}}', 0, '', '2021-12-29 14:04:40'); INSERT INTO `sys_oper_log` VALUES (654, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世人谓我恋长安,其实只恋长安某。\",\"createTime\":1640757880000,\"id\":1476071651149078531,\"source\":\"青丝\"}}', 0, '', '2021-12-29 14:04:44'); INSERT INTO `sys_oper_log` VALUES (655, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世人谓我恋长安,其实只恋长安某。\",\"createTime\":1640757880000,\"id\":1476071651149078531,\"source\":\"青丝\"}}', 0, '', '2021-12-29 14:06:22'); INSERT INTO `sys_oper_log` VALUES (656, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世人谓我恋长安,其实只恋长安某。\",\"createTime\":1640757880000,\"id\":1476071651149078531,\"source\":\"青丝\"}}', 0, '', '2021-12-29 14:07:10'); INSERT INTO `sys_oper_log` VALUES (657, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世人谓我恋长安,其实只恋长安某。\",\"createTime\":1640757880000,\"id\":1476071651149078531,\"source\":\"青丝\"}}', 0, '', '2021-12-29 14:10:15'); INSERT INTO `sys_oper_log` VALUES (658, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世人谓我恋长安,其实只恋长安某。\",\"createTime\":1640757880000,\"id\":1476071651149078531,\"source\":\"青丝\"}}', 0, '', '2021-12-29 14:12:16'); INSERT INTO `sys_oper_log` VALUES (659, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世人谓我恋长安,其实只恋长安某。\",\"createTime\":1640757880000,\"id\":1476071651149078531,\"source\":\"青丝\"}}', 0, '', '2021-12-29 14:13:18'); INSERT INTO `sys_oper_log` VALUES (660, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"读不在三更五鼓,功只怕一曝十寒。\",\"createTime\":1640756860000,\"id\":1476067370693984258,\"source\":\"郭沫若\",\"type\":4}}', 0, '', '2021-12-29 14:20:58'); INSERT INTO `sys_oper_log` VALUES (661, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"所有与众不同的人的背后,一定有那些不为人知的努力,要么是血,要么是汗,要么是大把大把无人问津的寂寞时光。\",\"createTime\":1640691600000,\"id\":1475793651638128643,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:22:14'); INSERT INTO `sys_oper_log` VALUES (662, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与人交往要有底线,值得的真心相待不辜负,不值得的一笑而过不再多说。\",\"createTime\":1640691001000,\"id\":1475791139308752897,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:23:50'); INSERT INTO `sys_oper_log` VALUES (663, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"无论做什么,记得为自己而做,那就毫无怨言。\",\"createTime\":1640759801767,\"id\":1476079710042755073,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:36:41'); INSERT INTO `sys_oper_log` VALUES (664, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"小扇引微凉,悠悠夏日长。\",\"createTime\":1640759803932,\"id\":1476079719064702978,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:36:43'); INSERT INTO `sys_oper_log` VALUES (665, '字典类型', 3, 'com.ruoyi.system.controller.SysDictDataController.remove()', 'DELETE', 1, 'admin', NULL, '/dict/data/108', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 14:37:18'); INSERT INTO `sys_oper_log` VALUES (666, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"千万别沮丧,你要知道,无论经历什么事,都是成长。\",\"createTime\":1640760024200,\"id\":1476080642960822274,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:40:24'); INSERT INTO `sys_oper_log` VALUES (667, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个人哭喊,你给纸巾他就行﹔但如果一间屋的人哭喊,你就要做很多事情\",\"createTime\":1640760030594,\"id\":1476080669791784961,\"source\":\"重庆森林\",\"type\":3}}', 0, '', '2021-12-29 14:40:30'); INSERT INTO `sys_oper_log` VALUES (668, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"受人之托,终人之事。\",\"createTime\":1640760032022,\"id\":1476080675739308034,\"source\":\"高则诚\",\"type\":4}}', 0, '', '2021-12-29 14:40:32'); INSERT INTO `sys_oper_log` VALUES (669, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你偷吃我葡萄还葡我老母!\",\"createTime\":1640760032932,\"id\":1476080679602262018,\"source\":\"齐天大圣东游记\",\"type\":3}}', 0, '', '2021-12-29 14:40:32'); INSERT INTO `sys_oper_log` VALUES (670, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在心动的期限里 仍对你存有无限幻想\",\"createTime\":1640760034528,\"id\":1476080686292176898,\"source\":\"重演\",\"type\":2}}', 0, '', '2021-12-29 14:40:34'); INSERT INTO `sys_oper_log` VALUES (671, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"相信青春是一生当中最快乐的时光,是一种谬误。最快乐的人是想着最有趣味的思想的人,因而我们是愈老愈快乐。\",\"createTime\":1640760035283,\"id\":1476080689421127682,\"source\":\"威廉·里昂·菲尔坡\",\"type\":4}}', 0, '', '2021-12-29 14:40:35'); INSERT INTO `sys_oper_log` VALUES (672, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"都说爱是积累来的 其实离开也是 比如我难过的时候你说好 我失眠的时候你依旧睡得早\",\"createTime\":1640760036500,\"id\":1476080694533984258,\"source\":\"有名无份\",\"type\":2}}', 0, '', '2021-12-29 14:40:36'); INSERT INTO `sys_oper_log` VALUES (673, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"其实失去了你我还能活 就是不想睡 不想醒 不想做梦 不想吃东西 不想做任何事 不想去任何地方 浑身无力 想逃避却发现无处可逃 想做些什么却发现什么都做不了 想倾诉些什么还是一句话也说不出口 想不去想你 可哪里都是你 想用尽全力的哭一场 却流不出一滴眼泪 我多久才能得到时光的救赎啊\",\"createTime\":1640760038784,\"id\":1476080704159911937,\"source\":\"还是分开\",\"type\":2}}', 0, '', '2021-12-29 14:40:38'); INSERT INTO `sys_oper_log` VALUES (674, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"夏花绚烂的时光,心灵的绿芜深处,偶来的一纸感念,流年里轻轻浅浅的印记,都是与自己心情有关的经历。安然静好的岁月,不知前方有多远,我只希望,能够漫过生命的长度,很远很远。\",\"createTime\":1640760105652,\"id\":1476080984616243202,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:41:45'); INSERT INTO `sys_oper_log` VALUES (675, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"开始懂了,是因为自己成为了故事里的人。\",\"createTime\":1640760106726,\"id\":1476080989078982658,\"source\":\"\",\"type\":1}}', 0, '', '2021-12-29 14:41:46'); INSERT INTO `sys_oper_log` VALUES (676, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"落花人独立,微雨燕双飞。\",\"createTime\":1640760257758,\"id\":1476081622582464515,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:44:17'); INSERT INTO `sys_oper_log` VALUES (677, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生一世,总有些片断当时看着无关紧要,而事实上却牵动了大局。\",\"createTime\":1640760259102,\"id\":1476081628223803393,\"source\":\"萨克雷\",\"type\":4}}', 0, '', '2021-12-29 14:44:19'); INSERT INTO `sys_oper_log` VALUES (678, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"道德的最大秘密就是爱;或者说,就是逾越我们自己的本性,而溶于旁人的思想、行为或人格中存在的美。\",\"createTime\":1640760259989,\"id\":1476081631914790914,\"source\":\"雪莱\",\"type\":4}}', 0, '', '2021-12-29 14:44:19'); INSERT INTO `sys_oper_log` VALUES (679, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"举白旗投降并不代表你胆小。\",\"createTime\":1640760291081,\"id\":1476081762328285186,\"source\":\"斗阵俱乐部(搏击俱乐部)Fight Club\",\"type\":3}}', 0, '', '2021-12-29 14:44:51'); INSERT INTO `sys_oper_log` VALUES (680, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的肩上是风,风上是闪烁的星群。\",\"createTime\":1640760292328,\"id\":1476081767596331010,\"source\":\"北岛\",\"type\":1}}', 0, '', '2021-12-29 14:44:52'); INSERT INTO `sys_oper_log` VALUES (681, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“往后的好运,都是平日里日积月累的努力”\",\"createTime\":1640760293346,\"id\":1476081771874521090,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:44:53'); INSERT INTO `sys_oper_log` VALUES (682, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世上再美的风景,都不及回家的那段路。\",\"createTime\":1640760296104,\"id\":1476081783417245698,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:44:56'); INSERT INTO `sys_oper_log` VALUES (683, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的生命属于整个社会;在我有生之年,尽我力所能及为整个社会工作,这就是我的特殊的荣幸。\",\"createTime\":1640760297559,\"id\":1476081789511569411,\"source\":\"萧伯纳\",\"type\":4}}', 0, '', '2021-12-29 14:44:57'); INSERT INTO `sys_oper_log` VALUES (684, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"对不起 不是一个男人应该说的。\",\"createTime\":1640760321546,\"id\":1476081890149699586,\"source\":\"中南海保镖\",\"type\":3}}', 0, '', '2021-12-29 14:45:21'); INSERT INTO `sys_oper_log` VALUES (685, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"即便被压榨拿着微薄的工资超负荷劳动,在最后望向烟花和自己的妻子儿女时,也会因为“努力守护着自己的家人”而感到幸福满足。 漫天绚烂的烟花,在头顶炸开成虚幻和遥远的美丽,社长家中狂欢不止,打翻的幸福蛋糕,倒下的疲惫身躯,八爷lemon的神插入,直戳泪点[流泪]\",\"createTime\":1640760322624,\"id\":1476081894620827650,\"source\":\"Lemon\",\"type\":2}}', 0, '', '2021-12-29 14:45:22'); INSERT INTO `sys_oper_log` VALUES (686, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一切礼仪,都是为了文饰那些虚应故事的行为,言不由衷的欢迎,出尔反尔的殷勤而设立的;如果有真实的友谊,这些虚伪的形式就该一律摈弃。\",\"createTime\":1640760355079,\"id\":1476082030797295618,\"source\":\"莎士比亚\",\"type\":4}}', 0, '', '2021-12-29 14:45:55'); INSERT INTO `sys_oper_log` VALUES (687, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"教育人就是要形成人的性格。\",\"createTime\":1640760356345,\"id\":1476082036094701570,\"source\":\"欧文\",\"type\":4}}', 0, '', '2021-12-29 14:45:56'); INSERT INTO `sys_oper_log` VALUES (688, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从“你”变成“她” 我也不容易啊。\",\"createTime\":1640760499380,\"id\":1476082636010196994,\"source\":\"第三人称\",\"type\":2}}', 0, '', '2021-12-29 14:48:19'); INSERT INTO `sys_oper_log` VALUES (689, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"然后把室友被子盖在自己床上\",\"createTime\":1640760565387,\"id\":1476082912859426818,\"source\":\"这就是爱情\",\"type\":2}}', 0, '', '2021-12-29 14:49:25'); INSERT INTO `sys_oper_log` VALUES (690, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1640760566405,\"id\":1476082917133422594,\"source\":\"施企巴乔夫\",\"type\":4}}', 0, '', '2021-12-29 14:49:26'); INSERT INTO `sys_oper_log` VALUES (691, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们的口号是:“不求最好,但求最贵。”\",\"createTime\":1640760567373,\"id\":1476082921227063298,\"source\":\"大腕\",\"type\":3}}', 0, '', '2021-12-29 14:49:27'); INSERT INTO `sys_oper_log` VALUES (692, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你透过车窗看风景,山川湖泊也在看你。\",\"createTime\":1640760568227,\"id\":1476082924754472962,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:49:28'); INSERT INTO `sys_oper_log` VALUES (693, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"问心的道德胜于问理的道德,所以情感的生活胜于理智的生活。\",\"createTime\":1640760569262,\"id\":1476082929145909249,\"source\":\"朱光潜\",\"type\":4}}', 0, '', '2021-12-29 14:49:29'); INSERT INTO `sys_oper_log` VALUES (694, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这份名单是生命\",\"createTime\":1640760570729,\"id\":1476082935307341826,\"source\":\"辛德勒名单(Schindler\'s list)\",\"type\":3}}', 0, '', '2021-12-29 14:49:30'); INSERT INTO `sys_oper_log` VALUES (695, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"走完同一条街,回到两个世界。\",\"createTime\":1640760571705,\"id\":1476082939380011010,\"source\":\"王菲\",\"type\":1}}', 0, '', '2021-12-29 14:49:31'); INSERT INTO `sys_oper_log` VALUES (696, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我能坐你旁边吗\",\"createTime\":1640760573285,\"id\":1476082946011205634,\"source\":\"最甜情歌 (女生版) \",\"type\":2}}', 0, '', '2021-12-29 14:49:33'); INSERT INTO `sys_oper_log` VALUES (697, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“暧昧是什么?” “所有人都以为你们在一起了,只有你清楚的知道你们的距离。”\",\"createTime\":1640760574723,\"id\":1476082952059392002,\"source\":\"水星记\",\"type\":2}}', 0, '', '2021-12-29 14:49:34'); INSERT INTO `sys_oper_log` VALUES (698, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"秦奋:一旦她把心给你,你的身体就算是判了无期徒刑了。 \\n邬桑(秦奋好友):你就是看上人家好看了 \\n秦奋:好看怎么了,我为我们秦家改良后代怎么了?非要遇上一个难看的,天天想着怎么越狱心里才舒服?\",\"createTime\":1640760576410,\"id\":1476082959135182849,\"source\":\"非诚勿扰\",\"type\":3}}', 0, '', '2021-12-29 14:49:36'); INSERT INTO `sys_oper_log` VALUES (699, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"其实,我是一个演员\",\"createTime\":1640760578164,\"id\":1476082966445854723,\"source\":\"喜剧之王\",\"type\":3}}', 0, '', '2021-12-29 14:49:38'); INSERT INTO `sys_oper_log` VALUES (700, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"李子维 我可不可以对你许我的第三个愿望 我希望 有一天 我可以变成你会喜欢上的那种女生 然后 你可以像我喜欢你那样的喜欢我\\\" \",\"createTime\":1640760606463,\"id\":1476083085161435137,\"source\":\"想见你想见你想见你\",\"type\":2}}', 0, '', '2021-12-29 14:50:06'); INSERT INTO `sys_oper_log` VALUES (701, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"假如你不够快乐 也不要把眉头深锁 人生本来短暂 为什么还要栽培苦涩.\",\"createTime\":1640760606524,\"id\":1476083085442453506,\"source\":\"尘\",\"type\":2}}', 0, '', '2021-12-29 14:50:06'); INSERT INTO `sys_oper_log` VALUES (702, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"ㄍㄢˋ,要回答得这么快吗?不考虑就回答,我老人家ㄋㄟ,我心肝不是铁打的,我也会伤心耶。\",\"createTime\":1640760607605,\"id\":1476083089938747394,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2021-12-29 14:50:07'); INSERT INTO `sys_oper_log` VALUES (703, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"享受现在,你拥有的每一刻都是独一无二的。\",\"createTime\":1640760608549,\"id\":1476083093914947585,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:50:08'); INSERT INTO `sys_oper_log` VALUES (704, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你可以靠思想上的隔音器隔绝喧闹声。\",\"createTime\":1640760609874,\"id\":1476083099493371906,\"source\":\"罗斯\",\"type\":4}}', 0, '', '2021-12-29 14:50:09'); INSERT INTO `sys_oper_log` VALUES (705, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有一些人追求永恒的美,他们把无限放到他们的短暂的生命里。另外一些人胸无大志地活着。\",\"createTime\":1640760635944,\"id\":1476083208817905666,\"source\":\"罗曼·罗兰\",\"type\":4}}', 0, '', '2021-12-29 14:50:35'); INSERT INTO `sys_oper_log` VALUES (706, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"历史唯一告诉我们的教训就是:任何人都可以被干掉!\",\"createTime\":1640760637313,\"id\":1476083214576685058,\"source\":\"教父 (The Godfather)\",\"type\":3}}', 0, '', '2021-12-29 14:50:37'); INSERT INTO `sys_oper_log` VALUES (707, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"伤心是可以分期摊还的,假如你一次负担不了。\",\"createTime\":1640760638465,\"id\":1476083219383357443,\"source\":\"三毛\",\"type\":1}}', 0, '', '2021-12-29 14:50:38'); INSERT INTO `sys_oper_log` VALUES (708, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我永远是你黑名单里的成员 我连重蹈覆辙的机会都没有\",\"createTime\":1640760639666,\"id\":1476083224395550722,\"source\":\"我们再重蹈覆辙好不好\",\"type\":2}}', 0, '', '2021-12-29 14:50:39'); INSERT INTO `sys_oper_log` VALUES (709, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你跟我谈痛苦!!!等你穿过束衣后再来跟我说吧!\",\"createTime\":1640760719799,\"id\":1476083560522878978,\"source\":\"神鬼奇航(Pirates of the caribbean)\",\"type\":3}}', 0, '', '2021-12-29 14:51:59'); INSERT INTO `sys_oper_log` VALUES (710, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"愿你一个人,安静而丰盛,两个人,温暖而踏实。即便单枪匹马,也勇敢无畏。\",\"createTime\":1640760721098,\"id\":1476083565950308355,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:52:01'); INSERT INTO `sys_oper_log` VALUES (711, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真理永远是不朽的,而谬误总有一天要被纠正。\",\"createTime\":1640760723219,\"id\":1476083574863204354,\"source\":\"玛·埃迪\",\"type\":4}}', 0, '', '2021-12-29 14:52:03'); INSERT INTO `sys_oper_log` VALUES (712, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们永远都怀念巴黎(那段美好的时光)。\",\"createTime\":1640760724818,\"id\":1476083581540536322,\"source\":\"卡萨布兰卡 (Casablanca)\",\"type\":3}}', 0, '', '2021-12-29 14:52:04'); INSERT INTO `sys_oper_log` VALUES (713, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"十三姨妳说的对,唐山应该要变,拳脚是打不过枪炮的。\",\"createTime\":1640760725481,\"id\":1476083584384274434,\"source\":\"黄飞鸿\",\"type\":3}}', 0, '', '2021-12-29 14:52:05'); INSERT INTO `sys_oper_log` VALUES (714, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"所有的科学都是错误先真理而生,错误在先比错误在后好。\",\"createTime\":1640760726104,\"id\":1476083586976354305,\"source\":\"沃尔波斯\",\"type\":4}}', 0, '', '2021-12-29 14:52:06'); INSERT INTO `sys_oper_log` VALUES (715, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人间情事太俗,不如一个人看日出\",\"createTime\":1640760728745,\"id\":1476083598019956739,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:52:08'); INSERT INTO `sys_oper_log` VALUES (716, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要活成两种样子,发光和不发光。不发光的时候,都是在为发光做准备。\",\"createTime\":1640760733046,\"id\":1476083616109989890,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:52:13'); INSERT INTO `sys_oper_log` VALUES (717, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们不会的东西越来越多,连热爱生活也不会了。\",\"createTime\":1640760736754,\"id\":1476083631654080513,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 14:52:16'); INSERT INTO `sys_oper_log` VALUES (718, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生在世,不出一番好议论,不留一番好事业,终日饮食暖衣,无所用心,何自别于禽兽?\",\"createTime\":1640760737603,\"id\":1476083635168907267,\"source\":\"(宋)苏辙\",\"type\":4}}', 0, '', '2021-12-29 14:52:17'); INSERT INTO `sys_oper_log` VALUES (719, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"能解决的事,不必去担心;不能解决的事,担心也没用!\",\"createTime\":1640760739151,\"id\":1476083641699438593,\"source\":\"火线大逃亡 Seven years in tibet\",\"type\":3}}', 0, '', '2021-12-29 14:52:19'); INSERT INTO `sys_oper_log` VALUES (720, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"雨下了那么多日,它没有弄湿过我,是我心底在雨季,我自己弄湿了自己。\",\"createTime\":1640761432400,\"id\":1476086549379715074,\"source\":\"三毛\",\"type\":1}}', 0, '', '2021-12-29 15:03:52'); INSERT INTO `sys_oper_log` VALUES (721, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"download\",\"orderNum\":\"1\",\"menuName\":\"英语模块\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"english\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 15:06:31'); INSERT INTO `sys_oper_log` VALUES (722, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"education\",\"orderNum\":\"1\",\"menuName\":\"翻译管理\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"translation\",\"component\":\"business/openapi/translation/index\",\"children\":[],\"createTime\":1640529236000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2015,\"menuType\":\"C\",\"perms\":\"openapi:translation:api\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 15:06:47'); INSERT INTO `sys_oper_log` VALUES (723, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要活成两种样子,发光和不发光。不发光的时候,都是在为发光做准备。\",\"createTime\":1640761620399,\"id\":1476087337896284162,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 15:07:00'); INSERT INTO `sys_oper_log` VALUES (724, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你还好呐\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":10,\"errorCode\":0,\"transResult\":[{\"dst\":\"Are you ok\",\"src\":\"你还好呐\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:07:08'); INSERT INTO `sys_oper_log` VALUES (725, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我希望成为那种 即使再孤单 生活再坎坷 不管天晴天阴 不管有无人爱 都会眷恋着夕阳和晨光 捕捉生活美好瞬间 的人 \",\"createTime\":1640761718299,\"id\":1476087748564783106,\"source\":\"孤单心事\",\"type\":2}}', 0, '', '2021-12-29 15:08:38'); INSERT INTO `sys_oper_log` VALUES (726, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"嗯?\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Huh?\",\"src\":\"嗯?\"}]}}', 0, '', '2021-12-29 15:09:12'); INSERT INTO `sys_oper_log` VALUES (727, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1640761757406,\"id\":1476087912549486595,\"source\":\"施企巴乔夫\",\"type\":4}}', 0, '', '2021-12-29 15:09:17'); INSERT INTO `sys_oper_log` VALUES (728, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天月考英语完型,讲的手机一个身残志坚的纹身师,第三题4个选项都是身体部位,问他用什么部位拿纹身枪,本来选的是mouth,突然想起这首歌,toes,用脚趾控制枪!云音乐救了我\",\"createTime\":1640761776815,\"id\":1476087993998675969,\"source\":\"East of Eden\",\"type\":2}}', 0, '', '2021-12-29 15:09:36'); INSERT INTO `sys_oper_log` VALUES (729, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你是傻逼?\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":12,\"errorCode\":0,\"transResult\":[{\"dst\":\"You are silly force?\",\"src\":\"你是傻逼?\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:09:44'); INSERT INTO `sys_oper_log` VALUES (730, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"是嘛\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"Is it\",\"src\":\"是嘛\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:09:50'); INSERT INTO `sys_oper_log` VALUES (731, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"是嘛啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":6,\"errorCode\":0,\"transResult\":[{\"dst\":\"Is it?\",\"src\":\"是嘛啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:10:22'); INSERT INTO `sys_oper_log` VALUES (732, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"是嘛啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"Is it?\",\"src\":\"是嘛啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:10:23'); INSERT INTO `sys_oper_log` VALUES (733, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"是嘛啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"Is it?\",\"src\":\"是嘛啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:10:24'); INSERT INTO `sys_oper_log` VALUES (734, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的肩上是风,风上是闪烁的星群。\",\"createTime\":1640761825540,\"id\":1476088198357749762,\"source\":\"北岛\",\"type\":1}}', 0, '', '2021-12-29 15:10:25'); INSERT INTO `sys_oper_log` VALUES (735, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"安安\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"In peace\",\"src\":\"安安\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:10:29'); INSERT INTO `sys_oper_log` VALUES (736, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"安安啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":6,\"errorCode\":0,\"transResult\":[{\"dst\":\"In peace!\",\"src\":\"安安啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:10:31'); INSERT INTO `sys_oper_log` VALUES (737, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"安安啊阿斯放\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":13,\"errorCode\":0,\"transResult\":[{\"dst\":\"Ah, in peace\",\"src\":\"安安啊阿斯放\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:10:32'); INSERT INTO `sys_oper_log` VALUES (738, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"安安啊阿斯放阿爱狗狗\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":18,\"errorCode\":0,\"transResult\":[{\"dst\":\"In peace, put o love dogs\",\"src\":\"安安啊阿斯放阿爱狗狗\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:10:34'); INSERT INTO `sys_oper_log` VALUES (739, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"安安啊阿斯放阿爱狗狗卧槽这么快\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":20,\"errorCode\":0,\"transResult\":[{\"dst\":\"In peace, put o love dog day so fast\",\"src\":\"安安啊阿斯放阿爱狗狗卧槽这么快\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:10:39'); INSERT INTO `sys_oper_log` VALUES (740, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好快啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":6,\"errorCode\":0,\"transResult\":[{\"dst\":\"Good fast?\",\"src\":\"好快啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:10:44'); INSERT INTO `sys_oper_log` VALUES (741, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好快啊\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"How fast\",\"src\":\"好快啊\"}]}}', 0, '', '2021-12-29 15:10:48'); INSERT INTO `sys_oper_log` VALUES (742, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好快啊\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"Good fast?\",\"src\":\"好快啊\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 15:10:50'); INSERT INTO `sys_oper_log` VALUES (743, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"酸甜苦辣自己尝,大风大浪自己扛。\",\"createTime\":1640761859109,\"id\":1476088339097620483,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 15:10:59'); INSERT INTO `sys_oper_log` VALUES (744, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每个人的世界观都是由自己看到的东西里获得的 不论好坏 多希望自己可以是一个纯粹的人 然则黑与白从来都不是孤立存在的 从前一直觉得那句 愿你千帆阅尽 归来仍是少年俗不可耐 如今年岁渐长才明白 一个人若是经历了那么多那么多的苦难还能够保持一颗赤子之心多么的不易 爱我所爱 坚守本\",\"createTime\":1640761897914,\"id\":1476088501920501762,\"source\":\"漂\",\"type\":2}}', 0, '', '2021-12-29 15:11:37'); INSERT INTO `sys_oper_log` VALUES (745, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\'\'望有一日, 你背着画板我背着你, 你画世界, 我画你.\'\'\",\"createTime\":1640761899216,\"id\":1476088507352125442,\"source\":\"画\",\"type\":2}}', 0, '', '2021-12-29 15:11:39'); INSERT INTO `sys_oper_log` VALUES (746, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有朋友的人像平原一要宽广,没有朋友的人却像窄狭的手掌。\",\"createTime\":1640761900120,\"id\":1476088511122804739,\"source\":\"蒙古族\",\"type\":4}}', 0, '', '2021-12-29 15:11:40'); INSERT INTO `sys_oper_log` VALUES (747, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我迎著朝野站在大海的面前,对自己说:如果时光不能倒流,就让这一切,随风而去吧。\",\"createTime\":1640761901848,\"id\":1476088518420893697,\"source\":\"三毛\",\"type\":1}}', 0, '', '2021-12-29 15:11:41'); INSERT INTO `sys_oper_log` VALUES (748, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"惨!惨!惨!吃完饭要拉,拉完还要撒,撒完又想吃,人生就是吃、拉、撒!惨~~~~~~~~~~\",\"createTime\":1640761904242,\"id\":1476088528432697346,\"source\":\"唐伯虎点秋香\",\"type\":3}}', 0, '', '2021-12-29 15:11:44'); INSERT INTO `sys_oper_log` VALUES (749, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"弈棋与胜己者对,则日进;与不如己者对,则日退。取友之道亦然。\",\"createTime\":1640761905366,\"id\":1476088533142900739,\"source\":\"申涵光\",\"type\":4}}', 0, '', '2021-12-29 15:11:45'); INSERT INTO `sys_oper_log` VALUES (750, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好!按江湖规矩,我们单挑…………那个拿葱的大婶你过来\",\"createTime\":1640761906375,\"id\":1476088537395924994,\"source\":\"功夫\",\"type\":3}}', 0, '', '2021-12-29 15:11:46'); INSERT INTO `sys_oper_log` VALUES (751, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只要愿意学习,就一定能够学会。\",\"createTime\":1640761907394,\"id\":1476088541661532162,\"source\":\"列宁\",\"type\":4}}', 0, '', '2021-12-29 15:11:47'); INSERT INTO `sys_oper_log` VALUES (752, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果要想在众多的书籍中发现思想,结果就会大失所望,思想存在于河川、海洋、丘陵和森林、日光和天然的风之中。\",\"createTime\":1640761909260,\"id\":1476088549475520514,\"source\":\"杰弗利斯\",\"type\":4}}', 0, '', '2021-12-29 15:11:49'); INSERT INTO `sys_oper_log` VALUES (753, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"可以的\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"tolerable\",\"src\":\"可以的\"}]}}', 0, '', '2021-12-29 15:11:57'); INSERT INTO `sys_oper_log` VALUES (754, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"并不是你生命中的男人有价值,而是你与男人在一起的生命。---米-怀斯特\",\"createTime\":1640761924663,\"id\":1476088614088773635,\"source\":\"我不是天使I\'m no angel\",\"type\":3}}', 0, '', '2021-12-29 15:12:04'); INSERT INTO `sys_oper_log` VALUES (755, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/english_word', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 15:57:34'); INSERT INTO `sys_oper_log` VALUES (756, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '', 1, '无效的token', '2021-12-29 16:16:18'); INSERT INTO `sys_oper_log` VALUES (757, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '', 1, '无效的token', '2021-12-29 16:17:20'); INSERT INTO `sys_oper_log` VALUES (758, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '', 1, '无效的token', '2021-12-29 16:17:56'); INSERT INTO `sys_oper_log` VALUES (759, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"立志是一件很重要的事情。工作随着志向走,成功随着工作来,这是一定的规律。立志、工作、成功是人类活动的三大要素。立志是事业的大门,工作是登堂入室的旅程,这旅程的尽头就有个成功在等待着,来庆祝你的努力结果……\",\"createTime\":1640766063336,\"id\":1476105972962553858,\"source\":\"巴斯德\",\"type\":4}}', 0, '', '2021-12-29 16:21:03'); INSERT INTO `sys_oper_log` VALUES (760, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"单词收藏\",\"remark\":\"单词是否收藏\",\"params\":{},\"dictType\":\"english_collect\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 16:24:02'); INSERT INTO `sys_oper_log` VALUES (761, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"已收藏\",\"params\":{},\"dictType\":\"english_collect\",\"dictLabel\":\"已收藏\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 16:30:05'); INSERT INTO `sys_oper_log` VALUES (762, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"未收藏\",\"params\":{},\"dictType\":\"english_collect\",\"dictLabel\":\"未收藏\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 16:30:23'); INSERT INTO `sys_oper_log` VALUES (763, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/english_word', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 16:31:54'); INSERT INTO `sys_oper_log` VALUES (764, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"单词置顶\",\"remark\":\"单词置顶\",\"params\":{},\"dictType\":\"english_top\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 16:34:07'); INSERT INTO `sys_oper_log` VALUES (765, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"已置顶\",\"params\":{},\"dictType\":\"english_top\",\"dictLabel\":\"已置顶\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 16:35:13'); INSERT INTO `sys_oper_log` VALUES (766, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"未置顶\",\"params\":{},\"dictType\":\"english_top\",\"dictLabel\":\"未置顶\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 16:35:25'); INSERT INTO `sys_oper_log` VALUES (767, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', NULL, NULL, 0, NULL, '2021-12-29 16:53:49'); INSERT INTO `sys_oper_log` VALUES (768, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', NULL, NULL, 0, NULL, '2021-12-29 17:05:35'); INSERT INTO `sys_oper_log` VALUES (769, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生的快乐和幸福不在金钱,不在爱情,而在真理。即使你想得到的是一种动物式的幸福,生活反正不会任你一边酗酒,一边幸福的,它会时时刻刻猝不及防地给你打击。\",\"createTime\":1640775204901,\"id\":1476144315471978498,\"source\":\"契诃夫\",\"type\":4}}', 0, '', '2021-12-29 18:53:25'); INSERT INTO `sys_oper_log` VALUES (770, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你抱怨生活的时候,生活也在嘲笑你。\",\"createTime\":1640775207604,\"id\":1476144326796599297,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 18:53:27'); INSERT INTO `sys_oper_log` VALUES (771, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我究竟是忘了你273天,直到今天才偶然想起你。还是这273天的思念全部被这首歌点燃。晚安,我还是躺在这属于我的猪圈里,今夜无眠。\",\"createTime\":1640775208854,\"id\":1476144332039479299,\"source\":\"醒着醉\",\"type\":2}}', 0, '', '2021-12-29 18:53:28'); INSERT INTO `sys_oper_log` VALUES (772, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"自我介绍一下,我岁数已经不小了,留学生身份出去的,在国外生活过十几年,没正经上过学,蹉跎中练就一身生存技能,现在学无所成海外归来,实话实说,应该定性为一只没有公司、没有股票、没有学位的“三无伪海龟”。性格open,人品五五开,不算老实,但天生胆小,杀人不犯法我也下不去手,总体而言属于对人群对社–会有益无害的一类。\",\"createTime\":1640775209719,\"id\":1476144335633997827,\"source\":\"非诚勿扰\",\"type\":3}}', 0, '', '2021-12-29 18:53:29'); INSERT INTO `sys_oper_log` VALUES (773, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"1\",\"menuName\":\"英语单词\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"word\",\"component\":\"english/word/index\",\"children\":[],\"createTime\":1640768808000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2025,\"menuType\":\"C\",\"perms\":\"english:word:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 18:54:26'); INSERT INTO `sys_oper_log` VALUES (774, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你抱怨生活的时候,生活也在嘲笑你。\",\"createTime\":1640775273675,\"id\":1476144603922653186,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 18:54:33'); INSERT INTO `sys_oper_log` VALUES (775, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"1\",\"menuName\":\"英语单词\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"word\",\"component\":\"business/english/word/index\",\"children\":[],\"createTime\":1640768808000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2025,\"menuType\":\"C\",\"perms\":\"english:word:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 18:56:03'); INSERT INTO `sys_oper_log` VALUES (776, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tool\",\"orderNum\":\"1\",\"menuName\":\"英语单词\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"word\",\"component\":\"business/english/word/index\",\"children\":[],\"createTime\":1640768808000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2025,\"menuType\":\"C\",\"perms\":\"english:word:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 18:56:31'); INSERT INTO `sys_oper_log` VALUES (777, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"are you ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"你好吗\",\"top\":2,\"createTime\":1640780398235}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:19:58'); INSERT INTO `sys_oper_log` VALUES (778, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"are you ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"你好吗\",\"top\":2,\"createTime\":1640780402781}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:20:02'); INSERT INTO `sys_oper_log` VALUES (779, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"are you ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"你好吗\",\"top\":2,\"createTime\":1640780461938}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:21:01'); INSERT INTO `sys_oper_log` VALUES (780, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"are you ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"你好吗\",\"top\":2,\"createTime\":1640780465353}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:21:05'); INSERT INTO `sys_oper_log` VALUES (781, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"are you ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"你好吗\",\"top\":2,\"createTime\":1640780468037}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:21:08'); INSERT INTO `sys_oper_log` VALUES (782, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"are you ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"你好吗\",\"top\":2,\"createTime\":1640780469575}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:21:09'); INSERT INTO `sys_oper_log` VALUES (783, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"are you ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"你好吗\",\"top\":2,\"createTime\":1640780497324}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:21:37'); INSERT INTO `sys_oper_log` VALUES (784, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"are you ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"你好吗\",\"top\":2,\"createTime\":1640780539246}', NULL, 1, 'Invalid bound statement (not found): com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord', '2021-12-29 20:22:19'); INSERT INTO `sys_oper_log` VALUES (785, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"好\",\"top\":2,\"createTime\":1640780762348}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:26:02'); INSERT INTO `sys_oper_log` VALUES (786, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"好\",\"top\":2,\"createTime\":1640780800010}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:26:40'); INSERT INTO `sys_oper_log` VALUES (787, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"ok\",\"isCollect\":2,\"sort\":1,\"params\":{},\"chineseWord\":\"好\",\"top\":2,\"createTime\":1640780981208}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:29:41'); INSERT INTO `sys_oper_log` VALUES (788, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"1\",\"isCollect\":1,\"sort\":1,\"params\":{},\"chineseWord\":\"1\",\"top\":1,\"createTime\":1640781041922}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:30:41'); INSERT INTO `sys_oper_log` VALUES (789, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"1\",\"isCollect\":1,\"sort\":1,\"params\":{},\"chineseWord\":\"1\",\"top\":1,\"createTime\":1640781114173}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:31:54'); INSERT INTO `sys_oper_log` VALUES (790, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"1\",\"isCollect\":1,\"sort\":1,\"params\":{},\"chineseWord\":\"1\",\"top\":1,\"createTime\":1640781148387}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:32:28'); INSERT INTO `sys_oper_log` VALUES (791, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( create_time ) values ( ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:39:42'); INSERT INTO `sys_oper_log` VALUES (792, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( create_time ) values ( ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:40:02'); INSERT INTO `sys_oper_log` VALUES (793, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( create_time ) values ( ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:40:06'); INSERT INTO `sys_oper_log` VALUES (794, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( create_time ) values ( ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:40:26'); INSERT INTO `sys_oper_log` VALUES (795, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"englishWord\":\"good\",\"isCollect\":1,\"sort\":1}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:40:56'); INSERT INTO `sys_oper_log` VALUES (796, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"englishWord\":\"good\",\"isCollect\":1,\"sort\":1}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-english\\target\\classes\\mapper.english\\EnglishWordMapper.xml]\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insertEnglishWord-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into english_word ( english_word, chinese_word, sort, is_collect, top, create_time ) values ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'id\' doesn\'t have a default value\n; Field \'id\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'id\' doesn\'t have a default value', '2021-12-29 20:42:36'); INSERT INTO `sys_oper_log` VALUES (797, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"good\",\"isCollect\":1,\"sort\":1,\"params\":{},\"chineseWord\":\"好\",\"top\":2}', NULL, 1, 'nested exception is org.apache.ibatis.exceptions.PersistenceException: \r\n### Error updating database. Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.\r\n### The error may exist in com/xjs/word/mapper/EnglishWordMapper.java (best guess)\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insert\r\n### The error occurred while executing an update\r\n### Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.', '2021-12-29 20:49:40'); INSERT INTO `sys_oper_log` VALUES (798, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"englishWord\":\"good\",\"isCollect\":1,\"sort\":1,\"params\":{},\"chineseWord\":\"好\",\"top\":2}', NULL, 1, 'nested exception is org.apache.ibatis.exceptions.PersistenceException: \r\n### Error updating database. Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.\r\n### The error may exist in com/xjs/word/mapper/EnglishWordMapper.java (best guess)\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insert\r\n### The error occurred while executing an update\r\n### Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property \'params\'. It was either not specified and/or could not be found for the javaType (java.util.Map) : jdbcType (null) combination.', '2021-12-29 20:51:52'); INSERT INTO `sys_oper_log` VALUES (799, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"englishWord\":\"good\",\"isCollect\":1,\"id\":1476174350052417537,\"sort\":1}', NULL, 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'create_time\' doesn\'t have a default value\r\n### The error may exist in com/xjs/word/mapper/EnglishWordMapper.java (best guess)\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO english_word ( id, english_word, chinese_word, sort, is_collect, top ) VALUES ( ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'create_time\' doesn\'t have a default value\n; Field \'create_time\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'create_time\' doesn\'t have a default value', '2021-12-29 20:52:46'); INSERT INTO `sys_oper_log` VALUES (800, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', NULL, '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"createTime\":1640782912229,\"englishWord\":\"good\",\"isCollect\":1,\"id\":1476176642344435713,\"sort\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 21:01:52'); INSERT INTO `sys_oper_log` VALUES (801, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"涉江而过,芙蓉千朵。诗也简单,心也简单。\",\"createTime\":1640783176018,\"id\":1476177748759891969,\"source\":\"席慕蓉\",\"type\":1}}', 0, '', '2021-12-29 21:06:16'); INSERT INTO `sys_oper_log` VALUES (802, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', NULL, '/word/1476176642344435700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2021-12-29 21:08:08'); INSERT INTO `sys_oper_log` VALUES (803, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"听完芒种,记得也可以听一听我们别的二十四节气歌哟。\",\"createTime\":1640783328781,\"id\":1476178389464993795,\"source\":\"芒种\",\"type\":2}}', 0, '', '2021-12-29 21:08:48'); INSERT INTO `sys_oper_log` VALUES (804, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"愿时光能缓,愿故人不散;愿你惦念的人能和你道晚安,愿你独闯的日子里不觉得孤单。\",\"createTime\":1640783506738,\"id\":1476179135904305154,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 21:11:46'); INSERT INTO `sys_oper_log` VALUES (805, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时间从来不说话,却回答了所有问题。\",\"createTime\":1640783541154,\"id\":1476179280226111491,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 21:12:21'); INSERT INTO `sys_oper_log` VALUES (806, 'API日志', 3, 'com.xjs.log.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/log/1476175417112739841', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-29 21:14:17'); INSERT INTO `sys_oper_log` VALUES (807, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好的\",\"top\":2,\"createTime\":1640782912000,\"englishWord\":\"good!\",\"isCollect\":1,\"id\":1476176642344435713,\"sort\":1,\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-29 21:17:27'); INSERT INTO `sys_oper_log` VALUES (808, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好的\",\"top\":2,\"createTime\":1640782912000,\"englishWord\":\"good!\",\"isCollect\":1,\"id\":1476176642344435713,\"sort\":12,\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-29 21:20:09'); INSERT INTO `sys_oper_log` VALUES (809, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476176642344435713', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-29 21:20:11'); INSERT INTO `sys_oper_log` VALUES (810, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"1\",\"top\":2,\"createTime\":1640784021060,\"englishWord\":\"1\",\"isCollect\":1,\"id\":1476181293114490881,\"sort\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-29 21:20:21'); INSERT INTO `sys_oper_log` VALUES (811, '英语单词', 5, 'com.xjs.word.controller.EnglishWordController.export()', 'POST', 1, 'admin', '', '/word/export', '127.0.0.1', '', '{\"lookCount\":0}', '', 0, '', '2021-12-29 21:20:23'); INSERT INTO `sys_oper_log` VALUES (812, '英语单词', 5, 'com.xjs.word.controller.EnglishWordController.export()', 'POST', 1, 'admin', '', '/word/export', '127.0.0.1', '', '{\"lookCount\":0}', '', 0, '', '2021-12-29 21:22:43'); INSERT INTO `sys_oper_log` VALUES (813, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '', 1, 'nested exception is org.apache.ibatis.exceptions.PersistenceException: \r\n### Error querying database. Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-openapi\\target\\classes\\mapper\\openapi\\CopyWritingMapper.xml]\r\n### The error may involve com.xjs.copywriting.mapper.CopyWritingMapper.getOneToRandom\r\n### The error occurred while executing a query\r\n### Cause: com.baomidou.dynamic.datasource.exception.CannotFindDataSourceException: dynamic-datasource can not find primary datasource', '2021-12-29 22:02:06'); INSERT INTO `sys_oper_log` VALUES (814, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"2\",\"top\":2,\"createTime\":1640784021000,\"englishWord\":\"1\",\"isCollect\":1,\"id\":1476181293114490881,\"sort\":1,\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-29 22:02:20'); INSERT INTO `sys_oper_log` VALUES (815, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '', 1, 'Invalid bound statement (not found): com.xjs.copywriting.mapper.CopyWritingMapper.getOneToRandom', '2021-12-29 22:05:05'); INSERT INTO `sys_oper_log` VALUES (816, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '', 1, 'Invalid bound statement (not found): com.xjs.copywriting.mapper.CopyWritingMapper.getOneToRandom', '2021-12-29 22:05:12'); INSERT INTO `sys_oper_log` VALUES (817, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '', 1, 'Invalid bound statement (not found): com.xjs.copywriting.mapper.CopyWritingMapper.getOneToRandom', '2021-12-29 22:05:16'); INSERT INTO `sys_oper_log` VALUES (818, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '', 1, 'Invalid bound statement (not found): com.xjs.copywriting.mapper.CopyWritingMapper.getOneToRandom', '2021-12-29 22:06:19'); INSERT INTO `sys_oper_log` VALUES (819, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '', 1, 'Invalid bound statement (not found): com.xjs.copywriting.mapper.CopyWritingMapper.getOneToRandom', '2021-12-29 22:06:21'); INSERT INTO `sys_oper_log` VALUES (820, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"该隐和亚伯有自己的后代。在人类的伟大悲剧中,该隐是反对派。您就从亚当这条根苗中传下来的子孙,魔鬼在这条根苗上继续吹旺火苗,而第一个火星已经落到夏娃身上。在这房的子孙后代中,有时也出现一些可怕的魔鬼;他们有着强健的体魄,汇集了人类的一切力量,犹如沙漠中的猛兽,需要生活在广阔的天地之中。这些人在社会中十分危险,就像狮子突然出现在诺曼底地区一样:……\",\"createTime\":1640786811089,\"id\":1476192995356884993,\"source\":\"巴尔扎克\",\"type\":4}}', 0, '', '2021-12-29 22:06:51'); INSERT INTO `sys_oper_log` VALUES (821, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“神童”和“天才”,如果没有适当的环境和不断努力,就不能成才,甚至堕落为庸人。\",\"createTime\":1640786814967,\"id\":1476193011609812994,\"source\":\"维纳\",\"type\":4}}', 0, '', '2021-12-29 22:06:54'); INSERT INTO `sys_oper_log` VALUES (822, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"y欧用吗\",\"translationType\":1}', '', 1, '百度翻译接口调用异常', '2021-12-29 22:07:00'); INSERT INTO `sys_oper_log` VALUES (823, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"y欧用吗\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":10,\"errorCode\":0,\"transResult\":[{\"dst\":\"Y ou use\",\"src\":\"y欧用吗\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 22:07:35'); INSERT INTO `sys_oper_log` VALUES (824, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"y欧用吗\",\"translationType\":1}', '', 1, '百度翻译接口调用异常', '2021-12-29 22:07:37'); INSERT INTO `sys_oper_log` VALUES (825, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"勇者愤怒,抽刃向更强者;怯者愤怒,却抽刃向更弱者。不可救药的民族中,一定有许多英雄,专向孩子们瞪眼。这些孱头们。\",\"createTime\":1640786866028,\"id\":1476193225737420803,\"source\":\"鲁迅\",\"type\":4}}', 0, '', '2021-12-29 22:07:46'); INSERT INTO `sys_oper_log` VALUES (826, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"y欧用吗\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Y ou\",\"src\":\"y欧用吗\"}]}}', 0, '', '2021-12-29 22:08:14'); INSERT INTO `sys_oper_log` VALUES (827, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"y欧用吗安安\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Y ou, do you use it, Ann\",\"src\":\"y欧用吗安安\"}]}}', 0, '', '2021-12-29 22:08:17'); INSERT INTO `sys_oper_log` VALUES (828, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你跳我就跳\",\"createTime\":1640787900023,\"id\":1476197562656153601,\"source\":\"铁达尼号(Titanic)\",\"type\":3}}', 0, '', '2021-12-29 22:25:00'); INSERT INTO `sys_oper_log` VALUES (829, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"a \",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"一个\",\"src\":\"a\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2021-12-29 22:25:02'); INSERT INTO `sys_oper_log` VALUES (830, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"a aa \",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"aa\",\"src\":\"a aa\"}]}}', 0, '', '2021-12-29 22:25:06'); INSERT INTO `sys_oper_log` VALUES (831, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"good\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"好的\",\"src\":\"good\"}]}}', 0, '', '2021-12-29 22:25:10'); INSERT INTO `sys_oper_log` VALUES (832, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好读书,不求甚解。\",\"createTime\":1640789808550,\"id\":1476205567598604289,\"source\":\"陶渊明\",\"type\":4}}', 0, '', '2021-12-29 22:56:48'); INSERT INTO `sys_oper_log` VALUES (833, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好读书,不求甚解。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Good at reading without understanding.\",\"src\":\"好读书,不求甚解。\"}]}}', 0, '', '2021-12-29 22:56:53'); INSERT INTO `sys_oper_log` VALUES (834, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"好读书,不求甚解。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":11,\"errorCode\":0,\"transResult\":[{\"dst\":\"Good reading, natural.\",\"src\":\"好读书,不求甚解。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-29 22:56:55'); INSERT INTO `sys_oper_log` VALUES (835, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"风来自远方,我去去也无妨。\",\"createTime\":1640789844518,\"id\":1476205718467719169,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 22:57:24'); INSERT INTO `sys_oper_log` VALUES (836, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[2000,2024,2015,2025,2026,2027,2028,2029,2030,2001,2009,2010,2013,2014,2016,2017,2019,2021,2023,1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-29 23:03:41'); INSERT INTO `sys_oper_log` VALUES (837, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"做一件事所需的时间,可能只是你口中的等一会儿。\",\"createTime\":1640790225620,\"id\":1476207316916973570,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-29 23:03:45'); INSERT INTO `sys_oper_log` VALUES (838, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有一些人追求永恒的美,他们把无限放到他们的短暂的生命里。另外一些人胸无大志地活着。\",\"createTime\":1640793431194,\"id\":1476220762026860546,\"source\":\"罗曼·罗兰\",\"type\":4}}', 0, '', '2021-12-29 23:57:11'); INSERT INTO `sys_oper_log` VALUES (839, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":0,\"createTime\":1640793456237,\"englishWord\":\"手机\",\"isCollect\":1,\"id\":1476220867119390721,\"sort\":0,\"content\":\"手机\",\"lookCount\":0}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'chinese_word\' doesn\'t have a default value\r\n### The error may exist in com/xjs/word/mapper/EnglishWordMapper.java (best guess)\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO english_word ( id, english_word, sort, is_collect, top, look_count, create_time ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'chinese_word\' doesn\'t have a default value\n; Field \'chinese_word\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'chinese_word\' doesn\'t have a default value', '2021-12-29 23:57:36'); INSERT INTO `sys_oper_log` VALUES (840, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":0,\"createTime\":1640793637836,\"englishWord\":\"手机\",\"isCollect\":1,\"id\":1476221628809191425,\"sort\":0,\"content\":\"手机\",\"lookCount\":0}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'chinese_word\' doesn\'t have a default value\r\n### The error may exist in com/xjs/word/mapper/EnglishWordMapper.java (best guess)\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO english_word ( id, english_word, sort, is_collect, top, look_count, create_time ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'chinese_word\' doesn\'t have a default value\n; Field \'chinese_word\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'chinese_word\' doesn\'t have a default value', '2021-12-30 00:00:37'); INSERT INTO `sys_oper_log` VALUES (841, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":0,\"createTime\":1640793696864,\"englishWord\":\"手机\",\"isCollect\":1,\"id\":1476221876377985025,\"sort\":0,\"content\":\"手机\",\"lookCount\":0}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLException: Field \'chinese_word\' doesn\'t have a default value\r\n### The error may exist in com/xjs/word/mapper/EnglishWordMapper.java (best guess)\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO english_word ( id, english_word, sort, is_collect, top, look_count, create_time ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLException: Field \'chinese_word\' doesn\'t have a default value\n; Field \'chinese_word\' doesn\'t have a default value; nested exception is java.sql.SQLException: Field \'chinese_word\' doesn\'t have a default value', '2021-12-30 00:01:36'); INSERT INTO `sys_oper_log` VALUES (842, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我相信除了寂寞,缘分是男人和女人之间相爱的另一种原由。因为缘分而使两颗寂寞的心结合的爱情称为真爱。寂寞是每时每刻,缘分是不知不觉,真爱是一生一世。\",\"createTime\":1640794477078,\"id\":1476225148836859905,\"source\":\"花样年华\",\"type\":3}}', 0, '', '2021-12-30 00:14:37'); INSERT INTO `sys_oper_log` VALUES (843, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0/1 0/3 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640794507000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 00:15:06'); INSERT INTO `sys_oper_log` VALUES (844, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"* 0/3 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640794545000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 00:15:44'); INSERT INTO `sys_oper_log` VALUES (845, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0 0/3 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1640794680000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 00:15:57'); INSERT INTO `sys_oper_log` VALUES (846, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机\",\"top\":0,\"isCollect\":1,\"sort\":0,\"content\":\"手机\",\"lookCount\":0}', '', 1, 'object is not an instance of declaring class', '2021-12-30 00:17:53'); INSERT INTO `sys_oper_log` VALUES (847, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机\",\"top\":0,\"createTime\":1640794773618,\"isCollect\":1,\"id\":1476226392615780353,\"sort\":0,\"content\":\"手机\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 00:19:33'); INSERT INTO `sys_oper_log` VALUES (848, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机\",\"top\":0,\"createTime\":1640794976154,\"isCollect\":1,\"id\":1476227242117468162,\"sort\":0,\"content\":\"手机\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 00:22:56'); INSERT INTO `sys_oper_log` VALUES (849, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机\",\"top\":0,\"createTime\":1640795089634,\"isCollect\":1,\"id\":1476227718087159809,\"sort\":0,\"content\":\"手机\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 00:24:49'); INSERT INTO `sys_oper_log` VALUES (850, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机\",\"top\":0,\"createTime\":1640795268551,\"englishWord\":\"Mobile phone\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":0,\"content\":\"手机\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 00:27:48'); INSERT INTO `sys_oper_log` VALUES (851, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":0,\"isCollect\":1,\"sort\":0,\"content\":\"very good\",\"lookCount\":0}', '', 1, '不能包含字符!!!', '2021-12-30 00:29:19'); INSERT INTO `sys_oper_log` VALUES (852, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"很好的\",\"top\":0,\"createTime\":1640795371913,\"englishWord\":\"verygood\",\"isCollect\":1,\"id\":1476228902013349889,\"sort\":0,\"content\":\"verygood\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 00:29:31'); INSERT INTO `sys_oper_log` VALUES (853, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"你要笑死我了\",\"top\":0,\"createTime\":1640795400643,\"englishWord\":\"You\'re killing me\",\"isCollect\":1,\"id\":1476229022507315201,\"sort\":0,\"content\":\"你要笑死我了\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 00:30:00'); INSERT INTO `sys_oper_log` VALUES (854, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"友谊既不需要奴隶,也不允许有统治者,友谊最喜欢平等。\",\"createTime\":1640827038070,\"id\":1476361719528960001,\"source\":\"冈察洛夫(俄国)\",\"type\":4}}', 0, '', '2021-12-30 09:17:18'); INSERT INTO `sys_oper_log` VALUES (855, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476181293114490881', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:31:47'); INSERT INTO `sys_oper_log` VALUES (856, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机1\",\"top\":0,\"createTime\":1640795269000,\"englishWord\":\"Mobile phone\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:32:56'); INSERT INTO `sys_oper_log` VALUES (857, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"愿原力与你同在\",\"createTime\":1640828011552,\"id\":1476365802604212225,\"source\":\"星际大战 (Star wars)\",\"type\":3}}', 0, '', '2021-12-30 09:33:31'); INSERT INTO `sys_oper_log` VALUES (858, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这歌我听了十年……好可怕的数字……\",\"createTime\":1640828065983,\"id\":1476366030895984641,\"source\":\"遇见\",\"type\":2}}', 0, '', '2021-12-30 09:34:25'); INSERT INTO `sys_oper_log` VALUES (859, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人的思想如一口钟,容易停摆,需要经常上紧发条。\",\"createTime\":1640828550361,\"id\":1476368062499401730,\"source\":\"威赫兹里特\",\"type\":4}}', 0, '', '2021-12-30 09:42:30'); INSERT INTO `sys_oper_log` VALUES (860, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"englishWord\":\"好\",\"isCollect\":2,\"sort\":1}', '', 1, '', '2021-12-30 09:45:30'); INSERT INTO `sys_oper_log` VALUES (861, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"啊\",\"top\":2,\"createTime\":1640828802495,\"englishWord\":\"ah\",\"isCollect\":2,\"id\":1476369120072179713,\"sort\":1,\"content\":\"啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:46:42'); INSERT INTO `sys_oper_log` VALUES (862, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机1\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"Mobile phone\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:48:44'); INSERT INTO `sys_oper_log` VALUES (863, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"很好的\",\"top\":2,\"createTime\":1640795372000,\"englishWord\":\"verygood\",\"isCollect\":1,\"id\":1476228902013349889,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:48:49'); INSERT INTO `sys_oper_log` VALUES (864, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"你要笑死我了\",\"top\":1,\"createTime\":1640795401000,\"englishWord\":\"You\'re killing me\",\"isCollect\":1,\"id\":1476229022507315201,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:48:53'); INSERT INTO `sys_oper_log` VALUES (865, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"非常\",\"top\":2,\"createTime\":1640828948417,\"englishWord\":\"very\",\"isCollect\":1,\"id\":1476369732109230081,\"sort\":1,\"content\":\"very\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:49:08'); INSERT INTO `sys_oper_log` VALUES (866, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"?\",\"top\":1,\"createTime\":1640829034044,\"englishWord\":\"吗?\",\"isCollect\":1,\"id\":1476370091229732866,\"sort\":1,\"content\":\"?\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:50:34'); INSERT INTO `sys_oper_log` VALUES (867, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\",\",\"top\":2,\"createTime\":1640829049915,\"englishWord\":\",\",\"isCollect\":1,\"id\":1476370157776560130,\"sort\":2,\"content\":\",\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:50:49'); INSERT INTO `sys_oper_log` VALUES (868, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":1,\"isCollect\":1,\"sort\":2,\"content\":\",\"}', '', 1, '不能包含其他符号!!!', '2021-12-30 09:51:01'); INSERT INTO `sys_oper_log` VALUES (869, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":1,\"isCollect\":1,\"sort\":2,\"content\":\",\"}', '', 1, '不能包含其他符号!!!', '2021-12-30 09:51:06'); INSERT INTO `sys_oper_log` VALUES (870, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机1\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"Mobile phone\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:52:38'); INSERT INTO `sys_oper_log` VALUES (871, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机1\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"Mobile phone\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":222,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:52:47'); INSERT INTO `sys_oper_log` VALUES (872, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机1\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":222,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:55:03'); INSERT INTO `sys_oper_log` VALUES (873, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机1\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"a\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":222,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:55:10'); INSERT INTO `sys_oper_log` VALUES (874, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"手机1\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":222,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:55:49'); INSERT INTO `sys_oper_log` VALUES (875, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":222,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:58:00'); INSERT INTO `sys_oper_log` VALUES (876, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":222,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:58:05'); INSERT INTO `sys_oper_log` VALUES (877, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"11\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":222,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:58:33'); INSERT INTO `sys_oper_log` VALUES (878, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"aa\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"11\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":222,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 09:58:51'); INSERT INTO `sys_oper_log` VALUES (879, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"虽然你们是扮演路人甲乙丙丁,但是一样是有生命、有灵魂的。\",\"createTime\":1640836841310,\"id\":1476402837272539139,\"source\":\"喜剧之王\",\"type\":3}}', 0, '', '2021-12-30 12:00:41'); INSERT INTO `sys_oper_log` VALUES (880, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"1\",\"top\":1,\"createTime\":1640795269000,\"englishWord\":\"1\",\"isCollect\":1,\"id\":1476228468519448577,\"sort\":222,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 13:41:32'); INSERT INTO `sys_oper_log` VALUES (881, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476370157776560130', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 13:42:23'); INSERT INTO `sys_oper_log` VALUES (882, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476228468519448577', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 13:42:25'); INSERT INTO `sys_oper_log` VALUES (883, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476370091229732866', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 13:42:28'); INSERT INTO `sys_oper_log` VALUES (884, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"很好的\",\"top\":2,\"createTime\":1640795372000,\"englishWord\":\"verygood\",\"isCollect\":1,\"id\":1476228902013349889,\"sort\":5,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 13:45:58'); INSERT INTO `sys_oper_log` VALUES (885, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"很好的\",\"top\":2,\"createTime\":1640795372000,\"englishWord\":\"verygood\",\"isCollect\":1,\"id\":1476228902013349889,\"sort\":46,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 13:46:01'); INSERT INTO `sys_oper_log` VALUES (886, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"中英文\",\"top\":2,\"createTime\":1640843211387,\"englishWord\":\"Chinese and English\",\"isCollect\":1,\"id\":1476429555345547266,\"sort\":50,\"content\":\"中英文\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 13:46:51'); INSERT INTO `sys_oper_log` VALUES (887, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好多\",\"top\":2,\"createTime\":1640843286576,\"englishWord\":\"A lot\",\"isCollect\":1,\"id\":1476429870711070721,\"sort\":40,\"content\":\"好多\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 13:48:06'); INSERT INTO `sys_oper_log` VALUES (888, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"故事的开头总是这样,适逢其会,猝不及防。故事的结局总是这样,花开两朵,天各一方。\",\"createTime\":1640843316525,\"id\":1476429996292714499,\"source\":\"张嘉佳\",\"type\":1}}', 0, '', '2021-12-30 13:48:36'); INSERT INTO `sys_oper_log` VALUES (889, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"高三那会,我跟我的初恋互相暗恋一年,她最爱的歌曲。高考后我跟她表白,直到现在。我们很好,准备16年结婚纪念我们的7年之痒\",\"createTime\":1640843348355,\"id\":1476430129797410817,\"source\":\"红色高跟鞋\",\"type\":2}}', 0, '', '2021-12-30 13:49:08'); INSERT INTO `sys_oper_log` VALUES (890, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"拿斧的得柴禾,张网的得鱼虾。\",\"createTime\":1640843349577,\"id\":1476430134956404738,\"source\":\"谚语\",\"type\":4}}', 0, '', '2021-12-30 13:49:09'); INSERT INTO `sys_oper_log` VALUES (891, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"你要笑死我了\",\"top\":1,\"createTime\":1640795401000,\"englishWord\":\"You\'re killing me\",\"isCollect\":1,\"id\":1476229022507315201,\"sort\":21,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 14:07:42'); INSERT INTO `sys_oper_log` VALUES (892, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"中英文\",\"top\":2,\"createTime\":1640843211000,\"englishWord\":\"Chinese and English\",\"isCollect\":2,\"id\":1476429555345547266,\"sort\":50,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 14:12:13'); INSERT INTO `sys_oper_log` VALUES (893, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"朕决定骗你一辈子,骗你回皇宫,骗你做朕的皇后,骗你为朕生一大堆龙子,骗你永远幸福地跟朕一起生活\",\"createTime\":1640852493933,\"id\":1476468489131859970,\"source\":\"龙凤店\",\"type\":3}}', 0, '', '2021-12-30 16:21:34'); INSERT INTO `sys_oper_log` VALUES (894, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只看一个人的著作,结果是不大好的:你就得不到多方面的优点。必须如蜜蜂一样,采过许多花,这才能酿出蜜来,倘若叮在一处,所得就非常有限,枯燥了。\",\"createTime\":1640859700070,\"id\":1476498713897246721,\"source\":\"鲁迅\",\"type\":4}}', 0, '', '2021-12-30 18:21:40'); INSERT INTO `sys_oper_log` VALUES (895, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859781644,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"interface\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 18:23:01'); INSERT INTO `sys_oper_log` VALUES (896, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476369120072179713', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 18:25:40'); INSERT INTO `sys_oper_log` VALUES (897, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476369732109230081', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 18:25:42'); INSERT INTO `sys_oper_log` VALUES (898, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476429870711070721', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 18:25:48'); INSERT INTO `sys_oper_log` VALUES (899, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476228902013349889', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 18:25:51'); INSERT INTO `sys_oper_log` VALUES (900, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":2,\"content\":\" s \"}', '', 1, '不能包含其他符号!!!', '2021-12-30 18:26:14'); INSERT INTO `sys_oper_log` VALUES (901, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":2,\"content\":\" s\"}', '', 1, '不能包含其他符号!!!', '2021-12-30 18:26:18'); INSERT INTO `sys_oper_log` VALUES (902, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476429555345547266', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:06:25'); INSERT INTO `sys_oper_log` VALUES (903, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476229022507315201', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:06:27'); INSERT INTO `sys_oper_log` VALUES (904, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我一个人行走江湖,走马观花不会为谁驻足\",\"createTime\":1640865989150,\"id\":1476525092210647042,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-30 20:06:29'); INSERT INTO `sys_oper_log` VALUES (905, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"感謝各位的支持!當然也尤其感謝「祝你愛我到天荒地老」的詞曲作者 邹念慈 創作出這首特別酷的歌!VaVa真的有我夢想中的rapper的樣子,這一次的合作特別愉快,也學到了很多(我也愛说唱嘛哈哈,最熱烈的掌聲送給她! 我會在評論區裡抽三位朋友送上我精心準備的三塊滑板,夏天到了,一起和風跳舞吧~\",\"createTime\":1640866058044,\"id\":1476525381168832514,\"source\":\"祝你爱我到天荒地老\",\"type\":2}}', 0, '', '2021-12-30 20:07:38'); INSERT INTO `sys_oper_log` VALUES (906, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"异常\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"abnormal\",\"src\":\"异常\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-30 20:07:48'); INSERT INTO `sys_oper_log` VALUES (907, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"谢谢哦,不过我觉得你坏得非常讨厌。\",\"createTime\":1640866070552,\"id\":1476525433614409730,\"source\":\"功夫熊猫2\",\"type\":3}}', 0, '', '2021-12-30 20:07:50'); INSERT INTO `sys_oper_log` VALUES (908, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"接口\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"interface\",\"src\":\"接口\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-30 20:07:53'); INSERT INTO `sys_oper_log` VALUES (909, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"谢谢哦,不过我觉得你坏得非常讨厌。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":52,\"errorCode\":0,\"transResult\":[{\"dst\":\"Thank you, but I feel bad very hate you.\",\"src\":\"谢谢哦,不过我觉得你坏得非常讨厌。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-30 20:08:02'); INSERT INTO `sys_oper_log` VALUES (910, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"约翰:「两周的相处已经足够,两周就足以让我倾心于妳。」\",\"createTime\":1640866122290,\"id\":1476525650615115779,\"source\":\"最后一封情书\",\"type\":3}}', 0, '', '2021-12-30 20:08:42'); INSERT INTO `sys_oper_log` VALUES (911, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"你还好吗兄弟\",\"top\":2,\"createTime\":1640866156062,\"englishWord\":\"How are you doing brother\",\"isCollect\":1,\"id\":1476525792286134274,\"sort\":0,\"content\":\"你还好吗兄弟\",\"lookCount\":0}', '', 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'english_word\' at row 1\r\n### The error may exist in com/xjs/word/mapper/EnglishWordMapper.java (best guess)\r\n### The error may involve com.xjs.word.mapper.EnglishWordMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO english_word ( id, english_word, chinese_word, sort, is_collect, top, look_count, create_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'english_word\' at row 1\n; Data truncation: Data too long for column \'english_word\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'english_word\' at row 1', '2021-12-30 20:09:16'); INSERT INTO `sys_oper_log` VALUES (912, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"你还好吗兄弟\",\"top\":2,\"createTime\":1640866200155,\"englishWord\":\"How are you doing brother\",\"isCollect\":1,\"id\":1476525977212997634,\"sort\":0,\"content\":\"你还好吗兄弟\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:10:00'); INSERT INTO `sys_oper_log` VALUES (913, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"你是个晒吧\",\"top\":2,\"createTime\":1640866447865,\"englishWord\":\"You are a sun\",\"isCollect\":1,\"id\":1476527016200847361,\"content\":\"你是个晒吧\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:14:08'); INSERT INTO `sys_oper_log` VALUES (914, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"xxxxx\",\"top\":2,\"createTime\":1640866483965,\"englishWord\":\"xxxxx\",\"isCollect\":1,\"id\":1476527167560695810,\"content\":\"xxxxx\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:14:43'); INSERT INTO `sys_oper_log` VALUES (915, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476527016200847361', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:17:55'); INSERT INTO `sys_oper_log` VALUES (916, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476527167560695810', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:17:57'); INSERT INTO `sys_oper_log` VALUES (917, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476525977212997634', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:18:00'); INSERT INTO `sys_oper_log` VALUES (918, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:18:07'); INSERT INTO `sys_oper_log` VALUES (919, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"很好\",\"top\":2,\"createTime\":1640866748468,\"englishWord\":\"very good\",\"isCollect\":1,\"id\":1476528277000241153,\"sort\":0,\"content\":\"很好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:19:08'); INSERT INTO `sys_oper_log` VALUES (920, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"很好\",\"top\":2,\"createTime\":1640866748000,\"englishWord\":\"very good\",\"isCollect\":1,\"id\":1476528277000241153,\"sort\":0,\"content\":\"a:大好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:19:12'); INSERT INTO `sys_oper_log` VALUES (921, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有多少力量,就做多少事;切莫等待,等待常会落空。\",\"createTime\":1640866853084,\"id\":1476528715812499458,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-30 20:20:53'); INSERT INTO `sys_oper_log` VALUES (922, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"啊\",\"top\":2,\"createTime\":1640866967691,\"englishWord\":\"ah\",\"isCollect\":1,\"id\":1476529196496535554,\"sort\":0,\"content\":\"啊\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:22:47'); INSERT INTO `sys_oper_log` VALUES (923, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"啊\",\"top\":2,\"createTime\":1640866968000,\"englishWord\":\"ah\",\"isCollect\":2,\"id\":1476529196496535554,\"sort\":0,\"content\":\"i:唉,呀,哎,呵,阿,哦|f:呀,哟\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:22:53'); INSERT INTO `sys_oper_log` VALUES (924, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"啊\",\"top\":2,\"createTime\":1640866968000,\"englishWord\":\"ah\",\"isCollect\":2,\"id\":1476529196496535554,\"sort\":2,\"content\":\"i:唉,呀,哎,呵,阿,哦|f:呀,哟\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:23:00'); INSERT INTO `sys_oper_log` VALUES (925, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"啊\",\"top\":2,\"createTime\":1640866968000,\"englishWord\":\"ah\",\"isCollect\":2,\"id\":1476529196496535554,\"sort\":10,\"content\":\"i:唉,呀,哎,呵,阿,哦|f:呀,哟\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:23:04'); INSERT INTO `sys_oper_log` VALUES (926, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:31:45'); INSERT INTO `sys_oper_log` VALUES (927, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"啊\",\"top\":1,\"createTime\":1640867510827,\"englishWord\":\"ah\",\"isCollect\":2,\"id\":1476531474574032898,\"sort\":0,\"content\":\"啊\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:31:50'); INSERT INTO `sys_oper_log` VALUES (928, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:31:55'); INSERT INTO `sys_oper_log` VALUES (929, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"啊\",\"top\":2,\"createTime\":1640867525344,\"englishWord\":\"ah\",\"isCollect\":2,\"id\":1476531535479521281,\"content\":\"啊\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:32:05'); INSERT INTO `sys_oper_log` VALUES (930, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"大大大\",\"top\":1,\"createTime\":1640867534016,\"englishWord\":\"The biggest\",\"isCollect\":1,\"id\":1476531571839942657,\"content\":\"大大大\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:32:14'); INSERT INTO `sys_oper_log` VALUES (931, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476531535479521281', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:33:40'); INSERT INTO `sys_oper_log` VALUES (932, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476528277000241153', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:33:41'); INSERT INTO `sys_oper_log` VALUES (933, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"啊1\",\"top\":2,\"createTime\":1640866968000,\"englishWord\":\"ah\",\"isCollect\":2,\"id\":1476529196496535554,\"sort\":10,\"content\":\"i:唉,呀,哎,呵,阿,哦|f:呀,哟\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:33:44'); INSERT INTO `sys_oper_log` VALUES (934, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"司马\",\"top\":2,\"createTime\":1640866968000,\"englishWord\":\"ah\",\"isCollect\":2,\"id\":1476529196496535554,\"sort\":10,\"content\":\"i:唉,呀,哎,呵,阿,哦|f:呀,哟\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:33:51'); INSERT INTO `sys_oper_log` VALUES (935, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476531474574032898', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:34:47'); INSERT INTO `sys_oper_log` VALUES (936, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476531571839942657', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:34:49'); INSERT INTO `sys_oper_log` VALUES (937, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476529196496535554', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:34:51'); INSERT INTO `sys_oper_log` VALUES (938, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"主题\",\"top\":2,\"createTime\":1640867714414,\"englishWord\":\"subject\",\"isCollect\":1,\"id\":1476532328463024130,\"content\":\"subject\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:35:14'); INSERT INTO `sys_oper_log` VALUES (939, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"主题\",\"top\":2,\"createTime\":1640867714000,\"englishWord\":\"subject\",\"isCollect\":1,\"id\":1476532328463024130,\"content\":\"n:问题,我,题目,学科,主题,科目,话题,主体,主语,课,对象,臣民,国民,本题,原因,论题,题|v:提出,加,提供,交给,委托\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:35:26'); INSERT INTO `sys_oper_log` VALUES (940, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476532328463024130', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:42:34'); INSERT INTO `sys_oper_log` VALUES (941, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"使生效\",\"top\":1,\"createTime\":1640868166087,\"englishWord\":\"implement\",\"isCollect\":1,\"id\":1476534222887534593,\"content\":\"implement\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:42:46'); INSERT INTO `sys_oper_log` VALUES (942, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"createTime\":1640868234133,\"englishWord\":\"good\",\"isCollect\":2,\"id\":1476534508330893313,\"content\":\"好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:43:56'); INSERT INTO `sys_oper_log` VALUES (943, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"createTime\":1640868292011,\"englishWord\":\"good\",\"isCollect\":2,\"id\":1476534751055265793,\"sort\":0,\"content\":\"好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:44:52'); INSERT INTO `sys_oper_log` VALUES (944, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476534508330893313', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:44:56'); INSERT INTO `sys_oper_log` VALUES (945, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476534751055265793', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:45:01'); INSERT INTO `sys_oper_log` VALUES (946, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476534222887534593', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 20:45:02'); INSERT INTO `sys_oper_log` VALUES (947, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人家是连跨国电话的费用都承受不起\",\"createTime\":1640868999467,\"id\":1476537718361747457,\"source\":\"出山\",\"type\":2}}', 0, '', '2021-12-30 20:56:39'); INSERT INTO `sys_oper_log` VALUES (948, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"所有人都以为咱俩很好,只有我清楚知道咱俩的距离。\",\"createTime\":1640870359733,\"id\":1476543423768621057,\"source\":\"不在\",\"type\":2}}', 0, '', '2021-12-30 21:19:19'); INSERT INTO `sys_oper_log` VALUES (949, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872127900,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"抽象\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 21:48:48'); INSERT INTO `sys_oper_log` VALUES (950, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"感情陷入疲倦期 走不出来 放不下拿不起 听听歌就会哭 一个暑假变了很多 以前肆无忌惮 现在才知道自己多离不开 也才知道 他熬过来了 难受的是我 我不敢再仗着他喜欢我 去做什么了 我怕了\",\"createTime\":1640872689462,\"id\":1476553195360284674,\"source\":\"雨一直下\",\"type\":2}}', 0, '', '2021-12-30 21:58:09'); INSERT INTO `sys_oper_log` VALUES (951, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"笑嘻嘻\",\"top\":2,\"createTime\":1640873786696,\"englishWord\":\"Smile happily\",\"isCollect\":1,\"id\":1476557797484875777,\"sort\":0,\"content\":\"笑嘻嘻\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 22:16:26'); INSERT INTO `sys_oper_log` VALUES (952, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"笑嘻嘻\",\"top\":2,\"createTime\":1640873787000,\"englishWord\":\"Smile happily\",\"isCollect\":1,\"id\":1476557797484875777,\"sort\":0,\"content\":\"v:眉开眼笑,喜笑颜开\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 22:16:42'); INSERT INTO `sys_oper_log` VALUES (953, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"笑嘻嘻\",\"top\":2,\"createTime\":1640873787000,\"englishWord\":\"Smile happily\",\"isCollect\":1,\"id\":1476557797484875777,\"sort\":0,\"content\":\"v:眉开眼笑,喜笑颜开\",\"lookCount\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 22:18:29'); INSERT INTO `sys_oper_log` VALUES (954, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"笑嘻嘻\",\"top\":2,\"createTime\":1640873787000,\"englishWord\":\"Smile happily\",\"isCollect\":1,\"id\":1476557797484875777,\"sort\":0,\"content\":\"v:眉开眼笑,喜笑颜开\",\"lookCount\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 22:18:59'); INSERT INTO `sys_oper_log` VALUES (955, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"思想——自由的精灵。\",\"createTime\":1640874498841,\"id\":1476560784382947330,\"source\":\"莎士比亚\",\"type\":4}}', 0, '', '2021-12-30 22:28:18'); INSERT INTO `sys_oper_log` VALUES (956, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"既有强壮的身体又有健全的思想是难能可贵的。\",\"createTime\":1640874538769,\"id\":1476560951895060483,\"source\":\"玉外纳\",\"type\":4}}', 0, '', '2021-12-30 22:28:58'); INSERT INTO `sys_oper_log` VALUES (957, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"笑嘻嘻\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"Smile happily\",\"src\":\"笑嘻嘻\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-30 22:29:04'); INSERT INTO `sys_oper_log` VALUES (958, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"英语单词收藏夹\",\"params\":{},\"parentId\":2025,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"english:word:collect\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 23:06:06'); INSERT INTO `sys_oper_log` VALUES (959, '英语单词', 5, 'com.xjs.word.controller.EnglishWordController.export()', 'POST', 1, 'admin', '', '/word/export', '127.0.0.1', '', '{}', '', 0, '', '2021-12-30 23:07:52'); INSERT INTO `sys_oper_log` VALUES (960, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"user\",\"orderNum\":\"1\",\"menuName\":\"单词收藏夹\",\"params\":{},\"parentId\":2025,\"isCache\":\"0\",\"path\":\"collect\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 23:13:55'); INSERT INTO `sys_oper_log` VALUES (961, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"user\",\"orderNum\":\"1\",\"menuName\":\"单词收藏夹\",\"params\":{},\"parentId\":2025,\"isCache\":\"0\",\"path\":\"collect\",\"component\":\"business/english/word/collect\",\"children\":[],\"createTime\":1640877235000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2032,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 23:14:18'); INSERT INTO `sys_oper_log` VALUES (962, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"user\",\"orderNum\":\"1\",\"menuName\":\"单词收藏夹\",\"params\":{},\"parentId\":2025,\"isCache\":\"0\",\"path\":\"collect\",\"component\":\"business/english/word/collect\",\"children\":[],\"createTime\":1640877235000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2032,\"menuType\":\"C\",\"perms\":\"english:word:collect\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 23:14:40'); INSERT INTO `sys_oper_log` VALUES (963, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"谁是出头鸟,出来一步!(大家都走了一步)\",\"createTime\":1640877287970,\"id\":1476572482888200193,\"source\":\"功夫\",\"type\":3}}', 0, '', '2021-12-30 23:14:47'); INSERT INTO `sys_oper_log` VALUES (964, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476557797484875777', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 23:14:55'); INSERT INTO `sys_oper_log` VALUES (965, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"享受生活中的每一件小事,因为有一天当你回头看,会发现它们都很重要。\",\"createTime\":1640877496309,\"id\":1476573356725301250,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-30 23:18:16'); INSERT INTO `sys_oper_log` VALUES (966, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"大意呀,大意呀,想不到被一丫头片子玩儿了。\",\"createTime\":1640877711585,\"id\":1476574259666677761,\"source\":\"天下无贼\",\"type\":3}}', 0, '', '2021-12-30 23:21:51'); INSERT INTO `sys_oper_log` VALUES (967, '英语单词', 5, 'com.xjs.word.controller.EnglishWordController.export()', 'POST', 1, 'admin', '', '/word/export', '127.0.0.1', '', '{}', '', 0, '', '2021-12-30 23:25:44'); INSERT INTO `sys_oper_log` VALUES (968, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"user\",\"orderNum\":\"1\",\"menuName\":\"单词收藏夹\",\"params\":{},\"parentId\":2025,\"isCache\":\"0\",\"path\":\"collect\",\"component\":\"business/english/word/collect\",\"children\":[],\"createTime\":1640877235000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2032,\"menuType\":\"C\",\"perms\":\"english:word:collect\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 23:30:52'); INSERT INTO `sys_oper_log` VALUES (969, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生在世,不出一番好议论,不留一番好事业,终日饮食暖衣,无所用心,何自别于禽兽?\",\"createTime\":1640878279926,\"id\":1476576643465801729,\"source\":\"(宋)苏辙\",\"type\":4}}', 0, '', '2021-12-30 23:31:19'); INSERT INTO `sys_oper_log` VALUES (970, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"user\",\"orderNum\":\"1\",\"menuName\":\"单词收藏夹\",\"params\":{},\"parentId\":2025,\"isCache\":\"0\",\"path\":\"collect\",\"component\":\"business/english/word/collect\",\"children\":[],\"createTime\":1640877235000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2032,\"menuType\":\"C\",\"perms\":\"english:word:collect\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 23:31:40'); INSERT INTO `sys_oper_log` VALUES (971, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生得意须尽欢,胡吃海喝需尽兴。\",\"createTime\":1640878313990,\"id\":1476576786294435843,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-30 23:31:53'); INSERT INTO `sys_oper_log` VALUES (972, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们生来孤独,有何苦闯进人群自取其辱。\",\"createTime\":1640878317153,\"id\":1476576799569408002,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-30 23:31:57'); INSERT INTO `sys_oper_log` VALUES (973, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"浪子老了,唯山河不变。\",\"createTime\":1640878334005,\"id\":1476576870276984833,\"source\":\"浪子回头\",\"type\":2}}', 0, '', '2021-12-30 23:32:14'); INSERT INTO `sys_oper_log` VALUES (974, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"user\",\"orderNum\":\"1\",\"menuName\":\"单词收藏夹\",\"params\":{},\"parentId\":2025,\"isCache\":\"0\",\"path\":\"collect\",\"component\":\"business/english/word/collect\",\"children\":[],\"createTime\":1640877235000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2032,\"menuType\":\"C\",\"perms\":\"english:word:collect\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 23:32:30'); INSERT INTO `sys_oper_log` VALUES (975, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"总以为你是我的过客 没想到最后我才是你的过客\",\"createTime\":1640878504511,\"id\":1476577585401622530,\"source\":\"过客\",\"type\":2}}', 0, '', '2021-12-30 23:35:04'); INSERT INTO `sys_oper_log` VALUES (976, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"user\",\"orderNum\":\"1\",\"menuName\":\"单词收藏夹\",\"params\":{},\"parentId\":2025,\"isCache\":\"0\",\"path\":\"collect\",\"component\":\"business/english/word/collect\",\"children\":[],\"createTime\":1640877235000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2032,\"menuType\":\"C\",\"perms\":\"english:word:collect\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 23:38:58'); INSERT INTO `sys_oper_log` VALUES (977, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"user\",\"orderNum\":\"1\",\"menuName\":\"单词收藏夹\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"collect\",\"component\":\"business/english/word/collect\",\"children\":[],\"createTime\":1640877235000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2032,\"menuType\":\"C\",\"perms\":\"english:word:collect\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 23:41:26'); INSERT INTO `sys_oper_log` VALUES (978, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"user\",\"orderNum\":\"1\",\"menuName\":\"单词收藏夹\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"collect\",\"component\":\"business/english/word/collect\",\"children\":[],\"createTime\":1640877235000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2032,\"menuType\":\"C\",\"perms\":\"english:word:collect\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-30 23:42:33'); INSERT INTO `sys_oper_log` VALUES (979, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879847950,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":0,\"content\":\"类\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-30 23:57:27'); INSERT INTO `sys_oper_log` VALUES (980, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:01:01'); INSERT INTO `sys_oper_log` VALUES (981, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:01:09'); INSERT INTO `sys_oper_log` VALUES (982, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:02:40'); INSERT INTO `sys_oper_log` VALUES (983, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:03:56'); INSERT INTO `sys_oper_log` VALUES (984, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:04:04'); INSERT INTO `sys_oper_log` VALUES (985, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":6}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:04:11'); INSERT INTO `sys_oper_log` VALUES (986, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:04:31'); INSERT INTO `sys_oper_log` VALUES (987, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":8}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:06:48'); INSERT INTO `sys_oper_log` VALUES (988, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"v:提炼|n:撮要|a:抽象,理论\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:06:51'); INSERT INTO `sys_oper_log` VALUES (989, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":0,\"content\":\"n:班,阶级,班级,阶层,课,类,优秀,组,等级,等,纲,级,类别,门类,讲习班,路|v:归类,分类\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:06:55'); INSERT INTO `sys_oper_log` VALUES (990, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":9}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:06:58'); INSERT INTO `sys_oper_log` VALUES (991, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":0,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:07:04'); INSERT INTO `sys_oper_log` VALUES (992, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"v:提炼|n:撮要|a:抽象,理论\",\"lookCount\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:07:09'); INSERT INTO `sys_oper_log` VALUES (993, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":0,\"content\":\"n:班,阶级,班级,阶层,课,类,优秀,组,等级,等,纲,级,类别,门类,讲习班,路|v:归类,分类\",\"lookCount\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:07:11'); INSERT INTO `sys_oper_log` VALUES (994, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"v:提炼|n:撮要|a:抽象,理论\",\"lookCount\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:07:14'); INSERT INTO `sys_oper_log` VALUES (995, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":0,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":11}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:08:20'); INSERT INTO `sys_oper_log` VALUES (996, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"v:提炼|n:撮要|a:抽象,理论\",\"lookCount\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:08:22'); INSERT INTO `sys_oper_log` VALUES (997, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":0,\"content\":\"n:班,阶级,班级,阶层,课,类,优秀,组,等级,等,纲,级,类别,门类,讲习班,路|v:归类,分类\",\"lookCount\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:08:24'); INSERT INTO `sys_oper_log` VALUES (998, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":0,\"id\":1476583220205801474,\"sort\":0,\"content\":\"n:班,阶级,班级,阶层,课,类,优秀,组,等级,等,纲,级,类别,门类,讲习班,路|v:归类,分类\",\"lookCount\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:08:49'); INSERT INTO `sys_oper_log` VALUES (999, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"v:提炼|n:撮要|a:抽象,理论\",\"lookCount\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:08:51'); INSERT INTO `sys_oper_log` VALUES (1000, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":0,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":12}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:08:54'); INSERT INTO `sys_oper_log` VALUES (1001, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"v:提炼|n:撮要|a:抽象,理论\",\"lookCount\":6}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:08:57'); INSERT INTO `sys_oper_log` VALUES (1002, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":0,\"id\":1476583220205801474,\"sort\":0,\"content\":\"n:班,阶级,班级,阶层,课,类,优秀,组,等级,等,纲,级,类别,门类,讲习班,路|v:归类,分类\",\"lookCount\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:09:01'); INSERT INTO `sys_oper_log` VALUES (1003, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":0,\"id\":1476583220205801474,\"sort\":0,\"content\":\"n:班,阶级,班级,阶层,课,类,优秀,组,等级,等,纲,级,类别,门类,讲习班,路|v:归类,分类\",\"lookCount\":6}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:09:23'); INSERT INTO `sys_oper_log` VALUES (1004, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"v:提炼|n:撮要|a:抽象,理论\",\"lookCount\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:09:25'); INSERT INTO `sys_oper_log` VALUES (1005, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":0,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":13}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:09:28'); INSERT INTO `sys_oper_log` VALUES (1006, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"v:提炼|n:撮要|a:抽象,理论\",\"lookCount\":8}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:09:35'); INSERT INTO `sys_oper_log` VALUES (1007, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":0,\"id\":1476499056043425794,\"sort\":40,\"content\":\"n:接口,界面|v:交流,交谈|a:临界\",\"lookCount\":14}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:09:38'); INSERT INTO `sys_oper_log` VALUES (1008, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":0,\"content\":\"\",\"lookCount\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:17:56'); INSERT INTO `sys_oper_log` VALUES (1009, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"\",\"lookCount\":14}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:18:01'); INSERT INTO `sys_oper_log` VALUES (1010, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"\",\"lookCount\":14}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:18:03'); INSERT INTO `sys_oper_log` VALUES (1011, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"\",\"lookCount\":9}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:18:08'); INSERT INTO `sys_oper_log` VALUES (1012, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"\",\"lookCount\":14}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:18:53'); INSERT INTO `sys_oper_log` VALUES (1013, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"\",\"lookCount\":14}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:18:57'); INSERT INTO `sys_oper_log` VALUES (1014, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":1,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"\",\"lookCount\":9}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:19:02'); INSERT INTO `sys_oper_log` VALUES (1015, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":65,\"content\":\"\",\"lookCount\":8}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 00:19:15'); INSERT INTO `sys_oper_log` VALUES (1016, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"什么都要作大 大吃小 小被吃。\",\"createTime\":1640881249813,\"id\":1476589100066336770,\"source\":\"长江七号\",\"type\":3}}', 0, '', '2021-12-31 00:20:49'); INSERT INTO `sys_oper_log` VALUES (1017, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我觉得生命是最重要的,所以在我心里,没有事情是解决不了的。不是每一个人都可以幸运的过自己理想中的生活, 有楼有车当然好了,没有难道哭吗? 所以呢,我们一定要享受我们所过的生活。\",\"createTime\":1640881259097,\"id\":1476589139010449409,\"source\":\"新不了情\",\"type\":3}}', 0, '', '2021-12-31 00:20:59'); INSERT INTO `sys_oper_log` VALUES (1018, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"2018年《出山》 2019年《下山》 2020年《上山》 2021年《归山》 2022年《进山》 2022年《烧山》2023年《炸山》\",\"createTime\":1640881263058,\"id\":1476589155590533122,\"source\":\"下山\",\"type\":2}}', 0, '', '2021-12-31 00:21:03'); INSERT INTO `sys_oper_log` VALUES (1019, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心心念长安,只因长安某。愿能得一醉,借梦归故里\",\"createTime\":1640881264583,\"id\":1476589162020401153,\"source\":\"关山酒\",\"type\":2}}', 0, '', '2021-12-31 00:21:04'); INSERT INTO `sys_oper_log` VALUES (1020, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"求学将以致用;读书先在虚心。\",\"createTime\":1640911586540,\"id\":1476716341506572290,\"source\":\"《对联集锦》\",\"type\":4}}', 0, '', '2021-12-31 08:46:26'); INSERT INTO `sys_oper_log` VALUES (1021, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":40,\"content\":\"\",\"lookCount\":16}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 08:47:01'); INSERT INTO `sys_oper_log` VALUES (1022, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你心浮气燥,利欲熏心,怎么能赢?!\",\"createTime\":1640916270767,\"id\":1476735988557639682,\"source\":\"太极张三丰\",\"type\":3}}', 0, '', '2021-12-31 10:04:30'); INSERT INTO `sys_oper_log` VALUES (1023, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要有生活目标,一辈子的目标,一段时期的目标,一个阶段的目标,一年的目标,一个月的目标,一个星期的目标,一天的目标,一个小时的目标,一分钟的目标。\",\"createTime\":1640916273550,\"id\":1476736000209416194,\"source\":\"托尔斯泰\",\"type\":4}}', 0, '', '2021-12-31 10:04:33'); INSERT INTO `sys_oper_log` VALUES (1024, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"存在\",\"top\":2,\"createTime\":1640916318576,\"englishWord\":\"exist\",\"isCollect\":1,\"id\":1476736189120798721,\"sort\":0,\"content\":\"exist\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:05:18'); INSERT INTO `sys_oper_log` VALUES (1025, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"存在\",\"top\":2,\"createTime\":1640916319000,\"englishWord\":\"exist\",\"isCollect\":1,\"id\":1476736189120798721,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:06:55'); INSERT INTO `sys_oper_log` VALUES (1026, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"存在\",\"top\":2,\"createTime\":1640916319000,\"englishWord\":\"exist\",\"isCollect\":1,\"id\":1476736189120798721,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:06:59'); INSERT INTO `sys_oper_log` VALUES (1027, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"存在\",\"top\":2,\"createTime\":1640916319000,\"englishWord\":\"exist\",\"isCollect\":1,\"id\":1476736189120798721,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:07:06'); INSERT INTO `sys_oper_log` VALUES (1028, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"存在1\",\"top\":2,\"createTime\":1640916319000,\"englishWord\":\"exist\",\"isCollect\":1,\"id\":1476736189120798721,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:07:11'); INSERT INTO `sys_oper_log` VALUES (1029, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"存在\",\"top\":2,\"createTime\":1640916319000,\"englishWord\":\"exist\",\"isCollect\":1,\"id\":1476736189120798721,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:07:14'); INSERT INTO `sys_oper_log` VALUES (1030, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"继承\",\"top\":2,\"createTime\":1640916456697,\"englishWord\":\"inheritance\",\"isCollect\":1,\"id\":1476736768417095682,\"sort\":2,\"content\":\"继承\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:07:36'); INSERT INTO `sys_oper_log` VALUES (1031, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"比我差的人还没放弃,比我好的人仍在努力,我就更没资格说,我无能为力。\",\"createTime\":1640916494875,\"id\":1476736928572469249,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-31 10:08:14'); INSERT INTO `sys_oper_log` VALUES (1032, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生活就像一盒巧克力,你永远不知道你会得到什么。\",\"createTime\":1640916501353,\"id\":1476736955684450306,\"source\":\"阿甘正传(Forrest Gump)\",\"type\":3}}', 0, '', '2021-12-31 10:08:21'); INSERT INTO `sys_oper_log` VALUES (1033, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"继承\",\"top\":2,\"createTime\":1640916457000,\"englishWord\":\"extends\",\"isCollect\":1,\"id\":1476736768417095682,\"sort\":2,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:09:23'); INSERT INTO `sys_oper_log` VALUES (1034, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"继承\",\"top\":2,\"createTime\":1640916457000,\"englishWord\":\"extend\",\"isCollect\":1,\"id\":1476736768417095682,\"sort\":2,\"content\":\"\",\"lookCount\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:15:08'); INSERT INTO `sys_oper_log` VALUES (1035, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476736768417095682', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:16:16'); INSERT INTO `sys_oper_log` VALUES (1036, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":64,\"content\":\"\",\"lookCount\":19}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:18:21'); INSERT INTO `sys_oper_log` VALUES (1037, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":1,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":65,\"content\":\"\",\"lookCount\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 10:18:32'); INSERT INTO `sys_oper_log` VALUES (1038, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":1,\"isCollect\":1,\"sort\":0,\"content\":\"12\"}', '', 1, '不能包含其他符号!!!', '2021-12-31 11:09:10'); INSERT INTO `sys_oper_log` VALUES (1039, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":1,\"isCollect\":1,\"sort\":0,\"content\":\"13\"}', '', 1, '不能包含其他符号!!!', '2021-12-31 11:10:50'); INSERT INTO `sys_oper_log` VALUES (1040, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"的\",\"top\":1,\"createTime\":1640920261692,\"englishWord\":\"the\",\"isCollect\":1,\"id\":1476752727714455554,\"sort\":0,\"content\":\"的\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:11:01'); INSERT INTO `sys_oper_log` VALUES (1041, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"的\",\"top\":1,\"createTime\":1640920262000,\"englishWord\":\"the\",\"isCollect\":1,\"id\":1476752727714455554,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:11:30'); INSERT INTO `sys_oper_log` VALUES (1042, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"存在\",\"top\":2,\"createTime\":1640916319000,\"englishWord\":\"exist\",\"isCollect\":1,\"id\":1476736189120798721,\"sort\":0,\"content\":\"\",\"lookCount\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:12:16'); INSERT INTO `sys_oper_log` VALUES (1043, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":1,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":65,\"content\":\"\",\"lookCount\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:12:19'); INSERT INTO `sys_oper_log` VALUES (1044, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":1,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":65,\"content\":\"\",\"lookCount\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:12:24'); INSERT INTO `sys_oper_log` VALUES (1045, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口1\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":64,\"content\":\"\",\"lookCount\":19}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:12:28'); INSERT INTO `sys_oper_log` VALUES (1046, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":64,\"content\":\"\",\"lookCount\":19}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:12:31'); INSERT INTO `sys_oper_log` VALUES (1047, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":1,\"isCollect\":2,\"sort\":0,\"content\":\"1\"}', '', 1, '不能包含其他符号!!!', '2021-12-31 11:12:34'); INSERT INTO `sys_oper_log` VALUES (1048, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":1,\"isCollect\":2,\"sort\":0,\"content\":\"1\"}', '', 1, '不能包含其他符号!!!', '2021-12-31 11:12:36'); INSERT INTO `sys_oper_log` VALUES (1049, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":1,\"isCollect\":2,\"sort\":0,\"content\":\"1\"}', '', 1, '不能包含其他符号!!!', '2021-12-31 11:12:37'); INSERT INTO `sys_oper_log` VALUES (1050, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"A.\",\"top\":1,\"createTime\":1640920365081,\"englishWord\":\"A\",\"isCollect\":2,\"id\":1476753161359351809,\"sort\":0,\"content\":\"A\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:12:45'); INSERT INTO `sys_oper_log` VALUES (1051, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"B\",\"top\":1,\"createTime\":1640920375665,\"englishWord\":\"B\",\"isCollect\":1,\"id\":1476753205756059650,\"sort\":0,\"content\":\"B\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:12:55'); INSERT INTO `sys_oper_log` VALUES (1052, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"C\",\"top\":1,\"createTime\":1640920380642,\"englishWord\":\"C\",\"isCollect\":1,\"id\":1476753226652082178,\"sort\":0,\"content\":\"C\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:00'); INSERT INTO `sys_oper_log` VALUES (1053, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"D\",\"top\":1,\"createTime\":1640920384784,\"englishWord\":\"D\",\"isCollect\":1,\"id\":1476753243995529218,\"sort\":0,\"content\":\"D\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:04'); INSERT INTO `sys_oper_log` VALUES (1054, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"A.\",\"top\":1,\"createTime\":1640920365000,\"englishWord\":\"A\",\"isCollect\":1,\"id\":1476753161359351809,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:11'); INSERT INTO `sys_oper_log` VALUES (1055, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"D\",\"top\":1,\"createTime\":1640920396850,\"englishWord\":\"D\",\"isCollect\":1,\"id\":1476753294587224065,\"sort\":0,\"content\":\"D\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:16'); INSERT INTO `sys_oper_log` VALUES (1056, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"E\",\"top\":1,\"createTime\":1640920402218,\"englishWord\":\"E\",\"isCollect\":1,\"id\":1476753317156773889,\"sort\":0,\"content\":\"E\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:22'); INSERT INTO `sys_oper_log` VALUES (1057, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"F\",\"top\":1,\"createTime\":1640920406439,\"englishWord\":\"F\",\"isCollect\":1,\"id\":1476753334839959554,\"sort\":0,\"content\":\"F\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:26'); INSERT INTO `sys_oper_log` VALUES (1058, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"G\",\"top\":1,\"createTime\":1640920409999,\"englishWord\":\"G\",\"isCollect\":1,\"id\":1476753349792653314,\"sort\":0,\"content\":\"G\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:30'); INSERT INTO `sys_oper_log` VALUES (1059, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"T\",\"top\":1,\"createTime\":1640920413157,\"englishWord\":\"T\",\"isCollect\":1,\"id\":1476753362979545090,\"sort\":0,\"content\":\"T\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:33'); INSERT INTO `sys_oper_log` VALUES (1060, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"AA\",\"top\":1,\"createTime\":1640920416298,\"englishWord\":\"AA\",\"isCollect\":1,\"id\":1476753376208379906,\"sort\":0,\"content\":\"AA\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:36'); INSERT INTO `sys_oper_log` VALUES (1061, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"AAA\",\"top\":1,\"createTime\":1640920421273,\"englishWord\":\"AAA\",\"isCollect\":1,\"id\":1476753397049876481,\"sort\":0,\"content\":\"AAA\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:41'); INSERT INTO `sys_oper_log` VALUES (1062, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"AAA\",\"top\":1,\"createTime\":1640920424659,\"englishWord\":\"AAA\",\"isCollect\":1,\"id\":1476753411264372737,\"sort\":0,\"content\":\"AAA\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:44'); INSERT INTO `sys_oper_log` VALUES (1063, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"WS\",\"top\":1,\"createTime\":1640920429721,\"englishWord\":\"WS\",\"isCollect\":1,\"id\":1476753432479162370,\"sort\":0,\"content\":\"WS\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:49'); INSERT INTO `sys_oper_log` VALUES (1064, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"AAAW\",\"top\":1,\"createTime\":1640920436613,\"englishWord\":\"AAAW\",\"isCollect\":1,\"id\":1476753461411471362,\"sort\":0,\"content\":\"AAAW\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:13:56'); INSERT INTO `sys_oper_log` VALUES (1065, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"反恐精英\",\"top\":1,\"createTime\":1640920440753,\"englishWord\":\"CS\",\"isCollect\":1,\"id\":1476753478742335489,\"sort\":0,\"content\":\"CS\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:14:00'); INSERT INTO `sys_oper_log` VALUES (1066, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"FA\",\"top\":1,\"createTime\":1640920445629,\"englishWord\":\"FA\",\"isCollect\":1,\"id\":1476753499231510530,\"sort\":0,\"content\":\"FA\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:14:05'); INSERT INTO `sys_oper_log` VALUES (1067, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"XXA\",\"top\":1,\"createTime\":1640920448745,\"englishWord\":\"XXA\",\"isCollect\":1,\"id\":1476753512300961793,\"sort\":0,\"content\":\"XXA\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:14:08'); INSERT INTO `sys_oper_log` VALUES (1068, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"FAFA\",\"top\":1,\"createTime\":1640920452652,\"englishWord\":\"FAFA\",\"isCollect\":1,\"id\":1476753528679718913,\"sort\":0,\"content\":\"FAFA\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:14:12'); INSERT INTO `sys_oper_log` VALUES (1069, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"阿达\",\"top\":1,\"createTime\":1640922702056,\"englishWord\":\"Ada\",\"isCollect\":1,\"id\":1476762963338747906,\"sort\":0,\"content\":\"阿达\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:51:42'); INSERT INTO `sys_oper_log` VALUES (1070, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"地址\",\"top\":1,\"createTime\":1640922708853,\"englishWord\":\"ADAD\",\"isCollect\":1,\"id\":1476762991860015106,\"sort\":0,\"content\":\"ADAD\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:51:48'); INSERT INTO `sys_oper_log` VALUES (1071, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"预备\",\"top\":1,\"createTime\":1640922711835,\"englishWord\":\"CCCC\",\"isCollect\":1,\"id\":1476763004350652418,\"sort\":0,\"content\":\"CCCC\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:51:51'); INSERT INTO `sys_oper_log` VALUES (1072, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"艾达\",\"top\":1,\"createTime\":1640922716043,\"englishWord\":\"ADA\",\"isCollect\":1,\"id\":1476763022021255170,\"sort\":0,\"content\":\"ADA\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:51:56'); INSERT INTO `sys_oper_log` VALUES (1073, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"阿斯放\",\"top\":1,\"createTime\":1640922722635,\"englishWord\":\"Asfang\",\"isCollect\":1,\"id\":1476763049674301442,\"sort\":0,\"content\":\"阿斯放\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:52:02'); INSERT INTO `sys_oper_log` VALUES (1074, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"按时发放\",\"top\":1,\"createTime\":1640922727718,\"englishWord\":\"On time\",\"isCollect\":1,\"id\":1476763070956199938,\"sort\":0,\"content\":\"按时发放\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 11:52:07'); INSERT INTO `sys_oper_log` VALUES (1075, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你不用那么优秀,拿的出手就行,有干劲满满的事业,有光明正大的爱情,有一二精致的喜好,过着并不窘迫的日子。\",\"createTime\":1640928161873,\"id\":1476785863508848641,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-31 13:22:41'); INSERT INTO `sys_oper_log` VALUES (1076, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"原来尘世间有很多烦恼是很容易解决的,有些事只要你肯反过来看,你会有另外一番光景。\",\"createTime\":1640932850193,\"id\":1476805527723012097,\"source\":\"天下无双\",\"type\":3}}', 0, '', '2021-12-31 14:40:50'); INSERT INTO `sys_oper_log` VALUES (1077, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这首歌我不知道有多少人听过,当时我正在高速上开着车,忽然听到了这首歌,我猛踏油门到了200码,我决定给这首歌88分,剩下的12分给交警!\",\"createTime\":1640933015159,\"id\":1476806219648954369,\"source\":\"Да да да (Jarico Remix)\",\"type\":2}}', 0, '', '2021-12-31 14:43:35'); INSERT INTO `sys_oper_log` VALUES (1078, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"柳絮飘零,杜鹃哀啼,我听说你被贬到龙标,跋涉五溪。从此迢迢无期,不知何时归。\",\"createTime\":1640936615758,\"id\":1476821321664131074,\"source\":\"杨花落尽子规啼\",\"type\":2}}', 0, '', '2021-12-31 15:43:35'); INSERT INTO `sys_oper_log` VALUES (1079, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只有在我们失去了一切之后,我们才可以做任何事。\",\"createTime\":1640936622911,\"id\":1476821351640821762,\"source\":\"斗阵俱乐部(搏击俱乐部)Fight Club\",\"type\":3}}', 0, '', '2021-12-31 15:43:42'); INSERT INTO `sys_oper_log` VALUES (1080, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_english', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-31 15:45:06'); INSERT INTO `sys_oper_log` VALUES (1081, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我拥有大风和烈酒,享受着孤独和自由\",\"createTime\":1640938641539,\"id\":1476829818376122370,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-31 16:17:21'); INSERT INTO `sys_oper_log` VALUES (1082, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我觉得网易云最神奇的地方不是评论而是突然有一天系统消息通知有人赞了你点开发现是很久以前的评论 思绪瞬间就回到了写下那句话的时间 别人问你怎么了 你抹了一把眼泪说 没什么 想起来点东西 说不定五年十年后我会再次看到这条评论\",\"createTime\":1640938708959,\"id\":1476830101189652481,\"source\":\"你,好不好?\",\"type\":2}}', 0, '', '2021-12-31 16:18:28'); INSERT INTO `sys_oper_log` VALUES (1083, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你说的迈不过的苦难,有人早已习以为常。\",\"createTime\":1640938785756,\"id\":1476830423282839555,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-31 16:19:45'); INSERT INTO `sys_oper_log` VALUES (1084, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我回首前尘往事,犯下重罪的那个小笨蛋,我想跟他沟通,让他明白,但是我办不到,那个少年早就不见了,只剩下我垂老身躯\",\"createTime\":1640941052277,\"id\":1476839929771896834,\"source\":\"刺激1995(肖申克的救赎)The shawshank redemption\",\"type\":3}}', 0, '', '2021-12-31 16:57:32'); INSERT INTO `sys_oper_log` VALUES (1085, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"友谊不是别的,而是一种以善意和爱心去连接世上一切神俗事物的和谐。\",\"createTime\":1640941078484,\"id\":1476840039687827458,\"source\":\"西塞罗\",\"type\":4}}', 0, '', '2021-12-31 16:57:58'); INSERT INTO `sys_oper_log` VALUES (1086, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"尘埃已落定,谦友明年见。\",\"createTime\":1640941285784,\"id\":1476840909171240961,\"source\":\"环\",\"type\":2}}', 0, '', '2021-12-31 17:01:25'); INSERT INTO `sys_oper_log` VALUES (1087, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"嗯?\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"Huh?\",\"src\":\"嗯?\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2021-12-31 17:01:38'); INSERT INTO `sys_oper_log` VALUES (1088, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"嘴巴有时候当成装饰更合适,特别是在你不会说话的时候。\",\"createTime\":1640941301767,\"id\":1476840976183635970,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-31 17:01:41'); INSERT INTO `sys_oper_log` VALUES (1089, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"成功=艰苦的劳动+正确的方法+少说空话。\",\"createTime\":1640941306840,\"id\":1476840997452951555,\"source\":\"爱因斯坦\",\"type\":4}}', 0, '', '2021-12-31 17:01:46'); INSERT INTO `sys_oper_log` VALUES (1090, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', NULL, NULL, 0, NULL, '2021-12-31 17:01:47'); INSERT INTO `sys_oper_log` VALUES (1091, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"No,他(皇帝)有很多漂亮的女人,如果他有心气的话,可以每天换一个,而且不用花钱,都是朝廷给他养着。我只有一个女人,还跟我离婚了,我的一生才是悲剧的。No money,no women才是悲剧的。悲剧怎么说?--尤优(葛优扮)\",\"createTime\":1640941353536,\"id\":1476841193331142658,\"source\":\"大腕\",\"type\":3}}', 0, '', '2021-12-31 17:02:33'); INSERT INTO `sys_oper_log` VALUES (1092, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"成功=艰苦的劳动+正确的方法+少说空话。\",\"createTime\":1640944191574,\"id\":1476853096921083907,\"source\":\"爱因斯坦\",\"type\":4}}', 0, '', '2021-12-31 17:49:51'); INSERT INTO `sys_oper_log` VALUES (1093, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果20年后,你还是跟现在一样,我会杀了你,你拥有我没有的天赋,你拥有了一百万的彩券,却窝囊的不敢对现,我会不惜一切交换你所拥有的。\",\"createTime\":1640944194886,\"id\":1476853110804230147,\"source\":\"心灵捕手(Good Will Hunting)\",\"type\":3}}', 0, '', '2021-12-31 17:49:54'); INSERT INTO `sys_oper_log` VALUES (1094, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你就不能原谅吗,如果你生气的话,你可以打我,你不打我也可以骂我,你不骂我也起码看看我,你不要这样不理不睬的\",\"createTime\":1640944197546,\"id\":1476853121977856002,\"source\":\"龙凤店\",\"type\":3}}', 0, '', '2021-12-31 17:49:57'); INSERT INTO `sys_oper_log` VALUES (1095, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我遇见谁会有怎样的对白,我爱的少年他在多远的未来。\",\"createTime\":1640944201755,\"id\":1476853139593932802,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-31 17:50:01'); INSERT INTO `sys_oper_log` VALUES (1096, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"以为是乏味的城市,却遇见彩色的梦和许多美好。\",\"createTime\":1640944247138,\"id\":1476853330002751490,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-31 17:50:47'); INSERT INTO `sys_oper_log` VALUES (1097, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', NULL, NULL, 0, NULL, '2021-12-31 17:54:15'); INSERT INTO `sys_oper_log` VALUES (1098, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', NULL, NULL, 0, NULL, '2021-12-31 17:56:46'); INSERT INTO `sys_oper_log` VALUES (1099, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', NULL, NULL, 0, NULL, '2021-12-31 17:58:39'); INSERT INTO `sys_oper_log` VALUES (1100, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"嘴巴有时候当成装饰更合适,特别是在你不会说话的时候。\",\"createTime\":1640945316949,\"id\":1476857817115369473,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-31 18:08:37'); INSERT INTO `sys_oper_log` VALUES (1101, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"select\",\"orderNum\":\"1\",\"menuName\":\"英语一言\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"oneenglish\",\"component\":\"business/openapi/oneenglish/index\",\"children\":[],\"createTime\":1640944780000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2033,\"menuType\":\"C\",\"perms\":\"openapi:oneenglish:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-31 18:09:29'); INSERT INTO `sys_oper_log` VALUES (1102, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"能帮妳捡回纸鸢,我不怕千刀万剐,情愿勇闯地狱,区区一条手臂,又何足挂齿?\",\"createTime\":1640945406732,\"id\":1476858193667399683,\"source\":\"唐伯虎点秋香\",\"type\":3}}', 0, '', '2021-12-31 18:10:06'); INSERT INTO `sys_oper_log` VALUES (1103, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"天阔:我送你的水鸟怎么多了这么多兄弟姊妹啊?\\n秧秧:因为我每想你一次,我就丢一块钱进去,不知不觉他就满了,所以只好再买新的。\",\"createTime\":1640945408936,\"id\":1476858202882285571,\"source\":\"听说\",\"type\":3}}', 0, '', '2021-12-31 18:10:08'); INSERT INTO `sys_oper_log` VALUES (1104, '英语一言', 3, 'com.xjs.oneenglish.controller.ApiEnglishController.remove()', 'DELETE', 1, 'admin', '', '/oneenglish/1', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 18:15:01'); INSERT INTO `sys_oper_log` VALUES (1105, '英语一言', 3, 'com.xjs.oneenglish.controller.ApiEnglishController.remove()', 'DELETE', 1, 'admin', '', '/oneenglish/1476880860806094851', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 19:55:15'); INSERT INTO `sys_oper_log` VALUES (1106, '英语一言', 5, 'com.xjs.oneenglish.controller.ApiEnglishController.export()', 'POST', 1, 'admin', '', '/oneenglish/export', '127.0.0.1', '', '{}', '', 0, '', '2021-12-31 19:55:24'); INSERT INTO `sys_oper_log` VALUES (1107, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"克勤于邦,克俭于家。\",\"createTime\":1640955820748,\"id\":1476901873186951170,\"source\":\"警言\",\"type\":4}}', 0, '', '2021-12-31 21:03:41'); INSERT INTO `sys_oper_log` VALUES (1108, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"幸好,幸好电影的最后没有那句“电影根据真实故事改编”。\",\"createTime\":1640955823730,\"id\":1476901885727920131,\"source\":\"有一种悲伤\",\"type\":2}}', 0, '', '2021-12-31 21:03:43'); INSERT INTO `sys_oper_log` VALUES (1109, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与其用华丽的外衣装饰自己,不如用知识武装自己。\",\"createTime\":1640955847678,\"id\":1476901986173112322,\"source\":\"马克思\",\"type\":4}}', 0, '', '2021-12-31 21:04:07'); INSERT INTO `sys_oper_log` VALUES (1110, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"工厂\",\"top\":2,\"createTime\":1640955889726,\"englishWord\":\"factory\",\"isCollect\":1,\"id\":1476902162551943170,\"sort\":0,\"content\":\"factory\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 21:04:49'); INSERT INTO `sys_oper_log` VALUES (1111, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"凭什么要把我教给你的东西,都给下一个女孩子。\",\"createTime\":1640956305876,\"id\":1476903907978039298,\"source\":\"还是分开\",\"type\":2}}', 0, '', '2021-12-31 21:11:45'); INSERT INTO `sys_oper_log` VALUES (1112, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"艺术在于有本领在针尖上建筑一座宫殿。我思想的奥妙之处在那根能够在十秒内把沙漠变成城市的仙杖里面。\",\"createTime\":1640956315888,\"id\":1476903950009159681,\"source\":\"巴尔扎克\",\"type\":4}}', 0, '', '2021-12-31 21:11:55'); INSERT INTO `sys_oper_log` VALUES (1113, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你还好吗\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Are you all right?\",\"src\":\"你还好吗\"}]}}', 0, '', '2021-12-31 21:13:48'); INSERT INTO `sys_oper_log` VALUES (1114, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"yes,我很好!\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Yes, I\'m fine!\",\"src\":\"yes,我很好!\"}]}}', 0, '', '2021-12-31 21:13:57'); INSERT INTO `sys_oper_log` VALUES (1115, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_record', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2021-12-31 21:41:45'); INSERT INTO `sys_oper_log` VALUES (1116, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"警告\",\"top\":2,\"createTime\":1640960580192,\"englishWord\":\"warning\",\"isCollect\":1,\"id\":1476921835792322562,\"sort\":0,\"content\":\"warning\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 22:23:00'); INSERT INTO `sys_oper_log` VALUES (1117, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"控制器\",\"top\":2,\"createTime\":1640960741786,\"englishWord\":\"controller\",\"isCollect\":1,\"id\":1476922513520545793,\"sort\":0,\"content\":\"controller\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 22:25:42'); INSERT INTO `sys_oper_log` VALUES (1118, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"要求\",\"top\":2,\"createTime\":1640962810518,\"englishWord\":\"request\",\"isCollect\":1,\"id\":1476931190419836930,\"sort\":21,\"content\":\"request\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:00:10'); INSERT INTO `sys_oper_log` VALUES (1119, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"回答\",\"top\":2,\"createTime\":1640962831299,\"englishWord\":\"response\",\"isCollect\":1,\"id\":1476931277594251266,\"sort\":0,\"content\":\"response\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:00:31'); INSERT INTO `sys_oper_log` VALUES (1120, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"使生效\",\"top\":2,\"createTime\":1640962854058,\"englishWord\":\"implement\",\"isCollect\":1,\"id\":1476931373052416002,\"sort\":30,\"content\":\"implement\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:00:54'); INSERT INTO `sys_oper_log` VALUES (1121, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"翻译\",\"top\":2,\"createTime\":1640963809715,\"englishWord\":\"translation\",\"isCollect\":1,\"id\":1476935381339033601,\"sort\":0,\"content\":\"translation\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:16:49'); INSERT INTO `sys_oper_log` VALUES (1122, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":1,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":16,\"content\":\"\",\"lookCount\":45}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:17:18'); INSERT INTO `sys_oper_log` VALUES (1123, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":24,\"content\":\"\",\"lookCount\":39}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:17:27'); INSERT INTO `sys_oper_log` VALUES (1124, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":1,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":9,\"content\":\"\",\"lookCount\":45}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:17:32'); INSERT INTO `sys_oper_log` VALUES (1125, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":1,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":11,\"content\":\"\",\"lookCount\":39}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:17:38'); INSERT INTO `sys_oper_log` VALUES (1126, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"对象\",\"top\":2,\"createTime\":1640963889408,\"englishWord\":\"object\",\"isCollect\":1,\"id\":1476935715620868098,\"sort\":8,\"content\":\"object\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:18:09'); INSERT INTO `sys_oper_log` VALUES (1127, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":2,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":11,\"content\":\"\",\"lookCount\":39}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:18:28'); INSERT INTO `sys_oper_log` VALUES (1128, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":9,\"content\":\"\",\"lookCount\":45}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:18:34'); INSERT INTO `sys_oper_log` VALUES (1129, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":2,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":2,\"content\":\"\",\"lookCount\":28}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:18:38'); INSERT INTO `sys_oper_log` VALUES (1130, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"实现\",\"top\":2,\"createTime\":1640962854000,\"englishWord\":\"implement\",\"isCollect\":1,\"id\":1476931373052416002,\"sort\":16,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:18:48'); INSERT INTO `sys_oper_log` VALUES (1131, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"模型\",\"top\":2,\"createTime\":1640963975728,\"englishWord\":\"model\",\"isCollect\":1,\"id\":1476936077668995074,\"sort\":0,\"content\":\"model\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:19:35'); INSERT INTO `sys_oper_log` VALUES (1132, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"项目\",\"top\":2,\"createTime\":1640964008055,\"englishWord\":\"project\",\"isCollect\":1,\"id\":1476936213279232001,\"sort\":0,\"content\":\"project\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:20:08'); INSERT INTO `sys_oper_log` VALUES (1133, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"要求\",\"top\":2,\"createTime\":1640962811000,\"englishWord\":\"request\",\"isCollect\":1,\"id\":1476931190419836930,\"sort\":0,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:20:16'); INSERT INTO `sys_oper_log` VALUES (1134, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"实现\",\"top\":2,\"createTime\":1640962854000,\"englishWord\":\"implement\",\"isCollect\":1,\"id\":1476931373052416002,\"sort\":0,\"content\":\"\",\"lookCount\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:20:20'); INSERT INTO `sys_oper_log` VALUES (1135, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"top\":2,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":0,\"content\":\"\",\"lookCount\":39}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:20:22'); INSERT INTO `sys_oper_log` VALUES (1136, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类\",\"top\":2,\"createTime\":1640879848000,\"englishWord\":\"class\",\"isCollect\":1,\"id\":1476583220205801474,\"sort\":0,\"content\":\"\",\"lookCount\":45}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:20:26'); INSERT INTO `sys_oper_log` VALUES (1137, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"对象\",\"top\":2,\"createTime\":1640963889000,\"englishWord\":\"object\",\"isCollect\":1,\"id\":1476935715620868098,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:20:28'); INSERT INTO `sys_oper_log` VALUES (1138, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"抽象\",\"top\":2,\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"isCollect\":1,\"id\":1476550839990173697,\"sort\":0,\"content\":\"\",\"lookCount\":28}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:20:31'); INSERT INTO `sys_oper_log` VALUES (1139, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"主题\",\"top\":2,\"createTime\":1640964063166,\"englishWord\":\"subject\",\"isCollect\":1,\"id\":1476936444410548225,\"sort\":0,\"content\":\"subject\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:21:03'); INSERT INTO `sys_oper_log` VALUES (1140, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"性质\",\"top\":2,\"createTime\":1640964074797,\"englishWord\":\"propertites\",\"isCollect\":1,\"id\":1476936493223858177,\"sort\":0,\"content\":\"propertites\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:21:14'); INSERT INTO `sys_oper_log` VALUES (1141, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476936493223858177', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:21:38'); INSERT INTO `sys_oper_log` VALUES (1142, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"服务\",\"top\":2,\"createTime\":1640964134688,\"englishWord\":\"service\",\"isCollect\":1,\"id\":1476936744378781698,\"sort\":0,\"content\":\"service\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:22:14'); INSERT INTO `sys_oper_log` VALUES (1143, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"映射器\",\"top\":2,\"createTime\":1640964145043,\"englishWord\":\"mapper\",\"isCollect\":1,\"id\":1476936787844354050,\"sort\":0,\"content\":\"mapper\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:22:25'); INSERT INTO `sys_oper_log` VALUES (1144, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"加载\",\"top\":2,\"createTime\":1640964191057,\"englishWord\":\"loading\",\"isCollect\":1,\"id\":1476936980862029825,\"sort\":0,\"content\":\"loading\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:23:11'); INSERT INTO `sys_oper_log` VALUES (1145, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我活了很久了,ray.我学会了一件事,命运并不决定一切,人们可以选择\",\"createTime\":1640964218035,\"id\":1476937093982322690,\"source\":\"全民超人汉考克(Hancock)\",\"type\":3}}', 0, '', '2021-12-31 23:23:38'); INSERT INTO `sys_oper_log` VALUES (1146, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"业务\",\"top\":2,\"createTime\":1640964242423,\"englishWord\":\"business\",\"isCollect\":1,\"id\":1476937196273094658,\"sort\":0,\"content\":\"business\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:24:02'); INSERT INTO `sys_oper_log` VALUES (1147, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"常量\",\"top\":2,\"createTime\":1640964253056,\"englishWord\":\"const\",\"isCollect\":1,\"id\":1476937240871129089,\"sort\":0,\"content\":\"const\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:24:13'); INSERT INTO `sys_oper_log` VALUES (1148, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"常见的\",\"top\":2,\"createTime\":1640964260642,\"englishWord\":\"common\",\"isCollect\":1,\"id\":1476937272714285057,\"sort\":0,\"content\":\"common\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:24:20'); INSERT INTO `sys_oper_log` VALUES (1149, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"遥远的\",\"top\":2,\"createTime\":1640964276090,\"englishWord\":\"remote\",\"isCollect\":1,\"id\":1476937337516281858,\"sort\":0,\"content\":\"remote\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:24:36'); INSERT INTO `sys_oper_log` VALUES (1150, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"口述\",\"top\":2,\"createTime\":1640964294974,\"englishWord\":\"dict\",\"isCollect\":1,\"id\":1476937416721518593,\"sort\":0,\"content\":\"dict\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:24:54'); INSERT INTO `sys_oper_log` VALUES (1151, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1476937416721518593', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:25:04'); INSERT INTO `sys_oper_log` VALUES (1152, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"记录\",\"top\":2,\"createTime\":1640964322194,\"englishWord\":\"record\",\"isCollect\":1,\"id\":1476937530873696258,\"sort\":0,\"content\":\"record\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:25:22'); INSERT INTO `sys_oper_log` VALUES (1153, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"写\",\"top\":2,\"createTime\":1640964345320,\"englishWord\":\"writing\",\"isCollect\":1,\"id\":1476937627887947778,\"sort\":0,\"content\":\"writing\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:25:45'); INSERT INTO `sys_oper_log` VALUES (1154, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"数据\",\"top\":2,\"createTime\":1640964458761,\"englishWord\":\"data\",\"isCollect\":1,\"id\":1476938103647850497,\"sort\":0,\"content\":\"data\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:27:38'); INSERT INTO `sys_oper_log` VALUES (1155, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"工具\",\"top\":2,\"createTime\":1640964468916,\"englishWord\":\"tool\",\"isCollect\":1,\"id\":1476938146253590530,\"sort\":0,\"content\":\"tool\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:27:48'); INSERT INTO `sys_oper_log` VALUES (1156, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"跑龙套\",\"top\":2,\"createTime\":1640964475084,\"englishWord\":\"util\",\"isCollect\":1,\"id\":1476938172145029121,\"sort\":0,\"content\":\"util\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:27:55'); INSERT INTO `sys_oper_log` VALUES (1157, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"创建\",\"top\":2,\"createTime\":1640964490228,\"englishWord\":\"create\",\"isCollect\":1,\"id\":1476938235655180289,\"sort\":0,\"content\":\"create\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:28:10'); INSERT INTO `sys_oper_log` VALUES (1158, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"插入\",\"top\":2,\"createTime\":1640964500263,\"englishWord\":\"insert\",\"isCollect\":1,\"id\":1476938277765992449,\"sort\":0,\"content\":\"insert\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:28:20'); INSERT INTO `sys_oper_log` VALUES (1159, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"使现代化\",\"top\":2,\"createTime\":1640964510288,\"englishWord\":\"update\",\"isCollect\":1,\"id\":1476938319759364097,\"sort\":0,\"content\":\"update\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:28:30'); INSERT INTO `sys_oper_log` VALUES (1160, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"删除\",\"top\":2,\"createTime\":1640964519757,\"englishWord\":\"delete\",\"isCollect\":1,\"id\":1476938359533948929,\"sort\":0,\"content\":\"delete\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:28:39'); INSERT INTO `sys_oper_log` VALUES (1161, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"删除\",\"top\":2,\"createTime\":1640964529808,\"englishWord\":\"remove\",\"isCollect\":1,\"id\":1476938401682509826,\"sort\":0,\"content\":\"remove\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:28:49'); INSERT INTO `sys_oper_log` VALUES (1162, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"收集\",\"top\":2,\"createTime\":1640964548567,\"englishWord\":\"collect\",\"isCollect\":1,\"id\":1476938480355069953,\"sort\":0,\"content\":\"collect\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2021-12-31 23:29:08'); INSERT INTO `sys_oper_log` VALUES (1163, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"成长就是这样,不断告别,不断遇见。\",\"createTime\":1640964627236,\"id\":1476938810325073922,\"source\":\"佚名\",\"type\":1}}', 0, '', '2021-12-31 23:30:27'); INSERT INTO `sys_oper_log` VALUES (1164, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"寒冰不能断流水,枯木也可再逢春。\",\"createTime\":1640964630900,\"id\":1476938825693003777,\"source\":\"冒险王\",\"type\":3}}', 0, '', '2021-12-31 23:30:30'); INSERT INTO `sys_oper_log` VALUES (1165, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我算过命!算命的说我是一将功成万骨枯,可是我不同意,我认为出来混的,是生是死应该由自己决定!\",\"createTime\":1640964636015,\"id\":1476938847092342787,\"source\":\"无间道\",\"type\":3}}', 0, '', '2021-12-31 23:30:36'); INSERT INTO `sys_oper_log` VALUES (1166, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"早晨是一只花鹿,踩到我额上,世界多么好。\",\"createTime\":1640964637168,\"id\":1476938851974512643,\"source\":\"海子\",\"type\":1}}', 0, '', '2021-12-31 23:30:37'); INSERT INTO `sys_oper_log` VALUES (1167, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生一世,总有些片断当时看着无关紧要,而事实上却牵动了大局。\",\"createTime\":1640964638415,\"id\":1476938857213198337,\"source\":\"萨克雷\",\"type\":4}}', 0, '', '2021-12-31 23:30:38'); INSERT INTO `sys_oper_log` VALUES (1168, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"对一个人最好的就是放下,无论再想念也不会去打扰。终有一天你会知道,有时失去比拥有更踏实。\",\"createTime\":1640970002601,\"id\":1476961356219080706,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 01:00:02'); INSERT INTO `sys_oper_log` VALUES (1169, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"是你眉眼动人,惹我半生风雪。\",\"createTime\":1640970382338,\"id\":1476962948943110147,\"source\":\"往后余生\",\"type\":2}}', 0, '', '2022-01-01 01:06:22'); INSERT INTO `sys_oper_log` VALUES (1170, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"环境愈艰难困苦,就愈需要坚定的毅力和信心,而且,懈怠的害处就愈大。\",\"createTime\":1640970385894,\"id\":1476962963858055170,\"source\":\"列夫·托尔斯泰\",\"type\":4}}', 0, '', '2022-01-01 01:06:25'); INSERT INTO `sys_oper_log` VALUES (1171, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"傻逼\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"idiot\",\"src\":\"傻逼\"}]}}', 0, '', '2022-01-01 01:06:34'); INSERT INTO `sys_oper_log` VALUES (1172, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“他可能是真的喜欢你 但这一点也不妨碍他喜欢别人 其实最遗憾的是从来都没有感受过那种被人坚定选择的感觉 就像是他只是刚好需要 你只是刚好在”\",\"createTime\":1641020506466,\"id\":1477173184777895937,\"source\":\"需要人陪\",\"type\":2}}', 0, '', '2022-01-01 15:01:46'); INSERT INTO `sys_oper_log` VALUES (1173, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"系统\",\"top\":2,\"createTime\":1641020540377,\"englishWord\":\"system\",\"isCollect\":1,\"id\":1477173327040335874,\"sort\":0,\"content\":\"system\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 15:02:20'); INSERT INTO `sys_oper_log` VALUES (1174, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"系统\",\"top\":2,\"createTime\":1641021141230,\"englishWord\":\"system\",\"isCollect\":1,\"id\":1477175847196286977,\"sort\":0,\"content\":\"system\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 15:12:21'); INSERT INTO `sys_oper_log` VALUES (1175, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"系统\",\"top\":2,\"createTime\":1641021175941,\"englishWord\":\"system\",\"isCollect\":1,\"id\":1477175992788967425,\"sort\":0,\"content\":\"system\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 15:12:55'); INSERT INTO `sys_oper_log` VALUES (1176, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"system\"}', '', 1, 'One record is expected, but the query result is multiple records', '2022-01-01 15:15:37'); INSERT INTO `sys_oper_log` VALUES (1177, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1477173327040335874', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 15:16:04'); INSERT INTO `sys_oper_log` VALUES (1178, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1477175847196286977', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 15:16:10'); INSERT INTO `sys_oper_log` VALUES (1179, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"system\"}', '', 1, '该单词已存在!!!', '2022-01-01 15:16:18'); INSERT INTO `sys_oper_log` VALUES (1180, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":1,\"isCollect\":1,\"content\":\"system\"}', '', 1, '该单词已存在!!!!', '2022-01-01 15:17:18'); INSERT INTO `sys_oper_log` VALUES (1181, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"和巨星弟弟连麦的时候就有听到这首歌了 好好做音乐的人越来越少了喜欢巨星真的是很值得的一件事\",\"createTime\":1641022591680,\"id\":1477181930769965059,\"source\":\"重演\",\"type\":2}}', 0, '', '2022-01-01 15:36:31'); INSERT INTO `sys_oper_log` VALUES (1182, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"别聊,别习惯,别喜欢,别答应,别在一起。\",\"createTime\":1641022634091,\"id\":1477182108717506561,\"source\":\"还是分开\",\"type\":2}}', 0, '', '2022-01-01 15:37:14'); INSERT INTO `sys_oper_log` VALUES (1183, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"水分蒸发掉,而让我不那么容易流泪,我怎么可以流泪呢?在阿美的心中里面,我可是一个很酷的男人。\",\"createTime\":1641022840409,\"id\":1477182974069530626,\"source\":\"大腕\",\"type\":3}}', 0, '', '2022-01-01 15:40:40'); INSERT INTO `sys_oper_log` VALUES (1184, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"说好一辈子,少一年,一个月,一天,一个时辰,都算不得一辈子。\",\"createTime\":1641022939972,\"id\":1477183391671214082,\"source\":\"霸王别姬\",\"type\":3}}', 0, '', '2022-01-01 15:42:19'); INSERT INTO `sys_oper_log` VALUES (1185, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"勇士之珠:他会保护你的荣誉和勇敢\",\"createTime\":1641023100630,\"id\":1477184065498734594,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2022-01-01 15:45:00'); INSERT INTO `sys_oper_log` VALUES (1186, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“就算世界与我为敌,我超喜欢你” “百无禁忌万夫莫及,我超喜欢你” 沈先生我超级喜欢您的❤\",\"createTime\":1641023182680,\"id\":1477184409658155010,\"source\":\"超喜欢你\",\"type\":2}}', 0, '', '2022-01-01 15:46:22'); INSERT INTO `sys_oper_log` VALUES (1187, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不是不懂,只是不爱罢了。他最大的谎言,就是骗我,也骗自己我是他的命中注定。但其实,他是懂的。一句对不起如果有用的话,所有人都不必痴迷于爱情了。\",\"createTime\":1641023192320,\"id\":1477184450087051266,\"source\":\"他不懂\",\"type\":2}}', 0, '', '2022-01-01 15:46:32'); INSERT INTO `sys_oper_log` VALUES (1188, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"天亮以后,不管雨是否还在下,我们都收拾好自己,带着笑容,重新出发好不好?\",\"createTime\":1641023249296,\"id\":1477184689074298881,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 15:47:29'); INSERT INTO `sys_oper_log` VALUES (1189, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这里就像是一座金山 充满了商机跟梦想--和尚\",\"createTime\":1640794536000,\"id\":1476225395029921795,\"source\":\"艋舺\",\"type\":3}}', 0, '', '2022-01-01 15:48:33'); INSERT INTO `sys_oper_log` VALUES (1190, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一首歌下来发现能唱的只有一句“I’m a loser”\",\"createTime\":1641023345544,\"id\":1477185092767670273,\"source\":\"LOSER\",\"type\":2}}', 0, '', '2022-01-01 15:49:05'); INSERT INTO `sys_oper_log` VALUES (1191, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"但愿朝阳长照我土,莫忘烈士鲜血满地。\",\"createTime\":1641023424524,\"id\":1477185424012828673,\"source\":\"男儿当自强\",\"type\":3}}', 0, '', '2022-01-01 15:50:24'); INSERT INTO `sys_oper_log` VALUES (1192, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我左青龙,右白虎,老牛在腰间,龙头在胸口,人挡杀人,佛挡杀佛!\",\"createTime\":1641023577974,\"id\":1477186067628777474,\"source\":\"唐伯虎点秋香\",\"type\":3}}', 0, '', '2022-01-01 15:52:57'); INSERT INTO `sys_oper_log` VALUES (1193, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"大哥是对的!兵不厌诈,这是战争!安心上路!\",\"createTime\":1641023632197,\"id\":1477186295048134657,\"source\":\"投名状\",\"type\":3}}', 0, '', '2022-01-01 15:53:52'); INSERT INTO `sys_oper_log` VALUES (1194, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Giosué Orefice:(以成人角度讲述)这是一个简单的故事,但讲起来却不那么轻松。\",\"createTime\":1641023666794,\"id\":1477186440171053058,\"source\":\"美丽人生(Kingnet)\",\"type\":3}}', 0, '', '2022-01-01 15:54:26'); INSERT INTO `sys_oper_log` VALUES (1195, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我最怕发现我有想要的东西了\",\"createTime\":1641023939485,\"id\":1477187583932588034,\"source\":\"太多\",\"type\":2}}', 0, '', '2022-01-01 15:58:59'); INSERT INTO `sys_oper_log` VALUES (1196, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"方法\",\"top\":2,\"createTime\":1641024558452,\"englishWord\":\"method\",\"isCollect\":1,\"id\":1477190180047413250,\"sort\":0,\"content\":\"method\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 16:09:18'); INSERT INTO `sys_oper_log` VALUES (1197, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生而自由/却无往不在枷锁之中。\",\"createTime\":1640678401000,\"id\":1475738291050631169,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 16:25:33'); INSERT INTO `sys_oper_log` VALUES (1198, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"嘴巴有时候当成装饰更合适,特别是在你不会说话的时候。\",\"createTime\":1640941302000,\"id\":1476840976183635970,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 16:26:25'); INSERT INTO `sys_oper_log` VALUES (1199, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"2015格莱美最佳乡村歌手\",\"createTime\":1641025690919,\"id\":1477194929970831361,\"source\":\"Waiting For Love\",\"type\":2}}', 0, '', '2022-01-01 16:28:10'); INSERT INTO `sys_oper_log` VALUES (1200, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个好好过生活的人,他的时间应该分做三部分:劳动享乐休息或消遣。\",\"createTime\":1641025935092,\"id\":1477195954110816257,\"source\":\"佚名\",\"type\":4}}', 0, '', '2022-01-01 16:32:15'); INSERT INTO `sys_oper_log` VALUES (1201, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好久不见,我们谈谈理想:我的理想是面朝大海也面朝你,种植葡萄也生产诗歌,酿造美酒也酿造宿醉,养小孩也养狗,放飞风筝也放飞自己,每天都在同一条街上遛弯也经常环游世界,时时怀有一个无限大无限美好的梦,但是每天早上都要自己煎鸡蛋和煮咖啡。 \",\"createTime\":1641027410761,\"id\":1477202143511015425,\"source\":\"我的名字\",\"type\":2}}', 0, '', '2022-01-01 16:56:50'); INSERT INTO `sys_oper_log` VALUES (1202, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"上天不会给人再来一次的机会,因为再来一次结果并不会有什么不同。\",\"createTime\":1641027469895,\"id\":1477202391545376769,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 16:57:49'); INSERT INTO `sys_oper_log` VALUES (1203, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"诚实豆沙包,吃完了30秒之内说的话会诚诚实实,是90年代新科技的产品!\",\"createTime\":1641027510611,\"id\":1477202562316464129,\"source\":\"整人专家\",\"type\":3}}', 0, '', '2022-01-01 16:58:30'); INSERT INTO `sys_oper_log` VALUES (1204, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"昨日,我菲律宾工人走过市场,听到有个卖鱼的说有有个人叫做赌神,就是你。哈哈……我当场吓一跳,然后就大笑。这个世界,居然有人自称为赌神,这分明是当我笨蛋!我就叫赌圣,你赌牌都要戴隐形液晶体眼镜,我告诉你我可以直接看穿副牌,这就叫特异功能。这里有只a士,只要我轻轻一搓,就即刻变成一只皱了的a士,因为我还没发功嘛。我发功后还能变副麻将出。你话我瞎掰呀,我还说你虎烂\",\"createTime\":1641027608899,\"id\":1477202974570409985,\"source\":\"赌侠\",\"type\":3}}', 0, '', '2022-01-01 17:00:09'); INSERT INTO `sys_oper_log` VALUES (1205, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"若是你的快乐感不再那么强烈,那么你的痛苦也一样不再那么揪心。\",\"createTime\":1641027687295,\"id\":1477203303353491458,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 17:01:27'); INSERT INTO `sys_oper_log` VALUES (1206, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没有油画、雕塑、音乐、诗歌以及各种自然美所引起的情感,人生乐趣会失掉一半。\",\"createTime\":1641027717450,\"id\":1477203429832728577,\"source\":\"斯宾塞\",\"type\":4}}', 0, '', '2022-01-01 17:01:57'); INSERT INTO `sys_oper_log` VALUES (1207, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"牙疼,特别疼,你的喜糖就不吃了 不胜酒力,你的喜酒就不喝了 健忘,特别健忘,你叫什么也忘了 姑娘那句爱我怕是不作数了\",\"createTime\":1641027735759,\"id\":1477203506643017730,\"source\":\"盗将行\",\"type\":2}}', 0, '', '2022-01-01 17:02:15'); INSERT INTO `sys_oper_log` VALUES (1208, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"友谊既不需要奴隶,也不允许有统治者,友谊最喜欢平等。\",\"createTime\":1641027739203,\"id\":1477203521109172225,\"source\":\"冈察洛夫(俄国)\",\"type\":4}}', 0, '', '2022-01-01 17:02:19'); INSERT INTO `sys_oper_log` VALUES (1209, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"劳动是人类的命运。\",\"createTime\":1641027750677,\"id\":1477203569180090370,\"source\":\"荷马\",\"type\":4}}', 0, '', '2022-01-01 17:02:30'); INSERT INTO `sys_oper_log` VALUES (1210, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\" 肚子疼就用手捂着 拧不开瓶盖就使劲拧 冷就加衣服 怕黑就自己鼓励自己 走夜路就听歌 一个人又不是不行\",\"createTime\":1641027753564,\"id\":1477203581301628929,\"source\":\"一个\",\"type\":2}}', 0, '', '2022-01-01 17:02:33'); INSERT INTO `sys_oper_log` VALUES (1211, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人可以退役,但精神不可以退役。\",\"createTime\":1641027756767,\"id\":1477203594752761858,\"source\":\"阿凡达\",\"type\":3}}', 0, '', '2022-01-01 17:02:36'); INSERT INTO `sys_oper_log` VALUES (1212, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"希望花花能不断在音乐上有新的突破,粉丝与你同在[亲亲] 花花的思想和精神世界真的比一般同龄人要成熟和纯粹许多。对自己的音乐也一直都是很自信并且很明确,就像他所说的“如果我每天都在思考保持初心的话,那就证明我已经没有初心了。” 活很通透一人,有自己对世界深刻的观察力和独特的理解方式。\",\"createTime\":1641027759086,\"id\":1477203604491935746,\"source\":\"好想爱这个世界啊\",\"type\":2}}', 0, '', '2022-01-01 17:02:39'); INSERT INTO `sys_oper_log` VALUES (1213, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"万夫一力,天下无敌。\",\"createTime\":1641027761567,\"id\":1477203614872838145,\"source\":\"刘基\",\"type\":4}}', 0, '', '2022-01-01 17:02:41'); INSERT INTO `sys_oper_log` VALUES (1214, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你想离开也请你告诉我,不要敷衍,让我有期盼,祝你前程似锦\",\"createTime\":1641027763921,\"id\":1477203624725258242,\"source\":\"老友记\",\"type\":2}}', 0, '', '2022-01-01 17:02:43'); INSERT INTO `sys_oper_log` VALUES (1215, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每个人都有属于自己的时刻表,别让任何人打乱你人生的节奏。\",\"createTime\":1641027766392,\"id\":1477203635097772033,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 17:02:46'); INSERT INTO `sys_oper_log` VALUES (1216, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"星河滚烫你是人间理想\",\"createTime\":1641027851127,\"id\":1477203990502121473,\"source\":\"欧若拉\",\"type\":2}}', 0, '', '2022-01-01 17:04:11'); INSERT INTO `sys_oper_log` VALUES (1217, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"花满市,月侵衣,少年情事老来悲。\",\"createTime\":1641027854127,\"id\":1477204003085033474,\"source\":\"谁 (Live版)\",\"type\":2}}', 0, '', '2022-01-01 17:04:14'); INSERT INTO `sys_oper_log` VALUES (1218, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们要学会珍惜我们生活的每一天,因为,这每一天的开始,都将是我们余下生命之中的第一天。除非我们即将死去。\",\"createTime\":1641027856771,\"id\":1477204014212521985,\"source\":\"美国心·玫瑰情( 美国美人)American beauty\",\"type\":3}}', 0, '', '2022-01-01 17:04:16'); INSERT INTO `sys_oper_log` VALUES (1219, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"【夕阳武士】武士:看来我不应该来。紫霞:现在才知道太晚了,武士:留下点回忆行不行?紫霞:我不要回忆,要的话留下你的人。武士:这样只是得到我的肉体,并不能得到我的灵魂,我已经有爱人了,我们不会有结果,你让我走吧。紫霞:好,我让你走,不过临走前你要亲我一下。(群众:亲啊…亲啊…)武士:我再怎么说也是个夕阳武士,妳叫我亲我就亲,那我的形象不是全毁了?!紫霞:你说谎\",\"createTime\":1641027928119,\"id\":1477204313471918082,\"source\":\"齐天大圣西游记\",\"type\":3}}', 0, '', '2022-01-01 17:05:28'); INSERT INTO `sys_oper_log` VALUES (1220, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"【一万年】曾经有一份真诚的爱摆在我的面前,但是我没有珍惜,等到失去的时候才后悔莫及,尘世间最痛苦的事莫过于此。如果上天可以给我个机会再来一次的话,我会对这个女孩说我爱她,如果非要在这份爱加上一个期限,我希望是一万年......\",\"createTime\":1641028039144,\"id\":1477204779098382337,\"source\":\"齐天大圣西游记\",\"type\":3}}', 0, '', '2022-01-01 17:07:19'); INSERT INTO `sys_oper_log` VALUES (1221, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你还好?\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Are you okay?\",\"src\":\"你还好?\"}]}}', 0, '', '2022-01-01 17:07:35'); INSERT INTO `sys_oper_log` VALUES (1222, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你还好?!\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":10,\"errorCode\":0,\"transResult\":[{\"dst\":\"Are you ok?\",\"src\":\"你还好?\"},{\"dst\":\"!\",\"src\":\"!\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-01 17:07:44'); INSERT INTO `sys_oper_log` VALUES (1223, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"看不到的我先听一下音乐,平缓一下心情orz\",\"createTime\":1641028122912,\"id\":1477205130446839809,\"source\":\"愛にできることはまだあるかい\",\"type\":2}}', 0, '', '2022-01-01 17:08:42'); INSERT INTO `sys_oper_log` VALUES (1224, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"路在人走,业在人创,事在人为。\",\"createTime\":1641028557673,\"id\":1477206954016972801,\"source\":\"谚语\",\"type\":4}}', 0, '', '2022-01-01 17:15:57'); INSERT INTO `sys_oper_log` VALUES (1225, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"ojbk\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"ojbk\",\"src\":\"ojbk\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-01-01 17:16:09'); INSERT INTO `sys_oper_log` VALUES (1226, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"哈哈哈哈\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Ha ha ha ha\",\"src\":\"哈哈哈哈\"}]}}', 0, '', '2022-01-01 17:16:15'); INSERT INTO `sys_oper_log` VALUES (1227, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"天才就是劳动,人的天赋就像火花,它可以熄灭,也可以燃烧起来,而逼它燃烧成熊熊大火的方法只有一个,就是劳动再劳动。\",\"createTime\":1641029794252,\"id\":1477212140567433218,\"source\":\"高尔基\",\"type\":4}}', 0, '', '2022-01-01 17:36:34'); INSERT INTO `sys_oper_log` VALUES (1228, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"希望十年之后,那个陪你吃完年夜饭又一起看春晚,在一起迎接新年,一起过情人节的人 是你爱的 又爱你的人\",\"createTime\":1641029804901,\"id\":1477212185274519554,\"source\":\"拾忆\",\"type\":2}}', 0, '', '2022-01-01 17:36:44'); INSERT INTO `sys_oper_log` VALUES (1229, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"什么是权利?当一个人犯了罪,法官依法判他死刑。这不叫权利,这叫正义。而当一个人同样犯了罪,皇帝可以判他死刑,也可以不判他死刑,于是赦免了他,这就叫权利!\",\"createTime\":1641030154717,\"id\":1477213652500832258,\"source\":\"辛德勒名单(Schindler\'s list)\",\"type\":3}}', 0, '', '2022-01-01 17:42:34'); INSERT INTO `sys_oper_log` VALUES (1230, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"《人间失格》里有这样一句话:“若能避开猛烈的欢喜,自然也不会有悲痛的来袭”\",\"createTime\":1641030157381,\"id\":1477213663670263810,\"source\":\"下坠Falling\",\"type\":2}}', 0, '', '2022-01-01 17:42:37'); INSERT INTO `sys_oper_log` VALUES (1231, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"路在人走,业在人创,事在人为。\",\"createTime\":1640863080000,\"id\":1476512891001282562,\"source\":\"谚语\",\"type\":4}}', 0, '', '2022-01-01 18:06:50'); INSERT INTO `sys_oper_log` VALUES (1232, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"后来明白我是鲸,深海独自泅游,开始潆洄人间朝与暮,祈雨又盼晴。\",\"createTime\":1641031690012,\"id\":1477220091986403329,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 18:08:10'); INSERT INTO `sys_oper_log` VALUES (1233, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"高三那会,我跟我的初恋互相暗恋一年,她最爱的歌曲。高考后我跟她表白,直到现在。我们很好,准备16年结婚纪念我们的7年之痒\",\"createTime\":1641031732203,\"id\":1477220268939894785,\"source\":\"红色高跟鞋\",\"type\":2}}', 0, '', '2022-01-01 18:08:52'); INSERT INTO `sys_oper_log` VALUES (1234, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"自古圣贤,盛德大业,未有不由学而成者也。\",\"createTime\":1641031744427,\"id\":1477220320177512449,\"source\":\"(清)黄宗羲\",\"type\":4}}', 0, '', '2022-01-01 18:09:04'); INSERT INTO `sys_oper_log` VALUES (1235, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你以为我不知道你想什么?赵薇:说什么,讨厌啦!周:你想吓我是吓不倒的,我什么都怕,就不怕鬼!\",\"createTime\":1641032253508,\"id\":1477222455464124417,\"source\":\"少林足球\",\"type\":3}}', 0, '', '2022-01-01 18:17:33'); INSERT INTO `sys_oper_log` VALUES (1236, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"私人\",\"top\":2,\"createTime\":1641032268625,\"englishWord\":\"private\",\"isCollect\":1,\"id\":1477222518877769730,\"sort\":0,\"content\":\"private\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 18:17:48'); INSERT INTO `sys_oper_log` VALUES (1237, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"公共\",\"top\":2,\"createTime\":1641032649670,\"englishWord\":\"public\",\"isCollect\":1,\"id\":1477224117046005761,\"sort\":0,\"content\":\"public\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 18:24:09'); INSERT INTO `sys_oper_log` VALUES (1238, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世如明镜,人在这里头走,四面八方都是自己\",\"createTime\":1641032694214,\"id\":1477224303910674433,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 18:24:54'); INSERT INTO `sys_oper_log` VALUES (1239, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每次分别时最令人期待的都是下次见面,当我每次踏上旅途,为你翻山越岭也无心在意沿途风景,阳光跟随着我,思念在催促着我,直到温柔月光洒满夜空,直到我们都默契地说出那句“到时见”。我们一定会再见的,不管多久多远,我都一定会认出你,奔向你,拥抱你。\",\"createTime\":1641033257890,\"id\":1477226668126593025,\"source\":\"到时见\",\"type\":2}}', 0, '', '2022-01-01 18:34:17'); INSERT INTO `sys_oper_log` VALUES (1240, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人类的悲欢也许并不相通,人类却总一样的行色匆匆。\",\"createTime\":1641033259912,\"id\":1477226676620058626,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 18:34:19'); INSERT INTO `sys_oper_log` VALUES (1241, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你还好吗!!\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Are you all right?\",\"src\":\"你还好吗!!\"}]}}', 0, '', '2022-01-01 18:34:41'); INSERT INTO `sys_oper_log` VALUES (1242, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"愿你是能披荆斩棘的女英雄,也是被人疼爱的小朋友。\",\"createTime\":1641033295963,\"id\":1477226827816329217,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 18:34:55'); INSERT INTO `sys_oper_log` VALUES (1243, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"druid\",\"orderNum\":\"4\",\"menuName\":\"平台预警\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"warning\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 22:06:16'); INSERT INTO `sys_oper_log` VALUES (1244, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/api_record', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 22:06:39'); INSERT INTO `sys_oper_log` VALUES (1245, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"textarea\",\"orderNum\":\"1\",\"menuName\":\"API预警\",\"params\":{},\"parentId\":2037,\"isCache\":\"0\",\"path\":\"apiwarning\",\"component\":\"warning/apiwarning/index\",\"children\":[],\"createTime\":1641046088000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2038,\"menuType\":\"C\",\"perms\":\"warning:apiwarning:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 22:08:38'); INSERT INTO `sys_oper_log` VALUES (1246, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"textarea\",\"orderNum\":\"1\",\"menuName\":\"API预警\",\"params\":{},\"parentId\":2037,\"isCache\":\"0\",\"path\":\"apiwarning\",\"component\":\"business/warning/apiwarning/index\",\"children\":[],\"createTime\":1641046088000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2038,\"menuType\":\"C\",\"perms\":\"warning:apiwarning:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 22:09:05'); INSERT INTO `sys_oper_log` VALUES (1247, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2040', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 22:09:22'); INSERT INTO `sys_oper_log` VALUES (1248, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2042', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 22:09:27'); INSERT INTO `sys_oper_log` VALUES (1249, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/api_record', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 22:15:01'); INSERT INTO `sys_oper_log` VALUES (1250, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":111,\"apiName\":\"天行-朋友圈\",\"dayCount\":9,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":99,\"updateTime\":1641046917967,\"id\":1477203303311577090,\"totalCount\":14}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 22:21:58'); INSERT INTO `sys_oper_log` VALUES (1251, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":111,\"apiName\":\"天行-朋友圈\",\"dayCount\":9,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":92,\"updateTime\":1641047155084,\"id\":1477203303311577090,\"totalCount\":14}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 22:25:55'); INSERT INTO `sys_oper_log` VALUES (1252, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我也想有一个男孩子真的看得见我对他的好 陪他打游戏 陪他吃饭 陪他度过最艰难的时刻 不嫌弃他的任何 我保证 我会用心爱你 只要你也用心爱我 我也想做一个被保护的小宝贝\",\"createTime\":1640844541000,\"id\":1476435132608032770,\"source\":\"可不可以\",\"type\":2}}', 0, '', '2022-01-01 22:27:15'); INSERT INTO `sys_oper_log` VALUES (1253, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“我喜欢的少年打天上来 他无意掀翻烛火 点燃我双眸盛满的暮色”\",\"createTime\":1641047603300,\"id\":1477286837141319681,\"source\":\"如果的事\",\"type\":2}}', 0, '', '2022-01-01 22:33:23'); INSERT INTO `sys_oper_log` VALUES (1254, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"眉眼温柔,日子自然也变得可爱。\",\"createTime\":1641047608783,\"id\":1477286860168048641,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 22:33:28'); INSERT INTO `sys_oper_log` VALUES (1255, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好读书,不求甚解。\",\"createTime\":1641050875547,\"id\":1477300561939988482,\"source\":\"陶渊明\",\"type\":4}}', 0, '', '2022-01-01 23:27:55'); INSERT INTO `sys_oper_log` VALUES (1256, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"铁勺弟弟和草莓哥都超顶,又是一首听的我心稀碎的歌[多多大哭]\",\"createTime\":1641050878835,\"id\":1477300575726665729,\"source\":\"冬眠\",\"type\":2}}', 0, '', '2022-01-01 23:27:58'); INSERT INTO `sys_oper_log` VALUES (1257, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你还是我一碰就痛的软肋,尽管我用全部骨骼去逞强。\",\"createTime\":1641050882515,\"id\":1477300591161704449,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:28:02'); INSERT INTO `sys_oper_log` VALUES (1258, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只要太阳明天还会升起,一切都还来得及。\",\"createTime\":1641050884143,\"id\":1477300597990031362,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:28:04'); INSERT INTO `sys_oper_log` VALUES (1259, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"船头尺:老外唱大戏,Shall we dance dong dong dong …\",\"createTime\":1641050885353,\"id\":1477300603069333506,\"source\":\"秋天的童话\",\"type\":3}}', 0, '', '2022-01-01 23:28:05'); INSERT INTO `sys_oper_log` VALUES (1260, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要着急,最好的总会在不经意的时候出现。\",\"createTime\":1641050887029,\"id\":1477300610090598401,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:28:07'); INSERT INTO `sys_oper_log` VALUES (1261, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"把圈子变小,把语言变干净,把成绩往上提,把故事往心里收一收,现在想要的以后都会有。\",\"createTime\":1641050888477,\"id\":1477300616159756290,\"source\":\"绊\",\"type\":2}}', 0, '', '2022-01-01 23:28:08'); INSERT INTO `sys_oper_log` VALUES (1262, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"夏花绚烂的时光,心灵的绿芜深处,偶来的一纸感念,流年里轻轻浅浅的印记,都是与自己心情有关的经历。安然静好的岁月,不知前方有多远,我只希望,能够漫过生命的长度,很远很远。\",\"createTime\":1641050890758,\"id\":1477300625768906754,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:28:10'); INSERT INTO `sys_oper_log` VALUES (1263, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“真正想给你的从来都不会问你要不要”\",\"createTime\":1641050892069,\"id\":1477300631259250689,\"source\":\"你的答案\",\"type\":2}}', 0, '', '2022-01-01 23:28:12'); INSERT INTO `sys_oper_log` VALUES (1264, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一定要为自己憧憬的那些事物努力一下,哪怕这力量微不足道,哪怕岁月迢迢。\",\"createTime\":1641050894380,\"id\":1477300640952287234,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:28:14'); INSERT INTO `sys_oper_log` VALUES (1265, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真正的爱情,绝对是天使的化身;一段孽缘,只是魔鬼的玩笑。\",\"createTime\":1641050895915,\"id\":1477300647352795138,\"source\":\"三毛\",\"type\":1}}', 0, '', '2022-01-01 23:28:15'); INSERT INTO `sys_oper_log` VALUES (1266, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"希望你做不悔恨的那个对缘分道谢的人,希望你做一个早睡早起的人。 \",\"createTime\":1641050897636,\"id\":1477300654617329666,\"source\":\"一个一个人\",\"type\":2}}', 0, '', '2022-01-01 23:28:17'); INSERT INTO `sys_oper_log` VALUES (1267, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一草一木都比人更有资格做人的老师,真实、自然、活在当下。\",\"createTime\":1641050899503,\"id\":1477300662410346497,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:28:19'); INSERT INTO `sys_oper_log` VALUES (1268, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"严师傅,我们打完了。\",\"createTime\":1641050900601,\"id\":1477300667028275202,\"source\":\"黄飞鸿\",\"type\":3}}', 0, '', '2022-01-01 23:28:20'); INSERT INTO `sys_oper_log` VALUES (1269, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"欢迎来到新加坡.\",\"createTime\":1641050900997,\"id\":1477300668689219585,\"source\":\"神鬼奇航(Pirates of the caribbean)\",\"type\":3}}', 0, '', '2022-01-01 23:28:21'); INSERT INTO `sys_oper_log` VALUES (1270, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"士有妒友,则贤交不亲,君有妨臣,则贤臣不至。\",\"createTime\":1641050901908,\"id\":1477300672476676098,\"source\":\"荀况\",\"type\":4}}', 0, '', '2022-01-01 23:28:21'); INSERT INTO `sys_oper_log` VALUES (1271, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"哪怕他只唱了几句,哪怕别人不仔细听都听不到他的声音,他还是要固执的在自己的名字后面写上他的名字,从他们两个名字写在一起的第一天起,就注定了一辈子不会分开[爱心]\",\"createTime\":1641050902269,\"id\":1477300674011791362,\"source\":\"怎么了,没什么\",\"type\":2}}', 0, '', '2022-01-01 23:28:22'); INSERT INTO `sys_oper_log` VALUES (1272, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你死得好看一点嘛,人家躺着死,你也躺着死,你不坐着死,他能死,一点创意都没有。\",\"createTime\":1641050903198,\"id\":1477300677941854209,\"source\":\"新少林五祖\",\"type\":3}}', 0, '', '2022-01-01 23:28:23'); INSERT INTO `sys_oper_log` VALUES (1273, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"迷失的人就迷失了/相遇的人会再相遇。\",\"createTime\":1641050933431,\"id\":1477300804706304002,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:28:53'); INSERT INTO `sys_oper_log` VALUES (1274, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"嗯哼\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"Uh huh\",\"src\":\"嗯哼\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-01 23:28:57'); INSERT INTO `sys_oper_log` VALUES (1275, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"嗯哼\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Uh huh\",\"src\":\"嗯哼\"}]}}', 0, '', '2022-01-01 23:29:00'); INSERT INTO `sys_oper_log` VALUES (1276, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"嗯哼\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Uh huh\",\"src\":\"嗯哼\"}]}}', 0, '', '2022-01-01 23:29:02'); INSERT INTO `sys_oper_log` VALUES (1277, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你好牛哦\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Hello, cow\",\"src\":\"你好牛哦\"}]}}', 0, '', '2022-01-01 23:29:08'); INSERT INTO `sys_oper_log` VALUES (1278, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"走完同一条街,回到两个世界。\",\"createTime\":1641051041844,\"id\":1477301259461132289,\"source\":\"王菲\",\"type\":1}}', 0, '', '2022-01-01 23:30:41'); INSERT INTO `sys_oper_log` VALUES (1279, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"阿达是否\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Is Ada\",\"src\":\"阿达是否\"}]}}', 0, '', '2022-01-01 23:31:54'); INSERT INTO `sys_oper_log` VALUES (1280, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"阿达是否\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Is Ada\",\"src\":\"阿达是否\"}]}}', 0, '', '2022-01-01 23:35:00'); INSERT INTO `sys_oper_log` VALUES (1281, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1641051401716,\"id\":1477302768831758337,\"source\":\"施企巴乔夫\",\"type\":4}}', 0, '', '2022-01-01 23:36:41'); INSERT INTO `sys_oper_log` VALUES (1282, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":479,\"apiName\":\"百度翻译\",\"dayCount\":7,\"apiUrl\":\"http://api.fanyi.baidu.com/api/trans/vip/translate\",\"createTime\":1641028056000,\"limitCount\":100,\"updateTime\":1641028576000,\"id\":1477204849147482113,\"totalCount\":8}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 23:36:59'); INSERT INTO `sys_oper_log` VALUES (1283, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":154,\"apiName\":\"有道翻译\",\"dayCount\":4,\"apiUrl\":\"http://fanyi.youdao.com/translate\",\"createTime\":1641028064000,\"limitCount\":100,\"updateTime\":1641028569000,\"id\":1477204885239468033,\"totalCount\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 23:37:02'); INSERT INTO `sys_oper_log` VALUES (1284, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":104,\"apiName\":\"天行-翻译字典\",\"dayCount\":2,\"apiUrl\":\"http://api.tianapi.com/enwords/index\",\"createTime\":1641032271000,\"limitCount\":100,\"updateTime\":1641032601000,\"id\":1477222527450963970,\"totalCount\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 23:37:04'); INSERT INTO `sys_oper_log` VALUES (1285, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"大三出来实习,一个人来到一个陌生的地方,每天一个人吃饭 一个人上班。刚来的时候有些坚持不下去了,突然有一天洗衣服的时候手机突然循环到了这首歌。眼泪突然就掉下来,或许这是老天在提醒我“还没走到最后 请别低着头” 不逃避以后要做的事。彩虹终究会浮现。\",\"createTime\":1641051462998,\"id\":1477303025892261889,\"source\":\"以后要做的事\",\"type\":2}}', 0, '', '2022-01-01 23:37:43'); INSERT INTO `sys_oper_log` VALUES (1286, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"大\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"big\",\"src\":\"大\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-01 23:39:15'); INSERT INTO `sys_oper_log` VALUES (1287, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我遇见谁会有怎样的对白,我爱的少年他在多远的未来。\",\"createTime\":1641051576373,\"id\":1477303501413089281,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:39:36'); INSERT INTO `sys_oper_log` VALUES (1288, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世间真假,皆我所求,苦与乐,都可奉酒。\",\"createTime\":1641051577558,\"id\":1477303506374950914,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:39:37'); INSERT INTO `sys_oper_log` VALUES (1289, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一天省一口,一年省一斗。\",\"createTime\":1641051578498,\"id\":1477303510317596673,\"source\":\"谚语\",\"type\":4}}', 0, '', '2022-01-01 23:39:38'); INSERT INTO `sys_oper_log` VALUES (1290, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生活不论好坏, 每一-天都是限量版。\",\"createTime\":1641051578763,\"id\":1477303511454253057,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:39:38'); INSERT INTO `sys_oper_log` VALUES (1291, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"祖灵的眼睛:保护你的身体健康成长\",\"createTime\":1641051579229,\"id\":1477303513400410114,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2022-01-01 23:39:39'); INSERT INTO `sys_oper_log` VALUES (1292, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我不是抛弃你,我是舍不得你!\",\"createTime\":1641051579469,\"id\":1477303514402848770,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2022-01-01 23:39:39'); INSERT INTO `sys_oper_log` VALUES (1293, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"走得太快,把灵魂丢掉该停下来等一等,等灵魂追赶上我们的步伐\",\"createTime\":1641051579619,\"id\":1477303515006828546,\"source\":\"云上的日子\",\"type\":3}}', 0, '', '2022-01-01 23:39:39'); INSERT INTO `sys_oper_log` VALUES (1294, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"失物招领处没有《寻雾启示》,哲学书架上没有《苏格兰没有底》,茶馆里没有《不如吃茶去》,报亭没有《青年晚报》,以为只是一场《梦游计》,没想到套路都是嵩哥《自定义》。\",\"createTime\":1641051579855,\"id\":1477303516000878593,\"source\":\"雅俗共赏\",\"type\":2}}', 0, '', '2022-01-01 23:39:39'); INSERT INTO `sys_oper_log` VALUES (1295, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"给我粮 我的兵,只能战死,不能饿死!我不死 就是要活着回来见你!\",\"createTime\":1641051580013,\"id\":1477303516667772929,\"source\":\"投名状\",\"type\":3}}', 0, '', '2022-01-01 23:39:40'); INSERT INTO `sys_oper_log` VALUES (1296, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不疯魔,不成活\",\"createTime\":1641051580251,\"id\":1477303517670211586,\"source\":\"霸王别姬\",\"type\":3}}', 0, '', '2022-01-01 23:39:40'); INSERT INTO `sys_oper_log` VALUES (1297, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"斯为泰山而不骄,汝为流水而不躁。\",\"createTime\":1641051580403,\"id\":1477303518345494530,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:39:40'); INSERT INTO `sys_oper_log` VALUES (1298, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"什么样的终点,才配的上这一路的颠沛流离。\",\"createTime\":1641051580635,\"id\":1477303519276630017,\"source\":\"另一个天堂\",\"type\":2}}', 0, '', '2022-01-01 23:39:40'); INSERT INTO `sys_oper_log` VALUES (1299, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"友谊既不需要奴隶,也不允许有统治者,友谊最喜欢平等。\",\"createTime\":1641051580796,\"id\":1477303519956107265,\"source\":\"冈察洛夫(俄国)\",\"type\":4}}', 0, '', '2022-01-01 23:39:40'); INSERT INTO `sys_oper_log` VALUES (1300, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在科学的入口处,正像在地狱的入口处一样,必须提出这样的要求:这里必须根绝一切犹豫;这里任何怯懦都无济于事。\",\"createTime\":1641051581018,\"id\":1477303520883048450,\"source\":\"马克思\",\"type\":4}}', 0, '', '2022-01-01 23:39:41'); INSERT INTO `sys_oper_log` VALUES (1301, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"主框架页-默认皮肤样式名称\",\"configKey\":\"sys.index.skinName\",\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"configId\":1,\"remark\":\"蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow\",\"configType\":\"Y\",\"configValue\":\"skin-yellow\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 23:40:59'); INSERT INTO `sys_oper_log` VALUES (1302, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"主框架页-默认皮肤样式名称\",\"configKey\":\"sys.index.skinName\",\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"configId\":1,\"remark\":\"蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow\",\"updateTime\":1641051659000,\"configType\":\"Y\",\"configValue\":\"skin-yellow\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 23:41:11'); INSERT INTO `sys_oper_log` VALUES (1303, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 23:41:17'); INSERT INTO `sys_oper_log` VALUES (1304, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 23:41:18'); INSERT INTO `sys_oper_log` VALUES (1305, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 23:41:18'); INSERT INTO `sys_oper_log` VALUES (1306, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 23:41:18'); INSERT INTO `sys_oper_log` VALUES (1307, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-01 23:41:18'); INSERT INTO `sys_oper_log` VALUES (1308, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"永远不能复合的,往往不是那些在盛怒之下分开的情人,而是那些在友情的基础上分开的情人。\",\"createTime\":1641051706075,\"id\":1477304045431095298,\"source\":\"哈代\",\"type\":4}}', 0, '', '2022-01-01 23:41:46'); INSERT INTO `sys_oper_log` VALUES (1309, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"本地服务器\",\"top\":2,\"createTime\":1641051741642,\"englishWord\":\"localhost\",\"isCollect\":1,\"id\":1477304194626650114,\"sort\":0,\"content\":\"localhost\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 23:42:21'); INSERT INTO `sys_oper_log` VALUES (1310, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"任务\",\"top\":2,\"createTime\":1641051761158,\"englishWord\":\"task\",\"isCollect\":1,\"id\":1477304276453326849,\"sort\":0,\"content\":\"task\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 23:42:41'); INSERT INTO `sys_oper_log` VALUES (1311, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"违约\",\"top\":2,\"createTime\":1641051816069,\"englishWord\":\"default\",\"isCollect\":1,\"id\":1477304506783531009,\"sort\":0,\"content\":\"default\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 23:43:36'); INSERT INTO `sys_oper_log` VALUES (1312, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1477304506783531009', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-01 23:43:44'); INSERT INTO `sys_oper_log` VALUES (1313, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我遇见谁会有怎样的对白,我爱的少年他在多远的未来。\",\"createTime\":1641051845131,\"id\":1477304628674232321,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-01 23:44:05'); INSERT INTO `sys_oper_log` VALUES (1314, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"勉强保持友谊是最难堪的。\",\"createTime\":1641097857266,\"id\":1477497617535139842,\"source\":\"普劳图斯\",\"type\":4}}', 0, '', '2022-01-02 12:30:57'); INSERT INTO `sys_oper_log` VALUES (1315, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"勉强保持友谊是最难堪的。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":20,\"errorCode\":0,\"transResult\":[{\"dst\":\"Keep the friendship is the most embarrassing.\",\"src\":\"勉强保持友谊是最难堪的。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-02 12:31:05'); INSERT INTO `sys_oper_log` VALUES (1316, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"普劳图斯\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":13,\"errorCode\":0,\"transResult\":[{\"dst\":\"Plautus\'\",\"src\":\"普劳图斯\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-02 12:31:16'); INSERT INTO `sys_oper_log` VALUES (1317, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"她接到喜欢了七年的他的电话。他对她说:我们在一起吧。尽管听到电话那头别人的窃窃笑声。她还昰淡定地说:好啊。然后她问:大冒险又输了吧?他说:我选的是真心话。\",\"createTime\":1641098069408,\"id\":1477498507352539137,\"source\":\"过火\",\"type\":2}}', 0, '', '2022-01-02 12:34:29'); INSERT INTO `sys_oper_log` VALUES (1318, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好歹我也是人称“三重刘德华”\",\"createTime\":1641098144021,\"id\":1477498820318920705,\"source\":\"百变金刚\",\"type\":3}}', 0, '', '2022-01-02 12:35:44'); INSERT INTO `sys_oper_log` VALUES (1319, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"孔雀之珠:守护你对你太太坚定的爱情\",\"createTime\":1641098452733,\"id\":1477500115100565506,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2022-01-02 12:40:52'); INSERT INTO `sys_oper_log` VALUES (1320, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你还好?\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Are you okay?\",\"src\":\"你还好?\"}]}}', 0, '', '2022-01-02 12:41:03'); INSERT INTO `sys_oper_log` VALUES (1321, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"理由 理由 理由 理由 再多理由 无法挽留 爱情 爱情 爱情 爱情 再多理由 说停就停 Ryan.B一直谱写着动人的歌曲\",\"createTime\":1641098530506,\"id\":1477500441329336322,\"source\":\"没有理由\",\"type\":2}}', 0, '', '2022-01-02 12:42:10'); INSERT INTO `sys_oper_log` VALUES (1322, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我神你老母画面一黑,光一打下来,就把你这个王八蛋打得跟鬼一样,这样子你还嫌不够神秘感,我现在不是在拍恐怖片啊,大哥!\",\"createTime\":1641098532053,\"id\":1477500447796953090,\"source\":\"食神\",\"type\":3}}', 0, '', '2022-01-02 12:42:12'); INSERT INTO `sys_oper_log` VALUES (1323, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"初见是惊鸿一瞥,南柯一梦是你。 等待是山重水复,怦然心动是你。 相遇是柳暗花明,如梦初醒是你。 重逢是始料未及,别来无恙是你。\",\"createTime\":1641098532249,\"id\":1477500448652591105,\"source\":\"花枝春野\",\"type\":2}}', 0, '', '2022-01-02 12:42:12'); INSERT INTO `sys_oper_log` VALUES (1324, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人总是爱把短暂的东西说成永久的。\",\"createTime\":1641098532415,\"id\":1477500449315291138,\"source\":\"嚣张\",\"type\":2}}', 0, '', '2022-01-02 12:42:12'); INSERT INTO `sys_oper_log` VALUES (1325, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生最好的五个词:老病痊愈、久别重逢、失而复得、转危为安、虚惊一场。\",\"createTime\":1641098532575,\"id\":1477500449977991169,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 12:42:12'); INSERT INTO `sys_oper_log` VALUES (1326, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个人使劲踮起脚尖靠近太阳的时候,全世界都挡不住她的阳光。\",\"createTime\":1641098532748,\"id\":1477500450703605761,\"source\":\"人民日报《你的坚持,终将美好》\",\"type\":1}}', 0, '', '2022-01-02 12:42:12'); INSERT INTO `sys_oper_log` VALUES (1327, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"拼命去争取成功,但不要期望一定成功。\",\"createTime\":1641098532928,\"id\":1477500451492134913,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 12:42:12'); INSERT INTO `sys_oper_log` VALUES (1328, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没有备胎,也不玩暧昧, 我把我所有的温暖和宽容, 淫荡和撒娇,眼泪和笑容, 好脾气和孩子气都给了你,可你还是离开了我,让我怎么再收拾好自己重新给别人, 可能要很久很久吧。\",\"createTime\":1641098533092,\"id\":1477500452159029249,\"source\":\"只能陪你到这里\",\"type\":2}}', 0, '', '2022-01-02 12:42:13'); INSERT INTO `sys_oper_log` VALUES (1329, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"比我差的人还没放弃,比我好的人仍在努力,我就更没资格说,我无能为力。\",\"createTime\":1641098533260,\"id\":1477500452880449538,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 12:42:13'); INSERT INTO `sys_oper_log` VALUES (1330, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"对于那些不在乎你的人趁早远离,别让他们的漠然消耗了你的热情。\",\"createTime\":1641098533425,\"id\":1477500453597675521,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 12:42:13'); INSERT INTO `sys_oper_log` VALUES (1331, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"深深地感受到了《亲爱的,热爱的》这部剧真的很良心,每一首歌不同风格,但又很符合剧情内容!这首歌听着就让我想到了一群热血的年轻人为了梦想荣誉而默默奋斗的那些岁月,听着听着竟然也让人有些热血沸腾。7月9日,我们不见不散!\",\"createTime\":1641098533585,\"id\":1477500454268764161,\"source\":\"无名之辈\",\"type\":2}}', 0, '', '2022-01-02 12:42:13'); INSERT INTO `sys_oper_log` VALUES (1332, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"读书,这个我们习以为常的平凡过程,实际上是人们心灵和上下古今一切民族的伟大智慧相结合的过程。\",\"createTime\":1641098533742,\"id\":1477500454927269890,\"source\":\"高尔基\",\"type\":4}}', 0, '', '2022-01-02 12:42:13'); INSERT INTO `sys_oper_log` VALUES (1333, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人只有献身于社会,才能找出那实际上是短暂而有风险的生命的意义。\",\"createTime\":1641098533913,\"id\":1477500455594164226,\"source\":\"爱因斯坦\",\"type\":4}}', 0, '', '2022-01-02 12:42:13'); INSERT INTO `sys_oper_log` VALUES (1334, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"正在长大,正在为以后的生活奔波。 \",\"createTime\":1641098534074,\"id\":1477500456315584514,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 12:42:14'); INSERT INTO `sys_oper_log` VALUES (1335, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们青年的箴言就是勇敢、顽强、坚定,就是排除一切障碍。\",\"createTime\":1641098536079,\"id\":1477500464683220993,\"source\":\"奥斯特洛夫斯基\",\"type\":4}}', 0, '', '2022-01-02 12:42:16'); INSERT INTO `sys_oper_log` VALUES (1336, '通知公告', 1, 'com.ruoyi.system.controller.SysNoticeController.add()', 'POST', 1, 'admin', NULL, '/notice', '127.0.0.1', '', '{\"noticeContent\":\"
!!!
\",\"createBy\":\"admin\",\"noticeType\":\"1\",\"params\":{},\"noticeTitle\":\"公告\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-02 12:44:17'); INSERT INTO `sys_oper_log` VALUES (1337, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人常常都是这么误会自己的,以为自己恋旧,以为自己长情,其实只是你现在过得不好罢了。\",\"createTime\":1641098754021,\"id\":1477501378798223362,\"source\":\"老街\",\"type\":2}}', 0, '', '2022-01-02 12:45:54'); INSERT INTO `sys_oper_log` VALUES (1338, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"dashboard\",\"orderNum\":\"1\",\"menuName\":\"服务监控\",\"params\":{},\"parentId\":2,\"isCache\":\"0\",\"path\":\"service\",\"component\":\"monitor/service/index\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-02 15:11:08'); INSERT INTO `sys_oper_log` VALUES (1339, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"online\",\"orderNum\":\"2\",\"menuName\":\"在线用户\",\"params\":{},\"parentId\":2,\"isCache\":\"0\",\"path\":\"online\",\"component\":\"monitor/online/index\",\"children\":[],\"createTime\":1640336744000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":109,\"menuType\":\"C\",\"perms\":\"monitor:online:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-02 15:11:13'); INSERT INTO `sys_oper_log` VALUES (1340, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"dashboard\",\"orderNum\":\"1\",\"menuName\":\"服务监控\",\"params\":{},\"parentId\":2,\"isCache\":\"0\",\"path\":\"service\",\"component\":\"monitor/service/index\",\"children\":[],\"createTime\":1641107468000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2044,\"menuType\":\"C\",\"perms\":\"monitor:service:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-02 15:11:32'); INSERT INTO `sys_oper_log` VALUES (1341, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"dashboard\",\"orderNum\":\"1\",\"menuName\":\"服务监控\",\"params\":{},\"parentId\":2,\"isCache\":\"0\",\"path\":\"service\",\"component\":\"business/monitor/service/index\",\"children\":[],\"createTime\":1641107468000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2044,\"menuType\":\"C\",\"perms\":\"monitor:service:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-02 15:30:58'); INSERT INTO `sys_oper_log` VALUES (1342, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"date\",\"orderNum\":\"1\",\"menuName\":\"业务监控\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"monitor\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-02 15:32:55'); INSERT INTO `sys_oper_log` VALUES (1343, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"dashboard\",\"orderNum\":\"1\",\"menuName\":\"服务监控\",\"params\":{},\"parentId\":2045,\"isCache\":\"0\",\"path\":\"service\",\"component\":\"business/monitor/service/index\",\"children\":[],\"createTime\":1641107468000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2044,\"menuType\":\"C\",\"perms\":\"monitor:service:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-02 15:33:20'); INSERT INTO `sys_oper_log` VALUES (1344, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"班长\",\"top\":2,\"createTime\":1641109552515,\"englishWord\":\"monitor\",\"isCollect\":1,\"id\":1477546671002509313,\"sort\":0,\"content\":\"monitor\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-02 15:45:52'); INSERT INTO `sys_oper_log` VALUES (1345, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"监视\",\"top\":2,\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"isCollect\":1,\"id\":1477546671002509313,\"sort\":0,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-02 15:46:02'); INSERT INTO `sys_oper_log` VALUES (1346, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"园丁爱自己种下的花朵,牧人爱自己放牧的羊群。\",\"createTime\":1641112911506,\"id\":1477560759636131841,\"source\":\"(柯尔克孜族)谚语\",\"type\":4}}', 0, '', '2022-01-02 16:41:51'); INSERT INTO `sys_oper_log` VALUES (1347, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"园丁爱自己种下的花朵,牧人爱自己放牧的羊群。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The gardener loves the flowers he plants, and the shepherd loves the sheep he grazes.\",\"src\":\"园丁爱自己种下的花朵,牧人爱自己放牧的羊群。\"}]}}', 0, '', '2022-01-02 16:41:55'); INSERT INTO `sys_oper_log` VALUES (1348, 'API预警', 5, 'com.xjs.controller.ApiWarningController.export()', 'POST', 1, 'admin', '', '/apiwarning/export', '127.0.0.1', '', '{}', '', 0, '', '2022-01-02 16:42:48'); INSERT INTO `sys_oper_log` VALUES (1349, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1641113130968,\"id\":1477561680084533249,\"source\":\"施企巴乔夫\",\"type\":4}}', 0, '', '2022-01-02 16:45:30'); INSERT INTO `sys_oper_log` VALUES (1350, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"思想好比火星:一颗火星会点燃另一颗火星。一个深思熟虑的教师和班主任,总是力求在集体中创造一种共同热爱科学和渴求知识的气氛,使智力兴趣成为一些线索,以其真挚的、复杂的关系——即思想的相互关系把一个个的学生连接在一起。\",\"createTime\":1641113136705,\"id\":1477561704151449602,\"source\":\"苏霍姆林斯基\",\"type\":4}}', 0, '', '2022-01-02 16:45:36'); INSERT INTO `sys_oper_log` VALUES (1351, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你越想知道自己是不是忘记的时候.你反而记得更清楚。\",\"createTime\":1641113140721,\"id\":1477561721004163074,\"source\":\"东邪西毒\",\"type\":3}}', 0, '', '2022-01-02 16:45:40'); INSERT INTO `sys_oper_log` VALUES (1352, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"早上起床后,请你先把自己沉睡的心打开,然后再把窗户打开。这样,户外的风才能吹进你的心扉。所以,每天,你要做的第一件事就是开心!\",\"createTime\":1641113141608,\"id\":1477561724745482241,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 16:45:41'); INSERT INTO `sys_oper_log` VALUES (1353, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"白日莫空过,青春不再来。\",\"createTime\":1641113142272,\"id\":1477561727513722882,\"source\":\"林宽\",\"type\":4}}', 0, '', '2022-01-02 16:45:42'); INSERT INTO `sys_oper_log` VALUES (1354, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"就算不砸到小朋友,砸到花花草草也是不对的…\",\"createTime\":1641113142972,\"id\":1477561730424569857,\"source\":\"齐天大圣东游记\",\"type\":3}}', 0, '', '2022-01-02 16:45:42'); INSERT INTO `sys_oper_log` VALUES (1355, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这不是水,是口水(台语)\",\"createTime\":1641113143683,\"id\":1477561733448663041,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2022-01-02 16:45:43'); INSERT INTO `sys_oper_log` VALUES (1356, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果我还能回来 娶你!\",\"createTime\":1641113144327,\"id\":1477561736120434690,\"source\":\"投名状\",\"type\":3}}', 0, '', '2022-01-02 16:45:44'); INSERT INTO `sys_oper_log` VALUES (1357, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“晚安”的意思就是“我今天打烊了” 只是不对外营业了而已 跟睡不睡觉没关系 其实“晚安”还有另一种意思 把温柔与浪漫藏进晚安里 “我对全世界说晚安 独独对你说喜欢”\",\"createTime\":1641113144975,\"id\":1477561738876092417,\"source\":\"晚安\",\"type\":2}}', 0, '', '2022-01-02 16:45:44'); INSERT INTO `sys_oper_log` VALUES (1358, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"星星在哪里都是很亮的,就看你有没有抬头去看他们\",\"createTime\":1641113145644,\"id\":1477561741673693186,\"source\":\"玻璃樽\",\"type\":3}}', 0, '', '2022-01-02 16:45:45'); INSERT INTO `sys_oper_log` VALUES (1359, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"星星在哪里都是很亮的,就看你有没有抬头去看他们\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":50,\"errorCode\":0,\"transResult\":[{\"dst\":\"Where stars are very bright, just see you have looked up to see them\",\"src\":\"星星在哪里都是很亮的,就看你有没有抬头去看他们\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-02 16:45:52'); INSERT INTO `sys_oper_log` VALUES (1360, '文案管理', 5, 'com.xjs.copywriting.controller.CopyWritingController.export()', 'POST', 1, 'admin', '', '/copyWriting/export', '127.0.0.1', '', '{}', '', 0, '', '2022-01-02 16:53:12'); INSERT INTO `sys_oper_log` VALUES (1361, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"单月单日单人徘,身形寂寥惹尘埃\",\"createTime\":1641125690964,\"id\":1477614360538578946,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 20:14:50'); INSERT INTO `sys_oper_log` VALUES (1362, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"dad\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"爸爸\",\"src\":\"dad\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-01-02 20:14:54'); INSERT INTO `sys_oper_log` VALUES (1363, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"假如你把秘密告诉了风,就别怪风把它告诉整片森林。\",\"createTime\":1641125703815,\"id\":1477614414443773953,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 20:15:03'); INSERT INTO `sys_oper_log` VALUES (1364, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"大斗师\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Big Dipper\",\"src\":\"大斗师\"}]}}', 0, '', '2022-01-02 20:15:07'); INSERT INTO `sys_oper_log` VALUES (1365, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"大斗师\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":18,\"errorCode\":0,\"transResult\":[{\"dst\":\"Big bucket division\",\"src\":\"大斗师\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-02 20:15:09'); INSERT INTO `sys_oper_log` VALUES (1366, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"太阳真是个的大笑脸啊, 一出现,世界就亮了。\",\"createTime\":1641125716650,\"id\":1477614468260888577,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 20:15:16'); INSERT INTO `sys_oper_log` VALUES (1367, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"阿达是否\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Is Ada\",\"src\":\"阿达是否\"}]}}', 0, '', '2022-01-02 20:15:19'); INSERT INTO `sys_oper_log` VALUES (1368, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"阿达是否\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":9,\"errorCode\":0,\"transResult\":[{\"dst\":\"Ada is\",\"src\":\"阿达是否\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-02 20:15:21'); INSERT INTO `sys_oper_log` VALUES (1369, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"阿达是否阿斯达斯\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":15,\"errorCode\":0,\"transResult\":[{\"dst\":\"Ada is asda\",\"src\":\"阿达是否阿斯达斯\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-02 20:15:22'); INSERT INTO `sys_oper_log` VALUES (1370, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"阿迪达斯\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"adidas\",\"src\":\"阿迪达斯\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-02 20:15:28'); INSERT INTO `sys_oper_log` VALUES (1371, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"阿迪达斯\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Adidas\",\"src\":\"阿迪达斯\"}]}}', 0, '', '2022-01-02 20:15:30'); INSERT INTO `sys_oper_log` VALUES (1372, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没有结局的故事太多,你要习惯相遇与离别。岁月会记得,你温柔赤诚的心。\",\"createTime\":1641125801217,\"id\":1477614822956400642,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 20:16:41'); INSERT INTO `sys_oper_log` VALUES (1373, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我这一辈子不知道还会喜欢多少个女人,不到最后我也不知道会喜欢哪一个。\",\"createTime\":1641131462229,\"id\":1477638567003619330,\"source\":\"阿飞正传\",\"type\":3}}', 0, '', '2022-01-02 21:51:02'); INSERT INTO `sys_oper_log` VALUES (1374, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"师以质疑,友以析疑。\",\"createTime\":1641131487071,\"id\":1477638671202713602,\"source\":\"李惺\",\"type\":4}}', 0, '', '2022-01-02 21:51:27'); INSERT INTO `sys_oper_log` VALUES (1375, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"回忆这东西若是有气味的话,那就是樟脑的香,甜而稳妥,像记得分明的快乐,甜而怅惘,像忘却了的忧愁。\",\"createTime\":1641131519259,\"id\":1477638806167027713,\"source\":\"张爱玲 《更衣记》\",\"type\":1}}', 0, '', '2022-01-02 21:51:59'); INSERT INTO `sys_oper_log` VALUES (1376, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"七友: 谁人曾照顾过我的感受 天后: 我明明都懂却拼死效忠 趁早: 我可以笑着扮演你配角 淘汰: 我却得到你安慰的淘汰 洋葱: 盘底洋葱永远是调味品 说谎: 我没有说谎是爱情说谎 传奇: 我一直在你身边未走远 温柔: 不打扰是我最后的温柔\",\"createTime\":1641131565269,\"id\":1477638999184703489,\"source\":\"说谎\",\"type\":2}}', 0, '', '2022-01-02 21:52:45'); INSERT INTO `sys_oper_log` VALUES (1377, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"兵不厌诈 这是战争\",\"createTime\":1641131598458,\"id\":1477639138393653249,\"source\":\"投名状\",\"type\":3}}', 0, '', '2022-01-02 21:53:18'); INSERT INTO `sys_oper_log` VALUES (1378, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"山中人不信有鱼大如木,海上人不信有木大如鱼。\",\"createTime\":1641132345391,\"id\":1477642271228362753,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-02 22:05:45'); INSERT INTO `sys_oper_log` VALUES (1379, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"理论彻底,策略准确。然后以排除万难坚定不移的勇气和精神向前干去,必有成功的一日。\",\"createTime\":1641132439040,\"id\":1477642664045903873,\"source\":\"邹韬奋\",\"type\":4}}', 0, '', '2022-01-02 22:07:19'); INSERT INTO `sys_oper_log` VALUES (1380, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果还有哪个师傅觉得我不够资格的,我随时恭候,但如果只是满足你个人的利益,我不能够接受!\",\"createTime\":1641208108555,\"id\":1477960044974374914,\"source\":\"叶问二\",\"type\":3}}', 0, '', '2022-01-03 19:08:28'); INSERT INTO `sys_oper_log` VALUES (1381, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个钟头有六十分钟,一天就超过了一千分钟。明白这个道理后,就知道人可作出多少贡献。\",\"createTime\":1641219267791,\"id\":1478006850181595137,\"source\":\"歌德\",\"type\":4}}', 0, '', '2022-01-03 22:14:27'); INSERT INTO `sys_oper_log` VALUES (1382, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"科学的历史,从某种意义上说,就是错觉和失败的历史,是伟大的顽愚者以笨拙和低效能进行工作的历史。\",\"createTime\":1641363787217,\"id\":1478613008589697025,\"source\":\"寺男寅彦\",\"type\":4}}', 0, '', '2022-01-05 14:23:07'); INSERT INTO `sys_oper_log` VALUES (1383, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真正值钱的是不花一文钱的微笑。\",\"createTime\":1641364354053,\"id\":1478615386059616258,\"source\":\"查尔斯·史考勃\",\"type\":4}}', 0, '', '2022-01-05 14:32:34'); INSERT INTO `sys_oper_log` VALUES (1384, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生一世,总有些片断当时看着无关紧要,而事实上却牵动了大局。\",\"createTime\":1641374040483,\"id\":1478656013925265409,\"source\":\"萨克雷\",\"type\":4}}', 0, '', '2022-01-05 17:14:00'); INSERT INTO `sys_oper_log` VALUES (1385, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"澳大利亚同性合法,将在明年一月份正式可以登记结婚!恭喜戳爷♡\",\"createTime\":1641374061533,\"id\":1478656102236336129,\"source\":\"YOUTH\",\"type\":2}}', 0, '', '2022-01-05 17:14:21'); INSERT INTO `sys_oper_log` VALUES (1386, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1641374089478,\"englishWord\":\"resources\",\"isCollect\":1,\"id\":1478656219441991682,\"sort\":0,\"content\":\"resources\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-05 17:14:49'); INSERT INTO `sys_oper_log` VALUES (1387, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1478656219441991682', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-05 17:15:20'); INSERT INTO `sys_oper_log` VALUES (1388, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"资源\",\"top\":2,\"createTime\":1641374137351,\"englishWord\":\"resource\",\"isCollect\":1,\"id\":1478656420223324161,\"sort\":0,\"content\":\"resource\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-05 17:15:37'); INSERT INTO `sys_oper_log` VALUES (1389, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一切使人团结的是善与美,一切使人分裂的是恶与丑。\",\"createTime\":1641386754292,\"id\":1478709339486904321,\"source\":\"列夫·托尔斯泰\",\"type\":4}}', 0, '', '2022-01-05 20:45:54'); INSERT INTO `sys_oper_log` VALUES (1390, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的意中人是个盖世英雄,有一天他会踩着七色的云彩来娶我,我猜中了前头,可是我猜不着这结局……\",\"createTime\":1641386795137,\"id\":1478709510824222721,\"source\":\"齐天大圣东游记\",\"type\":3}}', 0, '', '2022-01-05 20:46:35'); INSERT INTO `sys_oper_log` VALUES (1391, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":62,\"apiName\":\"天行-朋友圈\",\"dayCount\":18,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":1000,\"updateTime\":1641374640000,\"id\":1477203303311577090,\"totalCount\":135}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-05 20:47:08'); INSERT INTO `sys_oper_log` VALUES (1392, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":54,\"apiName\":\"天行-英语一言\",\"dayCount\":2,\"apiUrl\":\"http://api.tianapi.com/ensentence/index\",\"createTime\":1641032271000,\"limitCount\":250,\"updateTime\":1641374104000,\"id\":1477222528369516546,\"totalCount\":11}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-05 20:47:16'); INSERT INTO `sys_oper_log` VALUES (1393, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你想热泪盈眶,但唯有两行浊泪,失落在你脸上表现得并不肆意。 卡在皱褶里下不来也流不回去,最后干涸成两道枯蝶。 后来你得意或濩落,故人已凋零。\",\"createTime\":1641388181105,\"id\":1478715324003737602,\"source\":\"柳叶笺\",\"type\":2}}', 0, '', '2022-01-05 21:09:41'); INSERT INTO `sys_oper_log` VALUES (1394, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"abstract\"}', '', 1, '该单词已存在!!!!', '2022-01-05 21:09:52'); INSERT INTO `sys_oper_log` VALUES (1395, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"abstract\"}', '', 1, '该单词已存在!!!!', '2022-01-05 22:08:02'); INSERT INTO `sys_oper_log` VALUES (1396, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"abstract\"}', '', 1, '该单词已存在!!!!', '2022-01-05 22:08:04'); INSERT INTO `sys_oper_log` VALUES (1397, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"abstract\"}', '', 1, '该单词已存在!!!!', '2022-01-05 22:08:05'); INSERT INTO `sys_oper_log` VALUES (1398, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"abstract\"}', '', 1, '该单词已存在!!!!', '2022-01-05 22:38:46'); INSERT INTO `sys_oper_log` VALUES (1399, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0/10 0/3 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1641393590000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-05 22:39:48'); INSERT INTO `sys_oper_log` VALUES (1400, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0/2 0/3 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1641393720000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-05 22:40:17'); INSERT INTO `sys_oper_log` VALUES (1401, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0/2 * * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1641393674000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-05 22:41:12'); INSERT INTO `sys_oper_log` VALUES (1402, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"那20年后呢?20年后你随时都能打倒我!--叶问\",\"createTime\":1641393775824,\"id\":1478738789930852354,\"source\":\"叶问二\",\"type\":3}}', 0, '', '2022-01-05 22:42:55'); INSERT INTO `sys_oper_log` VALUES (1403, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"* 0/2 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1641393960000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-05 22:45:51'); INSERT INTO `sys_oper_log` VALUES (1404, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"1-2 0/2 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1641394081000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-05 22:46:40'); INSERT INTO `sys_oper_log` VALUES (1405, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我手上的爱情线、生命线和事业线,都是你的名字拼成的。\",\"createTime\":1641434078238,\"id\":1478907830508609537,\"source\":\"玻璃之城\",\"type\":3}}', 0, '', '2022-01-06 09:54:38'); INSERT INTO `sys_oper_log` VALUES (1406, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我手上的爱情线、生命线和事业线,都是你的名字拼成的。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":42,\"errorCode\":0,\"transResult\":[{\"dst\":\"I love lines, lifeline and business line, are you the name of the Mosaic.\",\"src\":\"我手上的爱情线、生命线和事业线,都是你的名字拼成的。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-06 09:54:46'); INSERT INTO `sys_oper_log` VALUES (1407, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我手上的爱情线、生命线和事业线,都是你的名字拼成的。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The love line, lifeline and career line in my hand are all made up of your name.\",\"src\":\"我手上的爱情线、生命线和事业线,都是你的名字拼成的。\"}]}}', 0, '', '2022-01-06 09:54:53'); INSERT INTO `sys_oper_log` VALUES (1408, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"佳人未来,风月与我何干?\",\"createTime\":1641434098378,\"id\":1478907914969309186,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-06 09:54:58'); INSERT INTO `sys_oper_log` VALUES (1409, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"佳人未来,风月与我何干?\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"What does the wind and moon have to do with me in the future?\",\"src\":\"佳人未来,风月与我何干?\"}]}}', 0, '', '2022-01-06 09:55:03'); INSERT INTO `sys_oper_log` VALUES (1410, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"佳人未来,风月与我何干?\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":15,\"errorCode\":0,\"transResult\":[{\"dst\":\"The wind in the future, what have I to do with pretty?\",\"src\":\"佳人未来,风月与我何干?\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-06 09:55:06'); INSERT INTO `sys_oper_log` VALUES (1411, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从分手的那一天开始,我每天买一罐5月1号到期的菠萝罐头,因为菠萝是阿美最爱吃的东西,而5月1号是我的生日。我告诉我自己,当我买满30罐的时候,她如果还-不回来,这段感情就会过期。\",\"createTime\":1641434235859,\"id\":1478908491619000322,\"source\":\"重庆森林\",\"type\":3}}', 0, '', '2022-01-06 09:57:15'); INSERT INTO `sys_oper_log` VALUES (1412, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"从分手的那一天开始,我每天买一罐5月1号到期的菠萝罐头,因为菠萝是阿美最爱吃的东西,而5月1号是我的生日。我告诉我自己,当我买满30罐的时候,她如果还-不回来,这段感情就会过期。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":145,\"errorCode\":0,\"transResult\":[{\"dst\":\"From the day began to break up, every day I buy a can of canned pineapple, due on May 1 for pineapple is may\'s favorite things, and my birthday is on May 1.\",\"src\":\"从分手的那一天开始,我每天买一罐5月1号到期的菠萝罐头,因为菠萝是阿美最爱吃的东西,而5月1号是我的生日。\"},{\"dst\":\"I told myself, when I buy 30 cans, she is - don\'t come back, if this relationship will be expired.\",\"src\":\"我告诉我自己,当我买满30罐的时候,她如果还-不回来,这段感情就会过期。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-06 09:57:36'); INSERT INTO `sys_oper_log` VALUES (1413, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1641454441431,\"id\":1478993239955628034,\"source\":\"施企巴乔夫\",\"type\":4}}', 0, '', '2022-01-06 15:34:01'); INSERT INTO `sys_oper_log` VALUES (1414, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不开心,就算长生不老也没用,开心,就算只能活几天也足够!\",\"createTime\":1641454468375,\"id\":1478993352962760705,\"source\":\"齐天大圣西游记\",\"type\":3}}', 0, '', '2022-01-06 15:34:28'); INSERT INTO `sys_oper_log` VALUES (1415, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"不开心,就算长生不老也没用,开心,就算只能活几天也足够!\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":29,\"errorCode\":0,\"transResult\":[{\"dst\":\"Not happy, even when he forever, happy, even your last few days are enough!\",\"src\":\"不开心,就算长生不老也没用,开心,就算只能活几天也足够!\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-06 15:34:32'); INSERT INTO `sys_oper_log` VALUES (1416, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果他在坐牢,那是因为他想坐牢;如果他要杀你,你早就死了\",\"createTime\":1641455812713,\"id\":1478998991529205761,\"source\":\"重案对决 (Law abiding citizen)\",\"type\":3}}', 0, '', '2022-01-06 15:56:52'); INSERT INTO `sys_oper_log` VALUES (1417, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"为什么现在的分手理由 基本都是不喜欢了 不合适 没未来 就他妈不肯承认自己喜欢上别人了 真是 怂 \",\"createTime\":1641455886268,\"id\":1478999300045430785,\"source\":\"只想对你说\",\"type\":2}}', 0, '', '2022-01-06 15:58:06'); INSERT INTO `sys_oper_log` VALUES (1418, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我记得 以前总会和你聊得很晚很晚 现在我们不再说话了 我还是会熬夜 但我想 不如从今天开始早点睡了\",\"createTime\":1641457307619,\"id\":1479005261606838274,\"source\":\"配合\",\"type\":2}}', 0, '', '2022-01-06 16:21:47'); INSERT INTO `sys_oper_log` VALUES (1419, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"You can\'t specify target table \'api_copywriting\' for update in FROM clause\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"无法为FROM子句中的更新指定目标表“api\\\\U copywriting”\",\"src\":\"You can\'t specify target table \'api_copywriting\' for update in FROM clause\"}]}}', 0, '', '2022-01-06 16:21:49'); INSERT INTO `sys_oper_log` VALUES (1420, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-06 16:34:26'); INSERT INTO `sys_oper_log` VALUES (1421, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"然后把室友被子盖在自己床上\",\"createTime\":1641458336478,\"id\":1479009576979423234,\"source\":\"这就是爱情\",\"type\":2}}', 0, '', '2022-01-06 16:38:56'); INSERT INTO `sys_oper_log` VALUES (1422, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"2\",\"menuName\":\"文案重复删除\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"openapi:copywriting:query\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-06 17:07:00'); INSERT INTO `sys_oper_log` VALUES (1423, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"2\",\"menuName\":\"文案重复删除\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"\",\"children\":[],\"createTime\":1641460020000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2046,\"menuType\":\"F\",\"perms\":\"openapi:copywriting:delete\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-06 17:07:17'); INSERT INTO `sys_oper_log` VALUES (1424, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-06 17:07:47'); INSERT INTO `sys_oper_log` VALUES (1425, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '', 1, 'Invalid bound statement (not found): com.xjs.copywriting.mapper.CopyWritingMapper.deleteRepeatData', '2022-01-06 17:16:08'); INSERT INTO `sys_oper_log` VALUES (1426, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":29}', 0, '', '2022-01-06 17:17:39'); INSERT INTO `sys_oper_log` VALUES (1427, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, '', '2022-01-06 17:18:07'); INSERT INTO `sys_oper_log` VALUES (1428, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:10'); INSERT INTO `sys_oper_log` VALUES (1429, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:11'); INSERT INTO `sys_oper_log` VALUES (1430, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:12'); INSERT INTO `sys_oper_log` VALUES (1431, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:12'); INSERT INTO `sys_oper_log` VALUES (1432, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:12'); INSERT INTO `sys_oper_log` VALUES (1433, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:12'); INSERT INTO `sys_oper_log` VALUES (1434, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:12'); INSERT INTO `sys_oper_log` VALUES (1435, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:12'); INSERT INTO `sys_oper_log` VALUES (1436, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:13'); INSERT INTO `sys_oper_log` VALUES (1437, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:13'); INSERT INTO `sys_oper_log` VALUES (1438, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:13'); INSERT INTO `sys_oper_log` VALUES (1439, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:26'); INSERT INTO `sys_oper_log` VALUES (1440, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:28'); INSERT INTO `sys_oper_log` VALUES (1441, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:29'); INSERT INTO `sys_oper_log` VALUES (1442, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:31'); INSERT INTO `sys_oper_log` VALUES (1443, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 17:18:34'); INSERT INTO `sys_oper_log` VALUES (1444, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0-1 0/2 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1641460920000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-06 17:20:36'); INSERT INTO `sys_oper_log` VALUES (1445, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"粥铺卖粥 吗?粥铺只卖花粥[大笑] 两碗三百 一碗多少钱? 我现在也不知道多少钱呢\",\"createTime\":1641471581756,\"id\":1479065131700404226,\"source\":\"归去来兮\",\"type\":2}}', 0, '', '2022-01-06 20:19:41'); INSERT INTO `sys_oper_log` VALUES (1446, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":9}', 0, '', '2022-01-06 20:20:06'); INSERT INTO `sys_oper_log` VALUES (1447, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:33'); INSERT INTO `sys_oper_log` VALUES (1448, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:35'); INSERT INTO `sys_oper_log` VALUES (1449, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:36'); INSERT INTO `sys_oper_log` VALUES (1450, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:38'); INSERT INTO `sys_oper_log` VALUES (1451, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:39'); INSERT INTO `sys_oper_log` VALUES (1452, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:40'); INSERT INTO `sys_oper_log` VALUES (1453, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:40'); INSERT INTO `sys_oper_log` VALUES (1454, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:40'); INSERT INTO `sys_oper_log` VALUES (1455, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:40'); INSERT INTO `sys_oper_log` VALUES (1456, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:41'); INSERT INTO `sys_oper_log` VALUES (1457, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:41'); INSERT INTO `sys_oper_log` VALUES (1458, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:41'); INSERT INTO `sys_oper_log` VALUES (1459, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:41'); INSERT INTO `sys_oper_log` VALUES (1460, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:41'); INSERT INTO `sys_oper_log` VALUES (1461, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:41'); INSERT INTO `sys_oper_log` VALUES (1462, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:20:52'); INSERT INTO `sys_oper_log` VALUES (1463, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你是找感情的,我是找婚姻的!我们俩就走岔道了。\",\"createTime\":1641471658115,\"id\":1479065451969069057,\"source\":\"非诚勿扰2\",\"type\":3}}', 0, '', '2022-01-06 20:20:58'); INSERT INTO `sys_oper_log` VALUES (1464, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:21:03'); INSERT INTO `sys_oper_log` VALUES (1465, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"岁月的暖,漫过时间的河,抚过久闭的心扉,我在时光斑驳处,聆听到花开的声音。\",\"createTime\":1641471725832,\"id\":1479065736003141633,\"source\":\"佚名\",\"type\":2}}', 0, '', '2022-01-06 20:22:05'); INSERT INTO `sys_oper_log` VALUES (1466, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, '', '2022-01-06 20:22:09'); INSERT INTO `sys_oper_log` VALUES (1467, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"英雄主义是在于为信仰和真理而牺牲自己。\",\"createTime\":1641472060807,\"id\":1479067140956569601,\"source\":\"托尔斯泰\",\"type\":4}}', 0, '', '2022-01-06 20:27:40'); INSERT INTO `sys_oper_log` VALUES (1468, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真是个垃圾场。\",\"createTime\":1641473806299,\"id\":1479074462110007297,\"source\":\"Beyond the forest\",\"type\":3}}', 0, '', '2022-01-06 20:56:46'); INSERT INTO `sys_oper_log` VALUES (1469, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":22}', 0, '', '2022-01-06 20:56:49'); INSERT INTO `sys_oper_log` VALUES (1470, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:57:36'); INSERT INTO `sys_oper_log` VALUES (1471, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:57:39'); INSERT INTO `sys_oper_log` VALUES (1472, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 20:57:51'); INSERT INTO `sys_oper_log` VALUES (1473, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的意中人是个盖世英雄,有一天他会踩着七色的云彩来娶我,我猜中了前头,可是我猜不着这结局……\",\"createTime\":1641474080071,\"id\":1479075610393001986,\"source\":\"齐天大圣东游记\",\"type\":3}}', 0, '', '2022-01-06 21:01:20'); INSERT INTO `sys_oper_log` VALUES (1474, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1641475049241,\"id\":1479079675357249537,\"source\":\"施企巴乔夫\",\"type\":4}}', 0, '', '2022-01-06 21:17:29'); INSERT INTO `sys_oper_log` VALUES (1475, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从来我们都是人间匆匆过客,凡来尘往,你去我留,不过如此。\",\"createTime\":1641482002886,\"id\":1479108841054048257,\"source\":\"三毛\",\"type\":1}}', 0, '', '2022-01-06 23:13:22'); INSERT INTO `sys_oper_log` VALUES (1476, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":7}', 0, '', '2022-01-06 23:13:28'); INSERT INTO `sys_oper_log` VALUES (1477, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:28'); INSERT INTO `sys_oper_log` VALUES (1478, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:29'); INSERT INTO `sys_oper_log` VALUES (1479, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:29'); INSERT INTO `sys_oper_log` VALUES (1480, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:29'); INSERT INTO `sys_oper_log` VALUES (1481, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:29'); INSERT INTO `sys_oper_log` VALUES (1482, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:29'); INSERT INTO `sys_oper_log` VALUES (1483, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:29'); INSERT INTO `sys_oper_log` VALUES (1484, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:30'); INSERT INTO `sys_oper_log` VALUES (1485, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:30'); INSERT INTO `sys_oper_log` VALUES (1486, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:30'); INSERT INTO `sys_oper_log` VALUES (1487, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:30'); INSERT INTO `sys_oper_log` VALUES (1488, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:35'); INSERT INTO `sys_oper_log` VALUES (1489, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:36'); INSERT INTO `sys_oper_log` VALUES (1490, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:36'); INSERT INTO `sys_oper_log` VALUES (1491, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:36'); INSERT INTO `sys_oper_log` VALUES (1492, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:36'); INSERT INTO `sys_oper_log` VALUES (1493, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:36'); INSERT INTO `sys_oper_log` VALUES (1494, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:36'); INSERT INTO `sys_oper_log` VALUES (1495, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:36'); INSERT INTO `sys_oper_log` VALUES (1496, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:37'); INSERT INTO `sys_oper_log` VALUES (1497, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:37'); INSERT INTO `sys_oper_log` VALUES (1498, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:37'); INSERT INTO `sys_oper_log` VALUES (1499, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:37'); INSERT INTO `sys_oper_log` VALUES (1500, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:37'); INSERT INTO `sys_oper_log` VALUES (1501, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:37'); INSERT INTO `sys_oper_log` VALUES (1502, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:38'); INSERT INTO `sys_oper_log` VALUES (1503, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:38'); INSERT INTO `sys_oper_log` VALUES (1504, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:38'); INSERT INTO `sys_oper_log` VALUES (1505, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-06 23:13:38'); INSERT INTO `sys_oper_log` VALUES (1506, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每个人都有属于自己的时刻表,别让任何人打乱你人生的节奏。\",\"createTime\":1641517027823,\"id\":1479255746318315522,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-07 08:57:07'); INSERT INTO `sys_oper_log` VALUES (1507, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人间的遗憾,多是“留不住”三字。最深的肺腑之言,不过是对种种风景、种种人的一句 人间且慢行\",\"createTime\":1641517123750,\"id\":1479256148640149506,\"source\":\"下山\",\"type\":2}}', 0, '', '2022-01-07 08:58:43'); INSERT INTO `sys_oper_log` VALUES (1508, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"三年不喝酒,买头大水牛。\",\"createTime\":1641517128016,\"id\":1479256166499495937,\"source\":\"谚语\",\"type\":4}}', 0, '', '2022-01-07 08:58:48'); INSERT INTO `sys_oper_log` VALUES (1509, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"打人都没力气,还说是黑社会?\",\"createTime\":1641517134470,\"id\":1479256193624059905,\"source\":\"功夫\",\"type\":3}}', 0, '', '2022-01-07 08:58:54'); INSERT INTO `sys_oper_log` VALUES (1510, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"自由与放肆的分别,如同狗与狼的分别。外形固然仿佛,性质早大不相似。一个是有拘束,守范围的。一个是不受拘束不守范围的。\",\"createTime\":1641517135734,\"id\":1479256198879522818,\"source\":\"老宣\",\"type\":4}}', 0, '', '2022-01-07 08:58:55'); INSERT INTO `sys_oper_log` VALUES (1511, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"读书,这个我们习以为常的平凡过程,实际上是人们心灵和上下古今一切民族的伟大智慧相结合的过程。\",\"createTime\":1641517137939,\"id\":1479256208148934658,\"source\":\"高尔基\",\"type\":4}}', 0, '', '2022-01-07 08:58:57'); INSERT INTO `sys_oper_log` VALUES (1512, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天月考英语完型,讲的手机一个身残志坚的纹身师,第三题4个选项都是身体部位,问他用什么部位拿纹身枪,本来选的是mouth,突然想起这首歌,toes,用脚趾控制枪!云音乐救了我\",\"createTime\":1641518389158,\"id\":1479261456166957058,\"source\":\"East of Eden\",\"type\":2}}', 0, '', '2022-01-07 09:19:49'); INSERT INTO `sys_oper_log` VALUES (1513, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":17}', 0, '', '2022-01-07 09:27:45'); INSERT INTO `sys_oper_log` VALUES (1514, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_warning', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-07 10:06:57'); INSERT INTO `sys_oper_log` VALUES (1515, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"可能,我只是最近陪你的那个人吧❤️ 可能,我只能是最近陪你的那个人吧❤️ 嗯\",\"createTime\":1641524251159,\"id\":1479286043168612353,\"source\":\"最近 (正式版)\",\"type\":2}}', 0, '', '2022-01-07 10:57:31'); INSERT INTO `sys_oper_log` VALUES (1516, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":60,\"apiName\":\"天行-朋友圈\",\"dayCount\":26,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":5,\"updateTime\":1641524281000,\"id\":1477203303311577090,\"totalCount\":369}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-07 10:58:08'); INSERT INTO `sys_oper_log` VALUES (1517, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":1073,\"apiName\":\"天行-名人名言\",\"dayCount\":34,\"apiUrl\":\"http://api.tianapi.com/mingyan/index\",\"createTime\":1641027717000,\"limitCount\":5,\"updateTime\":1641524281000,\"id\":1477203429832757249,\"totalCount\":375}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-07 10:58:11'); INSERT INTO `sys_oper_log` VALUES (1518, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":71,\"apiName\":\"天行-网易云\",\"dayCount\":33,\"apiUrl\":\"http://api.tianapi.com/hotreview/index\",\"createTime\":1641027736000,\"limitCount\":5,\"updateTime\":1641524251000,\"id\":1477203506580131842,\"totalCount\":359}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-07 10:58:13'); INSERT INTO `sys_oper_log` VALUES (1519, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":69,\"apiName\":\"天行-经典台词\",\"dayCount\":33,\"apiUrl\":\"http://api.tianapi.com/dialogue/index\",\"createTime\":1641027757000,\"limitCount\":30,\"updateTime\":1641524040000,\"id\":1477203594752790530,\"totalCount\":385}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-07 10:58:17'); INSERT INTO `sys_oper_log` VALUES (1520, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只有爱才是最好的教师,它远远超过责任感。\",\"createTime\":1641524324600,\"id\":1479286351219269634,\"source\":\"爱因斯坦\",\"type\":4}}', 0, '', '2022-01-07 10:58:44'); INSERT INTO `sys_oper_log` VALUES (1521, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我不介意其他人怎么看我,我只不过不想别人比我更开心。我以为有一些人永远都不会嫉妒,因为他太骄傲。在我出道的时候,我认识了一个人,因为他喜欢在东边出没,所以很多年后,他有个绰号叫东邪。知不知道饮酒和饮水有什么区别?酒越饮越暖,水越喝越寒。你越想忘记一个人时,其实你越会记得他。当有些事情你无法得到时,你惟一能做的,就是不要忘记。人的烦恼就是记性太好,如果可以把所\",\"createTime\":1641524683227,\"id\":1479287855384764417,\"source\":\"东邪西毒\",\"type\":3}}', 0, '', '2022-01-07 11:04:43'); INSERT INTO `sys_oper_log` VALUES (1522, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"textarea\",\"orderNum\":\"1\",\"menuName\":\"API预警信息\",\"params\":{},\"parentId\":2037,\"isCache\":\"0\",\"path\":\"apiwarning\",\"component\":\"business/warning/apiwarning/index\",\"children\":[],\"createTime\":1641046088000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2038,\"menuType\":\"C\",\"perms\":\"warning:apiwarning:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-07 11:06:52'); INSERT INTO `sys_oper_log` VALUES (1523, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":546,\"apiName\":\"百度翻译\",\"dayCount\":3,\"apiUrl\":\"http://api.fanyi.baidu.com/api/trans/vip/translate\",\"createTime\":1641028056000,\"limitCount\":1,\"updateTime\":1641457309000,\"id\":1477204849147482113,\"totalCount\":21}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-07 11:09:11'); INSERT INTO `sys_oper_log` VALUES (1524, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":92,\"apiName\":\"有道翻译\",\"dayCount\":4,\"apiUrl\":\"http://fanyi.youdao.com/translate\",\"createTime\":1641028064000,\"limitCount\":1,\"updateTime\":1641454473000,\"id\":1477204885239468033,\"totalCount\":19}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-07 11:09:13'); INSERT INTO `sys_oper_log` VALUES (1525, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":1090,\"apiName\":\"天行-英语一言\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/ensentence/index\",\"createTime\":1641032271000,\"limitCount\":2,\"updateTime\":1641518843000,\"id\":1477222528369516546,\"totalCount\":17}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-07 11:09:17'); INSERT INTO `sys_oper_log` VALUES (1526, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":67,\"apiName\":\"天行-翻译字典\",\"dayCount\":2,\"apiUrl\":\"http://api.tianapi.com/enwords/index\",\"createTime\":1641032271000,\"limitCount\":3,\"updateTime\":1641374140000,\"id\":1477222527450963970,\"totalCount\":9}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-07 11:09:20'); INSERT INTO `sys_oper_log` VALUES (1527, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":30}', 0, '', '2022-01-07 11:54:38'); INSERT INTO `sys_oper_log` VALUES (1528, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":37307}', 0, '', '2022-01-07 15:30:06'); INSERT INTO `sys_oper_log` VALUES (1529, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":100003}', 0, '', '2022-01-07 15:35:56'); INSERT INTO `sys_oper_log` VALUES (1530, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":100001}', 0, '', '2022-01-07 15:37:52'); INSERT INTO `sys_oper_log` VALUES (1531, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":60349}', 0, '', '2022-01-07 15:52:38'); INSERT INTO `sys_oper_log` VALUES (1532, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, '', '2022-01-07 16:00:51'); INSERT INTO `sys_oper_log` VALUES (1533, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"哈哈哈哈哈哈哈,过于真实了\",\"createTime\":1641542581762,\"id\":1479362927306969090,\"source\":\"责无旁贷\",\"type\":2}}', 0, '', '2022-01-07 16:03:01'); INSERT INTO `sys_oper_log` VALUES (1534, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"textarea\",\"orderNum\":\"1\",\"menuName\":\"API预警信息\",\"params\":{},\"parentId\":2037,\"isCache\":\"0\",\"path\":\"apiwarninginfo\",\"component\":\"business/warning/apiwarninginfo/index\",\"children\":[],\"createTime\":1641046088000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2038,\"menuType\":\"C\",\"perms\":\"warning:apiwarning:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-07 16:36:53'); INSERT INTO `sys_oper_log` VALUES (1535, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"textarea\",\"orderNum\":\"1\",\"menuName\":\"API预警信息\",\"params\":{},\"parentId\":2037,\"isCache\":\"0\",\"path\":\"apiwarninginfo\",\"component\":\"business/warning/apiwarninginfo/index\",\"children\":[],\"createTime\":1641046088000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2038,\"menuType\":\"C\",\"perms\":\"warning:warning:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-07 16:40:19'); INSERT INTO `sys_oper_log` VALUES (1536, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"1\",\"menuName\":\"api预警\",\"params\":{},\"parentId\":2037,\"isCache\":\"0\",\"path\":\"warning\",\"component\":\"business/warning/apiwarning/index\",\"children\":[],\"createTime\":1641543236000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2047,\"menuType\":\"C\",\"perms\":\"warning:warning:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-07 16:40:36'); INSERT INTO `sys_oper_log` VALUES (1537, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":1076,\"apiName\":\"天行-朋友圈\",\"dayCount\":110,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":6,\"updateTime\":1641545161000,\"id\":1477203303311577090,\"totalCount\":453}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-07 16:46:29'); INSERT INTO `sys_oper_log` VALUES (1538, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":1076,\"apiName\":\"天行-朋友圈\",\"dayCount\":110,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":4,\"updateTime\":1641545161000,\"id\":1477203303311577090,\"totalCount\":453}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-07 16:46:43'); INSERT INTO `sys_oper_log` VALUES (1539, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"最遗憾的是,我们连合照都没有:(\",\"createTime\":1641546028137,\"id\":1479377382430445569,\"source\":\"有一种悲伤\",\"type\":2}}', 0, '', '2022-01-07 17:00:28'); INSERT INTO `sys_oper_log` VALUES (1540, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不读诗书形体陋。\",\"createTime\":1641546120710,\"id\":1479377770692972545,\"source\":\"(清)吴嘉纪\",\"type\":4}}', 0, '', '2022-01-07 17:02:00'); INSERT INTO `sys_oper_log` VALUES (1541, 'api预警', 5, 'com.xjs.controller.ApiWarningController.export()', 'POST', 1, 'admin', '', '/apiwarning/apiwarnexport', '127.0.0.1', '', '{}', '', 0, '', '2022-01-07 17:05:33'); INSERT INTO `sys_oper_log` VALUES (1542, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"zip\",\"orderNum\":\"1\",\"menuName\":\"api预警\",\"params\":{},\"parentId\":2037,\"isCache\":\"0\",\"path\":\"warning\",\"component\":\"business/warning/apiwarning/index\",\"children\":[],\"createTime\":1641543236000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2047,\"menuType\":\"C\",\"perms\":\"warning:warning:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-07 17:06:34'); INSERT INTO `sys_oper_log` VALUES (1543, '文案管理', 5, 'com.xjs.copywriting.controller.CopyWritingController.export()', 'POST', 1, 'admin', '', '/copyWriting/export', '127.0.0.1', '', '{\"content\":\"劳动是人类的命运\"}', '', 0, '', '2022-01-07 17:15:35'); INSERT INTO `sys_oper_log` VALUES (1544, 'api预警', 5, 'com.xjs.controller.ApiWarningController.export()', 'POST', 1, 'admin', '', '/apiwarning/apiwarnexport', '127.0.0.1', '', '{\"apiName\":\"天行-网易云\"}', '', 0, '', '2022-01-07 17:16:06'); INSERT INTO `sys_oper_log` VALUES (1545, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"zip\",\"orderNum\":\"1\",\"menuName\":\"api预警内容\",\"params\":{},\"parentId\":2037,\"isCache\":\"0\",\"path\":\"warning\",\"component\":\"business/warning/apiwarning/index\",\"children\":[],\"createTime\":1641543236000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2047,\"menuType\":\"C\",\"perms\":\"warning:warning:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-07 17:19:07'); INSERT INTO `sys_oper_log` VALUES (1546, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生活本来就全靠运气。\",\"createTime\":1641556773693,\"id\":1479422452561555457,\"source\":\"铁达尼号(Titanic)\",\"type\":3}}', 0, '', '2022-01-07 19:59:33'); INSERT INTO `sys_oper_log` VALUES (1547, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"zip\",\"orderNum\":\"1\",\"menuName\":\"API预警内容\",\"params\":{},\"parentId\":2037,\"isCache\":\"0\",\"path\":\"warning\",\"component\":\"business/warning/apiwarning/index\",\"children\":[],\"createTime\":1641543236000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2047,\"menuType\":\"C\",\"perms\":\"warning:warning:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-07 20:02:31'); INSERT INTO `sys_oper_log` VALUES (1548, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"懒汉可以撕掉日历,但不能留住时间。\",\"createTime\":1641557008745,\"id\":1479423438457876481,\"source\":\"谚语\",\"type\":4}}', 0, '', '2022-01-07 20:03:28'); INSERT INTO `sys_oper_log` VALUES (1549, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人要独立生活,学习有用的技艺。\",\"createTime\":1641557245802,\"id\":1479424432705056770,\"source\":\"凯德\",\"type\":4}}', 0, '', '2022-01-07 20:07:25'); INSERT INTO `sys_oper_log` VALUES (1550, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":6}', 0, '', '2022-01-07 20:08:49'); INSERT INTO `sys_oper_log` VALUES (1551, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"友谊既不需要奴隶,也不允许有统治者,友谊最喜欢平等。\",\"createTime\":1641557447030,\"id\":1479425276766793729,\"source\":\"冈察洛夫(俄国)\",\"type\":4}}', 0, '', '2022-01-07 20:10:47'); INSERT INTO `sys_oper_log` VALUES (1552, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3}', 0, '', '2022-01-07 22:02:24'); INSERT INTO `sys_oper_log` VALUES (1553, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"danger\",\"dictSort\":0,\"params\":{},\"dictType\":\"translation_type\",\"dictLabel\":\"ROLL\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-07 23:18:41'); INSERT INTO `sys_oper_log` VALUES (1554, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"ROLL平台翻译\",\"params\":{},\"dictType\":\"translation_type\",\"dictLabel\":\"ROLL\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1641568721000,\"dictCode\":113,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-07 23:18:53'); INSERT INTO `sys_oper_log` VALUES (1555, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"简单的喜欢最长远,懂你的人最温暖。\",\"createTime\":1641570788768,\"id\":1479481236021559297,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-07 23:53:08'); INSERT INTO `sys_oper_log` VALUES (1556, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"有用吗\",\"translationType\":3}', '', 1, '有道翻译接口调用异常', '2022-01-07 23:53:17'); INSERT INTO `sys_oper_log` VALUES (1557, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"有用吗\",\"translationType\":3}', '', 1, '', '2022-01-07 23:55:15'); INSERT INTO `sys_oper_log` VALUES (1558, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"有用吗\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Is it useful\",\"src\":\"有用吗\"}]}}', 0, '', '2022-01-07 23:57:21'); INSERT INTO `sys_oper_log` VALUES (1559, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"有用吗\",\"translationType\":3}', '', 1, '', '2022-01-07 23:58:22'); INSERT INTO `sys_oper_log` VALUES (1560, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"有用吗\",\"translationType\":3}', '', 1, '', '2022-01-07 23:58:54'); INSERT INTO `sys_oper_log` VALUES (1561, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"有用吗\",\"translationType\":3}', '', 1, '', '2022-01-08 00:00:11'); INSERT INTO `sys_oper_log` VALUES (1562, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"有用吗\",\"translationType\":3}', '', 1, '', '2022-01-08 00:01:12'); INSERT INTO `sys_oper_log` VALUES (1563, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"有用吗\",\"translationType\":3}', '', 1, '', '2022-01-08 00:01:24'); INSERT INTO `sys_oper_log` VALUES (1564, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"重要的不在于你是谁生的,而在于你跟谁交朋友。\",\"createTime\":1641571289243,\"id\":1479483335186825217,\"source\":\"塞万提斯\",\"type\":4}}', 0, '', '2022-01-08 00:01:29'); INSERT INTO `sys_oper_log` VALUES (1565, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"不好使\",\"translationType\":3}', '', 1, '', '2022-01-08 00:01:41'); INSERT INTO `sys_oper_log` VALUES (1566, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"不好使\",\"translationType\":3}', '', 1, '', '2022-01-08 00:03:02'); INSERT INTO `sys_oper_log` VALUES (1567, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"不好使\",\"translationType\":3}', '', 1, '', '2022-01-08 00:04:29'); INSERT INTO `sys_oper_log` VALUES (1568, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"不好使\",\"translationType\":3}', '', 1, '', '2022-01-08 00:05:52'); INSERT INTO `sys_oper_log` VALUES (1569, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"馒头!馒头!馒头!馒头!馒头!馒头!\",\"createTime\":1641571618733,\"id\":1479484717155418114,\"source\":\"投名状\",\"type\":3}}', 0, '', '2022-01-08 00:06:58'); INSERT INTO `sys_oper_log` VALUES (1570, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"馒头!馒头!馒头!馒头!馒头!馒头!\",\"translationType\":3}', '', 1, '', '2022-01-08 00:07:06'); INSERT INTO `sys_oper_log` VALUES (1571, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"馒头!馒头!馒头!馒头!馒头!馒头!\",\"translationType\":3}', '', 1, '', '2022-01-08 00:08:38'); INSERT INTO `sys_oper_log` VALUES (1572, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们从一惊一乍的孩童,变成了冷冷清清的大人。\",\"createTime\":1641571873716,\"id\":1479485786673635329,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-08 00:11:13'); INSERT INTO `sys_oper_log` VALUES (1573, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我们从一惊一乍的孩童,变成了冷冷清清的大人。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"We changed from surprised children to lonely adults.\",\"src\":\"我们从一惊一乍的孩童,变成了冷冷清清的大人。\"}]}}', 0, '', '2022-01-08 00:11:23'); INSERT INTO `sys_oper_log` VALUES (1574, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":465,\"apiName\":\"ROLL翻译\",\"dayCount\":10,\"apiUrl\":\" https://www.mxnzp.com/api/convert/translate\",\"createTime\":1641570798000,\"limitCount\":10,\"updateTime\":1641571884000,\"id\":1479481274474938369,\"totalCount\":14}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 00:11:51'); INSERT INTO `sys_oper_log` VALUES (1575, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与其仓皇追赶日落,我更想静待漫天繁星。\",\"createTime\":1641571934651,\"id\":1479486042215800833,\"source\":\"网易云《等》热评\",\"type\":1}}', 0, '', '2022-01-08 00:12:14'); INSERT INTO `sys_oper_log` VALUES (1576, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"are you ok\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"你还好吗?\",\"src\":\"are you ok\"}]}}', 0, '', '2022-01-08 00:12:26'); INSERT INTO `sys_oper_log` VALUES (1577, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有时候你赢了…但其实你输了!\",\"createTime\":1641572051911,\"id\":1479486534018916353,\"source\":\"美梦成真(What dreams may come )\",\"type\":3}}', 0, '', '2022-01-08 00:14:11'); INSERT INTO `sys_oper_log` VALUES (1578, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生在世,不出一番好议论,不留一番好事业,终日饮食暖衣,无所用心,何自别于禽兽?\",\"createTime\":1641572087634,\"id\":1479486683885592578,\"source\":\"(宋)苏辙\",\"type\":4}}', 0, '', '2022-01-08 00:14:47'); INSERT INTO `sys_oper_log` VALUES (1579, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我太羡慕那些有人保护 有人疼爱的女孩子了 她们可以因为一点小事就委屈的哭鼻子 也不会有人觉得她们娇气 她们可以因为一件小事就大发脾气 也会有人好声好气的哄着 我觉得这些女孩子好麻烦 可我好想成为这么麻烦的女孩子 \",\"createTime\":1641572126778,\"id\":1479486848038068226,\"source\":\"像鱼\",\"type\":2}}', 0, '', '2022-01-08 00:15:26'); INSERT INTO `sys_oper_log` VALUES (1580, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"年轻的时候什么都奢侈,只有爱情最廉价,等到了曾经的奢侈品你觉得廉价的时候,爱情却成了最奢侈的奢望……\",\"createTime\":1641572404812,\"id\":1479488014205575169,\"source\":\"四块五\",\"type\":2}}', 0, '', '2022-01-08 00:20:04'); INSERT INTO `sys_oper_log` VALUES (1581, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"柳絮飘零,杜鹃哀啼,我听说你被贬到龙标,跋涉五溪。从此迢迢无期,不知何时归。\",\"createTime\":1641572415246,\"id\":1479488057964748801,\"source\":\"杨花落尽子规啼\",\"type\":2}}', 0, '', '2022-01-08 00:20:15'); INSERT INTO `sys_oper_log` VALUES (1582, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"权力大而权威小,企业就会衰败;权威先行,权力后随,企业就会蒸蒸日上。\",\"createTime\":1641572427578,\"id\":1479488109726654465,\"source\":\"士乐敏夫\",\"type\":4}}', 0, '', '2022-01-08 00:20:27'); INSERT INTO `sys_oper_log` VALUES (1583, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"语言属于一个时代,思想属于许多时代。\",\"createTime\":1641576652011,\"id\":1479505828257718274,\"source\":\"卡拉姆辛\",\"type\":4}}', 0, '', '2022-01-08 01:30:52'); INSERT INTO `sys_oper_log` VALUES (1584, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"自古英雄出少年。\",\"createTime\":1641577366482,\"id\":1479508824999804930,\"source\":\"书摘\",\"type\":4}}', 0, '', '2022-01-08 01:42:46'); INSERT INTO `sys_oper_log` VALUES (1585, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":123}', 0, '', '2022-01-08 02:35:46'); INSERT INTO `sys_oper_log` VALUES (1586, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只要愿意学习,就一定能够学会。\",\"createTime\":1641580608011,\"id\":1479522420915941377,\"source\":\"列宁\",\"type\":4}}', 0, '', '2022-01-08 02:36:48'); INSERT INTO `sys_oper_log` VALUES (1587, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"这个翻译好用吗\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Is this translation easy to use\",\"src\":\"这个翻译好用吗\"}]}}', 0, '', '2022-01-08 02:36:56'); INSERT INTO `sys_oper_log` VALUES (1588, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好读书,不求甚解。\",\"createTime\":1641580684064,\"id\":1479522739947286529,\"source\":\"陶渊明\",\"type\":4}}', 0, '', '2022-01-08 02:38:04'); INSERT INTO `sys_oper_log` VALUES (1589, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"warning\"}', '', 1, '该单词已存在!!!!', '2022-01-08 02:38:42'); INSERT INTO `sys_oper_log` VALUES (1590, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"处理程序\",\"top\":2,\"createTime\":1641580742011,\"englishWord\":\"handler\",\"isCollect\":1,\"id\":1479522982986203137,\"sort\":0,\"content\":\"handler\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 02:39:02'); INSERT INTO `sys_oper_log` VALUES (1591, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":6}', 0, '', '2022-01-08 02:41:33'); INSERT INTO `sys_oper_log` VALUES (1592, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":2}', 0, '', '2022-01-08 02:42:15'); INSERT INTO `sys_oper_log` VALUES (1593, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 02:42:16'); INSERT INTO `sys_oper_log` VALUES (1594, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 02:42:17'); INSERT INTO `sys_oper_log` VALUES (1595, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 02:42:18'); INSERT INTO `sys_oper_log` VALUES (1596, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 02:42:19'); INSERT INTO `sys_oper_log` VALUES (1597, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 02:42:19'); INSERT INTO `sys_oper_log` VALUES (1598, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 02:42:19'); INSERT INTO `sys_oper_log` VALUES (1599, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 02:42:20'); INSERT INTO `sys_oper_log` VALUES (1600, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 02:42:20'); INSERT INTO `sys_oper_log` VALUES (1601, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"做一件事所需的时间,可能只是你口中的等一会儿。\",\"createTime\":1641619340068,\"id\":1479684874979430401,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-08 13:22:20'); INSERT INTO `sys_oper_log` VALUES (1602, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"看到过一篇帖:跨年夜 大家都出去约会了 寝室一帮单身狗去网吧五黑 开了一把,对面也是五黑。然后第二把,没想到还是那些人。就在一波激烈团战里,室友A拿下了4杀,可对方辅助已经跑了。 没想到的是,对面辅助却又颤颤悠悠跑了回来,送给了室友5杀。室友一脸懵逼,然后看到对面5人一起打出了“新年快乐\",\"createTime\":1641622257179,\"id\":1479697110229766145,\"source\":\"#Lov3 #Ngẫu Hứng\",\"type\":2}}', 0, '', '2022-01-08 14:10:57'); INSERT INTO `sys_oper_log` VALUES (1603, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"青春是一个普通的名称,它是幸福美好的,但它也充满着艰苦的磨炼。\",\"createTime\":1641623162485,\"id\":1479700907328983041,\"source\":\"高尔基\",\"type\":4}}', 0, '', '2022-01-08 14:26:02'); INSERT INTO `sys_oper_log` VALUES (1604, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":18}', 0, '', '2022-01-08 14:26:16'); INSERT INTO `sys_oper_log` VALUES (1605, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我确定我不会再喜欢上任何人了, 那份悸动, 那份狂热, 都不会再和任何人重演 曾经沧海难为水, 除却巫山不是云。 曾经对爱情的那份执着, 那份热情, 都在你离开的那刻,全都烟消云散。\",\"createTime\":1641628421431,\"id\":1479722964972457985,\"source\":\"重演\",\"type\":2}}', 0, '', '2022-01-08 15:53:41'); INSERT INTO `sys_oper_log` VALUES (1606, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人这辈子,最害怕突然把某一首歌听懂了\",\"createTime\":1641628436827,\"id\":1479723029526990849,\"source\":\"富士山下\",\"type\":2}}', 0, '', '2022-01-08 15:53:56'); INSERT INTO `sys_oper_log` VALUES (1607, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生无常……犯贱经常……\",\"createTime\":1641628444341,\"id\":1479723061051379713,\"source\":\"心情交叉线\",\"type\":5}}', 0, '', '2022-01-08 15:54:04'); INSERT INTO `sys_oper_log` VALUES (1608, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"用三个字逆转你的人生:没问题!!(Yes!!)\",\"createTime\":1641628633405,\"id\":1479723854001328129,\"source\":\"没问题先生(Yes man)\",\"type\":3}}', 0, '', '2022-01-08 15:57:13'); INSERT INTO `sys_oper_log` VALUES (1609, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们要有最朴素的生活,与最遥远的梦想。即使明日天寒地冻,路远马亡。\",\"createTime\":1641628644483,\"id\":1479723900478410753,\"source\":\"七堇年《被窝是青春的坟墓》\",\"type\":1}}', 0, '', '2022-01-08 15:57:24'); INSERT INTO `sys_oper_log` VALUES (1610, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我到现在都没有一个特别有钱的朋友,你们能不能都争点气?\",\"createTime\":1641628654010,\"id\":1479723940429156353,\"source\":\"\",\"type\":5}}', 0, '', '2022-01-08 15:57:34'); INSERT INTO `sys_oper_log` VALUES (1611, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"萨顶顶在这首歌曲中尽显实力唱作人风采,不光亲自作曲,更是在演唱中横跨三个八度,融合戏曲与花腔女高音唱法,头腔咽腔信手拈来,真嗓假嗓切换自如,对高音的极致控制力将剧情的张驰与人物复杂心理展现得淋漓尽致,期待由萨顶顶主导制作的更多原声配乐出炉! PS:常石磊 喻江 这两位简直是质量保证\",\"createTime\":1641530761000,\"id\":1479313348389736449,\"source\":\"左手指月\",\"type\":2}}', 0, '', '2022-01-08 16:00:40'); INSERT INTO `sys_oper_log` VALUES (1612, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我把妳剪碎的爱拼凑起来,发现,它并不完整.\",\"createTime\":1641628931916,\"id\":1479725106101714945,\"source\":\"\",\"type\":5}}', 0, '', '2022-01-08 16:02:11'); INSERT INTO `sys_oper_log` VALUES (1613, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"用番茄Lu过…比香蕉好←那是你没领悟到香蕉的正确用法\",\"createTime\":1641628952883,\"id\":1479725194035298306,\"source\":\"Lust·Sloth\",\"type\":5}}', 0, '', '2022-01-08 16:02:32'); INSERT INTO `sys_oper_log` VALUES (1614, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":188,\"apiName\":\"ROLL-每日一句\",\"dayCount\":7,\"apiUrl\":\"https://www.mxnzp.com/api/daily_word/recommend\",\"createTime\":1641628444000,\"limitCount\":50,\"updateTime\":1641628953000,\"id\":1479723060912918529,\"totalCount\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 16:02:43'); INSERT INTO `sys_oper_log` VALUES (1615, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":188,\"apiName\":\"ROLL-每日一句\",\"dayCount\":7,\"apiUrl\":\"https://www.mxnzp.com/api/daily_word/recommend\",\"createTime\":1641628444000,\"limitCount\":5,\"updateTime\":1641628953000,\"id\":1479723060912918529,\"totalCount\":7}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 16:03:00'); INSERT INTO `sys_oper_log` VALUES (1616, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, '', '2022-01-08 16:03:18'); INSERT INTO `sys_oper_log` VALUES (1617, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"权力大而权威小,企业就会衰败;权威先行,权力后随,企业就会蒸蒸日上。\",\"createTime\":1641629051696,\"id\":1479725608499642370,\"source\":\"士乐敏夫\",\"type\":4}}', 0, '', '2022-01-08 16:04:11'); INSERT INTO `sys_oper_log` VALUES (1618, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"即使无法掌握未来,也请不要忘了明天。\",\"createTime\":1641629061587,\"id\":1479725649951948801,\"source\":\"leozx\",\"type\":5}}', 0, '', '2022-01-08 16:04:21'); INSERT INTO `sys_oper_log` VALUES (1619, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"5\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"roll平台的每日一句\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"每日一句\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 16:05:35'); INSERT INTO `sys_oper_log` VALUES (1620, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"5\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"roll平台的每日一句\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"每日一句\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1641629135000,\"dictCode\":114,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 16:05:42'); INSERT INTO `sys_oper_log` VALUES (1621, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":7}', 0, '', '2022-01-08 16:05:55'); INSERT INTO `sys_oper_log` VALUES (1622, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":9}', 0, '', '2022-01-08 16:18:05'); INSERT INTO `sys_oper_log` VALUES (1623, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":8}', 0, '', '2022-01-08 16:24:26'); INSERT INTO `sys_oper_log` VALUES (1624, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, '', '2022-01-08 16:26:35'); INSERT INTO `sys_oper_log` VALUES (1625, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"年纪越大越会明白,少年时曾说过的话,不管多么情真意切,最后也终流于天真,但是有什么关系呢,那不代表它们就是谎言。我是真心希望,如你所言,在我之后,你再没有不能失去的东西。而我再爱上的人,也无一人像你一分。只愿你平安喜乐,愿我们今生,天涯永不再相见。\",\"createTime\":1641630416681,\"id\":1479731333665882113,\"source\":\"空心 \",\"type\":2}}', 0, '', '2022-01-08 16:26:56'); INSERT INTO `sys_oper_log` VALUES (1626, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"虚荣,绝对是我最爱的原罪!\",\"createTime\":1641630418554,\"id\":1479731341509230593,\"source\":\"魔鬼代言人(Devils advocate)\",\"type\":3}}', 0, '', '2022-01-08 16:26:58'); INSERT INTO `sys_oper_log` VALUES (1627, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"寝室有一宅妹子晚上忘了吃饭,第二天才想起来,一胖妞说“我也有过,不过是吃了忘了,又吃了一顿”\",\"createTime\":1641630418977,\"id\":1479731343254061058,\"source\":\"\",\"type\":5}}', 0, '', '2022-01-08 16:26:58'); INSERT INTO `sys_oper_log` VALUES (1628, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只因心如烈火\",\"createTime\":1641630419382,\"id\":1479731344986308609,\"source\":\"英伦情人(英国病人)The English Patient\",\"type\":3}}', 0, '', '2022-01-08 16:26:59'); INSERT INTO `sys_oper_log` VALUES (1629, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"相信人有前世和来世吗?我认识过你,不在今生。\",\"createTime\":1641630419645,\"id\":1479731346060050434,\"source\":\"三毛\",\"type\":1}}', 0, '', '2022-01-08 16:26:59'); INSERT INTO `sys_oper_log` VALUES (1630, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"精神健康的人,总是努力的工作及爱人,只要能做到这两件事,其它的事就没有什么困难。\",\"createTime\":1641630419768,\"id\":1479731346571755522,\"source\":\"佛洛依德\",\"type\":4}}', 0, '', '2022-01-08 16:26:59'); INSERT INTO `sys_oper_log` VALUES (1631, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"和女友是异地恋,生活在相距两千里的城市,我曾经认为她是我的动力,直到有一天我坐火车一口饭没吃来到她的城市,风里有她的味道,却是和一个陌生男人的身影。我走在冷风中吃着肉夹馍告诉自己,我只是跑了两千里来吃肉夹馍的,我没哭,只不过风太大,迷了眼。\",\"createTime\":1641630420038,\"id\":1479731347741966338,\"source\":\"小半\",\"type\":2}}', 0, '', '2022-01-08 16:27:00'); INSERT INTO `sys_oper_log` VALUES (1632, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我和珍妮形影不离\",\"createTime\":1641630420152,\"id\":1479731348220116993,\"source\":\"阿甘正传(Forrest gump)\",\"type\":3}}', 0, '', '2022-01-08 16:27:00'); INSERT INTO `sys_oper_log` VALUES (1633, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一定要为自己憧憬的那些事物努力一下,哪怕这力量微不足道,哪怕岁月迢迢。\",\"createTime\":1641630420426,\"id\":1479731349331607554,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-08 16:27:00'); INSERT INTO `sys_oper_log` VALUES (1634, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我在人生的道路上迷失了。\",\"createTime\":1641630420536,\"id\":1479731349797175297,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-08 16:27:00'); INSERT INTO `sys_oper_log` VALUES (1635, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你相信梦想,梦想自然就会相信你。\",\"createTime\":1641630420818,\"id\":1479731350979969026,\"source\":\"Rain\",\"type\":5}}', 0, '', '2022-01-08 16:27:00'); INSERT INTO `sys_oper_log` VALUES (1636, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"机会靠左手,努力靠右手,成功靠双手。\",\"createTime\":1641630420930,\"id\":1479731351449731074,\"source\":\"\",\"type\":5}}', 0, '', '2022-01-08 16:27:00'); INSERT INTO `sys_oper_log` VALUES (1637, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这是眼泪吗?原来眼泪是这么的温暖,我一直以为,哀伤的东西都是冰冷的。\",\"createTime\":1641630421216,\"id\":1479731352640913410,\"source\":\"魅影陌客\",\"type\":5}}', 0, '', '2022-01-08 16:27:01'); INSERT INTO `sys_oper_log` VALUES (1638, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每个人都要幸福呀!\",\"createTime\":1641630421323,\"id\":1479731353098092545,\"source\":\"这就是爱情\",\"type\":2}}', 0, '', '2022-01-08 16:27:01'); INSERT INTO `sys_oper_log` VALUES (1639, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"他以前在猫厂.2帅现在属于不单独在一个厂发歌的哪一列\",\"createTime\":1641630421625,\"id\":1479731354381549569,\"source\":\"Nevada (feat. Cozi Zuehlsdorff)\",\"type\":2}}', 0, '', '2022-01-08 16:27:01'); INSERT INTO `sys_oper_log` VALUES (1640, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我觉得你很幸福,因为你可以选择爱我或不爱我,而我只能选择爱你或更爱你。\",\"createTime\":1641630421701,\"id\":1479731354708705282,\"source\":\"天與地的巡禮\",\"type\":5}}', 0, '', '2022-01-08 16:27:01'); INSERT INTO `sys_oper_log` VALUES (1641, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"别和我谈理想,戒了。\",\"createTime\":1641630422107,\"id\":1479731356419981313,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-08 16:27:02'); INSERT INTO `sys_oper_log` VALUES (1642, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You never know how strong you are until being strong is the only choice you have. 当坚强成为你唯一的选择,你才知道自己可以有多坚强。\",\"createTime\":1641630422351,\"id\":1479731357405642753,\"source\":\"柠乐\",\"type\":5}}', 0, '', '2022-01-08 16:27:02'); INSERT INTO `sys_oper_log` VALUES (1643, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你年纪轻轻,你心地善良,你对爱真诚,你会遇见更好的,你也一定会出人头地的。\",\"createTime\":1641630422493,\"id\":1479731358001233922,\"source\":\"把孤独当做晚餐\",\"type\":2}}', 0, '', '2022-01-08 16:27:02'); INSERT INTO `sys_oper_log` VALUES (1644, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":15}', 0, '', '2022-01-08 16:27:25'); INSERT INTO `sys_oper_log` VALUES (1645, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, '', '2022-01-08 16:29:33'); INSERT INTO `sys_oper_log` VALUES (1646, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"三朋四友,吃喝玩乐,这叫做“酒肉朋友”,朋友相聚,不谈工作,不谈学习,不谈政治,只谈个人之间私利私愤的事,这叫做“群居终日,言不乃义”。\",\"createTime\":1641630959363,\"id\":1479733609805611010,\"source\":\"谢觉哉\",\"type\":4}}', 0, '', '2022-01-08 16:35:59'); INSERT INTO `sys_oper_log` VALUES (1647, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"三朋四友,吃喝玩乐,这叫做“酒肉朋友”,朋友相聚,不谈工作,不谈学习,不谈政治,只谈个人之间私利私愤的事,这叫做“群居终日,言不乃义”。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Three friends and four friends, eat, drink and have fun. This is called \\\"fair weather friends\\\". When friends get together, they don\'t talk about work, study, politics, but only personal interests and anger. This is called \\\"living in groups all day, words are not righteousness\\\".\",\"src\":\"三朋四友,吃喝玩乐,这叫做“酒肉朋友”,朋友相聚,不谈工作,不谈学习,不谈政治,只谈个人之间私利私愤的事,这叫做“群居终日,言不乃义”。\"}]}}', 0, '', '2022-01-08 16:36:07'); INSERT INTO `sys_oper_log` VALUES (1648, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/english_word', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 17:16:24'); INSERT INTO `sys_oper_log` VALUES (1649, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/api_log', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 17:16:25'); INSERT INTO `sys_oper_log` VALUES (1650, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/api_copywriting', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 17:16:27'); INSERT INTO `sys_oper_log` VALUES (1651, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/api_english', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 17:16:29'); INSERT INTO `sys_oper_log` VALUES (1652, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/api_record', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 17:16:30'); INSERT INTO `sys_oper_log` VALUES (1653, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/api_warning', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 17:16:31'); INSERT INTO `sys_oper_log` VALUES (1654, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_a_word', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 17:16:34'); INSERT INTO `sys_oper_log` VALUES (1655, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":82}', 0, '', '2022-01-08 17:57:26'); INSERT INTO `sys_oper_log` VALUES (1656, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":24}', 0, '', '2022-01-08 21:09:22'); INSERT INTO `sys_oper_log` VALUES (1657, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 21:09:42'); INSERT INTO `sys_oper_log` VALUES (1658, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0/1 * * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1641647409000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:10:08'); INSERT INTO `sys_oper_log` VALUES (1659, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:11:33'); INSERT INTO `sys_oper_log` VALUES (1660, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:12:13'); INSERT INTO `sys_oper_log` VALUES (1661, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:12:59'); INSERT INTO `sys_oper_log` VALUES (1662, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:13:21'); INSERT INTO `sys_oper_log` VALUES (1663, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:13:57'); INSERT INTO `sys_oper_log` VALUES (1664, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每天待在这里,会把这里当成是全世界,不在追寻,不在拥有,你得离开一阵子\",\"createTime\":1641647647376,\"id\":1479803604434640898,\"source\":\"新天堂乐园 (Nuovo Cinema Paradiso)\",\"type\":3}}', 0, '', '2022-01-08 21:14:07'); INSERT INTO `sys_oper_log` VALUES (1665, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"信仰,是人们所必须的。什么也不信的人不会有幸福。\",\"createTime\":1641647650816,\"id\":1479803618863046657,\"source\":\"雨果\",\"type\":4}}', 0, '', '2022-01-08 21:14:10'); INSERT INTO `sys_oper_log` VALUES (1666, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"比起悲伤来说,无法分享快乐这件事,要更加的寂寞吧。\",\"createTime\":1641647656128,\"id\":1479803641126412289,\"source\":\"林志广\",\"type\":5}}', 0, '', '2022-01-08 21:14:16'); INSERT INTO `sys_oper_log` VALUES (1667, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Yesterday is a history, tomorrow is a mystery, but today is a gift.\",\"createTime\":1641647716977,\"id\":1479803896316264450,\"source\":\"efreet\",\"type\":5}}', 0, '', '2022-01-08 21:15:17'); INSERT INTO `sys_oper_log` VALUES (1668, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要是一个人的全部人格、全部生活都奉献给一种道德追求,要是他拥有这样的力量,一切其他的人在这方面和这个人相比起来都显得渺小的时候,那我们在这个人的身上就看到崇高的善。\",\"createTime\":1641647742859,\"id\":1479804004923572225,\"source\":\"车尔尼雪夫斯基\",\"type\":4}}', 0, '', '2022-01-08 21:15:42'); INSERT INTO `sys_oper_log` VALUES (1669, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个男人要和一个女人一辈子永远不变生活在一起,是一种冒险,所以世上需要冒险王。\",\"createTime\":1641647747877,\"id\":1479804025949618177,\"source\":\"冒险王\",\"type\":3}}', 0, '', '2022-01-08 21:15:47'); INSERT INTO `sys_oper_log` VALUES (1670, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时间就是我们当下的呼吸,每一刻都应全心全意。---Time is our contemporary breath, every moment should be put ones heart and soul into.\",\"createTime\":1641647753804,\"id\":1479804050779897857,\"source\":\"Rain\",\"type\":5}}', 0, '', '2022-01-08 21:15:53'); INSERT INTO `sys_oper_log` VALUES (1671, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有一些人追求永恒的美,他们把无限放到他们的短暂的生命里。另外一些人胸无大志地活着。\",\"createTime\":1641647841544,\"id\":1479804418834268162,\"source\":\"罗曼·罗兰\",\"type\":4}}', 0, '', '2022-01-08 21:17:21'); INSERT INTO `sys_oper_log` VALUES (1672, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Keep Calm and Carry On. 淡定、前行\",\"createTime\":1641647844885,\"id\":1479804432822272002,\"source\":\"蓝天的蓝\",\"type\":5}}', 0, '', '2022-01-08 21:17:24'); INSERT INTO `sys_oper_log` VALUES (1673, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:17:32'); INSERT INTO `sys_oper_log` VALUES (1674, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我认为纸上谈兵没什么作用\",\"createTime\":1641647890594,\"id\":1479804624522936321,\"source\":\"乱世佳人(Gone with the wind)\",\"type\":3}}', 0, '', '2022-01-08 21:18:10'); INSERT INTO `sys_oper_log` VALUES (1675, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"4,6,14 0/2 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1641648244000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:22:49'); INSERT INTO `sys_oper_log` VALUES (1676, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要超越过去与悲伤,用坚强和笑容去开拓明天。\",\"createTime\":1641648177214,\"id\":1479805826706931714,\"source\":\"SD影\",\"type\":5}}', 0, '', '2022-01-08 21:22:57'); INSERT INTO `sys_oper_log` VALUES (1677, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":2545}', 0, '', '2022-01-08 21:28:47'); INSERT INTO `sys_oper_log` VALUES (1678, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 21:28:53'); INSERT INTO `sys_oper_log` VALUES (1679, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 21:28:54'); INSERT INTO `sys_oper_log` VALUES (1680, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 21:28:55'); INSERT INTO `sys_oper_log` VALUES (1681, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 21:28:55'); INSERT INTO `sys_oper_log` VALUES (1682, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 21:28:55'); INSERT INTO `sys_oper_log` VALUES (1683, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 21:28:56'); INSERT INTO `sys_oper_log` VALUES (1684, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 21:28:56'); INSERT INTO `sys_oper_log` VALUES (1685, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-08 21:28:56'); INSERT INTO `sys_oper_log` VALUES (1686, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们爱过么?只是睡过吧?\",\"createTime\":1641647911000,\"id\":1479804708299964422,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-08 21:29:28'); INSERT INTO `sys_oper_log` VALUES (1687, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"错误可不是为了别人才改的过来的,要为了自己才能改正。\",\"createTime\":1641648571375,\"id\":1479807479937990657,\"source\":\"神之翼者\",\"type\":5}}', 0, '', '2022-01-08 21:29:31'); INSERT INTO `sys_oper_log` VALUES (1688, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"弱小和无知不是生存的障碍,傲慢才是。\",\"createTime\":1641648573004,\"id\":1479807486762123266,\"source\":\"kaomao\",\"type\":5}}', 0, '', '2022-01-08 21:29:33'); INSERT INTO `sys_oper_log` VALUES (1689, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我经常损你,是因为我相信我们的关系。\",\"createTime\":1641648574514,\"id\":1479807493129076737,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-08 21:29:34'); INSERT INTO `sys_oper_log` VALUES (1690, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我经常损你,是因为我相信我们的关系。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"I often hurt you because I believe in our relationship.\",\"src\":\"我经常损你,是因为我相信我们的关系。\"}]}}', 0, '', '2022-01-08 21:29:39'); INSERT INTO `sys_oper_log` VALUES (1691, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A dream doesn’t become reality through magic; it takes sweat, determination, and hard work.\",\"createTime\":1641648801416,\"dataId\":4051,\"date\":1614355200000,\"id\":1479808444816654338,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9ec463a413f7c8d885078d9d20833c10.png\",\"note\":\"梦想的实现不是靠魔法,而是靠汗水、决心与努力。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/e0fcf18e9874e49391b0bb026d2f5754.mp3\"}}', 0, '', '2022-01-08 21:33:21'); INSERT INTO `sys_oper_log` VALUES (1692, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Industry is the soul of business and the keystone of prosperity.\",\"createTime\":1641648859609,\"dataId\":3810,\"date\":1593532800000,\"id\":1479808688895787009,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9ab869e582a19c4af321711c3221fcf1.png\",\"note\":\"勤劳是事业的灵魂,繁荣的关键。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f230d1b3aa14763d43ae2d9f5b426c77.mp3\"}}', 0, '', '2022-01-08 21:34:19'); INSERT INTO `sys_oper_log` VALUES (1693, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You throw a peach to me,I give you a white jade for friendship.\",\"createTime\":1641648864641,\"dataId\":3697,\"date\":1583769600000,\"id\":1479808709993136130,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/692a680805168775b46f3b087769ffb8.png\",\"note\":\"投我以木桃,报之以琼瑶。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/c782c8e4d860c73d10a452b668c17bed.mp3\"}}', 0, '', '2022-01-08 21:34:24'); INSERT INTO `sys_oper_log` VALUES (1694, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In education we are striving not to teach youth to make a living, but to make a life.\",\"createTime\":1641648866271,\"dataId\":3486,\"date\":1565884800000,\"id\":1479808716821463042,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-16.jpg\",\"note\":\"教育不是为了教会青年人谋生,而是教会他们创造生活。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-16-day.mp3\"}}', 0, '', '2022-01-08 21:34:26'); INSERT INTO `sys_oper_log` VALUES (1695, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Try not to become a man of success but rather try to become a man of value.\",\"createTime\":1641648867095,\"dataId\":3565,\"date\":1572624000000,\"id\":1479808720277569538,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-02.jpg\",\"note\":\"不要为成功而努力,要为做一个有价值的人而努力。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-02-day.mp3\"}}', 0, '', '2022-01-08 21:34:27'); INSERT INTO `sys_oper_log` VALUES (1696, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"When I shiver with cold, not a snowflake is innocent.\",\"createTime\":1641648909592,\"dataId\":4348,\"date\":1640016000000,\"id\":1479808898518712321,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/11e7c8e779d4abcf27fcfcf942756ab1.png\",\"note\":\"当我冷得瑟瑟发抖时,没有一片雪花是无辜的。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/54ff87ce008b9292defec825c748ebe0.mp3\"}}', 0, '', '2022-01-08 21:35:09'); INSERT INTO `sys_oper_log` VALUES (1697, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Violence is not the best way to eliminate the hatred, also, revenge is also absolutely can\'t heal damage.\",\"createTime\":1641648920337,\"dataId\":4162,\"date\":1623945600000,\"id\":1479808943611674626,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/cc0b985df5a47aa454f9fc5d9a04295d.png\",\"note\":\"暴力不是消除仇恨的最好办法——同样,报复也绝对医治不了伤害。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/14a29abbb8046584f02fb7981fdbe6f7.mp3\"}}', 0, '', '2022-01-08 21:35:20'); INSERT INTO `sys_oper_log` VALUES (1698, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A flower cannot blossom without sunshine, and man cannot live without love. \",\"createTime\":1641649011626,\"dataId\":3977,\"date\":1607961600000,\"id\":1479809326509686786,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/bb90abf508feaac6754b4c25449fa6d9.png\",\"note\":\"花没有阳光就不能盛开,人没有爱就不能生存。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/1d842ffa61a9ceea68a63dbf49bde4fe.mp3\"}}', 0, '', '2022-01-08 21:36:51'); INSERT INTO `sys_oper_log` VALUES (1699, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The Earth is the cradle of humanity, but mankind cannot stay in the cradle forever. \",\"createTime\":1641649015800,\"dataId\":4107,\"date\":1619193600000,\"id\":1479809344008323073,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/9fc5f698f42ec43968999c753b554e18.png\",\"note\":\"地球是人类的摇篮,但人类不会永远呆在摇篮里。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/06a0d7d3fe42022ffb590cbdb8947430.mp3\"}}', 0, '', '2022-01-08 21:36:55'); INSERT INTO `sys_oper_log` VALUES (1700, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The biggest communication problem is we do not listen to understand. We listen to reply.\",\"createTime\":1641649086225,\"dataId\":3967,\"date\":1607097600000,\"id\":1479809639371210753,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/bf430e65af40868c6f8603a1f6b040ad.png\",\"note\":\"最大的沟通问题是,很多人聆听不是为了理解,只是为了回答。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/ba505f799d7fc065e50bc460cb6012e7.mp3\"}}', 0, '', '2022-01-08 21:38:06'); INSERT INTO `sys_oper_log` VALUES (1701, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You don’t have to see the whole staircase, just take the first step.\",\"createTime\":1641649087773,\"dataId\":3657,\"date\":1580486400000,\"id\":1479809645897547777,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/856cfeb9fc743086df3c620ff897fa5d.png\",\"note\":\"你不用看到整个楼梯,你只需要跨出第一步。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/3c984c0bec73d9db52706f188ee4f73e.mp3\"}}', 0, '', '2022-01-08 21:38:07'); INSERT INTO `sys_oper_log` VALUES (1702, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Don\'t be sad! Because God sends hope in the most desperate moments. Don\'t forget, the heaviest rain comes out of the darkest clouds.\",\"createTime\":1641649131624,\"dataId\":3480,\"date\":1565366400000,\"id\":1479809829826166785,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-10.jpg\",\"note\":\"不要悲伤!因为上帝在最绝望的时刻给我们带来希望。不要忘记,最大的雨来自最黑暗的云。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-10-day.mp3\"}}', 0, '', '2022-01-08 21:38:51'); INSERT INTO `sys_oper_log` VALUES (1703, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All l\'ve ever done in my life was making my way here to you.\",\"createTime\":1641649135008,\"dataId\":4366,\"date\":1641571200000,\"id\":1479809843986137089,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/cac7298edd0240eb7faa0ea21f5620c4.png\",\"note\":\"我今生的所做的一切都是为了找到你。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/945e6c327ba645189fdf9a6ff94757c3.mp3\"}}', 0, '', '2022-01-08 21:38:55'); INSERT INTO `sys_oper_log` VALUES (1704, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":47,\"apiName\":\"天行-每日一句\",\"dayCount\":13,\"apiUrl\":\"http://api.tianapi.com/everyday/index\",\"createTime\":1641648801000,\"limitCount\":100,\"updateTime\":1641649135000,\"id\":1479808444745322497,\"totalCount\":13}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 21:43:58'); INSERT INTO `sys_oper_log` VALUES (1705, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":47,\"apiName\":\"天行-每日一句\",\"dayCount\":13,\"apiUrl\":\"http://api.tianapi.com/everyday/index\",\"createTime\":1641648801000,\"limitCount\":10,\"updateTime\":1641649135000,\"id\":1479808444745322497,\"totalCount\":13}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 21:44:02'); INSERT INTO `sys_oper_log` VALUES (1706, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果我拥有如同小狗一样的尾巴的话,肯定会高兴得遮掩不住地摇来摇去吧。\",\"createTime\":1641649518672,\"id\":1479811453202169858,\"source\":\"Akechi\",\"type\":5}}', 0, '', '2022-01-08 21:45:18'); INSERT INTO `sys_oper_log` VALUES (1707, '代码生成', 8, 'com.ruoyi.gen.controller.GenController.batchGenCode()', 'GET', 1, 'admin', NULL, '/gen/batchGenCode', '127.0.0.1', '', NULL, NULL, 0, NULL, '2022-01-08 21:45:57'); INSERT INTO `sys_oper_log` VALUES (1708, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/api_a_word', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:46:07'); INSERT INTO `sys_oper_log` VALUES (1709, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"star\",\"orderNum\":\"1\",\"menuName\":\"每日一句\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"aword\",\"component\":\"openapi/aword/index\",\"children\":[],\"createTime\":1641649762000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2049,\"menuType\":\"C\",\"perms\":\"openapi:aword:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:49:41'); INSERT INTO `sys_oper_log` VALUES (1710, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"star\",\"orderNum\":\"1\",\"menuName\":\"每日一句\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"aword\",\"component\":\"business/openapi/aword/index\",\"children\":[],\"createTime\":1641649762000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2049,\"menuType\":\"C\",\"perms\":\"openapi:aword:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:50:26'); INSERT INTO `sys_oper_log` VALUES (1711, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tree\",\"orderNum\":\"1\",\"menuName\":\"API日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"apilog\",\"component\":\"business/openapi/apilog/index\",\"children\":[],\"createTime\":1640505788000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2009,\"menuType\":\"C\",\"perms\":\"openapi:log:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-08 21:52:21'); INSERT INTO `sys_oper_log` VALUES (1712, '每日一句', 3, 'com.xjs.aword.controller.ApiAWordController.remove()', 'DELETE', 1, 'admin', '', '/aword/1479808444816654338', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 22:09:21'); INSERT INTO `sys_oper_log` VALUES (1713, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All l\'ve ever done in my life was making my way here to you.\",\"createTime\":1641651082294,\"dataId\":4366,\"date\":1641571200000,\"id\":1479818011499692033,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/cac7298edd0240eb7faa0ea21f5620c4.png\",\"note\":\"我今生的所做的一切都是为了找到你。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/945e6c327ba645189fdf9a6ff94757c3.mp3\"}}', 0, '', '2022-01-08 22:11:22'); INSERT INTO `sys_oper_log` VALUES (1714, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All l\'ve ever done in my life was making my way here to you.\",\"createTime\":1641651087383,\"dataId\":4366,\"date\":1641571200000,\"id\":1479818032836116481,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/cac7298edd0240eb7faa0ea21f5620c4.png\",\"note\":\"我今生的所做的一切都是为了找到你。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/945e6c327ba645189fdf9a6ff94757c3.mp3\"}}', 0, '', '2022-01-08 22:11:27'); INSERT INTO `sys_oper_log` VALUES (1715, '每日一句', 3, 'com.xjs.aword.controller.ApiAWordController.remove()', 'DELETE', 1, 'admin', '', '/aword/1479818032836116481', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 22:18:28'); INSERT INTO `sys_oper_log` VALUES (1716, '每日一句', 3, 'com.xjs.aword.controller.ApiAWordController.remove()', 'DELETE', 1, 'admin', '', '/aword/1479818011499692033', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 22:18:30'); INSERT INTO `sys_oper_log` VALUES (1717, '每日一句', 3, 'com.xjs.aword.controller.ApiAWordController.remove()', 'DELETE', 1, 'admin', '', '/aword/1479808720277569538', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 22:25:28'); INSERT INTO `sys_oper_log` VALUES (1718, '每日一句', 3, 'com.xjs.aword.controller.ApiAWordController.remove()', 'DELETE', 1, 'admin', '', '/aword/1479808716821463042', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-08 22:25:35'); INSERT INTO `sys_oper_log` VALUES (1719, '每日一句', 5, 'com.xjs.aword.controller.ApiAWordController.export()', 'POST', 1, 'admin', '', '/aword/export', '127.0.0.1', '', '{}', '', 0, '', '2022-01-08 22:48:06'); INSERT INTO `sys_oper_log` VALUES (1720, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":422}', 0, '', '2022-01-08 22:53:52'); INSERT INTO `sys_oper_log` VALUES (1721, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生活不论好坏, 每一-天都是限量版。\",\"createTime\":1641697061361,\"id\":1480010861684404226,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-09 10:57:41'); INSERT INTO `sys_oper_log` VALUES (1722, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Speak your mind, even if your voice shakes. 勇敢说出你的想法,哪怕声音会颤抖。。。\",\"createTime\":1641697668958,\"id\":1480013410118348802,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-09 11:07:48'); INSERT INTO `sys_oper_log` VALUES (1723, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"虽有遗憾,并无后悔。\",\"createTime\":1641698193361,\"id\":1480015609653309441,\"source\":\"_SCarLet\",\"type\":5}}', 0, '', '2022-01-09 11:16:33'); INSERT INTO `sys_oper_log` VALUES (1724, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"账号自助-是否开启用户注册功能\",\"configKey\":\"sys.account.registerUser\",\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"configId\":4,\"remark\":\"是否开启注册用户功能(true开启,false关闭)\",\"updateTime\":1640353791000,\"configType\":\"N\",\"configValue\":\"false\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:20:21'); INSERT INTO `sys_oper_log` VALUES (1725, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"账号自助-是否开启用户注册功能\",\"configKey\":\"sys.account.registerUser\",\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"configId\":4,\"remark\":\"是否开启注册用户功能(true开启,false关闭)\",\"updateTime\":1641698421000,\"configType\":\"Y\",\"configValue\":\"true\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:20:45'); INSERT INTO `sys_oper_log` VALUES (1726, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:23:27'); INSERT INTO `sys_oper_log` VALUES (1727, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"账号自助-是否开启用户注册功能\",\"configKey\":\"sys.account.registerUser\",\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"configId\":4,\"remark\":\"是否开启注册用户功能(true开启,false关闭)\",\"updateTime\":1641698445000,\"configType\":\"Y\",\"configValue\":\"false\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:23:36'); INSERT INTO `sys_oper_log` VALUES (1728, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:23:39'); INSERT INTO `sys_oper_log` VALUES (1729, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:27:23'); INSERT INTO `sys_oper_log` VALUES (1730, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:27:47'); INSERT INTO `sys_oper_log` VALUES (1731, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:28:00'); INSERT INTO `sys_oper_log` VALUES (1732, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一直注视着你,似近似远,总是触碰不到。\",\"createTime\":1641699368373,\"id\":1480020538019229697,\"source\":\"Dadicatus545\",\"type\":5}}', 0, '', '2022-01-09 11:36:08'); INSERT INTO `sys_oper_log` VALUES (1733, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"准确的说,我是一个演员。\",\"createTime\":1641699415711,\"id\":1480020736573386754,\"source\":\"零零柒\",\"type\":3}}', 0, '', '2022-01-09 11:36:55'); INSERT INTO `sys_oper_log` VALUES (1734, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与人交往要有底线,值得的真心相待不辜负,不值得的一笑而过不再多说。\",\"createTime\":1641700046656,\"id\":1480023382948524034,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-09 11:47:26'); INSERT INTO `sys_oper_log` VALUES (1735, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"主框架页-侧边栏主题\",\"configKey\":\"sys.index.sideTheme\",\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"configId\":3,\"remark\":\"深色主题theme-dark,浅色主题\",\"configType\":\"Y\",\"configValue\":\"theme-light\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:47:59'); INSERT INTO `sys_oper_log` VALUES (1736, '参数管理', 3, 'com.ruoyi.system.controller.SysConfigController.remove()', 'DELETE', 1, 'admin', NULL, '/config/4', '127.0.0.1', '', NULL, NULL, 1, '内置参数【sys.account.registerUser】不能删除 ', '2022-01-09 11:48:11'); INSERT INTO `sys_oper_log` VALUES (1737, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"账号自助-是否开启用户注册功能\",\"configKey\":\"sys.account.registerUser\",\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"configId\":4,\"remark\":\"是否开启注册用户功能(true开启,false关闭)\",\"updateTime\":1641698616000,\"configType\":\"N\",\"configValue\":\"false\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:48:16'); INSERT INTO `sys_oper_log` VALUES (1738, '参数管理', 3, 'com.ruoyi.system.controller.SysConfigController.remove()', 'DELETE', 1, 'admin', NULL, '/config/4', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:48:17'); INSERT INTO `sys_oper_log` VALUES (1739, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我会用真诚熔化你寂寞多年的心灵,用真心感动你,让时间正明我就是你一直在等待的人,我爱你\\u0014玫瑰。\",\"createTime\":1641700137701,\"id\":1480023764818931714,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-09 11:48:57'); INSERT INTO `sys_oper_log` VALUES (1740, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"相信十年后的八月,我们还会相遇。\",\"createTime\":1641700169566,\"id\":1480023898445262850,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-09 11:49:29'); INSERT INTO `sys_oper_log` VALUES (1741, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 11:53:54'); INSERT INTO `sys_oper_log` VALUES (1742, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"执志不绝群,则不能臻成功铭弘勋。\",\"createTime\":1641700440374,\"id\":1480025034304729089,\"source\":\"(晋)葛洪\",\"type\":4}}', 0, '', '2022-01-09 11:54:00'); INSERT INTO `sys_oper_log` VALUES (1743, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":493}', 0, '', '2022-01-09 11:54:20'); INSERT INTO `sys_oper_log` VALUES (1744, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果你想见,就能见到我,只是那些梦也许不会像现在这么真实,到时候你会知道一切只是你脑中的想象,不过,你的梦也有可能比现在更美好,你可以随心所欲地导演那些梦,你可以把梦变成真实,\",\"createTime\":1641702152831,\"id\":1480032216869974017,\"source\":\"我的父亲,我的儿子\",\"type\":3}}', 0, '', '2022-01-09 12:22:32'); INSERT INTO `sys_oper_log` VALUES (1745, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":342}', 0, '', '2022-01-09 14:33:57'); INSERT INTO `sys_oper_log` VALUES (1746, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生在世,不出一番好议论,不留一番好事业,终日饮食暖衣,无所用心,何自别于禽兽?\",\"createTime\":1641710417558,\"id\":1480066881622323202,\"source\":\"(宋)苏辙\",\"type\":4}}', 0, '', '2022-01-09 14:40:17'); INSERT INTO `sys_oper_log` VALUES (1747, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"老了,拿个爱疯5都不知道要干啥\",\"createTime\":1641710422828,\"id\":1480066903709528066,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-09 14:40:22'); INSERT INTO `sys_oper_log` VALUES (1748, '用户管理', 4, 'com.ruoyi.system.controller.SysUserController.insertAuthRole()', 'PUT', 1, 'admin', NULL, '/user/authRole', '127.0.0.1', '', '101 [2]', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-09 14:41:26'); INSERT INTO `sys_oper_log` VALUES (1749, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":137}', 0, '', '2022-01-09 14:45:29'); INSERT INTO `sys_oper_log` VALUES (1750, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Calm, brave, discerning, not selfish.\",\"createTime\":1641711103764,\"dataId\":3896,\"date\":1600963200000,\"id\":1480069759816642561,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e820c5b7e8c19a9055f622454bd3e919.png\",\"note\":\"沉着、勇猛,有辨别,不自私。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c64168047573477949485991d529996e.mp3\"}}', 0, '', '2022-01-09 14:51:43'); INSERT INTO `sys_oper_log` VALUES (1751, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A problem well stated is a problem half solved.\",\"createTime\":1641711131401,\"dataId\":4187,\"date\":1626105600000,\"id\":1480069875705262082,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/f332a5d7695d06935002d036ec27baa9.png\",\"note\":\"问题说清楚了,就相当于解决一半了。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e2c434c58cdc26a5595f808f1d319137.mp3\"}}', 0, '', '2022-01-09 14:52:11'); INSERT INTO `sys_oper_log` VALUES (1752, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Passion is a key ingredient to the study and practice of law and of life.\",\"createTime\":1641711138028,\"dataId\":3725,\"date\":1586102400000,\"id\":1480069903526080514,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/88a1b7e9b02be6388329a4be911f7293.png\",\"note\":\"激情是学习和实践法律不可或缺的要素,同时也是生命中不可或缺的要素。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/17c662155203497977f9536ac2bac6e1.mp3\"}}', 0, '', '2022-01-09 14:52:18'); INSERT INTO `sys_oper_log` VALUES (1753, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"They say the important thing in life isn’t the destination, it’s the journey.\",\"createTime\":1641711145506,\"dataId\":3778,\"date\":1590768000000,\"id\":1480069934878502914,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/dcd893adff2212b21de324618ef02b4a.png\",\"note\":\"人们说人生最重要的不是目的地,而是旅途本身。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/56241ac9409a2c6ed7c1ad78285c014f.mp3\"}}', 0, '', '2022-01-09 14:52:25'); INSERT INTO `sys_oper_log` VALUES (1754, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"And now here is my secret, a very simple secret: It is only with the heart that one can see rightly; what is essential is invisible to the eye.\",\"createTime\":1641711152664,\"dataId\":3442,\"date\":1562256000000,\"id\":1480069964918108161,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-05.jpg\",\"note\":\"这是我的一个秘密,一个再简单不过的秘密:一个人只有用心去看,才能看到真实。事情的真相仅凭肉眼是无法看穿的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-05-day.mp3\"}}', 0, '', '2022-01-09 14:52:32'); INSERT INTO `sys_oper_log` VALUES (1755, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Happy families are all alike; every unhappy family is unhappy in its own way.\",\"createTime\":1641711848839,\"dataId\":3474,\"date\":1564848000000,\"id\":1480072884849946626,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-04.jpg\",\"note\":\"所有幸福的家庭都相似,而每个不幸的家庭各不同。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-04-day.mp3\"}}', 0, '', '2022-01-09 15:04:08'); INSERT INTO `sys_oper_log` VALUES (1756, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Where did the time go?\",\"createTime\":1641711904766,\"dataId\":4358,\"date\":1640880000000,\"id\":1480073119441563649,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/8b0fca812b4998553b5ac72dcf33b2d9.png\",\"note\":\"时间都到哪去了?\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/290c48da9e6c9e605068b8921cf1c807.mp3\"}}', 0, '', '2022-01-09 15:05:04'); INSERT INTO `sys_oper_log` VALUES (1757, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The only way to do great work is to love what you do. If you haven\'t found it yet, keep looking. Don\'t settle.\",\"createTime\":1641712014239,\"dataId\":3593,\"date\":1575043200000,\"id\":1480073578612994049,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-30.jpg\",\"note\":\"成功一番事业的唯一途径是热爱自己的事业,如果你还没找到的话,继续寻找,不要屈就。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/94d601c31c892420c62c93eaba455c56.mp3\"}}', 0, '', '2022-01-09 15:06:54'); INSERT INTO `sys_oper_log` VALUES (1758, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Men are what their mothers made them.\",\"createTime\":1641712134281,\"dataId\":3758,\"date\":1589040000000,\"id\":1480074082080468994,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/6ec8db951bd72578c4a2574051324d49.png\",\"note\":\"人是母亲塑造而成的。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/c10e41345b766fff00d23298771c5e6f.mp3\"}}', 0, '', '2022-01-09 15:08:54'); INSERT INTO `sys_oper_log` VALUES (1759, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If I were dead and buried and I heard your voice, beneath the sod my heart of dust would still rejoice.\",\"createTime\":1641712177604,\"dataId\":3754,\"date\":1588694400000,\"id\":1480074263794495490,\"imgurl\":\"https://v-sq.ks3-cn-beijing.ksyun.com/image/563f7b7909e7dd57813391db7542f00c.png\",\"note\":\"我死后还会听见你的声音,我在墓中的灵魂依旧欢欣。\",\"source\":\"新版每日一句\",\"tts\":\"https://v-sq.ks3-cn-beijing.ksyun.com/audio/0a7be78d0f5641394802c26c8136f340.mp3\"}}', 0, '', '2022-01-09 15:09:37'); INSERT INTO `sys_oper_log` VALUES (1760, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"My heart laments at the sight of the autumn moon above the mountain pass.\",\"createTime\":1641712233673,\"dataId\":3886,\"date\":1600099200000,\"id\":1480074498964926465,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9101c02a3e36b762e6ead8dd8c1b4470.png\",\"note\":\"何处最伤心,关山见秋月。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/a72c894674a784965fcf3ff6847f0a80.mp3\"}}', 0, '', '2022-01-09 15:10:33'); INSERT INTO `sys_oper_log` VALUES (1761, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The key to immortality is first living a life worth remembering.\",\"createTime\":1641712236650,\"dataId\":3959,\"date\":1606406400000,\"id\":1480074511484923905,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/b2e696e0161b098597a49c32bd77bb53.png\",\"note\":\"若想死后永垂不朽,首先得活得精彩。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/9a54e5884b6bb6bd712b8f5b9a718bfb.mp3\"}}', 0, '', '2022-01-09 15:10:36'); INSERT INTO `sys_oper_log` VALUES (1762, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"An aim in life is the only fortune worth finding.\",\"createTime\":1641712327309,\"dataId\":4935,\"date\":1596643200000,\"id\":1480074891727941633,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/f58a058d6a91c3a9cd8f80adaf68cd6e.3b89602f0ad9b149645c13975d49e12e.jpeg\",\"note\":\"生活的目标,是唯一值得我们去寻找的财富。\",\"source\":\"Robert Louis Stevenson\",\"tts\":\"\"}}', 0, '', '2022-01-09 15:12:07'); INSERT INTO `sys_oper_log` VALUES (1763, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The elderly is history and drama for reference of our lives.\",\"createTime\":1641712422819,\"dataId\":4280,\"date\":1634140800000,\"id\":1480075292300750850,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/bffdc9d7a754184128a7394cc8ca6c9f.png\",\"note\":\"老人犹如历史和戏剧,可为我们的生活提供参考。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a6a87502c50c1cf7b8b70fab9e60dc63.mp3\"}}', 0, '', '2022-01-09 15:13:42'); INSERT INTO `sys_oper_log` VALUES (1764, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Pay attention to the signs of love around you, because you know that life has an end. P.S.: I love you forever.\",\"createTime\":1641712547475,\"dataId\":3679,\"date\":1581609600000,\"id\":1480075815171076098,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/b45c88c49223ae48c56a76c1afb3b7d5.png\",\"note\":\"留心身边爱的讯号,要知道生命是有尽头的。附注:我永远爱你。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/8459d0ea0dd2671e86706160c57ce3ea.mp3\"}}', 0, '', '2022-01-09 15:15:47'); INSERT INTO `sys_oper_log` VALUES (1765, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sometimes, the right one for you is the one who was there the whole time.\",\"createTime\":1641712907659,\"dataId\":4284,\"date\":1634400000000,\"id\":1480077325883879426,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/70234f306898a62a5387831257a207df.png\",\"note\":\"有时候,对的那个人,就是始终陪伴左右的那个。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/8b59ccb86d46edc982b240b0ea215b62.mp3\"}}', 0, '', '2022-01-09 15:21:47'); INSERT INTO `sys_oper_log` VALUES (1766, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I have crossed oceans of time to find you.\",\"createTime\":1641713033950,\"dataId\":4104,\"date\":1618934400000,\"id\":1480077855595114498,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/5455cc73ee8729bf7e92ec3bc2a0ccd9.png\",\"note\":\"我跨越时间的海洋来寻你。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cc295d8a6d9c2b27920c15a4c3010030.mp3\"}}', 0, '', '2022-01-09 15:23:53'); INSERT INTO `sys_oper_log` VALUES (1767, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The real opportunity for success lies within the person and not in the job.\",\"createTime\":1641713099689,\"dataId\":4044,\"date\":1613750400000,\"id\":1480078131320270850,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/9d9cd33530e5930468f7142235d97b22.png\",\"note\":\"成功的真正机会在于人而非工作。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e89e7bdb854c00c7ab43715a995c1419.mp3\"}}', 0, '', '2022-01-09 15:24:59'); INSERT INTO `sys_oper_log` VALUES (1768, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"As a body everyone is single, as a soul never.\",\"createTime\":1641713157480,\"dataId\":3964,\"date\":1606838400000,\"id\":1480078373709099009,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4e66ba0ca31b47d8914690081640fab4.png\",\"note\":\"每个人的身体都是独立的,但灵魂从来不是。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6a5e7acf715b8a0c7ecd80953cf8321f.mp3\"}}', 0, '', '2022-01-09 15:25:57'); INSERT INTO `sys_oper_log` VALUES (1769, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The art of being wise is the art of knowing what to overlook.\",\"createTime\":1641713187094,\"dataId\":3509,\"date\":1567872000000,\"id\":1480078497931800578,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-09-08.jpg\",\"note\":\"掌握智慧的重点在于学会选择性地忽视。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-09-08-day.mp3\"}}', 0, '', '2022-01-09 15:26:27'); INSERT INTO `sys_oper_log` VALUES (1770, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Pretend modest often is nonsense, sometimes just is the beat around the bush boast.\",\"createTime\":1641713408529,\"dataId\":3709,\"date\":1584806400000,\"id\":1480079426676535298,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/86ab971af68c9e29f95a66473cb1d3ed.png\",\"note\":\"假装谦虚往往就是信口开河,有时候简直是拐弯抹角的自夸。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/85a48bdd2347928e4a683745faa295c6.mp3\"}}', 0, '', '2022-01-09 15:30:08'); INSERT INTO `sys_oper_log` VALUES (1771, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"This is the last game so make it count, it’s now or never.\",\"createTime\":1641713711343,\"dataId\":4117,\"date\":1620057600000,\"id\":1480080696799866881,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/2c5a910de4ef7124a704fe5275ed56fc.png\",\"note\":\"不要辜负这最后的比赛,时不我待。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/177ef79da6762caac3c39f554f22aee1.mp3\"}}', 0, '', '2022-01-09 15:35:11'); INSERT INTO `sys_oper_log` VALUES (1772, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"When you meet someone and you\'re attracted to them, it just means that your subconscious is attracted to their subconscious, subconsciously.\",\"createTime\":1641713940730,\"dataId\":3393,\"date\":1558022400000,\"id\":1480081658906095618,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-05-17.jpg\",\"note\":\"当你被某个人吸引时,那只是意味着你俩在潜意识里互相吸引。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-05-171-day.mp3\"}}', 0, '', '2022-01-09 15:39:00'); INSERT INTO `sys_oper_log` VALUES (1773, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Venture outside your comfort zone! The rewards are worth it.\",\"createTime\":1641713988202,\"dataId\":4214,\"date\":1628438400000,\"id\":1480081857988734977,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/2b8cecc7ab4deee6262d6f83db5ddb8b.png\",\"note\":\"勇敢踏出舒适圈去冒险吧!那些回报绝对值得。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/edb82805a4d282bd929a52139b5e32c1.mp3\"}}', 0, '', '2022-01-09 15:39:48'); INSERT INTO `sys_oper_log` VALUES (1774, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"说了你又不听,听了你又不懂,懂了你又不做,做了你又做错,错了你又不认,认了你又不改,改了你又不服,不服你又不说\",\"createTime\":1641714220932,\"id\":1480082834154270722,\"source\":\"江湖\",\"type\":3}}', 0, '', '2022-01-09 15:43:40'); INSERT INTO `sys_oper_log` VALUES (1775, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"虽然你们是扮演路人甲乙丙丁,但是一样是有生命、有灵魂的。\",\"createTime\":1641714435849,\"id\":1480083735594086402,\"source\":\"喜剧之王\",\"type\":3}}', 0, '', '2022-01-09 15:47:15'); INSERT INTO `sys_oper_log` VALUES (1776, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":433}', 0, '', '2022-01-09 15:47:20'); INSERT INTO `sys_oper_log` VALUES (1777, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":65}', 0, '', '2022-01-09 15:53:19'); INSERT INTO `sys_oper_log` VALUES (1778, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":129}', 0, '', '2022-01-09 16:12:29'); INSERT INTO `sys_oper_log` VALUES (1779, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Friendship means understanding, not agreement. \",\"createTime\":1641716150278,\"dataId\":4209,\"date\":1628006400000,\"id\":1480090926426345474,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a5ccca2dc75be6fa4c1bbe87af3eca10.png\",\"note\":\"友谊是理解,而非妥协。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0b119c6426e4c9c2ed62ff296e5baea1.mp3\"}}', 0, '', '2022-01-09 16:15:50'); INSERT INTO `sys_oper_log` VALUES (1780, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Although the world is full of suffering, it is also full of the overcoming of it.\",\"createTime\":1641716420626,\"dataId\":3421,\"date\":1560441600000,\"id\":1480092060322877441,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-14.jpg\",\"note\":\"虽然世界多苦难,但是苦难总是能战胜的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-14-day.mp3\"}}', 0, '', '2022-01-09 16:20:20'); INSERT INTO `sys_oper_log` VALUES (1781, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Everything has a purpose, even machine. \",\"createTime\":1641716433770,\"dataId\":3887,\"date\":1600185600000,\"id\":1480092115444420610,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/fba149a27b5d468971cee0ea1ab0c041.png\",\"note\":\"万物皆有使命,即使机器也有。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/29f67f319e8847dd391327599603959a.mp3\"}}', 0, '', '2022-01-09 16:20:33'); INSERT INTO `sys_oper_log` VALUES (1782, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Success is not the key to happiness. Happiness is the key to success.\",\"createTime\":1641716438197,\"dataId\":4931,\"date\":1597593600000,\"id\":1480092134041964546,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/5c5e198f4db17460fbb2d4cea983d4da.91cdaeba008a9866ad796065ce02e23e.jpeg\",\"note\":\"成功并不是快乐的关键,快乐才是成功的关键。\",\"source\":\"Albert Schweitzer\",\"tts\":\"\"}}', 0, '', '2022-01-09 16:20:38'); INSERT INTO `sys_oper_log` VALUES (1783, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Whatever you do, just don\'t make any rash decision.\",\"createTime\":1641719270460,\"dataId\":4218,\"date\":1628784000000,\"id\":1480104013418160129,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a3562026372317ab865f3a31750bb8cd.png\",\"note\":\"无论你想做什么,千万不要贸然行事。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c7de7077586deaae9a9e42ce453da961.mp3\"}}', 0, '', '2022-01-09 17:07:50'); INSERT INTO `sys_oper_log` VALUES (1784, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Your mind is like this water. When it is agitated, it becomes difficult to see, but if you allow it to settle, the answer becomes clear.\",\"createTime\":1641720663159,\"dataId\":3620,\"date\":1577289600000,\"id\":1480109854812758017,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-26.jpg\",\"note\":\"心如此水,乱则不明,但若心如止水,答案便尽现眼前。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/4778ae9d8ad62e055c9c5a045e2f2d07.mp3\"}}', 0, '', '2022-01-09 17:31:03'); INSERT INTO `sys_oper_log` VALUES (1785, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Reducing human contact doesn’t lessen drivers’ sense of humanity.\",\"createTime\":1641720669256,\"dataId\":3726,\"date\":1586188800000,\"id\":1480109880351875073,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/f5d21805c45a4d9b5a6f386e628546e7.png\",\"note\":\"虽然人与人的直接接触减少了,但这并没有削弱外卖骑手的人性关怀。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/d2d8d7c3cea23c182aecfb511c38a153.mp3\"}}', 0, '', '2022-01-09 17:31:09'); INSERT INTO `sys_oper_log` VALUES (1786, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You can\'t sit around and wait for others to arrange your life; if you want something, fight for it yourself. \",\"createTime\":1641720687840,\"dataId\":4109,\"date\":1619366400000,\"id\":1480109958319792129,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/edb8fe283057bab9e14677291ff0ce84.png\",\"note\":\"你不能等待别人来安排你的人生;自己想要的,自己争取。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/652d2bbe46987a02027e9d5cca400a17.mp3\"}}', 0, '', '2022-01-09 17:31:27'); INSERT INTO `sys_oper_log` VALUES (1787, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":610}', 0, '', '2022-01-09 19:40:02'); INSERT INTO `sys_oper_log` VALUES (1788, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you focus on what you left behind, you will never see what lies ahead.\",\"createTime\":1641728479228,\"dataId\":4940,\"date\":1597075200000,\"id\":1480142637757063170,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/009d3644168dc46a0429679efaeafe5a.74a0e31c84aceaa910dce93fb1a717a5.jpeg\",\"note\":\"如果你只顾回头看,你就永远无法看到前路有什么。\",\"source\":\"《美食总动员》\",\"tts\":\"\"}}', 0, '', '2022-01-09 19:41:19'); INSERT INTO `sys_oper_log` VALUES (1789, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Generosity is its own form of power.\",\"createTime\":1641728490016,\"dataId\":3926,\"date\":1603555200000,\"id\":1480142683013603329,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/58fe511d192af75aa5c3056264de867d.png\",\"note\":\"别低估了慷慨的力量。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/fa474a7705efd6eb5cefb3177677d3df.mp3\"}}', 0, '', '2022-01-09 19:41:30'); INSERT INTO `sys_oper_log` VALUES (1790, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-10 08:47:12'); INSERT INTO `sys_oper_log` VALUES (1791, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you put off everything till you\'re sure of it, you\'ll never get anything done.\",\"createTime\":1641775749375,\"dataId\":3937,\"date\":1604505600000,\"id\":1480340903112712194,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/74797f8046087c97eb83ca75fc215031.png\",\"note\":\"如果你把每件事都推迟到确定以后才做,那你什么都做不成。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/d7d1be6330b647e97102838485e2612c.mp3\"}}', 0, '', '2022-01-10 08:49:09'); INSERT INTO `sys_oper_log` VALUES (1792, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"倒啤酒时上面总有一层泡沫,看似庞大,但抿一口全是空气,你给的感情也是。\",\"createTime\":1641775877721,\"id\":1480341441460019202,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-10 08:51:17'); INSERT INTO `sys_oper_log` VALUES (1793, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":116}', 0, '', '2022-01-10 08:52:58'); INSERT INTO `sys_oper_log` VALUES (1794, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"树上的鸟儿成双对,对面的冤家你想掐死谁。\",\"createTime\":1641776125959,\"id\":1480342482612101121,\"source\":\"生命。\",\"type\":5}}', 0, '', '2022-01-10 08:55:25'); INSERT INTO `sys_oper_log` VALUES (1795, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"家你想掐死谁。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Who do you want to strangle at home.\",\"src\":\"家你想掐死谁。\"}]}}', 0, '', '2022-01-10 08:55:31'); INSERT INTO `sys_oper_log` VALUES (1796, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Truth has no special time of its own. Its hour is now always.\",\"createTime\":1641778140569,\"dataId\":3557,\"date\":1572019200000,\"id\":1480350932507258881,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-26.jpg\",\"note\":\"真理没有自己特定的时间段。它的时间永远是现在。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-26-day.mp3\"}}', 0, '', '2022-01-10 09:29:00'); INSERT INTO `sys_oper_log` VALUES (1797, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Spring is when you feel like whistling even with a shoe full of slush.\\u000B\",\"createTime\":1641779582454,\"dataId\":4103,\"date\":1618848000000,\"id\":1480356980240642050,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/681f6be34e4ca4d8604a3ba86963325e.png\",\"note\":\"所谓春天,就是即使鞋子灌满泥巴,仍然想吹起口哨。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/394d4c0ed5713382909c23a0f61b8fdf.mp3\"}}', 0, '', '2022-01-10 09:53:02'); INSERT INTO `sys_oper_log` VALUES (1798, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":600}', 0, '', '2022-01-10 09:58:01'); INSERT INTO `sys_oper_log` VALUES (1799, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"搜索\",\"top\":2,\"createTime\":1641780081097,\"englishWord\":\"search\",\"isCollect\":1,\"id\":1480359071717675009,\"sort\":0,\"content\":\"search\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-10 10:01:21'); INSERT INTO `sys_oper_log` VALUES (1800, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_topsearch_allnetwork', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-10 10:04:32'); INSERT INTO `sys_oper_log` VALUES (1801, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":206}', 0, '', '2022-01-10 13:15:12'); INSERT INTO `sys_oper_log` VALUES (1802, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":202}', 0, '', '2022-01-10 13:33:05'); INSERT INTO `sys_oper_log` VALUES (1803, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你总是让我等 却不说归期。\",\"createTime\":1641792792543,\"id\":1480412387361386497,\"source\":\"怎么了,没什么\",\"type\":2}}', 0, '', '2022-01-10 13:33:12'); INSERT INTO `sys_oper_log` VALUES (1804, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Rudeness is merely the expression of fear. People fear they won\'t get what they want. The most dreadful and unattractive person only needs to be loved, and they will open up like a flower.\",\"createTime\":1641792792625,\"dataId\":3432,\"date\":1561392000000,\"id\":1480412387696930818,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-25.jpg\",\"note\":\"粗鲁只是恐惧的表现。人们恐惧无法得到所期望的。最可怕的、不招人喜爱的人也只是需要被爱,那么他们便会像花儿般绽放。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-25-day.mp3\"}}', 0, '', '2022-01-10 13:33:12'); INSERT INTO `sys_oper_log` VALUES (1805, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Let our advance worrying become advance thinking and planning. \",\"createTime\":1641792807690,\"dataId\":4023,\"date\":1611936000000,\"id\":1480412450879926273,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e23d00d1fe149ce8a1f7a7f8833b9c79.png\",\"note\":\"把事前忧虑花的时间,用在事前的思索与准备上。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/f8472911672fafb471408a5162de642d.mp3\"}}', 0, '', '2022-01-10 13:33:27'); INSERT INTO `sys_oper_log` VALUES (1806, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生最好的旅行,就是你在一个陌生的地方,发现一种久违的感动。\",\"createTime\":1641792810800,\"id\":1480412463936794625,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-10 13:33:30'); INSERT INTO `sys_oper_log` VALUES (1807, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You can know everything in the world, but the only way you\'re findin\' out that one is by givin\' it a shot.\",\"createTime\":1641823507815,\"dataId\":4097,\"date\":1618329600000,\"id\":1480541216552181761,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/59569337da8e3172fef6d8fe20d2f1a2.png\",\"note\":\"你可以了解世间万物,但追根溯源的唯一途径便是亲身尝试。 \",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/b16db6dec3ac8372a1b4d1bf45127c1d.mp3\"}}', 0, '', '2022-01-10 22:05:07'); INSERT INTO `sys_oper_log` VALUES (1808, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We will all be judged by the courage of our hearts.\",\"createTime\":1641823532643,\"dataId\":3992,\"date\":1609257600000,\"id\":1480541320667389954,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/8dc511698b1aa183d62f37ab7472e194.png\",\"note\":\"最终,衡量我们的是内心的勇气。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e3c557891410c74b147116f350f72fb7.mp3\"}}', 0, '', '2022-01-10 22:05:32'); INSERT INTO `sys_oper_log` VALUES (1809, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A real friend is hard to find, difficult to leave and impossible to forget. 真正的朋友,难找、难舍、亦难忘。\",\"createTime\":1641823543916,\"id\":1480541367987527682,\"source\":\"杨爱天\",\"type\":5}}', 0, '', '2022-01-10 22:05:43'); INSERT INTO `sys_oper_log` VALUES (1810, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":747}', 0, '', '2022-01-10 22:06:26'); INSERT INTO `sys_oper_log` VALUES (1811, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-10 22:07:28'); INSERT INTO `sys_oper_log` VALUES (1812, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Life is all about a simple word, just get through it.\",\"createTime\":1641823655979,\"dataId\":3817,\"date\":1594137600000,\"id\":1480541838026399745,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/70250c7349cdc5b75d64c8e4cf55dad6.png\",\"note\":\"生活就是简单的一个词,坚持下去。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b1e414737656938fdb610bd5a799c11e.mp3\"}}', 0, '', '2022-01-10 22:07:35'); INSERT INTO `sys_oper_log` VALUES (1813, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There is no pressure when you are making a dream come true.\",\"createTime\":1641823657704,\"dataId\":4055,\"date\":1614700800000,\"id\":1480541845228019714,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/6d5298cf359d93543bc1cb2d83f95de3.png\",\"note\":\"当你是在为梦想成真努力时,就不会有压力。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/67b7ca22ee1342aa5b1af7feb31356b7.mp3\"}}', 0, '', '2022-01-10 22:07:37'); INSERT INTO `sys_oper_log` VALUES (1814, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The struggle makes everything all the more worth it.\",\"createTime\":1641823659160,\"dataId\":4302,\"date\":1636041600000,\"id\":1480541851326537730,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/5bfcec6eb0391c25efc8a52a5c817d2a.png\",\"note\":\"奋斗让一切都变得更有价值。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/098ef7fa20a89a0f06218e7770b8ddef.mp3\"}}', 0, '', '2022-01-10 22:07:39'); INSERT INTO `sys_oper_log` VALUES (1815, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The important thing in life is to have a great aim , and the determination to attain it.\",\"createTime\":1641823660564,\"dataId\":3612,\"date\":1576598400000,\"id\":1480541857240506369,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-18.jpg\",\"note\":\"人生重要的事情就是确定一个伟大的目标,并决心实现它。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/543f1b8f452972bb6ce3aaa9d59e50ea.mp3\"}}', 0, '', '2022-01-10 22:07:40'); INSERT INTO `sys_oper_log` VALUES (1816, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Fear not that the life shall come to an end, but rather fear that it shall never have a beginning.\",\"createTime\":1641823664377,\"dataId\":3458,\"date\":1563465600000,\"id\":1480541873250164738,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-19.jpg\",\"note\":\"不要害怕你的生活将要结束,应该担心你的生活永远还未真正开始。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-19-day.mp3\"}}', 0, '', '2022-01-10 22:07:44'); INSERT INTO `sys_oper_log` VALUES (1817, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Savages we call them because their manners differ from ours.\",\"createTime\":1641823670123,\"dataId\":3728,\"date\":1586361600000,\"id\":1480541897350635522,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/417902432a6c2f2ee9b26534e20392d8.png\",\"note\":\"我们称呼他们为野蛮人,就因为他们的文明和我们的不同。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/ee30d67c92b3487df102601bca5866cf.mp3\"}}', 0, '', '2022-01-10 22:07:50'); INSERT INTO `sys_oper_log` VALUES (1818, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I am a great believer in luck, and I find that the harder I work, the more I have of it.\",\"createTime\":1641823674157,\"dataId\":3696,\"date\":1583683200000,\"id\":1480541914257874945,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/b229f266372fd4860a23c3fe242c3d2c.png\",\"note\":\"我很相信运气,事实上我发现我越努力,我的运气越好。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/fa0ad64aebf5fb2c2f33761bd76d2973.mp3\"}}', 0, '', '2022-01-10 22:07:54'); INSERT INTO `sys_oper_log` VALUES (1819, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Truth has no special time of its own. Its hour is now always.\",\"dataId\":3557,\"date\":1572019200000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-26.jpg\",\"note\":\"真理没有自己特定的时间段。它的时间永远是现在。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-26-day.mp3\"}}', 0, '', '2022-01-10 22:07:57'); INSERT INTO `sys_oper_log` VALUES (1820, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We shall fight with growing confidence and growing strength in the air.\",\"createTime\":1641823682631,\"dataId\":3872,\"date\":1598889600000,\"id\":1480541949779435521,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/cea2360b2eb1d4d7b20cc31ade73f409.png\",\"note\":\"我们要以高涨的信心和喷涌的力量去战斗。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/6a87986d6534c8344031732c93f629db.mp3\"}}', 0, '', '2022-01-10 22:08:02'); INSERT INTO `sys_oper_log` VALUES (1821, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The instinct of a man is to pursue everything that flies from him, and to fly from all that pursue him.\",\"createTime\":1641823684023,\"dataId\":3481,\"date\":1565452800000,\"id\":1480541955643072514,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-11.jpg\",\"note\":\"人的本能是追逐从他身边飞走的东西,却逃避追逐他的东西。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-11-day.mp3\"}}', 0, '', '2022-01-10 22:08:04'); INSERT INTO `sys_oper_log` VALUES (1822, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生最痛苦的事,莫过于大年三十上二十四小时班!悲哀\",\"createTime\":1641824404096,\"id\":1480544975856525313,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-10 22:20:04'); INSERT INTO `sys_oper_log` VALUES (1823, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A lie can travel halfway around the world while the truth is still putting on its shoes.\",\"createTime\":1641824618626,\"dataId\":4140,\"date\":1622044800000,\"id\":1480545875610230785,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4f8d42c1df2263722257c08a15c56f0b.png\",\"note\":\"当真理还正在穿鞋的时候,谎言就能走遍半个世界。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/3b68e7f526a991f48876728f53c37ad2.mp3\"}}', 0, '', '2022-01-10 22:23:38'); INSERT INTO `sys_oper_log` VALUES (1824, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Truth needs no color; beauty, no pencil.\",\"createTime\":1641827088986,\"dataId\":3537,\"date\":1570291200000,\"id\":1480556237088808961,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-06.jpg\",\"note\":\"真理不需色彩,美丽不需涂饰。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-06-day.mp3\"}}', 0, '', '2022-01-10 23:04:48'); INSERT INTO `sys_oper_log` VALUES (1825, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\",\"createTime\":1641827092185,\"id\":1480556250497998850,\"source\":\"qslzlancer\",\"type\":5}}', 0, '', '2022-01-10 23:04:52'); INSERT INTO `sys_oper_log` VALUES (1826, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"It\'s sad that you don\'t know anything. Nothing is unimportant in this world!\",\"src\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\"}]}}', 0, '', '2022-01-10 23:05:01'); INSERT INTO `sys_oper_log` VALUES (1827, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"It\'s sad that you don\'t know anything. Nothing is unimportant in this world!\",\"src\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\"}]}}', 0, '', '2022-01-10 23:05:23'); INSERT INTO `sys_oper_log` VALUES (1828, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":43,\"errorCode\":0,\"transResult\":[{\"dst\":\"Very sad, you what all don\'t know, in this world nothing is not important!\",\"src\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-10 23:05:26'); INSERT INTO `sys_oper_log` VALUES (1829, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"It\'s sad that you don\'t know anything. Nothing is unimportant in this world!\",\"src\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\"}]}}', 0, '', '2022-01-10 23:05:29'); INSERT INTO `sys_oper_log` VALUES (1830, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"It\'s sad that you don\'t know anything. Nothing is unimportant in this world!\",\"src\":\"真可悲,你什么都不知道,在这个世界上没有什么是不重要的!\"}]}}', 0, '', '2022-01-10 23:05:32'); INSERT INTO `sys_oper_log` VALUES (1831, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你妈妈吗\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Am I your mother\",\"src\":\"我是你妈妈吗\"}]}}', 0, '', '2022-01-10 23:05:38'); INSERT INTO `sys_oper_log` VALUES (1832, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你妈妈吗\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Am I your mother\",\"src\":\"我是你妈妈吗\"}]}}', 0, '', '2022-01-10 23:05:41'); INSERT INTO `sys_oper_log` VALUES (1833, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我是你妈妈吗\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":16,\"errorCode\":0,\"transResult\":[{\"dst\":\"I am your mother\",\"src\":\"我是你妈妈吗\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-10 23:05:44'); INSERT INTO `sys_oper_log` VALUES (1834, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"因为有爱,所以有期待;因为有爱,所以有要求。\",\"createTime\":1641827148213,\"id\":1480556485496463361,\"source\":\"阿土仔\",\"type\":5}}', 0, '', '2022-01-10 23:05:48'); INSERT INTO `sys_oper_log` VALUES (1835, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"因为有爱,所以有期待;因为有爱,所以有要求。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":20,\"errorCode\":0,\"transResult\":[{\"dst\":\"Because there is love, so look forward to;\",\"src\":\"因为有爱,所以有期待;\"},{\"dst\":\"Because there is love, so they have requirements.\",\"src\":\"因为有爱,所以有要求。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-10 23:05:51'); INSERT INTO `sys_oper_log` VALUES (1836, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"因为有爱,所以有期待;因为有爱,所以有要求。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Because there is love, there is expectation; Because there is love, there is demand.\",\"src\":\"因为有爱,所以有期待;因为有爱,所以有要求。\"}]}}', 0, '', '2022-01-10 23:05:53'); INSERT INTO `sys_oper_log` VALUES (1837, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"因为有爱,所以有期待;因为有爱,所以有要求。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Because there is love, there is expectation; Because there is love, there is demand.\",\"src\":\"因为有爱,所以有期待;因为有爱,所以有要求。\"}]}}', 0, '', '2022-01-10 23:05:56'); INSERT INTO `sys_oper_log` VALUES (1838, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"allnetworkList\":[]}}', 0, '', '2022-01-10 23:19:31'); INSERT INTO `sys_oper_log` VALUES (1839, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"allnetworkList\":[]}}', 0, '', '2022-01-10 23:21:35'); INSERT INTO `sys_oper_log` VALUES (1840, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"allnetworkList\":[]}}', 0, '', '2022-01-10 23:23:41'); INSERT INTO `sys_oper_log` VALUES (1841, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"allnetworkList\":[]}}', 0, '', '2022-01-10 23:24:24'); INSERT INTO `sys_oper_log` VALUES (1842, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"allnetworkList\":[]}}', 0, '', '2022-01-10 23:25:04'); INSERT INTO `sys_oper_log` VALUES (1843, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"allnetworkList\":[]}}', 0, '', '2022-01-10 23:27:44'); INSERT INTO `sys_oper_log` VALUES (1844, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"allnetworkList\":[]}}', 0, '', '2022-01-10 23:28:43'); INSERT INTO `sys_oper_log` VALUES (1845, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, '', '2022-01-10 23:30:49'); INSERT INTO `sys_oper_log` VALUES (1846, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"allnetworkList\":[]}}', 0, '', '2022-01-10 23:32:37'); INSERT INTO `sys_oper_log` VALUES (1847, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1\r\n### The error may exist in com/xjs/apilog/mapper/ApiLogMapper.java (best guess)\r\n### The error may involve com.xjs.apilog.mapper.ApiLogMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO api_log ( id, api_name, url, method, request, response, is_success, create_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1\n; Data truncation: Data too long for column \'response\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1', '2022-01-10 23:34:03'); INSERT INTO `sys_oper_log` VALUES (1848, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":383,\"apiName\":\"天行-全网热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/networkhot/index\",\"createTime\":1641828948000,\"limitCount\":8,\"updateTime\":1641828948000,\"id\":1480564034572640257,\"totalCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-10 23:37:09'); INSERT INTO `sys_oper_log` VALUES (1849, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/log/1480563797640568834', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-10 23:37:28'); INSERT INTO `sys_oper_log` VALUES (1850, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/log/1480563232839778305', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-10 23:37:30'); INSERT INTO `sys_oper_log` VALUES (1851, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-11 08:42:30'); INSERT INTO `sys_oper_log` VALUES (1852, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-11 08:42:31'); INSERT INTO `sys_oper_log` VALUES (1853, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-11 08:43:03'); INSERT INTO `sys_oper_log` VALUES (1854, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有人说;爱一个人,就是把自己卑微到尘埃,抬头仰望对方的光芒。为你摘下面具。但,除了你,世界都觉察到了我的卑微。\",\"createTime\":1641648573000,\"id\":1479807486762123273,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-11 08:43:33'); INSERT INTO `sys_oper_log` VALUES (1855, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You have dreams,you go to protect it.\",\"createTime\":1641861910692,\"dataId\":4194,\"date\":1626710400000,\"id\":1480702289860784130,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/8553c92db49daa5c357e9602958024a6.png\",\"note\":\"如果你有梦想,就去守护它。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/7e8f339eca98cad6b457980aadc689e3.mp3\"}}', 0, '', '2022-01-11 08:45:10'); INSERT INTO `sys_oper_log` VALUES (1856, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_topsearch_wechat', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-11 08:46:59'); INSERT INTO `sys_oper_log` VALUES (1857, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, 'com.xjs.topsearch.mapper.ApiTopsearchWechatMapper.insert (batch index #1) failed. Cause: java.sql.BatchUpdateException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'index,\ncreate_time ) VALUES ( 1480717276553560068,\n\'俞敏洪:新东方营收�\' at line 3\n; bad SQL grammar []; nested exception is java.sql.BatchUpdateException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'index,\ncreate_time ) VALUES ( 1480717276553560068,\n\'俞敏洪:新东方营收�\' at line 3', '2022-01-11 09:44:43'); INSERT INTO `sys_oper_log` VALUES (1858, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, 'com.xjs.topsearch.mapper.ApiTopsearchWechatMapper.insert (batch index #1) failed. Cause: java.sql.BatchUpdateException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'index,\ncreate_time ) VALUES ( 1480718089841750025,\n\'俞敏洪:新东方营收�\' at line 3\n; bad SQL grammar []; nested exception is java.sql.BatchUpdateException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'index,\ncreate_time ) VALUES ( 1480718089841750025,\n\'俞敏洪:新东方营收�\' at line 3', '2022-01-11 09:47:57'); INSERT INTO `sys_oper_log` VALUES (1859, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, 'nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named \'index\' in \'class com.xjs.topsearch.domain.ApiTopsearchWechat\'', '2022-01-11 09:48:58'); INSERT INTO `sys_oper_log` VALUES (1860, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":45,\"apiName\":\"天行-微信热搜榜\",\"dayCount\":6,\"apiUrl\":\"http://api.tianapi.com/wxhottopic/index\",\"createTime\":1641865484000,\"limitCount\":5,\"updateTime\":1641865851000,\"id\":1480717276431994882,\"totalCount\":6}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-11 09:53:23'); INSERT INTO `sys_oper_log` VALUES (1861, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":795}', 0, '', '2022-01-11 09:54:01'); INSERT INTO `sys_oper_log` VALUES (1862, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":35}', 0, '', '2022-01-11 09:54:11'); INSERT INTO `sys_oper_log` VALUES (1863, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"现实告诉我们说:有什么别有事;没什么别没钱;动什么别动情。\",\"createTime\":1641866102301,\"id\":1480719870768361473,\"source\":\"柠乐\",\"type\":5}}', 0, '', '2022-01-11 09:55:02'); INSERT INTO `sys_oper_log` VALUES (1864, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I will be responsible for my fate. I will not be a burden to anyone.\",\"createTime\":1641866120851,\"dataId\":3589,\"date\":1574697600000,\"id\":1480719948568506369,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-26.jpg\",\"note\":\"我自己的命我自己扛,不连累别人!\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/https://edu-wps.ks3-cn-beijing.ksyun.com/audio/a2bb0a75c1679710a70a62674d3c8fd5.mp3\"}}', 0, '', '2022-01-11 09:55:20'); INSERT INTO `sys_oper_log` VALUES (1865, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"When you reach the end of your rope, tie a knot in it and hang on.\",\"createTime\":1641866279109,\"dataId\":3946,\"date\":1605283200000,\"id\":1480720612350668802,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/ddefbdc7b1c680b076184d05e4726d00.png\",\"note\":\"哪怕希望快要破灭,也要努力挣扎,坚持下去。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e3191b2c454327c85df823fdadd6153e.mp3\"}}', 0, '', '2022-01-11 09:57:59'); INSERT INTO `sys_oper_log` VALUES (1866, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Winning that ticket was the best thing that ever happened to me. \",\"createTime\":1641866346912,\"dataId\":4219,\"date\":1628870400000,\"id\":1480720896720285697,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/74f714c7ea2ddc52b229720730c36291.png\",\"note\":\"赌赢那张船票,是我一生中最幸运的事。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0d90b6f80b9ba0b418f3734f5610a1f3.mp3\"}}', 0, '', '2022-01-11 09:59:06'); INSERT INTO `sys_oper_log` VALUES (1867, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Whenever people want you to do something they think it\'s wrong, they say it’s “reality”.\",\"createTime\":1641866379897,\"dataId\":4033,\"date\":1612800000000,\"id\":1480721035094568962,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e3e719a7e916f2ed097f4068780a42ad.png\",\"note\":\"当人们想要你去做一些他们认为不对的事,他们就会说是“现实”。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/1dd597795bb229dd52c421bf94066c07.mp3\"}}', 0, '', '2022-01-11 09:59:39'); INSERT INTO `sys_oper_log` VALUES (1868, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Every man dies, not every man really lives. \",\"createTime\":1641866399491,\"dataId\":3602,\"date\":1575734400000,\"id\":1480721117298733058,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-08.jpg\",\"note\":\"每个人都会死去,但不是每个人都真正活过。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/437a6c72b12a3ef9b4788a9955281733.mp3\"}}', 0, '', '2022-01-11 09:59:59'); INSERT INTO `sys_oper_log` VALUES (1869, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Everything that has a beginning has an end. \",\"createTime\":1641866403797,\"dataId\":4338,\"date\":1639152000000,\"id\":1480721135359406081,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e15d36b3b4becb76e4d3c651a386e085.png\",\"note\":\"世间万物有始皆有终。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/37028313a7899e9c3dae43bb90a1c7e3.mp3\"}}', 0, '', '2022-01-11 10:00:03'); INSERT INTO `sys_oper_log` VALUES (1870, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The farther backward you can look, the farther forward you will see.\",\"createTime\":1641866417750,\"dataId\":3684,\"date\":1582646400000,\"id\":1480721193836392450,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/2ccd961a79cfb993a814b8e20639ef07.png\",\"note\":\"你回首看得越远,你向前也会看得越远。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/0d4f999b644a1ac01cb8177f639da94d.mp3\"}}', 0, '', '2022-01-11 10:00:17'); INSERT INTO `sys_oper_log` VALUES (1871, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有时候,没有下一次,没有机会重来,没有暂停继续。有时候,错过了现在,就永远永远的没机会了。\",\"createTime\":1641867735106,\"id\":1480726719257313282,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-11 10:22:15'); INSERT INTO `sys_oper_log` VALUES (1872, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"brief\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"短暂的\",\"src\":\"brief\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-01-11 10:22:22'); INSERT INTO `sys_oper_log` VALUES (1873, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"keyword\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"关键字\",\"src\":\"keyword\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-01-11 10:22:27'); INSERT INTO `sys_oper_log` VALUES (1874, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"trend\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"趋势\",\"src\":\"trend\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-01-11 10:22:39'); INSERT INTO `sys_oper_log` VALUES (1875, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_topsearch_baidu', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-11 10:26:37'); INSERT INTO `sys_oper_log` VALUES (1876, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"宅,是一种生活状态;死宅,是一种人生境界⋯⋯\",\"createTime\":1641868080252,\"id\":1480728166900367361,\"source\":\"朝颜留空\",\"type\":5}}', 0, '', '2022-01-11 10:28:00'); INSERT INTO `sys_oper_log` VALUES (1877, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, '\r\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1\r\n### The error may exist in com/xjs/apilog/mapper/ApiLogMapper.java (best guess)\r\n### The error may involve com.xjs.apilog.mapper.ApiLogMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO api_log ( id, api_name, url, method, request, response, is_success, create_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1\n; Data truncation: Data too long for column \'response\' at row 1; nested exception is com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'response\' at row 1', '2022-01-11 10:44:15'); INSERT INTO `sys_oper_log` VALUES (1878, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, 'can not cast to long, value : 习近平新时代中国特色社会主义思想是中华文化和中国精神的时代精华,实现了马克思主义中国化新的飞跃。十九届六中全会决议,用10个“明确”概括了核心内容。 查看更多>', '2022-01-11 10:44:56'); INSERT INTO `sys_oper_log` VALUES (1879, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":304}', 0, '', '2022-01-11 14:17:03'); INSERT INTO `sys_oper_log` VALUES (1880, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你们人类天生就有自我毁灭倾向.\",\"createTime\":1641881827748,\"id\":1480785828107165697,\"source\":\"终结者2\",\"type\":3}}', 0, '', '2022-01-11 14:17:07'); INSERT INTO `sys_oper_log` VALUES (1881, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The quality, not the longevity, of one\'s life is what is important.\",\"createTime\":1641881830250,\"dataId\":3723,\"date\":1586016000000,\"id\":1480785838571954178,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/b62b95c7d6c395a79987ba7aed019c46.png\",\"note\":\"人一生最重要的是生命的质量而非寿命的长度。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/c4be43f2461011b787f3c10c93c2aaf2.mp3\"}}', 0, '', '2022-01-11 14:17:10'); INSERT INTO `sys_oper_log` VALUES (1882, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you start out with a tragic view of life, then anything since is just a bonus.\",\"createTime\":1641886815293,\"dataId\":3731,\"date\":1586620800000,\"id\":1480806747345166338,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/f80fbd2d8365c600e2cbbff8dcd57746.png\",\"note\":\"如果你以悲观的角度看待生活,那么之后生命中的一切都是嘉奖。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/4fd745e272a662cfeb53f3b81b849360.mp3\"}}', 0, '', '2022-01-11 15:40:15'); INSERT INTO `sys_oper_log` VALUES (1883, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":808}', 0, '', '2022-01-11 15:40:32'); INSERT INTO `sys_oper_log` VALUES (1884, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Keep your face always toward the sunshine, and shadows will fall behind you. \",\"createTime\":1641886897534,\"dataId\":4217,\"date\":1628697600000,\"id\":1480807092293115906,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/bad9dfd68dfbbbdc8be83ea9f317785e.png\",\"note\":\"永远面朝阳光,阴影就会被甩在身后。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/image/066582f7f3a1dfe6a5b38f37f3d44e7d.png\"}}', 0, '', '2022-01-11 15:41:37'); INSERT INTO `sys_oper_log` VALUES (1885, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Death is no more than passing from one room into another.\",\"createTime\":1641886944949,\"dataId\":3545,\"date\":1570982400000,\"id\":1480807291170234369,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-14.jpg\",\"note\":\"死亡只不过是从一个房间进入另一个房间。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-14-day.mp3\"}}', 0, '', '2022-01-11 15:42:24'); INSERT INTO `sys_oper_log` VALUES (1886, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":52,\"apiName\":\"天行-百度热搜榜\",\"dayCount\":3,\"apiUrl\":\"http://api.tianapi.com/nethot/index\",\"createTime\":1641869096000,\"limitCount\":5,\"updateTime\":1641869200000,\"id\":1480732428317446145,\"totalCount\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-11 15:42:37'); INSERT INTO `sys_oper_log` VALUES (1887, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"《东邪西毒》里有段词:“以前我认为那句话很重要,因为我相信有些事说出来就是一生一世。现在想想,说不说也没有什么区别。有些事情是会变的,我一直以为自己赢了,直到有一天我看着镜子才知道我输了。在我最美好的时间里,我最喜欢的人不在我身边,如果能重新开始该有多好。\\\"\",\"createTime\":1641886993027,\"id\":1480807492832370690,\"source\":\"那些你很冒险的梦\",\"type\":2}}', 0, '', '2022-01-11 15:43:13'); INSERT INTO `sys_oper_log` VALUES (1888, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":577}', 0, '', '2022-01-11 17:28:37'); INSERT INTO `sys_oper_log` VALUES (1889, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You’re never really done for as long as you’ve got a good story and someone to tell it to.\",\"createTime\":1641893349510,\"dataId\":4048,\"date\":1614096000000,\"id\":1480834153879609345,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/c182da719ae82ca62c6ef76be4e7776e.png\",\"note\":\"只要你还有个好故事,还有一个能够倾诉的人,你就永远不会完蛋。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/25645f512d763b20b976abd0673c6948.mp3\"}}', 0, '', '2022-01-11 17:29:09'); INSERT INTO `sys_oper_log` VALUES (1890, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"As a kid growing up, I never skipped steps. I always worked on fundamentals because I know athleticism is fleeting.\",\"createTime\":1641893357300,\"dataId\":3661,\"date\":1580227200000,\"id\":1480834186544848898,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/d8a8bba6ef4c30fe1cbd069608d409f1.png\",\"note\":\"成长过程中,我从来没有跳过任何一个步骤,致力于打好基础,因为我知道,运动员生涯短暂。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b3128e516893dbf97e90d683360eb5d9.mp3\"}}', 0, '', '2022-01-11 17:29:17'); INSERT INTO `sys_oper_log` VALUES (1891, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Before you meet someone who loves you more, you must love yourself well.\",\"createTime\":1641893364862,\"dataId\":4317,\"date\":1637337600000,\"id\":1480834218270564353,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4f0f184903428dcec3fae4b6e3249c6f.png\",\"note\":\"在遇到更爱自己的人之前,一定要好好爱自己。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/73210990d73e644e8d395c24c6da2650.mp3\"}}', 0, '', '2022-01-11 17:29:24'); INSERT INTO `sys_oper_log` VALUES (1892, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I will not say \\\"Do not weep\\\" , for not all tears are an evil.\",\"createTime\":1641905068486,\"dataId\":3871,\"date\":1598803200000,\"id\":1480883306821713922,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/77ba97d75353e044405a0f8142eabd84.png\",\"note\":\"我不会说“别哭”,因为并非所有眼泪都是不幸。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f884bc0d9bf761cddef2ff81cf8fcdbe.mp3\"}}', 0, '', '2022-01-11 20:44:28'); INSERT INTO `sys_oper_log` VALUES (1893, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有人问我,失去的东西还会回来吗?怎么说呢,有些还是会的吧。只是,我曾经丢过一枚扣子,等到后来找到那扣子时,我已经换了一件衣服了。\",\"createTime\":1641905097407,\"id\":1480883428074848257,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-11 20:44:57'); INSERT INTO `sys_oper_log` VALUES (1894, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":74}', 0, '', '2022-01-11 20:45:56'); INSERT INTO `sys_oper_log` VALUES (1895, 'API日志', 5, 'com.xjs.apilog.controller.ApiLogController.export()', 'POST', 1, 'admin', '', '/log/export', '127.0.0.1', '', '{}', '', 0, '', '2022-01-11 20:48:56'); INSERT INTO `sys_oper_log` VALUES (1896, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"三更灯火五更鸡,正是男儿读书时,黑发不知勤学早,白发方悔读书迟。\",\"createTime\":1641905398584,\"id\":1480884691319521282,\"source\":\"颜真卿\",\"type\":4}}', 0, '', '2022-01-11 20:49:58'); INSERT INTO `sys_oper_log` VALUES (1897, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"三更灯火五更鸡,正是男儿读书时,黑发不知勤学早,白发方悔读书迟。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"When a man is reading, black hair doesn\'t know how to study early, and white hair regrets reading late.\",\"src\":\"三更灯火五更鸡,正是男儿读书时,黑发不知勤学早,白发方悔读书迟。\"}]}}', 0, '', '2022-01-11 20:50:07'); INSERT INTO `sys_oper_log` VALUES (1898, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"去死两次!\",\"createTime\":1641905425880,\"id\":1480884805828214786,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-11 20:50:25'); INSERT INTO `sys_oper_log` VALUES (1899, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":168}', 0, '', '2022-01-11 20:50:42'); INSERT INTO `sys_oper_log` VALUES (1900, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you start out with a tragic view of life, then anything since is just a bonus.\",\"dataId\":3731,\"date\":1586620800000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/f80fbd2d8365c600e2cbbff8dcd57746.png\",\"note\":\"如果你以悲观的角度看待生活,那么之后生命中的一切都是嘉奖。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/4fd745e272a662cfeb53f3b81b849360.mp3\"}}', 0, '', '2022-01-11 20:53:31'); INSERT INTO `sys_oper_log` VALUES (1901, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"找不到路,就自己走一条出来。\",\"createTime\":1641905621153,\"id\":1480885624862539778,\"source\":\"魅影陌客\",\"type\":5}}', 0, '', '2022-01-11 20:53:41'); INSERT INTO `sys_oper_log` VALUES (1902, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"面色红润万人倒,难道姑娘用大宝。\",\"createTime\":1641905633585,\"id\":1480885676993544193,\"source\":\"向日葵\",\"type\":5}}', 0, '', '2022-01-11 20:53:53'); INSERT INTO `sys_oper_log` VALUES (1903, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Women\'s value has been under-recognized for far too long.\",\"createTime\":1641905692903,\"dataId\":4060,\"date\":1615132800000,\"id\":1480885925787074562,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/c1138618875e91f916810378621cba0f.png\",\"note\":\"女性的价值被低估太久了。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/5843de534ac29ab96641533c95e11147.mp3\"}}', 0, '', '2022-01-11 20:54:52'); INSERT INTO `sys_oper_log` VALUES (1904, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Yesterday is history, tomorrow is a mystery. But today is a gift.\",\"createTime\":1641967974061,\"dataId\":4149,\"date\":1622822400000,\"id\":1481147151877808129,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/b916709aade3858af79f727dd1f64540.png\",\"note\":\"昨日已成往事,未来还未可知。但是今天是上天的馈赠。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c9804d3d7ee0fbc3db4e04f3f17db24e.mp3\"}}', 0, '', '2022-01-12 14:12:54'); INSERT INTO `sys_oper_log` VALUES (1905, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_topsearch_weibo', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-12 14:13:02'); INSERT INTO `sys_oper_log` VALUES (1906, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, 'can not cast to long, value : 2530002', '2022-01-12 14:19:17'); INSERT INTO `sys_oper_log` VALUES (1907, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_topsearch_douyin', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-12 14:26:28'); INSERT INTO `sys_oper_log` VALUES (1908, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, '', '2022-01-12 14:40:08'); INSERT INTO `sys_oper_log` VALUES (1909, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, '', '2022-01-12 14:40:43'); INSERT INTO `sys_oper_log` VALUES (1910, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, '', '2022-01-12 14:41:54'); INSERT INTO `sys_oper_log` VALUES (1911, '获取热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.topSearch()', 'GET', 1, 'admin', '', '/topsearch', '127.0.0.1', '', '', '', 1, 'com.xjs.topsearch.mapper.ApiTopsearchDouyinMapper.insert (batch index #1) failed. Cause: java.sql.BatchUpdateException: Unknown column \'create_time\' in \'field list\'\n; bad SQL grammar []; nested exception is java.sql.BatchUpdateException: Unknown column \'create_time\' in \'field list\'', '2022-01-12 14:42:25'); INSERT INTO `sys_oper_log` VALUES (1912, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":45,\"apiName\":\"天行-微博热搜榜\",\"dayCount\":14,\"apiUrl\":\"http://api.tianapi.com/weibohot/index\",\"createTime\":1641968357000,\"limitCount\":5,\"updateTime\":1641971131000,\"id\":1481148757860147202,\"totalCount\":14}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-12 15:14:26'); INSERT INTO `sys_oper_log` VALUES (1913, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":45,\"apiName\":\"天行-抖音热搜榜\",\"dayCount\":9,\"apiUrl\":\"http://api.tianapi.com/douyinhot/index\",\"createTime\":1641969644000,\"limitCount\":5,\"updateTime\":1641971131000,\"id\":1481154154675298305,\"totalCount\":9}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-12 15:14:28'); INSERT INTO `sys_oper_log` VALUES (1914, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":357}', 0, '', '2022-01-12 15:14:44'); INSERT INTO `sys_oper_log` VALUES (1915, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"站在高岸上遥看颠簸于大海中的行船是愉快的,站在堡垒中遥看激战中的战场也是愉快的,但是没有能比攀登于真理的高峰之上,然后俯视来路上的层层迷障、烟雾和曲折更愉快了!\",\"createTime\":1641971749081,\"id\":1481162985492922370,\"source\":\"卢克莱修\",\"type\":4}}', 0, '', '2022-01-12 15:15:49'); INSERT INTO `sys_oper_log` VALUES (1916, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Without hard work, nothing grows but weeds. \",\"createTime\":1641971755060,\"dataId\":4025,\"date\":1612108800000,\"id\":1481163010549694466,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/489cbfc032201373d9cd0606b93f9a55.png\",\"note\":\"少了努力,只有杂草会生长。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/ef58486e3978cafa1befd76d086d328c.mp3\"}}', 0, '', '2022-01-12 15:15:55'); INSERT INTO `sys_oper_log` VALUES (1917, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All you need is the plan, the road map, and the courage to press on to your destination.\",\"createTime\":1641971815310,\"dataId\":3994,\"date\":1609430400000,\"id\":1481163263252316162,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/660c1d1daee0c124faaa5e3e5aa34e81.png\",\"note\":\"你所需要的只是计划,路线图,以及朝着目标前进的勇气。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/b61c5114ab9dbf38674e0462503f670e.mp3\"}}', 0, '', '2022-01-12 15:16:55'); INSERT INTO `sys_oper_log` VALUES (1918, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"chart\",\"orderNum\":\"1\",\"menuName\":\"热搜榜\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"topsearch\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-12 15:17:43'); INSERT INTO `sys_oper_log` VALUES (1919, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"chart\",\"orderNum\":\"1\",\"menuName\":\"热搜榜\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"topsearch\",\"component\":\"business/openapi/topsearch/index\",\"children\":[],\"createTime\":1641971863000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2053,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-12 15:18:47'); INSERT INTO `sys_oper_log` VALUES (1920, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Take the sourest lemon that life has to offer and turn it into something resembling lemonade. \",\"createTime\":1641971984948,\"dataId\":4170,\"date\":1624636800000,\"id\":1481163974790823938,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/1e6e53f906a60173357ad2a31ea99b3d.png\",\"note\":\"将生活带给你柠檬般的酸楚,酿成犹如柠檬汽水般的甘甜。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c96e79932f0cb30ba7d2b1c3a87041cf.mp3\"}}', 0, '', '2022-01-12 15:19:44'); INSERT INTO `sys_oper_log` VALUES (1921, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-12 15:25:26'); INSERT INTO `sys_oper_log` VALUES (1922, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The memory is a muscle that must be exercised.\",\"createTime\":1641972328006,\"dataId\":4300,\"date\":1635868800000,\"id\":1481165413651005442,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4337efeadfefee308a47fc68e93b7b57.png\",\"note\":\"记忆就像一块肌肉,必须要勤运动。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/942f2d1cec5b19c2f3c9da458e4c827c.mp3\"}}', 0, '', '2022-01-12 15:25:28'); INSERT INTO `sys_oper_log` VALUES (1923, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There are many things that seem impossible only so long as one does not attempt them.\",\"createTime\":1641983378074,\"dataId\":4003,\"date\":1610208000000,\"id\":1481211760993869826,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/96bd1752ebc9364fcda02e66d2e8cffa.png\",\"note\":\"很多事情看起来不可能只是因为没有人尝试过。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/84b91f97193632ec49fec6d4efb87e54.mp3\"}}', 0, '', '2022-01-12 18:29:38'); INSERT INTO `sys_oper_log` VALUES (1924, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"By its very nature, history is always a one-sided account.\",\"createTime\":1641986374563,\"dataId\":4092,\"date\":1617897600000,\"id\":1481224329192251394,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/93219746184ab5a41afc52ce89f35ef4.png\",\"note\":\"就其本质而言,历史始终是一面之词。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/79293d805d4c4da6258b78d771392580.mp3\"}}', 0, '', '2022-01-12 19:19:34'); INSERT INTO `sys_oper_log` VALUES (1925, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"还有星月可以寄望,还有宇宙浪漫不止。\",\"createTime\":1641986600484,\"id\":1481225276807159810,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-12 19:23:20'); INSERT INTO `sys_oper_log` VALUES (1926, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"选择道路的时候怎么犹豫都没有关系,但决定之后就一定要坚持到底!\",\"createTime\":1641986607861,\"id\":1481225307756929025,\"source\":\"..控、\",\"type\":5}}', 0, '', '2022-01-12 19:23:27'); INSERT INTO `sys_oper_log` VALUES (1927, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":514}', 0, '', '2022-01-12 19:24:40'); INSERT INTO `sys_oper_log` VALUES (1928, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"As is a tale, so is life: not how long it is, but how good it is, is what matters. \",\"createTime\":1641986738898,\"dataId\":3598,\"date\":1575475200000,\"id\":1481225857328193538,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-05.jpg\",\"note\":\"生活就像故事一样:不在乎长短,而在于质量,这才是最重要的。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/efa6a6f4dc86cde0a3cc18a72f319562.mp3\"}}', 0, '', '2022-01-12 19:25:38'); INSERT INTO `sys_oper_log` VALUES (1929, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"question\",\"orderNum\":\"1\",\"menuName\":\"Redis监控\",\"params\":{},\"parentId\":2045,\"isCache\":\"0\",\"path\":\"redis\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-12 20:08:22'); INSERT INTO `sys_oper_log` VALUES (1930, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"question\",\"orderNum\":\"1\",\"menuName\":\"Redis监控\",\"params\":{},\"parentId\":2045,\"isCache\":\"0\",\"path\":\"redis\",\"component\":\"business/monitor/redis/index\",\"children\":[],\"createTime\":1641989302000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2054,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-12 20:08:56'); INSERT INTO `sys_oper_log` VALUES (1931, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"question\",\"orderNum\":\"1\",\"menuName\":\"Redis监控\",\"params\":{},\"parentId\":2045,\"isCache\":\"0\",\"path\":\"redis\",\"component\":\"business/monitor/redis/index\",\"children\":[],\"createTime\":1641989302000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2054,\"menuType\":\"C\",\"perms\":\"monitor:redis:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-12 20:09:12'); INSERT INTO `sys_oper_log` VALUES (1932, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A man\'s character may be learned from the adjectives which he habitually uses in conversation.\",\"createTime\":1641989562297,\"dataId\":3739,\"date\":1587398400000,\"id\":1481237699551272961,\"imgurl\":\"https://v-sq.ks3-cn-beijing.ksyun.com/image/4d0812bc4932d99902c2d7d0627e8ff7.png\",\"note\":\"一个人的性格可以从他谈吐中使用的形容词里去了解。\",\"source\":\"新版每日一句\",\"tts\":\"https://v-sq.ks3-cn-beijing.ksyun.com/audio/bb1253abf2f0efaa387f1b7d186a540c.mp3\"}}', 0, '', '2022-01-12 20:12:42'); INSERT INTO `sys_oper_log` VALUES (1933, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"除了爱你,我什么都可以。\",\"createTime\":1641990187895,\"id\":1481240323453329410,\"source\":\"南风之弦\",\"type\":5}}', 0, '', '2022-01-12 20:23:07'); INSERT INTO `sys_oper_log` VALUES (1934, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Words and ideas can change the world.\",\"createTime\":1641990214725,\"dataId\":4312,\"date\":1636905600000,\"id\":1481240436036837378,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4020b2682763a9ed6109c0255130c5b0.png\",\"note\":\"文字和思想能改变世界。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/8f5b5610ce505c895cc546d4efff87de.mp3\"}}', 0, '', '2022-01-12 20:23:34'); INSERT INTO `sys_oper_log` VALUES (1935, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"And when they let you down,you get up off the ground. Cause morning rolls around. And it\'s another day of sun.\",\"createTime\":1641990294673,\"dataId\":3467,\"date\":1564243200000,\"id\":1481240771304333314,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-28.jpg\",\"note\":\"当人们令你失望,你更要勇往直前,因为早晨到来,又是阳光灿烂的一天。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-28-day.mp3\"}}', 0, '', '2022-01-12 20:24:54'); INSERT INTO `sys_oper_log` VALUES (1936, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":652}', 0, '', '2022-01-12 21:32:00'); INSERT INTO `sys_oper_log` VALUES (1937, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-12 21:51:34'); INSERT INTO `sys_oper_log` VALUES (1938, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-12 21:51:44'); INSERT INTO `sys_oper_log` VALUES (1939, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Everything that has a beginning has an end. \",\"dataId\":4338,\"date\":1639152000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e15d36b3b4becb76e4d3c651a386e085.png\",\"note\":\"世间万物有始皆有终。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/37028313a7899e9c3dae43bb90a1c7e3.mp3\"}}', 0, '', '2022-01-12 21:51:57'); INSERT INTO `sys_oper_log` VALUES (1940, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All happy families are happy alike, all unhappy families are unhappy in their own way.\",\"createTime\":1641995585480,\"dataId\":3617,\"date\":1577030400000,\"id\":1481262962607628290,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-23.jpg\",\"note\":\"幸福的家庭总是相似的,而不幸的家庭则各有各的不幸。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f6bf7e0cd3c8455668a92c91c16aa8be.mp3\"}}', 0, '', '2022-01-12 21:53:05'); INSERT INTO `sys_oper_log` VALUES (1941, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"谁和我一样用功,谁就会和我一样成功。\",\"createTime\":1641995594317,\"id\":1481262999681081346,\"source\":\"莫扎特\",\"type\":4}}', 0, '', '2022-01-12 21:53:14'); INSERT INTO `sys_oper_log` VALUES (1942, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要以为一天到晚笑嘻嘻或者沉默寡言的人好惹,当你撕开他的面具你会连跪下机会都没有。\",\"createTime\":1641995708653,\"id\":1481263479241023489,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-12 21:55:08'); INSERT INTO `sys_oper_log` VALUES (1943, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"天天无所事事、右手离不开鼠标、双眼离不开屏幕。活得好纠结噢!\",\"createTime\":1641995784301,\"id\":1481263796514955266,\"source\":\"Julian\",\"type\":5}}', 0, '', '2022-01-12 21:56:24'); INSERT INTO `sys_oper_log` VALUES (1944, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We come from a dark abyss, we end in a dark abyss, and we call the luminous interval life.\",\"createTime\":1642034431592,\"dataId\":3639,\"date\":1578931200000,\"id\":1481425894999572482,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/f0cf574ce9f195e93e80222428c60abf.png\",\"note\":\"我们来自漆黑的深渊,我们归于漆黑的深渊,中间光明的间隔,被我们唤作一生。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/3749388d15a1931756bb035775420d35.mp3\"}}', 0, '', '2022-01-13 08:40:31'); INSERT INTO `sys_oper_log` VALUES (1945, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时间赐我青春与死亡,尽管我戴着镣铐依然像大海一样歌唱。\",\"createTime\":1642040322330,\"id\":1481450602541334529,\"source\":\" 狄兰·托马斯\",\"type\":1}}', 0, '', '2022-01-13 10:18:42'); INSERT INTO `sys_oper_log` VALUES (1946, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"时间赐我青春与死亡,尽管我戴着镣铐依然像大海一样歌唱。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Time has given me youth and death. Although I am in chains, I still sing like the sea.\",\"src\":\"时间赐我青春与死亡,尽管我戴着镣铐依然像大海一样歌唱。\"}]}}', 0, '', '2022-01-13 10:18:48'); INSERT INTO `sys_oper_log` VALUES (1947, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Believe you can and you\'re halfway there.\",\"createTime\":1642043416097,\"dataId\":3775,\"date\":1590508800000,\"id\":1481463578719559681,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/afa5b47d8742a298504c0440a404fd6b.png\",\"note\":\"相信你自己能做到,你就已经成功一半了。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/f9625e0feb37d7691a940d4325501327.mp3\"}}', 0, '', '2022-01-13 11:10:16'); INSERT INTO `sys_oper_log` VALUES (1948, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"别爱的太迟,常回家看看\",\"createTime\":1642043416023,\"id\":1481463578392403970,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-13 11:10:16'); INSERT INTO `sys_oper_log` VALUES (1949, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人不能一个人活下去,不需要任何人的孤独和需要人但得不到的孤独是不一样的。\",\"createTime\":1642043417907,\"id\":1481463586307055617,\"source\":\"占星术杀人魔法\",\"type\":5}}', 0, '', '2022-01-13 11:10:17'); INSERT INTO `sys_oper_log` VALUES (1950, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/log/1481463586172837889', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-13 11:10:24'); INSERT INTO `sys_oper_log` VALUES (1951, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Men are like wine: some turn to vinegar, but the best improve with age.\",\"createTime\":1642043477799,\"dataId\":3526,\"date\":1569340800000,\"id\":1481463837554253826,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-09-25.jpg\",\"note\":\"人如酒:有些会转变成醋,但出类拔萃者会随着年月增长而日渐香醇。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-09-25-day.mp3\"}}', 0, '', '2022-01-13 11:11:17'); INSERT INTO `sys_oper_log` VALUES (1952, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1481464074054279170', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-13 11:12:31'); INSERT INTO `sys_oper_log` VALUES (1953, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tree\",\"orderNum\":\"1\",\"menuName\":\"API日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"apilog\",\"component\":\"business/log/apilog/index\",\"children\":[],\"createTime\":1640505788000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2009,\"menuType\":\"C\",\"perms\":\"openapi:log:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 11:13:17'); INSERT INTO `sys_oper_log` VALUES (1954, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1481464040046862338', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-13 11:13:57'); INSERT INTO `sys_oper_log` VALUES (1955, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"online\",\"orderNum\":\"0\",\"menuName\":\"业务菜单\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"business\",\"children\":[],\"createTime\":1640504971000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2000,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 11:15:00'); INSERT INTO `sys_oper_log` VALUES (1956, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The flower that blooms in adversity is the most rare and beautiful of all.\",\"createTime\":1642043709472,\"dataId\":3694,\"date\":1583510400000,\"id\":1481464809265438721,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/b54cf63cc260f4824ce61af3d3c34e7e.png\",\"note\":\"逆境中绽放的花朵,才是最珍贵、最美丽的。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/4059e517c7c5c5897e3ebb24904157e5.mp3\"}}', 0, '', '2022-01-13 11:15:09'); INSERT INTO `sys_oper_log` VALUES (1957, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tree\",\"orderNum\":\"1\",\"menuName\":\"API日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"apilog\",\"component\":\"business/log/apilog/index\",\"children\":[],\"createTime\":1640505788000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2009,\"menuType\":\"C\",\"perms\":\"log:apilog:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 11:15:56'); INSERT INTO `sys_oper_log` VALUES (1958, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"1\",\"menuName\":\"日志查询\",\"params\":{},\"parentId\":2009,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640505788000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2010,\"menuType\":\"F\",\"perms\":\"log:apilog:query\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 11:16:09'); INSERT INTO `sys_oper_log` VALUES (1959, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"4\",\"menuName\":\"日志删除\",\"params\":{},\"parentId\":2009,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640505788000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2013,\"menuType\":\"F\",\"perms\":\"log:apilog:remove\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 11:16:16'); INSERT INTO `sys_oper_log` VALUES (1960, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"5\",\"menuName\":\"日志导出\",\"params\":{},\"parentId\":2009,\"isCache\":\"0\",\"path\":\"#\",\"component\":\"\",\"children\":[],\"createTime\":1640505788000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2014,\"menuType\":\"F\",\"perms\":\"log:apilog:export\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 11:16:24'); INSERT INTO `sys_oper_log` VALUES (1961, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It may not be pretty, but we headed to the city.\",\"createTime\":1642043861674,\"dataId\":4063,\"date\":1615392000000,\"id\":1481465447600758786,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4fad1d19a9fe5580c1a552a2e335f27d.png\",\"note\":\"其貌虽不扬,扬帆亦远航。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/53ccc74fd59abea209a70c8380f6b855.mp3\"}}', 0, '', '2022-01-13 11:17:41'); INSERT INTO `sys_oper_log` VALUES (1962, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[2000,2024,2015,2025,2026,2031,2027,2028,2029,2030,2032,2045,2044,2054,2001,2009,2010,2013,2014,2016,2017,2019,2046,2021,2023,2033,2034,2035,2036,2049,2050,2051,2052,2053,2037,2038,2039,2041,2043,2047,2048,1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 11:18:10'); INSERT INTO `sys_oper_log` VALUES (1963, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"2020 你好吗?最熟悉的陌生人,最终我们都将走向人生的句号,亲爱的,请多保重!\",\"createTime\":1642045155027,\"id\":1481470872358481921,\"source\":\"句号\",\"type\":2}}', 0, '', '2022-01-13 11:39:15'); INSERT INTO `sys_oper_log` VALUES (1964, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"做一个淡淡的女子,不浮不躁,不争不抢,不去计较浮华之事。不是不追求,只是不去强求,淡然地过着自己的生活,不要轰轰烈烈,只求安安心心。\",\"createTime\":1642046145642,\"id\":1481475027303100418,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-13 11:55:45'); INSERT INTO `sys_oper_log` VALUES (1965, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"做一个淡淡的女子,不浮不躁,不争不抢,不去计较浮华之事。不是不追求,只是不去强求,淡然地过着自己的生活,不要轰轰烈烈,只求安安心心。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Be a light woman, don\'t float, don\'t be impatient, don\'t argue, don\'t rob, don\'t care about flashy things. It\'s not that you don\'t pursue, just don\'t force, live your life calmly, don\'t be vigorous, just ask for peace of mind.\",\"src\":\"做一个淡淡的女子,不浮不躁,不争不抢,不去计较浮华之事。不是不追求,只是不去强求,淡然地过着自己的生活,不要轰轰烈烈,只求安安心心。\"}]}}', 0, '', '2022-01-13 11:56:06'); INSERT INTO `sys_oper_log` VALUES (1966, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"做一个淡淡的女子,不浮不躁,不争不抢,不去计较浮华之事。不是不追求,只是不去强求,淡然地过着自己的生活,不要轰轰烈烈,只求安安心心。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Be a light woman, don\'t float, don\'t be impatient, don\'t argue, don\'t rob, don\'t care about flashy things. It\'s not that you don\'t pursue, just don\'t force, live your life calmly, don\'t be vigorous, just ask for peace of mind.\",\"src\":\"做一个淡淡的女子,不浮不躁,不争不抢,不去计较浮华之事。不是不追求,只是不去强求,淡然地过着自己的生活,不要轰轰烈烈,只求安安心心。\"}]}}', 0, '', '2022-01-13 11:56:15'); INSERT INTO `sys_oper_log` VALUES (1967, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"做一个淡淡的女子,不浮不躁,不争不抢,不去计较浮华之事。不是不追求,只是不去强求,淡然地过着自己的生活,不要轰轰烈烈,只求安安心心。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Be a light woman, don\'t float, don\'t be impatient, don\'t argue, don\'t rob, don\'t care about flashy things. It\'s not that you don\'t pursue, just don\'t force, live your life calmly, don\'t be vigorous, just ask for peace of mind.\",\"src\":\"做一个淡淡的女子,不浮不躁,不争不抢,不去计较浮华之事。不是不追求,只是不去强求,淡然地过着自己的生活,不要轰轰烈烈,只求安安心心。\"}]}}', 0, '', '2022-01-13 11:56:24'); INSERT INTO `sys_oper_log` VALUES (1968, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有多少力量,就做多少事;切莫等待,等待常会落空。\",\"createTime\":1642046227746,\"id\":1481475371638681601,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-13 11:57:07'); INSERT INTO `sys_oper_log` VALUES (1969, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"二十多岁正在打拼事业的男生就像个搬砖工人,他抱着砖,就没法抱你;他放下砖,就没法养你。\",\"createTime\":1642052346988,\"id\":1481501037591490562,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-13 13:39:07'); INSERT INTO `sys_oper_log` VALUES (1970, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在茫茫人海中,同样是高中生,同乘7点50分的电车,看着同一片海⋯⋯那个瞬间不就是如奇迹般的邂逅吗。\",\"createTime\":1642052409116,\"id\":1481501298179403778,\"source\":\"冥酱\",\"type\":5}}', 0, '', '2022-01-13 13:40:09'); INSERT INTO `sys_oper_log` VALUES (1971, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生就像刷牙,一手握着牙刷,一手握着杯具(悲剧)。\",\"createTime\":1642053167266,\"id\":1481504478086787074,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-13 13:52:47'); INSERT INTO `sys_oper_log` VALUES (1972, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"记住,千万不要相信女人,越漂亮的女人就越会骗人。\",\"createTime\":1642053202387,\"id\":1481504625432686594,\"source\":\"倚天屠龙记\",\"type\":3}}', 0, '', '2022-01-13 13:53:22'); INSERT INTO `sys_oper_log` VALUES (1973, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"空气再颤抖,彷佛天空在燃烧,是阿,暴风雨要来了\",\"createTime\":1642053627846,\"id\":1481506409941266434,\"source\":\"保卫萨拉热窝\",\"type\":3}}', 0, '', '2022-01-13 14:00:27'); INSERT INTO `sys_oper_log` VALUES (1974, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"美人关。能抱着一起死,也是一种幸福\",\"createTime\":1642053989337,\"id\":1481507926094114817,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-13 14:06:29'); INSERT INTO `sys_oper_log` VALUES (1975, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生得意须尽欢,胡吃海喝需尽兴。\",\"createTime\":1642054055895,\"id\":1481508205308932098,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-13 14:07:35'); INSERT INTO `sys_oper_log` VALUES (1976, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Desire is the starting point of all achievement, not a hope, not a wish, but a keen pulsating desire which transcends everything.\",\"createTime\":1642054614527,\"dataId\":3666,\"date\":1581177600000,\"id\":1481510548352004098,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/7ef1e2568ecb8e3ad0836c4c1d25f1b4.png\",\"note\":\"渴望是所有成就的原点,不是希望、不是愿望,而是一个热切、令人悸动、凌驾一切的渴望。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/782ebaf55470eadf797abcebc3f00979.mp3\"}}', 0, '', '2022-01-13 14:16:54'); INSERT INTO `sys_oper_log` VALUES (1977, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"漠然的憂傷,芷在昨天.\",\"createTime\":1642055253180,\"id\":1481513227061030913,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-13 14:27:33'); INSERT INTO `sys_oper_log` VALUES (1978, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"respone\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"spa\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"回答\",\"src\":\"respone\"}]}}', 0, '', '2022-01-13 14:27:38'); INSERT INTO `sys_oper_log` VALUES (1979, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'rpc_log', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 14:32:28'); INSERT INTO `sys_oper_log` VALUES (1980, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 15:22:52'); INSERT INTO `sys_oper_log` VALUES (1981, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 15:29:33'); INSERT INTO `sys_oper_log` VALUES (1982, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 15:33:34'); INSERT INTO `sys_oper_log` VALUES (1983, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 15:35:55'); INSERT INTO `sys_oper_log` VALUES (1984, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"DEFAULT\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-13 15:42:35'); INSERT INTO `sys_oper_log` VALUES (1985, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":2013}', 0, '', '2022-01-13 15:51:37'); INSERT INTO `sys_oper_log` VALUES (1986, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There should be a better way to start a day than waking up every morning. \",\"createTime\":1642060307056,\"dataId\":3733,\"date\":1586880000000,\"id\":1481534424574242818,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9bd692f2861f3385cc5b007880d0f54c.png\",\"note\":\"应该有更好的方式开始新一天, 而不是千篇一律的在每个上午醒来。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/6955cad0f314984912939c09c9700174.mp3\"}}', 0, '', '2022-01-13 15:51:47'); INSERT INTO `sys_oper_log` VALUES (1987, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Confidence is contagious. So is a lack of confidence.\",\"createTime\":1642080135736,\"dataId\":3588,\"date\":1574611200000,\"id\":1481617592055177218,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-25.jpg\",\"note\":\"自信是会传染的,缺乏自信也是。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-25-day.mp3\"}}', 0, '', '2022-01-13 21:22:15'); INSERT INTO `sys_oper_log` VALUES (1988, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The supreme happiness of life is the conviction that we are loved\",\"createTime\":1642080679030,\"dataId\":3599,\"date\":1575561600000,\"id\":1481619870786985985,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-06.jpg\",\"note\":\"生活中最大的幸福是坚信有人爱我们。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/fed76741c1fb8fd76ebb2e8e5631f79b.mp3\"}}', 0, '', '2022-01-13 21:31:19'); INSERT INTO `sys_oper_log` VALUES (1989, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Whatever our souls are made of, his and mine are the same.\",\"createTime\":1642081582641,\"dataId\":3730,\"date\":1586534400000,\"id\":1481623660831383554,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/76e90a67da39bad38ea908ad403e1237.png\",\"note\":\"无论我们的灵魂由什么构成,至少他的和我的彼此相通。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/24649c75efe2affe5b9100cce1b7d499.mp3\"}}', 0, '', '2022-01-13 21:46:22'); INSERT INTO `sys_oper_log` VALUES (1990, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The quality, not the longevity, of one\'s life is what is important.\",\"dataId\":3723,\"date\":1586016000000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/b62b95c7d6c395a79987ba7aed019c46.png\",\"note\":\"人一生最重要的是生命的质量而非寿命的长度。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/c4be43f2461011b787f3c10c93c2aaf2.mp3\"}}', 0, '', '2022-01-13 21:46:39'); INSERT INTO `sys_oper_log` VALUES (1991, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"最怕,深交后的陌生,认真后的痛苦,信任后的利用,温柔后的冷漠。\",\"createTime\":1642081601266,\"id\":1481623738937712641,\"source\":\"shmily\",\"type\":5}}', 0, '', '2022-01-13 21:46:41'); INSERT INTO `sys_oper_log` VALUES (1992, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":528}', 0, '', '2022-01-13 21:47:04'); INSERT INTO `sys_oper_log` VALUES (1993, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"He who controls others may be powerful, but he who has mastered himself is mightier still.\",\"createTime\":1642081665357,\"dataId\":3712,\"date\":1585065600000,\"id\":1481624007763238913,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/40b394f1c4b2ec69c2a7e4688f39e801.png\",\"note\":\"胜人者有力,自胜者强。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/8021ba1a97604a881cb09a89fcba274b.mp3\"}}', 0, '', '2022-01-13 21:47:45'); INSERT INTO `sys_oper_log` VALUES (1994, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A man who dares to waste one hour of time has not discovered the value of life. \",\"createTime\":1642132618748,\"dataId\":3751,\"date\":1588435200000,\"id\":1481837721776455682,\"imgurl\":\"https://v-sq.ks3-cn-beijing.ksyun.com/image/f4ce4b4dd25d46de8b8142ecc65b8fc4.png\",\"note\":\"发现了生命的价值的人,一个小时都不会浪费。\",\"source\":\"新版每日一句\",\"tts\":\"https://v-sq.ks3-cn-beijing.ksyun.com/audio/c73e3f31ceb6fd7bc36fa01d2090a409.mp3\"}}', 0, '', '2022-01-14 11:56:58'); INSERT INTO `sys_oper_log` VALUES (1995, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不敢正视你的眼睛,是怕我每一个眼神都在告白。\",\"createTime\":1642132623154,\"id\":1481837740243976193,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 11:57:03'); INSERT INTO `sys_oper_log` VALUES (1996, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"不敢正视你的眼睛,是怕我每一个眼神都在告白。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":37,\"errorCode\":0,\"transResult\":[{\"dst\":\"Can\'t look straight into the eyes of you, is afraid of me every eye in the confession.\",\"src\":\"不敢正视你的眼睛,是怕我每一个眼神都在告白。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-14 11:57:09'); INSERT INTO `sys_oper_log` VALUES (1997, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"希望你别像风 在我这里掀起了万般波澜 却又跟云去了远方\",\"createTime\":1642135812714,\"id\":1481851118236631041,\"source\":\"悬溺\",\"type\":2}}', 0, '', '2022-01-14 12:50:12'); INSERT INTO `sys_oper_log` VALUES (1998, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1144}', 0, '', '2022-01-14 12:50:19'); INSERT INTO `sys_oper_log` VALUES (1999, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Love is the only thing that we can carry with us when we go, and it makes the end so easy.\",\"createTime\":1642148581047,\"dataId\":3727,\"date\":1586275200000,\"id\":1481904672494223361,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/d244a93fa045451acaa80271ff1ac9b8.png\",\"note\":\"爱是我们去世时惟一能够带走的东西,它使得死亡变得如此从容。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f1ea7d01c83aff1a46e80dcc87d6344e.mp3\"}}', 0, '', '2022-01-14 16:23:01'); INSERT INTO `sys_oper_log` VALUES (2000, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要活成两种样子,发光和不发光。不发光的时候,都是在为发光做准备。\",\"createTime\":1642149724716,\"id\":1481909469414850562,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 16:42:04'); INSERT INTO `sys_oper_log` VALUES (2001, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果我的手不小心碰着你的手 你是会躲开 还是下意识牵住\",\"createTime\":1642149755716,\"id\":1481909599413108738,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 16:42:35'); INSERT INTO `sys_oper_log` VALUES (2002, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"即使从梦中醒来,还会有回忆留下。\",\"createTime\":1642150242857,\"id\":1481911642668302337,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 16:50:42'); INSERT INTO `sys_oper_log` VALUES (2003, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要去拒绝忙碌,因为它是一种充实;不要去抱怨挫折,因为它是一种坚强;不要去拒绝微笑,因为它是你最大的魅力。\",\"createTime\":1642150504596,\"id\":1481912740447682562,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 16:55:04'); INSERT INTO `sys_oper_log` VALUES (2004, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"现在英国是不是流行这么“露”(look)啊!!\",\"createTime\":1642150511105,\"id\":1481912767756795906,\"source\":\"行运一条龙\",\"type\":3}}', 0, '', '2022-01-14 16:55:11'); INSERT INTO `sys_oper_log` VALUES (2005, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心无旁骛似明镜,无风何处起涟漪\",\"createTime\":1642150526038,\"id\":1481912830381948929,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 16:55:26'); INSERT INTO `sys_oper_log` VALUES (2006, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"友谊既不需要奴隶,也不允许有统治者,友谊最喜欢平等。\",\"createTime\":1642150553513,\"id\":1481912945633034241,\"source\":\"冈察洛夫(俄国)\",\"type\":4}}', 0, '', '2022-01-14 16:55:53'); INSERT INTO `sys_oper_log` VALUES (2007, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"大地母亲在忽悠着你。\",\"createTime\":1642150655414,\"id\":1481913373036806145,\"source\":\"被流放de蟹子\",\"type\":5}}', 0, '', '2022-01-14 16:57:35'); INSERT INTO `sys_oper_log` VALUES (2008, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我想说如果,可是没有如果;我想说以后,可是没有以后。\",\"createTime\":1642150692858,\"id\":1481913530063159298,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 16:58:12'); INSERT INTO `sys_oper_log` VALUES (2009, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The purpose of human life is to serve, and to show compassion and the will to help others.\",\"createTime\":1642151408063,\"dataId\":3464,\"date\":1563984000000,\"id\":1481916529842044930,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-25.jpg\",\"note\":\"人生的目的在于服务他人、同情怜悯和乐于助人。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-25-day.mp3\"}}', 0, '', '2022-01-14 17:10:08'); INSERT INTO `sys_oper_log` VALUES (2010, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"本来我要用这10元钱念书,当个医生、律师,但为了世界和平……唉!\",\"createTime\":1642151923659,\"id\":1481918692416798722,\"source\":\"功夫\",\"type\":3}}', 0, '', '2022-01-14 17:18:43'); INSERT INTO `sys_oper_log` VALUES (2011, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你的夕阳、我 的容颜、谁的三分之一年。\",\"createTime\":1642152045935,\"id\":1481919205313069057,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 17:20:45'); INSERT INTO `sys_oper_log` VALUES (2012, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生就一件事:活得比昨天精彩!\",\"createTime\":1642152052823,\"id\":1481919234169880577,\"source\":\"观沧海\",\"type\":5}}', 0, '', '2022-01-14 17:20:52'); INSERT INTO `sys_oper_log` VALUES (2013, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要对生命感到喜悦,因为它给了你去爱的机会,去工作,去玩乐,并用能仰头看星星的机会。\",\"createTime\":1642152101178,\"id\":1481919436985450497,\"source\":\"享利·凡·戴克\",\"type\":4}}', 0, '', '2022-01-14 17:21:41'); INSERT INTO `sys_oper_log` VALUES (2014, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"周震南的嗓子也太有特色了吧 辨识度太高了\",\"createTime\":1642152166553,\"id\":1481919711217434625,\"source\":\"星星泡饭\",\"type\":2}}', 0, '', '2022-01-14 17:22:46'); INSERT INTO `sys_oper_log` VALUES (2015, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I have witnessed the softening of the hardest of hearts by a simple smile.\",\"createTime\":1642155933573,\"dataId\":3748,\"date\":1588176000000,\"id\":1481935511230308353,\"imgurl\":\"https://v-sq.ks3-cn-beijing.ksyun.com/image/88c6d792064afc39e17cc9e4f3b4c441.png\",\"note\":\"再怎样的铁石心肠,也会因一个小小的微笑而变得柔软起来。\",\"source\":\"新版每日一句\",\"tts\":\"https://v-sq.ks3-cn-beijing.ksyun.com/audio/0142b6b943cd0c59d7c802d7e13d6a3d.mp3\"}}', 0, '', '2022-01-14 18:25:33'); INSERT INTO `sys_oper_log` VALUES (2016, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You can nearly always enjoy something, if you make up your mind firmly that you will. \",\"createTime\":1642156128796,\"dataId\":4000,\"date\":1609948800000,\"id\":1481936330067501057,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/867184af0b0f88167767411f557bc5c6.png\",\"note\":\"只要你下决心去做某件事,总能从中找到乐趣。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0307d58ac88ae3374f769c254142fbd7.mp3\"}}', 0, '', '2022-01-14 18:28:48'); INSERT INTO `sys_oper_log` VALUES (2017, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Only through experience of trial and suffering can the soul be strengthened, vision cleared, ambition inspired, and success achieved.\",\"createTime\":1642156234522,\"dataId\":3512,\"date\":1568649600000,\"id\":1481936773535457281,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-09-17.jpg\",\"note\":\"只有经历尝试与磨难,灵魂才能坚强,视野才会清晰,才能激起雄心,获取胜利。 \",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-09-17-day.mp3\"}}', 0, '', '2022-01-14 18:30:34'); INSERT INTO `sys_oper_log` VALUES (2018, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Through love comes calm, and through calm comes thought.\",\"createTime\":1642156269828,\"dataId\":4068,\"date\":1615824000000,\"id\":1481936921573416961,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/89f68b0f0c75e34ad935a58403c6a618.png\",\"note\":\"爱使人平静,而平静使人思考。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c82fc18dfbdb71d7a619058d02d7f065.mp3\"}}', 0, '', '2022-01-14 18:31:09'); INSERT INTO `sys_oper_log` VALUES (2019, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In education we are striving not to teach youth to make a living, but to make a life.\",\"createTime\":1642156361614,\"dataId\":3486,\"date\":1565884800000,\"id\":1481937306581164033,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-16.jpg\",\"note\":\"教育不是为了教会青年人谋生,而是教会他们创造生活。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-16-day.mp3\"}}', 0, '', '2022-01-14 18:32:41'); INSERT INTO `sys_oper_log` VALUES (2020, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Work and acquire, and thou hast chained the wheel of chance.\",\"createTime\":1642156390666,\"dataId\":3816,\"date\":1594051200000,\"id\":1481937428396335106,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/6d8233f961fc1c1b31827ff70b2b3312.png\",\"note\":\"边工作边探求,你便可拴住机会的车轮。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/4337d137c88f4a1dd0abe3c04c194fbd.mp3\"}}', 0, '', '2022-01-14 18:33:10'); INSERT INTO `sys_oper_log` VALUES (2021, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Truth is beautiful. Without doubt, and so are lies.\",\"createTime\":1642156392817,\"dataId\":3555,\"date\":1571846400000,\"id\":1481937437460226049,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-24.jpg\",\"note\":\"真理是美的;毫无疑问,谎言也是如此。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-24-day.mp3\"}}', 0, '', '2022-01-14 18:33:12'); INSERT INTO `sys_oper_log` VALUES (2022, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Now if you know what you\'re worth, go and get what you\'re worth.\",\"createTime\":1642162508160,\"dataId\":3928,\"date\":1603728000000,\"id\":1481963087080415233,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/385772ea4c82392aa56f59a1b9e8a492.png\",\"note\":\"如果你知道你的价值,你就前进实现你的价值。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/ae6e31395e52f3144d30ddbc093dbcd6.mp3\"}}', 0, '', '2022-01-14 20:15:08'); INSERT INTO `sys_oper_log` VALUES (2023, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这个城市大得让人到处能一见钟情,却没法重逢。\",\"createTime\":1642162512629,\"id\":1481963105795399682,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 20:15:12'); INSERT INTO `sys_oper_log` VALUES (2024, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"工程穷三代,考古毁一生。\",\"createTime\":1642162534488,\"id\":1481963197482885121,\"source\":\"红叶乘风我愿\",\"type\":5}}', 0, '', '2022-01-14 20:15:34'); INSERT INTO `sys_oper_log` VALUES (2025, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我想要握紧的并不是匕首或是什么,只不过是他的掌心而已。\",\"createTime\":1642162538609,\"id\":1481963214792777730,\"source\":\"万事屋神乐酱\",\"type\":5}}', 0, '', '2022-01-14 20:15:38'); INSERT INTO `sys_oper_log` VALUES (2026, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"正义不会因为无人歌颂而变成非议。\",\"createTime\":1642162606719,\"id\":1481963500408102914,\"source\":\"苍之轨迹\",\"type\":5}}', 0, '', '2022-01-14 20:16:46'); INSERT INTO `sys_oper_log` VALUES (2027, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这一辈子的酸甜苦辣,只要和你在一起就是最幸福的。\",\"createTime\":1642162611733,\"id\":1481963521446731778,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 20:16:51'); INSERT INTO `sys_oper_log` VALUES (2028, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一颗真心又能怎样,始终抵不过物质和外貌。\",\"createTime\":1642162628828,\"id\":1481963593177718786,\"source\":\"Rain\",\"type\":5}}', 0, '', '2022-01-14 20:17:08'); INSERT INTO `sys_oper_log` VALUES (2029, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"年华无多时,恋爱吧男子!\",\"createTime\":1642162807676,\"id\":1481964343291240449,\"source\":\"当希望破灭时__\",\"type\":5}}', 0, '', '2022-01-14 20:20:07'); INSERT INTO `sys_oper_log` VALUES (2030, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"待我穿好西装你必站我左边做我的新娘\",\"createTime\":1642162816002,\"id\":1481964378254958593,\"source\":\"安然\",\"type\":5}}', 0, '', '2022-01-14 20:20:16'); INSERT INTO `sys_oper_log` VALUES (2031, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"攀登顶峰,这种奋斗的本身就足以充实人的心。人们必须相信,垒山不止就是幸福。\",\"createTime\":1642162843116,\"id\":1481964491954151425,\"source\":\"加缪\",\"type\":4}}', 0, '', '2022-01-14 20:20:43'); INSERT INTO `sys_oper_log` VALUES (2032, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时间并不会真的帮我们解决什么问题 它只是把原来怎么也想不通的问题 变得不再重要了\",\"createTime\":1642162862462,\"id\":1481964573088768001,\"source\":\"冭孒\",\"type\":5}}', 0, '', '2022-01-14 20:21:02'); INSERT INTO `sys_oper_log` VALUES (2033, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"想你想到手都断了…\",\"createTime\":1642162867326,\"id\":1481964593506639874,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 20:21:07'); INSERT INTO `sys_oper_log` VALUES (2034, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"该哭哭 该笑笑 别让疯狗乱了调调\",\"createTime\":1642162868657,\"id\":1481964599106035714,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 20:21:08'); INSERT INTO `sys_oper_log` VALUES (2035, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"痛苦让人成长,是你进步的一个机会,一个挑战。别害怕痛苦的事情,它有另一面积极的作用。现在很痛苦,等过阵子回头看看,发现其实都不算事。\",\"createTime\":1642162890241,\"id\":1481964689610727426,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 20:21:30'); INSERT INTO `sys_oper_log` VALUES (2036, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"最好的感觉,是有人懂你的欲言又止。\",\"createTime\":1642162934458,\"id\":1481964875057684481,\"source\":\"zerokey\",\"type\":5}}', 0, '', '2022-01-14 20:22:14'); INSERT INTO `sys_oper_log` VALUES (2037, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你还是这么冷漠啊。不过,仅此而已的话,我是不会泄气的。\",\"createTime\":1642162934572,\"id\":1481964875527446529,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 20:22:14'); INSERT INTO `sys_oper_log` VALUES (2038, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与其相信你的金钱,倒不如相信你的智慧;与其寻找金钱,倒不如寻找智慧。\",\"createTime\":1642162944544,\"id\":1481964917407571970,\"source\":\"网络收集\",\"type\":4}}', 0, '', '2022-01-14 20:22:24'); INSERT INTO `sys_oper_log` VALUES (2039, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果我不会飞,那我就只是一只普通的猪。\",\"createTime\":1642163069086,\"id\":1481965439770386434,\"source\":\"anythink\",\"type\":5}}', 0, '', '2022-01-14 20:24:29'); INSERT INTO `sys_oper_log` VALUES (2040, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果有来生, 要做一棵树, 站成永恒, 没有悲欢的姿势。 一半在土里安详, 一半在风里飞扬, 一半洒落阴凉, 一半沐浴阳光, 非常沉默非常骄傲, 从不依靠 从不寻找。\",\"createTime\":1642163133170,\"id\":1481965708541386754,\"source\":\"说给自己听\",\"type\":2}}', 0, '', '2022-01-14 20:25:33'); INSERT INTO `sys_oper_log` VALUES (2041, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"待天气晚来秋,放一叶小舟,载一程温柔,寻那何处得以忘忧。 待明月照清泉石上流,举一杯暖酒,佐一场宿醉,明君何不能爱。 待浣女下渔舟动莲,取下褪漆旧钗,任余春消逝,今日秋味日渐含柔。\",\"createTime\":1642163161826,\"id\":1481965828708196353,\"source\":\"空山新雨后\",\"type\":2}}', 0, '', '2022-01-14 20:26:01'); INSERT INTO `sys_oper_log` VALUES (2042, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"找不到我喜欢的伞,我宁愿淋雨。\",\"createTime\":1642164268141,\"id\":1481970468975763458,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 20:44:28'); INSERT INTO `sys_oper_log` VALUES (2043, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Anyone can hold a grudge, but it takes real courage to forgive. \",\"createTime\":1642164407909,\"dataId\":3979,\"date\":1608134400000,\"id\":1481971055171690497,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3692d938f51a76ec795480e2cd3ff87a.png\",\"note\":\"任何人都可以有咒怨,但是宽恕需要真的勇气。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e9a99e1bc51cd54a72fc309ebddc33ff.mp3\"}}', 0, '', '2022-01-14 20:46:47'); INSERT INTO `sys_oper_log` VALUES (2044, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you don’t want to give in, your only choice is to resist.\",\"createTime\":1642164423240,\"dataId\":4065,\"date\":1615564800000,\"id\":1481971119508119554,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/5deb67e18e9fecd21d360ead72ace182.png\",\"note\":\"你若不愿屈服,便只能反抗。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0a7f0ec22831d8593b8c9e948828c746.mp3\"}}', 0, '', '2022-01-14 20:47:03'); INSERT INTO `sys_oper_log` VALUES (2045, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Positive thinking will let you do everything better than negative thinking will.\",\"createTime\":1642164429754,\"dataId\":3784,\"date\":1591286400000,\"id\":1481971146771095553,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/53fc2baa3f5acb6766c7d046fb5d6f33.png\",\"note\":\"比起悲观,乐观会让你把每一件事都做得更好。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/83578231e1444acfeba4057fc60722b4.mp3\"}}', 0, '', '2022-01-14 20:47:09'); INSERT INTO `sys_oper_log` VALUES (2046, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Winning that ticket was the best thing that ever happened to me. \",\"dataId\":4219,\"date\":1628870400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/74f714c7ea2ddc52b229720730c36291.png\",\"note\":\"赌赢那张船票,是我一生中最幸运的事。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0d90b6f80b9ba0b418f3734f5610a1f3.mp3\"}}', 0, '', '2022-01-14 20:47:53'); INSERT INTO `sys_oper_log` VALUES (2047, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The deepest principle in human nature is the craving to be appreciated.\",\"createTime\":1642164477661,\"dataId\":4091,\"date\":1617811200000,\"id\":1481971347736977410,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/862be4187487f8ec9d0f031bb848149f.png\",\"note\":\"人性中最深刻的本能就是对被欣赏的渴望。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/46d52422295d48414dca1f17acc18b63.mp3\"}}', 0, '', '2022-01-14 20:47:57'); INSERT INTO `sys_oper_log` VALUES (2048, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A person who won\'t read has no advantage over one who can\'t read. \\u000B\",\"createTime\":1642164493854,\"dataId\":4106,\"date\":1619107200000,\"id\":1481971415655342082,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/438547773c759f49f6f36d9404905ef0.png\",\"note\":\"识字却不愿阅读的人,比文盲也好不到哪去。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2f63377b36a609934bc4095b230353ca.mp3\"}}', 0, '', '2022-01-14 20:48:13'); INSERT INTO `sys_oper_log` VALUES (2049, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We\'re here to put a dent in the universe. Otherwise why else even be here?\",\"createTime\":1642164513896,\"dataId\":3906,\"date\":1601827200000,\"id\":1481971499746942978,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/215285b950240b6c95aad3349a060933.png\",\"note\":\"活着就是为了改变世界,难道还有其他原因吗?\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/ec25b54963a85d981057409308e32d77.mp3\"}}', 0, '', '2022-01-14 20:48:33'); INSERT INTO `sys_oper_log` VALUES (2050, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Your heart is free. Have the courage to follow it. 你的心是自由的,要有勇气追随它。\",\"createTime\":1642164536663,\"id\":1481971595200913409,\"source\":\"朵朵\",\"type\":5}}', 0, '', '2022-01-14 20:48:56'); INSERT INTO `sys_oper_log` VALUES (2051, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“满纸荒唐中窥见满脸沧桑 / 触到神经就要懂得鼓掌\\\"\",\"createTime\":1642164575403,\"id\":1481971757717610498,\"source\":\"雅俗共赏\",\"type\":2}}', 0, '', '2022-01-14 20:49:35'); INSERT INTO `sys_oper_log` VALUES (2052, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"既然来时路已不可追,那么前方无论是深渊万丈还是草原辽阔,你都要学会放手向前走。\",\"createTime\":1642164584086,\"id\":1481971794099003393,\"source\":\"绿亦歌《也曾与全世界为敌》\",\"type\":1}}', 0, '', '2022-01-14 20:49:44'); INSERT INTO `sys_oper_log` VALUES (2053, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你每想念一次春天,枝头就攒了一朵花开。\",\"createTime\":1642166089213,\"id\":1481978107105337346,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 21:14:49'); INSERT INTO `sys_oper_log` VALUES (2054, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有一种无奈叫做,你明明是只候鸟,却喜欢上只能给你冬天的人。\",\"createTime\":1642166171603,\"id\":1481978452669849601,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 21:16:11'); INSERT INTO `sys_oper_log` VALUES (2055, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不能自拔的,除了牙齿,还有爱情\",\"createTime\":1642166195263,\"id\":1481978551852556289,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-14 21:16:35'); INSERT INTO `sys_oper_log` VALUES (2056, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我只有在做一件事情的时候才想你,那就是我呼吸的时候!!\",\"createTime\":1642166225274,\"id\":1481978677790728193,\"source\":\"宝莱屋生死恋\",\"type\":3}}', 0, '', '2022-01-14 21:17:05'); INSERT INTO `sys_oper_log` VALUES (2057, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"勤能补拙,勤俭立业。\",\"createTime\":1642166248569,\"id\":1481978775492845570,\"source\":\"侯德榜\",\"type\":4}}', 0, '', '2022-01-14 21:17:28'); INSERT INTO `sys_oper_log` VALUES (2058, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Im laughing somehow or other.Just because Im thinking of you.我莫名其妙地笑了,原来只因为想到了你。\",\"createTime\":1642166882896,\"id\":1481981436027953154,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-14 21:28:02'); INSERT INTO `sys_oper_log` VALUES (2059, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你以为我哭就是悲伤吗,不对不对;你以为我不哭就是快乐吗,这也不是对的。你就看着我自生自灭好了,不要安慰,不要心疼,一会儿就没事了。\",\"createTime\":1642166920530,\"id\":1481981593893167106,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 21:28:40'); INSERT INTO `sys_oper_log` VALUES (2060, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"万书皆下品,唯有萌最高!\",\"createTime\":1642166948145,\"id\":1481981709710483457,\"source\":\"wy6510166\",\"type\":5}}', 0, '', '2022-01-14 21:29:08'); INSERT INTO `sys_oper_log` VALUES (2061, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我相信真爱只有一次\",\"createTime\":1642166952637,\"id\":1481981728517742593,\"source\":\"绿帽子\",\"type\":3}}', 0, '', '2022-01-14 21:29:12'); INSERT INTO `sys_oper_log` VALUES (2062, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"重要的是无论我们选择哪条路,都要担负起选择的责任。\",\"createTime\":1642167004042,\"id\":1481981944172077057,\"source\":\"funkyholic\",\"type\":5}}', 0, '', '2022-01-14 21:30:04'); INSERT INTO `sys_oper_log` VALUES (2063, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"感情的事儿,可以敢作敢当,但真的无法轻拿轻放。\",\"createTime\":1642167038587,\"id\":1481982089039142914,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 21:30:38'); INSERT INTO `sys_oper_log` VALUES (2064, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"对不起,我的姿色填不满你的双眼,让您走神了!\",\"createTime\":1642167043752,\"id\":1481982110685945857,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-14 21:30:43'); INSERT INTO `sys_oper_log` VALUES (2065, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的世界不允许你的消失 不管结局是否完美\",\"createTime\":1642167204541,\"id\":1481982785130029057,\"source\":\"aa丫头\",\"type\":5}}', 0, '', '2022-01-14 21:33:24'); INSERT INTO `sys_oper_log` VALUES (2066, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你的女朋友有缺点吗? :有,像星星一样的多。 那你的女朋友有优点吗? :有,像太阳一样的少。 那你为什么还喜欢她? :因为太阳一出现,星星就不见了。\",\"createTime\":1642167214077,\"id\":1481982825089163265,\"source\":\"亲爱的你\",\"type\":2}}', 0, '', '2022-01-14 21:33:34'); INSERT INTO `sys_oper_log` VALUES (2067, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"沒有永远下不停的雨。\",\"createTime\":1642167219512,\"id\":1481982847918759937,\"source\":\"akirayc\",\"type\":5}}', 0, '', '2022-01-14 21:33:39'); INSERT INTO `sys_oper_log` VALUES (2068, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"想了解喜欢的人,可是,却不能理解。\",\"createTime\":1642167232503,\"id\":1481982902381797378,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 21:33:52'); INSERT INTO `sys_oper_log` VALUES (2069, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与其被自己的本性牵着走而痛苦,倒不如试着改变自己。\",\"createTime\":1642167287973,\"id\":1481983135048228866,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 21:34:47'); INSERT INTO `sys_oper_log` VALUES (2070, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"途行莫停,顾盼安宁。\",\"createTime\":1642167412611,\"id\":1481983657809502209,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-14 21:36:52'); INSERT INTO `sys_oper_log` VALUES (2071, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果明天太阳不再升起,我们就好好珍惜今天,该道歉的道歉,该和好的和好,该相爱的相爱,该请吃饭的赶紧请吃饭,时间宝贵呀!\",\"createTime\":1642167416305,\"id\":1481983673320038402,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 21:36:56'); INSERT INTO `sys_oper_log` VALUES (2072, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"明明说了要白头偕老,而你却偷偷焗了油\",\"createTime\":1642167439958,\"id\":1481983772540493826,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 21:37:19'); INSERT INTO `sys_oper_log` VALUES (2073, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真实是人生的命脉,是一切价值的根基。\",\"createTime\":1642167484315,\"id\":1481983958574653442,\"source\":\"德莱塞\",\"type\":4}}', 0, '', '2022-01-14 21:38:04'); INSERT INTO `sys_oper_log` VALUES (2074, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与众不同的生活方式很累人呢,因为找不到借口。\",\"createTime\":1642167486678,\"id\":1481983968452239361,\"source\":\"跳舞的果果\",\"type\":5}}', 0, '', '2022-01-14 21:38:06'); INSERT INTO `sys_oper_log` VALUES (2075, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我会逐渐变成你喜欢的模样,然后离开你。\",\"createTime\":1642167513968,\"id\":1481984082960932865,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 21:38:33'); INSERT INTO `sys_oper_log` VALUES (2076, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"谢谢你让我踏踏实实的活在你的生活里头\",\"createTime\":1642167558909,\"id\":1481984271415205890,\"source\":\"不再让你孤单\",\"type\":3}}', 0, '', '2022-01-14 21:39:18'); INSERT INTO `sys_oper_log` VALUES (2077, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1642167576877,\"id\":1481984346782654466,\"source\":\"施企巴乔夫\",\"type\":4}}', 0, '', '2022-01-14 21:39:36'); INSERT INTO `sys_oper_log` VALUES (2078, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"慕君之心,至死方休。\",\"createTime\":1642167635097,\"id\":1481984591008587777,\"source\":\"wwwwodddd\",\"type\":5}}', 0, '', '2022-01-14 21:40:35'); INSERT INTO `sys_oper_log` VALUES (2079, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"其实,恋爱这种东西,当你看上人家的那一刹那就已经失败了。\",\"createTime\":1642167666509,\"id\":1481984722764259330,\"source\":\"LT2142\",\"type\":5}}', 0, '', '2022-01-14 21:41:06'); INSERT INTO `sys_oper_log` VALUES (2080, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"环境愈艰难困苦,就愈需要坚定的毅力和信心,而且,懈怠的害处就愈大。\",\"createTime\":1642167683298,\"id\":1481984793144680449,\"source\":\"列夫·托尔斯泰\",\"type\":4}}', 0, '', '2022-01-14 21:41:23'); INSERT INTO `sys_oper_log` VALUES (2081, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世上再美的风景,都不及回家的那段路。\",\"createTime\":1642167699819,\"id\":1481984862455554049,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 21:41:39'); INSERT INTO `sys_oper_log` VALUES (2082, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的人生哲学是工作,我要揭示大自然的奥秘,并以此为人类服务。我们在世的短暂的一生中,我不知道还有什么比这种服务更好的了。\",\"createTime\":1642167745552,\"id\":1481985054294630402,\"source\":\"爱迪生\",\"type\":4}}', 0, '', '2022-01-14 21:42:25'); INSERT INTO `sys_oper_log` VALUES (2083, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"品格不由你占有的东西决定,而是由你匮乏的东西塑造的。\",\"createTime\":1642167765513,\"id\":1481985137996161026,\"source\":\"Rain\",\"type\":5}}', 0, '', '2022-01-14 21:42:45'); INSERT INTO `sys_oper_log` VALUES (2084, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"提倡社会公德,爱护交通标志,设施。\",\"createTime\":1642167805696,\"id\":1481985306531684354,\"source\":\"格言\",\"type\":4}}', 0, '', '2022-01-14 21:43:25'); INSERT INTO `sys_oper_log` VALUES (2085, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你算是炎日里的一点微风, 是沙漠里的一小片绿洲, 从来不是因为我而存在。\",\"createTime\":1642167853999,\"id\":1481985509154316290,\"source\":\"绿洲\",\"type\":2}}', 0, '', '2022-01-14 21:44:14'); INSERT INTO `sys_oper_log` VALUES (2086, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"两个人的沟通70%是情绪,30%是内容,如果沟通情绪不对,那内容就会给扭曲了,所以沟通内容之前,情绪层面一定要梳理好,不然误会只会越来越深。\",\"createTime\":1642167856633,\"id\":1481985520185335809,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 21:44:16'); INSERT INTO `sys_oper_log` VALUES (2087, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"阿sir,我不做大哥很久了!\",\"createTime\":1642167919433,\"id\":1481985783575044098,\"source\":\"英雄本色\",\"type\":3}}', 0, '', '2022-01-14 21:45:19'); INSERT INTO `sys_oper_log` VALUES (2088, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果我是那雨滴的话,那么,我能够像把不曾交汇的天空与大地连接起来那样,把某人的心串联起来吗?\",\"createTime\":1642167953372,\"id\":1481985925925527553,\"source\":\"毒药toxic\",\"type\":5}}', 0, '', '2022-01-14 21:45:53'); INSERT INTO `sys_oper_log` VALUES (2089, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时间是伟大的作家,总会写下完美的结局。\",\"createTime\":1642167972183,\"id\":1481986004853940226,\"source\":\"LT2142\",\"type\":5}}', 0, '', '2022-01-14 21:46:12'); INSERT INTO `sys_oper_log` VALUES (2090, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你会梦游,我会磨牙,我们晚上一起去吓人吧!\",\"createTime\":1642168003444,\"id\":1481986135951106050,\"source\":\"一萍敌敌畏\",\"type\":5}}', 0, '', '2022-01-14 21:46:43'); INSERT INTO `sys_oper_log` VALUES (2091, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果一个小丑他的职责是搞笑。那么,他的的一生就是永远拥有笑容,最卑微的笑容。\",\"createTime\":1642168027631,\"id\":1481986237394542593,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 21:47:07'); INSERT INTO `sys_oper_log` VALUES (2092, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“再多的光环都是假的。 除了你,这个叫韩商言的男人什么都没有,两手空空,孤身一个。 这才是真的。”佟年,你才是宝藏!\",\"createTime\":1642168241478,\"id\":1481987134363230210,\"source\":\"无名之辈\",\"type\":2}}', 0, '', '2022-01-14 21:50:41'); INSERT INTO `sys_oper_log` VALUES (2093, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"文能提笔控萝莉,武能床上定人妻。进可欺身压正太,退能提臀迎众基。\",\"createTime\":1642168263643,\"id\":1481987227267063810,\"source\":\"Wesion\",\"type\":5}}', 0, '', '2022-01-14 21:51:03'); INSERT INTO `sys_oper_log` VALUES (2094, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一切小美好正在井井有序的发生着。\",\"createTime\":1642168320019,\"id\":1481987463741923329,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 21:52:00'); INSERT INTO `sys_oper_log` VALUES (2095, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"很多事、唯有当距离渐远时、回首才能看清它。\",\"createTime\":1642168448472,\"id\":1481988002542215169,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 21:54:08'); INSERT INTO `sys_oper_log` VALUES (2096, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"哼!悔改吧,你们这群死宅,人家可是身价四千万的大小姐。\",\"createTime\":1642168486219,\"id\":1481988160826859522,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 21:54:46'); INSERT INTO `sys_oper_log` VALUES (2097, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"给个机会让我照顾你一下,时间不长,就一辈子。\",\"createTime\":1642168539265,\"id\":1481988383334686722,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 21:55:39'); INSERT INTO `sys_oper_log` VALUES (2098, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我做了个梦 你说你很爱她 沉浸于她的身体里无法抽离\",\"createTime\":1642168540657,\"id\":1481988389164769282,\"source\":\"无题(Prod.by ZIV)\",\"type\":2}}', 0, '', '2022-01-14 21:55:40'); INSERT INTO `sys_oper_log` VALUES (2099, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"代表月亮消灭你!\",\"createTime\":1642168583856,\"id\":1481988570388062210,\"source\":\"edvda\",\"type\":5}}', 0, '', '2022-01-14 21:56:23'); INSERT INTO `sys_oper_log` VALUES (2100, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一天之中最完美的时光在黎明。\",\"createTime\":1642168613718,\"id\":1481988695604813826,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 21:56:53'); INSERT INTO `sys_oper_log` VALUES (2101, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"对待自己温柔一点。你只不过是宇宙的孩子,与植物、星辰没什么两样。\",\"createTime\":1642168644210,\"id\":1481988823522697217,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 21:57:24'); INSERT INTO `sys_oper_log` VALUES (2102, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"别让那些不重要的事来影响你,从而让你失去那些真正重要的东西。\",\"createTime\":1642168656838,\"id\":1481988876467396610,\"source\":\"阿土仔\",\"type\":5}}', 0, '', '2022-01-14 21:57:36'); INSERT INTO `sys_oper_log` VALUES (2103, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你要是想进入某个人的世界,就要努力让自己站在足以匹配他的高度。\",\"createTime\":1642168672693,\"id\":1481988942989058050,\"source\":\"阿土仔\",\"type\":5}}', 0, '', '2022-01-14 21:57:52'); INSERT INTO `sys_oper_log` VALUES (2104, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"能哭的地方只有厕所和爸爸的怀里。\",\"createTime\":1642168795994,\"id\":1481989460167712769,\"source\":\"jik1203\",\"type\":5}}', 0, '', '2022-01-14 21:59:56'); INSERT INTO `sys_oper_log` VALUES (2105, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"和爱的人吵架,和陌生人讲心里话。\",\"createTime\":1642168984130,\"id\":1481990249216958466,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-14 22:03:04'); INSERT INTO `sys_oper_log` VALUES (2106, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"忘了,忘不了的;记住,记不住的。。。。\",\"createTime\":1642169085310,\"id\":1481990673605025793,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 22:04:45'); INSERT INTO `sys_oper_log` VALUES (2107, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这不是水,是口水(台语)\",\"createTime\":1642169126496,\"id\":1481990846389379073,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2022-01-14 22:05:26'); INSERT INTO `sys_oper_log` VALUES (2108, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"再强的敌人在最后一集的主角面前也是渣渣。\",\"createTime\":1642169353628,\"id\":1481991799003897858,\"source\":\"無い\",\"type\":5}}', 0, '', '2022-01-14 22:09:13'); INSERT INTO `sys_oper_log` VALUES (2109, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Yesterday is a history, tomorrow is a mystery, but today is a gift.\",\"createTime\":1642169458287,\"id\":1481992237992337410,\"source\":\"efreet\",\"type\":5}}', 0, '', '2022-01-14 22:10:58'); INSERT INTO `sys_oper_log` VALUES (2110, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"美丽女人迷死人; 放荡女人爽死人; 温柔女人爱死人; 有才女人勾死人; 有钱女人玩死人; 当官女人弄死人; 女人的天职就是整死男人!\",\"createTime\":1642169742266,\"id\":1481993429082398721,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 22:15:42'); INSERT INTO `sys_oper_log` VALUES (2111, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"秦奋:人在我这儿,心在别处…… \\n舒淇:你可以不接受,我知道这对你不公平。 \\n秦奋:那你能允许我,心在你这儿,身体有时候开小差吗? \\n舒淇:不允许。\",\"createTime\":1642169799976,\"id\":1481993671160848386,\"source\":\"非诚勿扰\",\"type\":3}}', 0, '', '2022-01-14 22:16:39'); INSERT INTO `sys_oper_log` VALUES (2112, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心之所愿,无所不成。\",\"createTime\":1642169887549,\"id\":1481994038468632578,\"source\":\"漠伦\",\"type\":5}}', 0, '', '2022-01-14 22:18:07'); INSERT INTO `sys_oper_log` VALUES (2113, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Retaining a childish heart is a matter of pride. 童心未泯,是一件值得骄傲的事情。\",\"createTime\":1642170022582,\"id\":1481994604846481410,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-14 22:20:22'); INSERT INTO `sys_oper_log` VALUES (2114, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"劳动是财富的源泉,也是幸福的源泉。人世间的美好梦想,只有通过诚实劳动才能实现;生命里的一切辉煌,只有通过诚实劳动才能铸就。\",\"createTime\":1642170252478,\"id\":1481995569079222273,\"source\":\"阿土仔\",\"type\":5}}', 0, '', '2022-01-14 22:24:12'); INSERT INTO `sys_oper_log` VALUES (2115, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"给自己一片没有退路的悬崖,是给自己一个向生命高地冲锋的机会,也是给自己一张出类拔萃的入场券。\",\"createTime\":1642170505599,\"id\":1481996630716284929,\"source\":\"南少1984\",\"type\":5}}', 0, '', '2022-01-14 22:28:25'); INSERT INTO `sys_oper_log` VALUES (2116, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"以德服人。\",\"createTime\":1642170538505,\"id\":1481996768738246658,\"source\":\"方世玉\",\"type\":3}}', 0, '', '2022-01-14 22:28:58'); INSERT INTO `sys_oper_log` VALUES (2117, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我不知道你是谁\\n我也不知道你要什么\\n如果你要赎金(\\n我可以告诉你我没钱\\n但是我有非常特殊的能力\\n这种能力是我毕生累积的结果\\n专门拿来对付像你这样的人渣\\n如果你马上放走我女儿\\n我就当作没这回事\\n我不会去找你\\n也不会通缉你\\n如果你不这么做\\n我会去找你\\n我会找到你\\n我会杀了你~~~\",\"createTime\":1642170649976,\"id\":1481997236319256578,\"source\":\"即刻救援 (taken)\",\"type\":3}}', 0, '', '2022-01-14 22:30:49'); INSERT INTO `sys_oper_log` VALUES (2118, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果没什么好事发生的话,就把没有发生坏事的每一天当作好事吧。\",\"createTime\":1642170755189,\"id\":1481997677568425985,\"source\":\"万事屋神乐酱\",\"type\":5}}', 0, '', '2022-01-14 22:32:35'); INSERT INTO `sys_oper_log` VALUES (2119, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"中国人烧香,不仅是为了计时,中国人烧消这种习俗,除了烧香最重要的就是,它包含我们的谦虚,是我们中国的文化!!!\",\"createTime\":1642170991825,\"id\":1481998670146273281,\"source\":\"叶问二\",\"type\":3}}', 0, '', '2022-01-14 22:36:31'); INSERT INTO `sys_oper_log` VALUES (2120, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生就像西游,历经九九八十一难,才有了久经考验的人生。\",\"createTime\":1642171247279,\"id\":1481999741560258562,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 22:40:47'); INSERT INTO `sys_oper_log` VALUES (2121, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Love with love, those who become accustomed to.\",\"createTime\":1642171258823,\"id\":1481999789970915330,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 22:40:58'); INSERT INTO `sys_oper_log` VALUES (2122, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每一次横空出世,其实都是历史的久别重逢。\",\"createTime\":1642171261244,\"id\":1481999800158879746,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 22:41:01'); INSERT INTO `sys_oper_log` VALUES (2123, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我不会让任何人看到我软弱的一面。\",\"createTime\":1642171263628,\"id\":1481999810128740354,\"source\":\"星之彼岸\",\"type\":5}}', 0, '', '2022-01-14 22:41:03'); INSERT INTO `sys_oper_log` VALUES (2124, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1333}', 0, '', '2022-01-14 22:49:12'); INSERT INTO `sys_oper_log` VALUES (2125, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Use what talents you possess: the woods would be very silent if no birds sang there except those that sang best.\",\"createTime\":1642172954010,\"dataId\":3507,\"date\":1567699200000,\"id\":1482006900104724481,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-09-06.jpg\",\"note\":\"天生我材必有用。若只有声音最悦耳的鸟儿在歌唱,树林该多沉寂。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-09-06-day.mp3\"}}', 0, '', '2022-01-14 23:09:14'); INSERT INTO `sys_oper_log` VALUES (2126, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我总是一厢情愿 现在风走了八万里 等回来了八万 不知道有没有等到最爱我的你\",\"createTime\":1642172970691,\"id\":1482006970116046849,\"source\":\"想你想你想我\",\"type\":2}}', 0, '', '2022-01-14 23:09:30'); INSERT INTO `sys_oper_log` VALUES (2127, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"虞美人——给人带来希望,同时也给人带来绝望的花…\",\"createTime\":1642172972821,\"id\":1482006978999582721,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 23:09:32'); INSERT INTO `sys_oper_log` VALUES (2128, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"謊言,無論詞藻在怎麽華麗,終究是謊言。\",\"createTime\":1642172974269,\"id\":1482006985072934913,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 23:09:34'); INSERT INTO `sys_oper_log` VALUES (2129, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生尽欢,死无憾。\",\"createTime\":1642173831314,\"id\":1482010579805372417,\"source\":\"_SCarLet\",\"type\":5}}', 0, '', '2022-01-14 23:23:51'); INSERT INTO `sys_oper_log` VALUES (2130, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人无志向,和迷途的盲人一样\",\"createTime\":1642174044423,\"id\":1482011473670275074,\"source\":\"朝鲜\",\"type\":4}}', 0, '', '2022-01-14 23:27:24'); INSERT INTO `sys_oper_log` VALUES (2131, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"最好的人生状态,安于得失,淡于成败。\",\"createTime\":1642174077066,\"id\":1482011610580746242,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 23:27:57'); INSERT INTO `sys_oper_log` VALUES (2132, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有些事选择做了,说再多的解释都无法弥补。没有共同的经历,何谈绝对的是非对错。\",\"createTime\":1642174255045,\"id\":1482012357053612034,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 23:30:55'); INSERT INTO `sys_oper_log` VALUES (2133, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在心动的期限里 仍对你存有无限幻想\",\"createTime\":1642174290909,\"id\":1482012507515879425,\"source\":\"重演\",\"type\":2}}', 0, '', '2022-01-14 23:31:30'); INSERT INTO `sys_oper_log` VALUES (2134, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"以为是乏味的城市,却遇见彩色的梦和许多美好。\",\"createTime\":1642174382321,\"id\":1482012890896236546,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 23:33:02'); INSERT INTO `sys_oper_log` VALUES (2135, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"过分的神圣,往往比恶魔更加恶质。\",\"createTime\":1642174398866,\"id\":1482012960316162049,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 23:33:18'); INSERT INTO `sys_oper_log` VALUES (2136, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"错的不是我, 错的是世界。\",\"createTime\":1642174416731,\"id\":1482013035201265666,\"source\":\"雪丶风\",\"type\":5}}', 0, '', '2022-01-14 23:33:36'); INSERT INTO `sys_oper_log` VALUES (2137, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们生来孤独,有何苦闯进人群自取其辱。\",\"createTime\":1642174452430,\"id\":1482013184937918465,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 23:34:12'); INSERT INTO `sys_oper_log` VALUES (2138, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Dora:至少他们没有让老人和孩子工作。女囚犯:不让他们工作是要杀死他们!某天,你会听见一位女士说:"孩子们,来洗个澡。"然后就用毒气杀死他们!\",\"createTime\":1642174482383,\"id\":1482013310574100481,\"source\":\"美丽人生(Kingnet)\",\"type\":3}}', 0, '', '2022-01-14 23:34:42'); INSERT INTO `sys_oper_log` VALUES (2139, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"社会和生活让我们明白了很多---原来是这样\",\"createTime\":1642174490803,\"id\":1482013345906917378,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 23:34:50'); INSERT INTO `sys_oper_log` VALUES (2140, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"机会靠左手,努力靠右手,成功靠双手。\",\"createTime\":1642174605636,\"id\":1482013827555622913,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 23:36:45'); INSERT INTO `sys_oper_log` VALUES (2141, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天你最后遇见的那个人有在微笑吗?\",\"createTime\":1642174657068,\"id\":1482014043268677634,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 23:37:37'); INSERT INTO `sys_oper_log` VALUES (2142, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我相信十年后的八月,我们还能再相遇。\",\"createTime\":1642174668657,\"id\":1482014091863883777,\"source\":\"ツ绯/D誓言↙\",\"type\":5}}', 0, '', '2022-01-14 23:37:48'); INSERT INTO `sys_oper_log` VALUES (2143, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果你只是用考验我的办法来让你感动而爱上我,可能最后感动的人只有一个上帝。\",\"createTime\":1642174712496,\"id\":1482014275767336962,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 23:38:32'); INSERT INTO `sys_oper_log` VALUES (2144, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The past is the past, looking back at it will only damage the present, leaving the future on hold. 过去的就过去了,一直回头看只会毁掉现在,阻碍未来。\",\"createTime\":1642174773313,\"id\":1482014530860711938,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 23:39:33'); INSERT INTO `sys_oper_log` VALUES (2145, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"它让我如鱼得水\",\"createTime\":1642174958327,\"id\":1482015306827923458,\"source\":\"阿甘正传(Forrest gump)\",\"type\":3}}', 0, '', '2022-01-14 23:42:38'); INSERT INTO `sys_oper_log` VALUES (2146, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"虚伪的眼泪,会伤害别人,虚伪的笑容,会伤害自己。\",\"createTime\":1642174972746,\"id\":1482015367343341570,\"source\":\"雪丶风\",\"type\":5}}', 0, '', '2022-01-14 23:42:52'); INSERT INTO `sys_oper_log` VALUES (2147, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我是一个经常笑的人,可我不是经常开心的人。\",\"createTime\":1642174983361,\"id\":1482015411832324098,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 23:43:03'); INSERT INTO `sys_oper_log` VALUES (2148, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人无信就是畜生!\",\"createTime\":1642175050389,\"id\":1482015692980715521,\"source\":\"投名状\",\"type\":3}}', 0, '', '2022-01-14 23:44:10'); INSERT INTO `sys_oper_log` VALUES (2149, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"女友:“你为什么这么胖?”胖男神回复:“如果你喜欢人民币,你会在乎它的面值大吗?”\",\"createTime\":1642175081589,\"id\":1482015823859777538,\"source\":\"中国必胜\",\"type\":5}}', 0, '', '2022-01-14 23:44:41'); INSERT INTO `sys_oper_log` VALUES (2150, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"邂逅本身,就是一种奇迹啊。\",\"createTime\":1642175095189,\"id\":1482015880877146114,\"source\":\"以风之名\",\"type\":5}}', 0, '', '2022-01-14 23:44:55'); INSERT INTO `sys_oper_log` VALUES (2151, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"No can ,But will 没有行不行,只有愿不愿\",\"createTime\":1642175104077,\"id\":1482015918156120065,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 23:45:04'); INSERT INTO `sys_oper_log` VALUES (2152, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"所谓的言语,只有当对方听进去了才开始有意义啊。\",\"createTime\":1642175167950,\"id\":1482016186088259585,\"source\":\"alwaysandforever\",\"type\":5}}', 0, '', '2022-01-14 23:46:07'); INSERT INTO `sys_oper_log` VALUES (2153, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Open natural smile, must put down garments . 想开了自然微笑,看透了肯定放下。\",\"createTime\":1642175209294,\"id\":1482016359497564162,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-14 23:46:49'); INSERT INTO `sys_oper_log` VALUES (2154, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要奢望别人给你经济上的任何帮助,钱对任何人都是不够用的。\",\"createTime\":1642175224921,\"id\":1482016425025175553,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-14 23:47:04'); INSERT INTO `sys_oper_log` VALUES (2155, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"低头不是认输,是要看清自己的路;昂头不是骄傲,是要看清自己的天空。\",\"createTime\":1642175239390,\"id\":1482016485725143041,\"source\":\"庄树鹏\",\"type\":5}}', 0, '', '2022-01-14 23:47:19'); INSERT INTO `sys_oper_log` VALUES (2156, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"以为那是最美丽,最美好,可以让人羡慕嫉妒的完美生活…,却忽略了如今的悲剧,生活是多么的可悲,老天你为什么要生下我」\",\"createTime\":1642175253902,\"id\":1482016546576105474,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 23:47:33'); INSERT INTO `sys_oper_log` VALUES (2157, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"桑丘,让他们管我叫疯子吧,我还疯得不够,所以得不到他们的赞许。\",\"createTime\":1642175260883,\"id\":1482016575873318913,\"source\":\"l863921044\",\"type\":5}}', 0, '', '2022-01-14 23:47:40'); INSERT INTO `sys_oper_log` VALUES (2158, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生活就是那么的复杂,让人那么的累。\",\"createTime\":1642175271634,\"id\":1482016620957892609,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 23:47:51'); INSERT INTO `sys_oper_log` VALUES (2159, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"对不起,风太大,我没有听清楚⋯⋯\",\"createTime\":1642175283166,\"id\":1482016669334994945,\"source\":\"水幻之音\",\"type\":5}}', 0, '', '2022-01-14 23:48:03'); INSERT INTO `sys_oper_log` VALUES (2160, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只要迩需要我,我一直都在迩能看得到我的地方。\",\"createTime\":1642175301407,\"id\":1482016745834905602,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-14 23:48:21'); INSERT INTO `sys_oper_log` VALUES (2161, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这个城市大得让人到处能一见钟情,却没法重逢。\",\"createTime\":1642175314191,\"id\":1482016799446499330,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-14 23:48:34'); INSERT INTO `sys_oper_log` VALUES (2162, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"别人稍一注意你,你就敞开心扉,你觉得这是坦率,其实这是孤独。\",\"createTime\":1642176036913,\"id\":1482019830732914689,\"source\":\"国王与乞丐\",\"type\":1}}', 0, '', '2022-01-15 00:00:36'); INSERT INTO `sys_oper_log` VALUES (2163, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有些事情本身我们无法控制,只好控制自己。\",\"createTime\":1642176041977,\"id\":1482019852014813185,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-15 00:00:41'); INSERT INTO `sys_oper_log` VALUES (2164, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一定要爱着点什么,恰似草木对光阴的钟情。\",\"createTime\":1642176046671,\"id\":1482019871707070466,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-15 00:00:46'); INSERT INTO `sys_oper_log` VALUES (2165, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果分手的恋人还能做朋友,要不从没爱过,要不还在爱着。\",\"createTime\":1642176099785,\"id\":1482020094437195777,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-15 00:01:39'); INSERT INTO `sys_oper_log` VALUES (2166, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的船上没有手下,只有伙伴。\",\"createTime\":1642176109260,\"id\":1482020134207586305,\"source\":\"明雪嫣\",\"type\":5}}', 0, '', '2022-01-15 00:01:49'); INSERT INTO `sys_oper_log` VALUES (2167, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我并不羡慕别人的人生,这就是所谓幸福。\",\"createTime\":1642176111752,\"id\":1482020144672374785,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-15 00:01:51'); INSERT INTO `sys_oper_log` VALUES (2168, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"感恩才能长久,珍惜才会拥有。\",\"createTime\":1642176227024,\"id\":1482020628153991170,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 00:03:47'); INSERT INTO `sys_oper_log` VALUES (2169, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"別太自以為是,你真的沒有你以為的那麼重要。\",\"createTime\":1642176360444,\"id\":1482021187732865025,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 00:06:00'); INSERT INTO `sys_oper_log` VALUES (2170, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们都是天地的过客,很多人事,我们都做不了主。譬如离去的时间,譬如走散的人。\",\"createTime\":1642176503906,\"id\":1482021789460299777,\"source\":\"忘昔(悉)€恋珊\",\"type\":5}}', 0, '', '2022-01-15 00:08:23'); INSERT INTO `sys_oper_log` VALUES (2171, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们的心就像那天空一样,永不分离。\",\"createTime\":1642176543267,\"id\":1482021954564882434,\"source\":\"佰千莫\",\"type\":5}}', 0, '', '2022-01-15 00:09:03'); INSERT INTO `sys_oper_log` VALUES (2172, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"天下没有不劳而获的事,选择不过是强者拿来欺骗弱者的谎言!\",\"createTime\":1642176570939,\"id\":1482022070629662722,\"source\":\"黑客任务 (The Matrix)\",\"type\":3}}', 0, '', '2022-01-15 00:09:30'); INSERT INTO `sys_oper_log` VALUES (2173, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"失而复得的东西,永远都是二手货。\",\"createTime\":1642176586078,\"id\":1482022134123036674,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 00:09:46'); INSERT INTO `sys_oper_log` VALUES (2174, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"那是,未满45秒的邂逅。\",\"createTime\":1642176750758,\"id\":1482022824828436481,\"source\":\"Mion\",\"type\":5}}', 0, '', '2022-01-15 00:12:30'); INSERT INTO `sys_oper_log` VALUES (2175, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"就算是沉落地面的太阳,只要夜晚过了一定会再度升起,不管有什么痛苦或难过的事,跟今天截然不同的明天也一定会到来。\",\"createTime\":1642176888455,\"id\":1482023402375708673,\"source\":\"三酱\",\"type\":5}}', 0, '', '2022-01-15 00:14:48'); INSERT INTO `sys_oper_log` VALUES (2176, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"任何关系走到最后不过是相识一场,爱而不得是一种遗憾,更是人生常态。\",\"createTime\":1642177013490,\"id\":1482023926797926402,\"source\":\"佚名\",\"type\":2}}', 0, '', '2022-01-15 00:16:53'); INSERT INTO `sys_oper_log` VALUES (2177, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我喜欢你们!超喜欢的!大家和我交往吧!绝对会让你们幸福的!\",\"createTime\":1642177023187,\"id\":1482023967503646722,\"source\":\"yeyifangg\",\"type\":5}}', 0, '', '2022-01-15 00:17:03'); INSERT INTO `sys_oper_log` VALUES (2178, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我遇见你很晚/可是我会陪伴你很久。\",\"createTime\":1642177654260,\"id\":1482026614428237825,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-15 00:27:34'); INSERT INTO `sys_oper_log` VALUES (2179, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"小强!小强你怎么了小强?小强你不能死啊!我跟你相依为命、同甘共苦了这么多年,一直把你当成亲生骨肉一样教你养你,想不到今天白发人送黑发人……\",\"createTime\":1642177698429,\"id\":1482026799631925250,\"source\":\"唐伯虎点秋香\",\"type\":3}}', 0, '', '2022-01-15 00:28:18'); INSERT INTO `sys_oper_log` VALUES (2180, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"无论发生什么,都请不要后悔与我的相遇⋯⋯\",\"createTime\":1642177702497,\"id\":1482026816698548226,\"source\":\"da-h\",\"type\":5}}', 0, '', '2022-01-15 00:28:22'); INSERT INTO `sys_oper_log` VALUES (2181, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"看了评论, 觉得自己确实装不赢你们[大哭]\",\"createTime\":1642177715430,\"id\":1482026870943481858,\"source\":\"The truth that you leave\",\"type\":2}}', 0, '', '2022-01-15 00:28:35'); INSERT INTO `sys_oper_log` VALUES (2182, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要去等待一个不爱你的人 你付出多少不一定得到多少\",\"createTime\":1642177745831,\"id\":1482026998504849409,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 00:29:05'); INSERT INTO `sys_oper_log` VALUES (2183, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从此在你心里, 再看不到我的影子.\",\"createTime\":1642177808681,\"id\":1482027262112661505,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-15 00:30:08'); INSERT INTO `sys_oper_log` VALUES (2184, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"当朋友是不需要什么资格的。\",\"createTime\":1642177978163,\"id\":1482027972942331906,\"source\":\"绤谷少年。\",\"type\":5}}', 0, '', '2022-01-15 00:32:58'); INSERT INTO `sys_oper_log` VALUES (2185, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"花开花落,再灿烂的星光也会消失。\",\"createTime\":1642178009558,\"id\":1482028104656060417,\"source\":\"水幻之音\",\"type\":5}}', 0, '', '2022-01-15 00:33:29'); INSERT INTO `sys_oper_log` VALUES (2186, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"为了成功地生活,少年人必须学习自立,铲除埋伏各处的障碍,在家庭要教养他,使他具有为人所认可的独立人格。\",\"createTime\":1642178064076,\"id\":1482028333308542977,\"source\":\"戴尔·卡耐基\",\"type\":4}}', 0, '', '2022-01-15 00:34:24'); INSERT INTO `sys_oper_log` VALUES (2187, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"争强与好胜之心在思想的碰撞中可以激活智慧而集思广益,但也是偏见向真理低头的死敌。\",\"createTime\":1642178070920,\"id\":1482028362005970946,\"source\":\"王润生\",\"type\":4}}', 0, '', '2022-01-15 00:34:30'); INSERT INTO `sys_oper_log` VALUES (2188, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"梦想和爱的人结婚,早晨醒来看着她不会是麻木而是从内心获得的喜悦。那种喜悦无关于责任、肉体、满足,而是自内而外的欢愉。\",\"createTime\":1642178075029,\"id\":1482028379227783169,\"source\":\"梦者\",\"type\":2}}', 0, '', '2022-01-15 00:34:35'); INSERT INTO `sys_oper_log` VALUES (2189, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"听这首歌就有一种,刚好错过的感觉\",\"createTime\":1642178121217,\"id\":1482028572979462146,\"source\":\"可能否\",\"type\":2}}', 0, '', '2022-01-15 00:35:21'); INSERT INTO `sys_oper_log` VALUES (2190, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"很多人都说:我不知道我自己想要什么。其实这句话的真正含义是:我没有勇气面对和足够的努力去争取我想要的。\",\"createTime\":1642178134802,\"id\":1482028629921333249,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 00:35:34'); INSERT INTO `sys_oper_log` VALUES (2191, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"血、沾染了玫瑰。 流年、 沾染了泪。\",\"createTime\":1642178180073,\"id\":1482028819826835457,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 00:36:20'); INSERT INTO `sys_oper_log` VALUES (2192, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"明天,不是你想要就能有的。\",\"createTime\":1642178220431,\"id\":1482028989062807553,\"source\":\"なつめ たかし\",\"type\":5}}', 0, '', '2022-01-15 00:37:00'); INSERT INTO `sys_oper_log` VALUES (2193, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好吃的东西放在肚子里,可爱的人放在心里,有趣的地方要和可爱的人一起去。\",\"createTime\":1642178260163,\"id\":1482029155769614337,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-15 00:37:40'); INSERT INTO `sys_oper_log` VALUES (2194, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你永远都不会知道 你在路上随便见到的路人甲 是别人做梦都想见到的人 \",\"createTime\":1642178294239,\"id\":1482029298686328834,\"source\":\"公子向北走\",\"type\":2}}', 0, '', '2022-01-15 00:38:14'); INSERT INTO `sys_oper_log` VALUES (2195, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":141,\"apiName\":\"天行-朋友圈\",\"dayCount\":9,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":10,\"updateTime\":1642178260000,\"id\":1477203303311577090,\"totalCount\":1291}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 00:39:05'); INSERT INTO `sys_oper_log` VALUES (2196, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"现在很清楚,我向你走去,你向我走来已经很久很久了。虽然在我们相会之前谁也不知道对方的存在。\",\"createTime\":1642178369301,\"id\":1482029613527564290,\"source\":\"廊桥遗梦\",\"type\":3}}', 0, '', '2022-01-15 00:39:29'); INSERT INTO `sys_oper_log` VALUES (2197, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"早晨是一只花鹿,踩到我额上,世界多么好。\",\"createTime\":1642178373235,\"id\":1482029630002790402,\"source\":\"海子\",\"type\":1}}', 0, '', '2022-01-15 00:39:33'); INSERT INTO `sys_oper_log` VALUES (2198, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你说身高是你的优势 丰满是你的标准 那为啥你说话就像呢孩子弱了智\",\"createTime\":1642178376140,\"id\":1482029642199826433,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 00:39:36'); INSERT INTO `sys_oper_log` VALUES (2199, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如今我还在原地,你却走回你的记忆,\",\"createTime\":1642178455956,\"id\":1482029976984977409,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 00:40:55'); INSERT INTO `sys_oper_log` VALUES (2200, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一粥一饭,当思来处不易;半丝半缕,恒念物力维艰。大意:即使是一顿粥、一顿饭,也应当想到它来得不容易;即使是半根丝、半根线,也要想到劳作的艰辛。\",\"createTime\":1642178466031,\"id\":1482030019246784514,\"source\":\"警言\",\"type\":4}}', 0, '', '2022-01-15 00:41:06'); INSERT INTO `sys_oper_log` VALUES (2201, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"How to be happy: stop comparing yourself to others. 幸福很简单,不要跟别人比较就好了。\",\"createTime\":1642178485022,\"id\":1482030098896617473,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 00:41:25'); INSERT INTO `sys_oper_log` VALUES (2202, 'api预警', 5, 'com.xjs.controller.ApiWarningController.export()', 'POST', 1, '', '', '/apiwarning/apiwarnexport', '127.0.0.1', '', '{}', '', 0, '', '2022-01-15 00:44:26'); INSERT INTO `sys_oper_log` VALUES (2203, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"就算是沉落地面的太阳,只要夜晚过了一定会再度升起,不管有什么痛苦或难过的事,跟今天截然不同的明天也一定会到来。\",\"createTime\":1642178728163,\"id\":1482031118691303425,\"source\":\"三酱\",\"type\":5}}', 0, '', '2022-01-15 00:45:28'); INSERT INTO `sys_oper_log` VALUES (2204, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一般来说,时间会把悲伤冲淡,可是在人的生命中,会有那么一两个特殊的存在,他们的逝去,你永远也不会习惯。\",\"createTime\":1642178934526,\"id\":1482031984240459777,\"source\":\"立花纹\",\"type\":5}}', 0, '', '2022-01-15 00:48:54'); INSERT INTO `sys_oper_log` VALUES (2205, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":3235}', 0, '', '2022-01-15 00:50:15'); INSERT INTO `sys_oper_log` VALUES (2206, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Not ignorance, but the ignorance of ignorance, is the death of knowledge.\",\"createTime\":1642211410420,\"dataId\":3539,\"date\":1570464000000,\"id\":1482168198029303809,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-08.jpg\",\"note\":\"不是无知本身,而是对无知的无知,才是知识的死亡。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-08-day.mp3\"}}', 0, '', '2022-01-15 09:50:10'); INSERT INTO `sys_oper_log` VALUES (2207, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"分手一个月了…还是很爱…却明确的知道不可以再在一起了\",\"createTime\":1642211440704,\"id\":1482168325020246018,\"source\":\"有一种悲伤\",\"type\":2}}', 0, '', '2022-01-15 09:50:40'); INSERT INTO `sys_oper_log` VALUES (2208, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[2000,2024,2015,2025,2026,2031,2027,2028,2029,2030,2032,2045,2044,2054,2001,2009,2010,2013,2014,2016,2017,2019,2046,2021,2023,2033,2034,2035,2036,2049,2050,2051,2052,2053,2037,2038,2039,2041,2043,2047,2048,1,100,1001,1002,1003,1004,1005,1006,1007,101,1008,1009,1010,1011,1012,102,1013,1014,1015,1016,103,1017,1018,1019,1020,104,1021,1022,1023,1024,1025,105,1026,1027,1028,1029,1030,106,1031,1032,1033,1034,1035,107,1036,1037,1038,1039,108,500,1040,1041,1042,501,1043,1044,1045,2,109,1046,1047,1048,110,1049,1050,1051,1052,1053,1054,111,112,113,3,114,115,1055,1056,1058,1057,1059,1060,116],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 10:00:26'); INSERT INTO `sys_oper_log` VALUES (2209, '用户管理', 3, 'com.ruoyi.system.controller.SysUserController.remove()', 'DELETE', 1, 'admin', NULL, '/user/101', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 10:00:49'); INSERT INTO `sys_oper_log` VALUES (2210, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The world is a book, and those who do not travel read only a page.\",\"createTime\":1642212059026,\"dataId\":3978,\"date\":1608048000000,\"id\":1482170918438100994,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/fb0b1523fca21518c641d036599ec048.png\",\"note\":\"世界是一本书,不旅行的人只读了其中的一页。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/1639ff177f4be0e931048ff1a38ae236.mp3\"}}', 0, '', '2022-01-15 10:00:59'); INSERT INTO `sys_oper_log` VALUES (2211, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"和平就是手握比别人更粗的棒子!!\",\"createTime\":1642212061304,\"id\":1482170928001114114,\"source\":\"钢铁人(Iron man)\",\"type\":3}}', 0, '', '2022-01-15 10:01:01'); INSERT INTO `sys_oper_log` VALUES (2212, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"2\",\"menuName\":\"文案重复删除\",\"params\":{},\"parentId\":2017,\"isCache\":\"0\",\"path\":\"\",\"children\":[],\"createTime\":1641460020000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2046,\"menuType\":\"F\",\"perms\":\"openapi:copywriting:remove\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 10:12:14'); INSERT INTO `sys_oper_log` VALUES (2213, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2021', '127.0.0.1', '', NULL, '{\"msg\":\"菜单已分配,不允许删除\",\"code\":500}', 0, NULL, '2022-01-15 10:12:18'); INSERT INTO `sys_oper_log` VALUES (2214, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":306}', 0, '', '2022-01-15 10:12:39'); INSERT INTO `sys_oper_log` VALUES (2215, '角色管理', 2, 'com.ruoyi.system.controller.SysRoleController.edit()', 'PUT', 1, 'admin', NULL, '/role', '127.0.0.1', '', '{\"flag\":false,\"roleId\":2,\"admin\":false,\"remark\":\"普通角色\",\"dataScope\":\"2\",\"delFlag\":\"0\",\"params\":{},\"roleSort\":\"2\",\"deptCheckStrictly\":true,\"createTime\":1640336744000,\"updateBy\":\"admin\",\"menuCheckStrictly\":true,\"roleKey\":\"common\",\"roleName\":\"普通角色\",\"menuIds\":[],\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 10:12:51'); INSERT INTO `sys_oper_log` VALUES (2216, '菜单管理', 3, 'com.ruoyi.system.controller.SysMenuController.remove()', 'DELETE', 1, 'admin', NULL, '/menu/2021', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 10:12:59'); INSERT INTO `sys_oper_log` VALUES (2217, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"chart\",\"orderNum\":\"1\",\"menuName\":\"热搜榜\",\"params\":{},\"parentId\":2016,\"isCache\":\"0\",\"path\":\"topsearch\",\"component\":\"business/openapi/topsearch/index\",\"children\":[],\"createTime\":1641971863000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2053,\"menuType\":\"C\",\"perms\":\"openapi:topsearch:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 10:16:09'); INSERT INTO `sys_oper_log` VALUES (2218, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"textarea\",\"orderNum\":\"1\",\"menuName\":\"API预警信息\",\"params\":{},\"parentId\":2037,\"isCache\":\"0\",\"path\":\"apiwarninginfo\",\"component\":\"business/warning/apiwarninginfo/index\",\"children\":[],\"createTime\":1641046088000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2038,\"menuType\":\"C\",\"perms\":\"warning:apiwarning:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 10:24:09'); INSERT INTO `sys_oper_log` VALUES (2219, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"2\",\"menuName\":\"api预警处理\",\"params\":{},\"parentId\":2047,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"warning:warning:handle\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 10:28:14'); INSERT INTO `sys_oper_log` VALUES (2220, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不忘初心,方得始终。\",\"createTime\":1642213904852,\"id\":1482178660427091969,\"source\":\"Nitro\",\"type\":5}}', 0, '', '2022-01-15 10:31:45'); INSERT INTO `sys_oper_log` VALUES (2221, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"既不回头,何必不忘;既然无缘,何须誓言;今日种种,似水无痕;明夕何夕,君已陌路。\",\"createTime\":1642214002851,\"id\":1482179071464689665,\"source\":\"赵吟风\",\"type\":5}}', 0, '', '2022-01-15 10:33:22'); INSERT INTO `sys_oper_log` VALUES (2222, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我是最强的!\",\"createTime\":1642214008069,\"id\":1482179093317013506,\"source\":\"枫の物语\",\"type\":5}}', 0, '', '2022-01-15 10:33:28'); INSERT INTO `sys_oper_log` VALUES (2223, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"鲁马克:我是认真的……别叫我雪莉。\",\"createTime\":1642214012512,\"id\":1482179111948111873,\"source\":\"Airplane!\",\"type\":3}}', 0, '', '2022-01-15 10:33:32'); INSERT INTO `sys_oper_log` VALUES (2224, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从来我们都是人间匆匆过客,凡来尘往,你去我留,不过如此。\",\"createTime\":1642214017947,\"id\":1482179134735765505,\"source\":\"三毛\",\"type\":1}}', 0, '', '2022-01-15 10:33:37'); INSERT INTO `sys_oper_log` VALUES (2225, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"现实告诉我们说:有什么别有事;没什么别没钱;动什么别动情。\",\"createTime\":1642214032161,\"id\":1482179194387156994,\"source\":\"柠乐\",\"type\":5}}', 0, '', '2022-01-15 10:33:52'); INSERT INTO `sys_oper_log` VALUES (2226, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生最糟糕的事,一个是饿肚子,一个是孤独。\",\"createTime\":1642214035845,\"id\":1482179209834778626,\"source\":\"空城”旧梦\",\"type\":5}}', 0, '', '2022-01-15 10:33:55'); INSERT INTO `sys_oper_log` VALUES (2227, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这歌让我有种嫦娥在蹦迪的错觉\",\"createTime\":1642214041513,\"id\":1482179233616482305,\"source\":\"广寒宫\",\"type\":2}}', 0, '', '2022-01-15 10:34:01'); INSERT INTO `sys_oper_log` VALUES (2228, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与众不同的生活方式很累人呢,因为找不到借口。\",\"createTime\":1642214057209,\"id\":1482179299458666497,\"source\":\"跳舞的果果\",\"type\":5}}', 0, '', '2022-01-15 10:34:17'); INSERT INTO `sys_oper_log` VALUES (2229, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人间的遗憾,多是“留不住”三字。最深的肺腑之言,不过是对种种风景、种种人的一句 人间且慢行\",\"createTime\":1642214095689,\"id\":1482179460851290113,\"source\":\"下山\",\"type\":2}}', 0, '', '2022-01-15 10:34:55'); INSERT INTO `sys_oper_log` VALUES (2230, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我不骂人,因为我动手能力比较强。\",\"createTime\":1642214097984,\"id\":1482179470468829186,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 10:34:58'); INSERT INTO `sys_oper_log` VALUES (2231, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们会遇到很多坎坷,接着是迷茫,或者恐惧感。当然这也是部分的。这种恐惧会造成心灵的滞塞。首先你要建立自信。\",\"createTime\":1642214107679,\"id\":1482179511099052034,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 10:35:07'); INSERT INTO `sys_oper_log` VALUES (2232, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"自己永远是孤单的,但你可以让其他人变得不孤单。\",\"createTime\":1642214142510,\"id\":1482179657216020482,\"source\":\"Rokileng\",\"type\":5}}', 0, '', '2022-01-15 10:35:42'); INSERT INTO `sys_oper_log` VALUES (2233, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"想你,念你。不过是从现实中抽离我自己。\",\"createTime\":1642214148736,\"id\":1482179683325562882,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 10:35:48'); INSERT INTO `sys_oper_log` VALUES (2234, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"过错是一次的遗憾,错过是一辈子的遗憾!\",\"createTime\":1642214191638,\"id\":1482179863257010177,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 10:36:31'); INSERT INTO `sys_oper_log` VALUES (2235, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世界潮流,浩浩荡荡,顺之则昌,逆之则亡。\",\"createTime\":1642214254783,\"id\":1482180128102141954,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 10:37:34'); INSERT INTO `sys_oper_log` VALUES (2236, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In the meantime The one man Maybe I can never meet ,I would like to give my whole heart to。如今,也许我永远见不到的这个人,却让我想全心全意去爱他。\",\"createTime\":1642214257135,\"id\":1482180137971339265,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-15 10:37:37'); INSERT INTO `sys_oper_log` VALUES (2237, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"弱小和无知不是生存的障碍,傲慢才是。\",\"createTime\":1642214263506,\"id\":1482180164710027265,\"source\":\"kaomao\",\"type\":5}}', 0, '', '2022-01-15 10:37:43'); INSERT INTO `sys_oper_log` VALUES (2238, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"交之道,犹素之白也;染以朱,则赤,染以蓝,则青。\",\"createTime\":1642214275542,\"id\":1482180215217836034,\"source\":\"谯周\",\"type\":4}}', 0, '', '2022-01-15 10:37:55'); INSERT INTO `sys_oper_log` VALUES (2239, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"放弃也是需要勇气的。\",\"createTime\":1642214407547,\"id\":1482180768886935553,\"source\":\"世风\",\"type\":5}}', 0, '', '2022-01-15 10:40:07'); INSERT INTO `sys_oper_log` VALUES (2240, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世界这么大,人生这么长,总会有那么一个人,让你想要温柔的对待。\",\"createTime\":1642214470591,\"id\":1482181033308442626,\"source\":\"anythink\",\"type\":5}}', 0, '', '2022-01-15 10:41:10'); INSERT INTO `sys_oper_log` VALUES (2241, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要相信同伴,拯救同伴。\",\"createTime\":1642214475034,\"id\":1482181051952123906,\"source\":\"星野望\",\"type\":5}}', 0, '', '2022-01-15 10:41:15'); INSERT INTO `sys_oper_log` VALUES (2242, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只要你在,我便无所不能。\",\"createTime\":1642214534266,\"id\":1482181300380749826,\"source\":\"570964968\",\"type\":5}}', 0, '', '2022-01-15 10:42:14'); INSERT INTO `sys_oper_log` VALUES (2243, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"烦恼是我们忠诚的朋友,一生相随。不拒绝烦恼,不纠缠烦恼,不挽留烦恼,人生不过就是闭眼,睁眼。\",\"createTime\":1642214572165,\"id\":1482181459290345474,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 10:42:52'); INSERT INTO `sys_oper_log` VALUES (2244, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"就算是不能下辈子,至少这辈子我愿意。\",\"createTime\":1642214731477,\"id\":1482182127518470145,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 10:45:31'); INSERT INTO `sys_oper_log` VALUES (2245, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"哭泣并不能改变任何事情。\",\"createTime\":1642215099591,\"id\":1482183671483715585,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-15 10:51:39'); INSERT INTO `sys_oper_log` VALUES (2246, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有时候,没有下一次,没有机会重来,没有暂停继续。有时候,错过了现在,就永远永远的没机会了。\",\"createTime\":1642215106983,\"id\":1482183702534148098,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 10:51:47'); INSERT INTO `sys_oper_log` VALUES (2247, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在你穷的时候,要少在家里,多在外面。在你富有的时候,要多在家里,少在外面。这就是生活的艺术\",\"createTime\":1642215116462,\"id\":1482183742296150018,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-15 10:51:56'); INSERT INTO `sys_oper_log` VALUES (2248, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生尽欢,死无憾。\",\"createTime\":1642215172113,\"id\":1482183975667224578,\"source\":\"_SCarLet\",\"type\":5}}', 0, '', '2022-01-15 10:52:52'); INSERT INTO `sys_oper_log` VALUES (2249, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642215177107,\"en\":\"He that would have eggs must endure the cackling of hens.\",\"id\":1482183996651327489,\"zh\":\"想吃鸡蛋就不要讨厌母鸡咯咯叫.\"}}', 0, '', '2022-01-15 10:52:57'); INSERT INTO `sys_oper_log` VALUES (2250, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"He that would have eggs must endure the cackling of hens.\",\"zh\":\"想吃鸡蛋就不要讨厌母鸡咯咯叫.\"}}', 0, '', '2022-01-15 10:54:32'); INSERT INTO `sys_oper_log` VALUES (2251, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642215373259,\"en\":\"Remember that you took a wrong way to a place, and you can have a smooth trip home.\",\"id\":1482184819322040322,\"zh\":\"记着去时走错的路,回来时就顺利了。\"}}', 0, '', '2022-01-15 10:56:13'); INSERT INTO `sys_oper_log` VALUES (2252, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482184822920753153', '127.0.0.1', '', '1482184822920753153', '{\"code\":200}', 0, '', '2022-01-15 10:56:29'); INSERT INTO `sys_oper_log` VALUES (2253, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Remember that you took a wrong way to a place, and you can have a smooth trip home.\",\"zh\":\"记着去时走错的路,回来时就顺利了。\"}}', 0, '', '2022-01-15 10:56:33'); INSERT INTO `sys_oper_log` VALUES (2254, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Remember that you took a wrong way to a place, and you can have a smooth trip home.\",\"zh\":\"记着去时走错的路,回来时就顺利了。\"}}', 0, '', '2022-01-15 10:56:36'); INSERT INTO `sys_oper_log` VALUES (2255, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482184914037813249', '127.0.0.1', '', '1482184914037813249', '{\"code\":200}', 0, '', '2022-01-15 10:56:40'); INSERT INTO `sys_oper_log` VALUES (2256, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Remember that you took a wrong way to a place, and you can have a smooth trip home.\",\"zh\":\"记着去时走错的路,回来时就顺利了。\"}}', 0, '', '2022-01-15 10:56:42'); INSERT INTO `sys_oper_log` VALUES (2257, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482184943616045057', '127.0.0.1', '', '1482184943616045057', '{\"code\":200}', 0, '', '2022-01-15 10:56:51'); INSERT INTO `sys_oper_log` VALUES (2258, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I think the majority of the people think he is the hero of China. So even me, I am so proud of him.\",\"createTime\":1642215445992,\"dataId\":3705,\"date\":1584460800000,\"id\":1482185124415713281,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/696393c8997264054a1792db81551146.png\",\"note\":\"我认为大多数人认为他是中国的英雄。我也觉得他是,我为他骄傲。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/42ff6886504994331885c7a85b8e856c.mp3\"}}', 0, '', '2022-01-15 10:57:26'); INSERT INTO `sys_oper_log` VALUES (2259, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Have you ever seen the scene of Los Angeles at 4am?\",\"createTime\":1642215459803,\"dataId\":3660,\"date\":1580140800000,\"id\":1482185182347440130,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/3ec342f4d930a5724e3a1439d4b78fba.jpg\",\"note\":\"你见过凌晨四点的洛杉矶吗?\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/1a0ec4ea2c0dca59ad5ea4abe2a8c5ca.mp3\"}}', 0, '', '2022-01-15 10:57:39'); INSERT INTO `sys_oper_log` VALUES (2260, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Love is like the moon. When it does not increase, it decreases.\",\"createTime\":1642215482344,\"dataId\":4277,\"date\":1633881600000,\"id\":1482185276882857986,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/46a70212da8c430b058187056478cdac.png\",\"note\":\"爱情就像月亮,不增则减。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2cf61d7c5d18146ac6abf75d7cd951d8.mp3\"}}', 0, '', '2022-01-15 10:58:02'); INSERT INTO `sys_oper_log` VALUES (2261, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482185292615692290', '127.0.0.1', '', '1482185292615692290', '', 1, 'warning:warning:handle', '2022-01-15 10:59:26'); INSERT INTO `sys_oper_log` VALUES (2262, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482185292615692290', '127.0.0.1', '', '1482185292615692290', '', 1, 'warning:warning:handle', '2022-01-15 10:59:37'); INSERT INTO `sys_oper_log` VALUES (2263, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Have you ever seen the scene of Los Angeles at 4am?\",\"dataId\":3660,\"date\":1580140800000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/3ec342f4d930a5724e3a1439d4b78fba.jpg\",\"note\":\"你见过凌晨四点的洛杉矶吗?\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/1a0ec4ea2c0dca59ad5ea4abe2a8c5ca.mp3\"}}', 0, '', '2022-01-15 11:00:12'); INSERT INTO `sys_oper_log` VALUES (2264, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482185829922811906', '127.0.0.1', '', '1482185829922811906', '', 1, 'warning:warning:handle', '2022-01-15 11:00:57'); INSERT INTO `sys_oper_log` VALUES (2265, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482186333310595073', '127.0.0.1', '', '1482186333310595073', '', 1, 'warning:warning:handle', '2022-01-15 11:02:19'); INSERT INTO `sys_oper_log` VALUES (2266, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Give a man a fish, and you feed him for a day. Teach a man to fish, and you get rid of him on the weekends.\",\"createTime\":1642215762930,\"dataId\":3559,\"date\":1572192000000,\"id\":1482186453754228738,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-28.jpg\",\"note\":\"给他一条鱼,你可以喂他一天;教他钓鱼,他周末就不会再来缠你了。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-28-day.mp3\"}}', 0, '', '2022-01-15 11:02:42'); INSERT INTO `sys_oper_log` VALUES (2267, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Gentle attitude for a heart to be contempt indeed is a great comfort.\",\"createTime\":1642215768365,\"dataId\":4115,\"date\":1619884800000,\"id\":1482186476537688065,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/c4651a1721714eb320a3e243bab1b399.png\",\"note\":\"柔和的态度对于一颗被轻蔑的心是很大的安慰。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c61846e296355289994df62cd7af0ac8.mp3\"}}', 0, '', '2022-01-15 11:02:48'); INSERT INTO `sys_oper_log` VALUES (2268, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I would rather sit on a pumpkin and have it all to myself, than be crowded on a velvet cushion.\",\"createTime\":1642215776148,\"dataId\":3396,\"date\":1558281600000,\"id\":1482186509156790274,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-05-20.jpg\",\"note\":\"我宁愿住在乡村小镇上自得其乐,而不愿和人一起挤在天鹅绒的坐垫上。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-05-20-day.mp3\"}}', 0, '', '2022-01-15 11:02:56'); INSERT INTO `sys_oper_log` VALUES (2269, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"As a kid growing up, I never skipped steps. I always worked on fundamentals because I know athleticism is fleeting.\",\"dataId\":3661,\"date\":1580227200000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/d8a8bba6ef4c30fe1cbd069608d409f1.png\",\"note\":\"成长过程中,我从来没有跳过任何一个步骤,致力于打好基础,因为我知道,运动员生涯短暂。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b3128e516893dbf97e90d683360eb5d9.mp3\"}}', 0, '', '2022-01-15 11:03:53'); INSERT INTO `sys_oper_log` VALUES (2270, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Growing old is not upsetting; being perceived as old is.\",\"createTime\":1642215835034,\"dataId\":3556,\"date\":1571932800000,\"id\":1482186756201295873,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-25.jpg\",\"note\":\"越来越老并不可怕,可怕的是让人觉得越来越老。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-25-day.mp3\"}}', 0, '', '2022-01-15 11:03:55'); INSERT INTO `sys_oper_log` VALUES (2271, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Learning is an ornament in prosperity, a refuge in adversity, and a provision in old age.\",\"createTime\":1642215836537,\"dataId\":3416,\"date\":1560009600000,\"id\":1482186762501140481,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-09.jpg\",\"note\":\"学问在成功时是装饰品,在失意时是庇护所,在年老时是供应品。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-09-day.mp3\"}}', 0, '', '2022-01-15 11:03:56'); INSERT INTO `sys_oper_log` VALUES (2272, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The more you like yourself, the less you are like anyone else, which makes you unique. \",\"createTime\":1642215842410,\"dataId\":3674,\"date\":1582214400000,\"id\":1482186787138482178,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/989161761a0eb45a1fe106acd46bbed5.png\",\"note\":\"你越喜欢你自己,你就越不像其他人,而这会使你变得独特。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/c217dc31ed32ffb5757b11a485d554ab.mp3\"}}', 0, '', '2022-01-15 11:04:02'); INSERT INTO `sys_oper_log` VALUES (2273, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The soul selects her own society, then shuts the door, to her divine majority, present no more.\",\"createTime\":1642215849617,\"dataId\":3795,\"date\":1592236800000,\"id\":1482186817366831105,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/88e11aef0e9287cf69bdea3eaf8e0f80.png\",\"note\":\"灵魂选择自己的伴侣,然后,把门紧闭,她神圣的决定,再不容干预。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f87fe256997301d115898eb649a34063.mp3\"}}', 0, '', '2022-01-15 11:04:09'); INSERT INTO `sys_oper_log` VALUES (2274, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All l\'ve ever done in my life was making my way here to you.\",\"dataId\":4366,\"date\":1641571200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/cac7298edd0240eb7faa0ea21f5620c4.png\",\"note\":\"我今生的所做的一切都是为了找到你。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/945e6c327ba645189fdf9a6ff94757c3.mp3\"}}', 0, '', '2022-01-15 11:04:14'); INSERT INTO `sys_oper_log` VALUES (2275, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Be at war with your vices, at peace with your neighbours, and let every new year find you a better man.\",\"createTime\":1642216036845,\"dataId\":3650,\"date\":1579881600000,\"id\":1482187602657980417,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/493c6d1b7c5a23f4d29522d9d3ac97b9.png\",\"note\":\"与恶习作战,与邻里友好相处,在新的一年变得更加优秀。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/216f1b091ccecd19becec8fcfd10b375.mp3\"}}', 0, '', '2022-01-15 11:07:16'); INSERT INTO `sys_oper_log` VALUES (2276, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A flower cannot blossom without sunshine, and man cannot live without love. \",\"dataId\":3977,\"date\":1607961600000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/bb90abf508feaac6754b4c25449fa6d9.png\",\"note\":\"花没有阳光就不能盛开,人没有爱就不能生存。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/1d842ffa61a9ceea68a63dbf49bde4fe.mp3\"}}', 0, '', '2022-01-15 11:07:20'); INSERT INTO `sys_oper_log` VALUES (2277, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sometimes the world seems against you. The journey may leave a scar. But scars can heal and reveal just where you are.\",\"createTime\":1642216043665,\"dataId\":3643,\"date\":1579276800000,\"id\":1482187631254745089,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/6cf137539dcc64f3b8226550658f8912.png\",\"note\":\"有时似乎整个世界都与你为敌,人生旅途可能会让你伤痕累累。但伤口终会痊愈,也会提醒你,你身在何方。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/c768d82bd4e456e704ca0d3d9b18c4ca.mp3\"}}', 0, '', '2022-01-15 11:07:23'); INSERT INTO `sys_oper_log` VALUES (2278, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'test', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The frog in the well knows nothing of the great ocean.\",\"createTime\":1642216045856,\"dataId\":4283,\"date\":1634486400000,\"id\":1482187640402522113,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/9846fda15255c3a5f096d5aa4cc10623.png\",\"note\":\"井底之蛙,不知大海。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e91c73e78626fd3ecdaae1c2d2de7ca1.mp3\"}}', 0, '', '2022-01-15 11:07:25'); INSERT INTO `sys_oper_log` VALUES (2279, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You know some birds are not meant to be caged, their feathers are just too bright.\",\"createTime\":1642216052832,\"dataId\":3671,\"date\":1581264000000,\"id\":1482187669674569730,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/de40cbaa5b53cf2b43c690d5128f7391.png\",\"note\":\"你知道,有些鸟儿是注定不会被关在牢笼里的,它们的每一片羽毛都闪耀着自由的光辉。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/25e371907717aff2534ae2292ee0edb1.mp3\"}}', 0, '', '2022-01-15 11:07:32'); INSERT INTO `sys_oper_log` VALUES (2280, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482187669607460865', '127.0.0.1', '', '1482187669607460865', '{\"code\":200}', 0, '', '2022-01-15 11:07:36'); INSERT INTO `sys_oper_log` VALUES (2281, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482187843322949634', '127.0.0.1', '', '1482187843322949634', '{\"code\":200}', 0, '', '2022-01-15 11:08:47'); INSERT INTO `sys_oper_log` VALUES (2282, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482188849834274817', '127.0.0.1', '', '1482188849834274817', '{\"code\":200}', 0, '', '2022-01-15 11:12:38'); INSERT INTO `sys_oper_log` VALUES (2283, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":283}', 0, '', '2022-01-15 11:13:09'); INSERT INTO `sys_oper_log` VALUES (2284, 'api预警', 5, 'com.xjs.controller.ApiWarningController.export()', 'POST', 1, '', '', '/apiwarning/apiwarnexport', '127.0.0.1', '', '{}', '', 0, '', '2022-01-15 11:14:03'); INSERT INTO `sys_oper_log` VALUES (2285, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There are betrayals in war that are childlike compared with our human betrayals during peace.\",\"createTime\":1642216508920,\"dataId\":3452,\"date\":1562947200000,\"id\":1482189582633709570,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-13.jpg\",\"note\":\"战火硝烟中的背叛与我们在太平盛世中的背叛相较而言,就天真单纯得多了!\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-13-day.mp3\"}}', 0, '', '2022-01-15 11:15:08'); INSERT INTO `sys_oper_log` VALUES (2286, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, '', '', '/apiwarning/handle/1482189856513372162', '127.0.0.1', '', '1482189856513372162', '{\"code\":200}', 0, '', '2022-01-15 11:17:16'); INSERT INTO `sys_oper_log` VALUES (2287, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":109,\"apiName\":\"天行-朋友圈\",\"dayCount\":19,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":100,\"updateTime\":1642216566000,\"id\":1477203303311577090,\"totalCount\":1301}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:17:29'); INSERT INTO `sys_oper_log` VALUES (2288, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":109,\"apiName\":\"天行-朋友圈\",\"dayCount\":19,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":80,\"updateTime\":1642216566000,\"id\":1477203303311577090,\"totalCount\":1301}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:17:37'); INSERT INTO `sys_oper_log` VALUES (2289, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":318,\"apiName\":\"天行-名人名言\",\"dayCount\":22,\"apiUrl\":\"http://api.tianapi.com/mingyan/index\",\"createTime\":1641027717000,\"limitCount\":80,\"updateTime\":1642215964000,\"id\":1477203429832757249,\"totalCount\":1299}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:17:41'); INSERT INTO `sys_oper_log` VALUES (2290, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":69,\"apiName\":\"天行-网易云\",\"dayCount\":26,\"apiUrl\":\"http://api.tianapi.com/hotreview/index\",\"createTime\":1641027736000,\"limitCount\":80,\"updateTime\":1642215846000,\"id\":1477203506580131842,\"totalCount\":1252}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:17:43'); INSERT INTO `sys_oper_log` VALUES (2291, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":140,\"apiName\":\"天行-经典台词\",\"dayCount\":23,\"apiUrl\":\"http://api.tianapi.com/dialogue/index\",\"createTime\":1641027757000,\"limitCount\":80,\"updateTime\":1642216444000,\"id\":1477203594752790530,\"totalCount\":1314}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:17:47'); INSERT INTO `sys_oper_log` VALUES (2292, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":440,\"apiName\":\"百度翻译\",\"dayCount\":5,\"apiUrl\":\"http://api.fanyi.baidu.com/api/trans/vip/translate\",\"createTime\":1641028056000,\"limitCount\":100,\"updateTime\":1641827156000,\"id\":1477204849147482113,\"totalCount\":27}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:17:52'); INSERT INTO `sys_oper_log` VALUES (2293, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":1137,\"apiName\":\"有道翻译\",\"dayCount\":1,\"apiUrl\":\"http://fanyi.youdao.com/translate\",\"createTime\":1641028064000,\"limitCount\":200,\"updateTime\":1642132629000,\"id\":1477204885239468033,\"totalCount\":27}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:00'); INSERT INTO `sys_oper_log` VALUES (2294, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":124,\"apiName\":\"天行-翻译字典\",\"dayCount\":5,\"apiUrl\":\"http://api.tianapi.com/enwords/index\",\"createTime\":1641032271000,\"limitCount\":100,\"updateTime\":1642215403000,\"id\":1477222527450963970,\"totalCount\":23}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:04'); INSERT INTO `sys_oper_log` VALUES (2295, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":471,\"apiName\":\"天行-英语一言\",\"dayCount\":3,\"apiUrl\":\"http://api.tianapi.com/ensentence/index\",\"createTime\":1641032271000,\"limitCount\":100,\"updateTime\":1642215373000,\"id\":1477222528369516546,\"totalCount\":33}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:07'); INSERT INTO `sys_oper_log` VALUES (2296, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":391,\"apiName\":\"ROLL翻译\",\"dayCount\":4,\"apiUrl\":\" https://www.mxnzp.com/api/convert/translate\",\"createTime\":1641570798000,\"limitCount\":200,\"updateTime\":1642046184000,\"id\":1479481274474938369,\"totalCount\":28}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:12'); INSERT INTO `sys_oper_log` VALUES (2297, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":166,\"apiName\":\"ROLL-每日一句\",\"dayCount\":154,\"apiUrl\":\"https://www.mxnzp.com/api/daily_word/recommend\",\"createTime\":1641628444000,\"limitCount\":100,\"updateTime\":1642216694000,\"id\":1479723060912918529,\"totalCount\":4218}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:17'); INSERT INTO `sys_oper_log` VALUES (2298, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":121,\"apiName\":\"天行-每日一句\",\"dayCount\":21,\"apiUrl\":\"http://api.tianapi.com/everyday/index\",\"createTime\":1641648801000,\"limitCount\":80,\"updateTime\":1642216509000,\"id\":1479808444745322497,\"totalCount\":152}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:23'); INSERT INTO `sys_oper_log` VALUES (2299, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":471,\"apiName\":\"天行-英语一言\",\"dayCount\":3,\"apiUrl\":\"http://api.tianapi.com/ensentence/index\",\"createTime\":1641032271000,\"limitCount\":80,\"updateTime\":1642215373000,\"id\":1477222528369516546,\"totalCount\":33}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:27'); INSERT INTO `sys_oper_log` VALUES (2300, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":124,\"apiName\":\"天行-翻译字典\",\"dayCount\":5,\"apiUrl\":\"http://api.tianapi.com/enwords/index\",\"createTime\":1641032271000,\"limitCount\":80,\"updateTime\":1642215403000,\"id\":1477222527450963970,\"totalCount\":23}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:30'); INSERT INTO `sys_oper_log` VALUES (2301, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":107,\"apiName\":\"天行-全网热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/networkhot/index\",\"createTime\":1641828948000,\"limitCount\":80,\"updateTime\":1642179008000,\"id\":1480564034572640257,\"totalCount\":48}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:34'); INSERT INTO `sys_oper_log` VALUES (2302, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":126,\"apiName\":\"天行-微信热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/wxhottopic/index\",\"createTime\":1641865484000,\"limitCount\":80,\"updateTime\":1642179008000,\"id\":1480717276431994882,\"totalCount\":41}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:38'); INSERT INTO `sys_oper_log` VALUES (2303, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":53,\"apiName\":\"天行-百度热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/nethot/index\",\"createTime\":1641869096000,\"limitCount\":80,\"updateTime\":1642179008000,\"id\":1480732428317446145,\"totalCount\":34}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:41'); INSERT INTO `sys_oper_log` VALUES (2304, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":58,\"apiName\":\"天行-微博热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/weibohot/index\",\"createTime\":1641968357000,\"limitCount\":80,\"updateTime\":1642179008000,\"id\":1481148757860147202,\"totalCount\":36}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:44'); INSERT INTO `sys_oper_log` VALUES (2305, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, '', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":48,\"apiName\":\"天行-抖音热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/douyinhot/index\",\"createTime\":1641969644000,\"limitCount\":80,\"updateTime\":1642179008000,\"id\":1481154154675298305,\"totalCount\":31}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:18:47'); INSERT INTO `sys_oper_log` VALUES (2306, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":133,\"apiName\":\"天行-朋友圈\",\"dayCount\":20,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":80,\"updateTime\":1642216924000,\"id\":1477203303311577090,\"totalCount\":1302}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-15 11:25:58'); INSERT INTO `sys_oper_log` VALUES (2307, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"At this moment, I miss you more than usual.\",\"createTime\":1642217173081,\"dataId\":4289,\"date\":1634918400000,\"id\":1482192368335237121,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/51137c1997b116d87e5fb03f97520155.png\",\"note\":\"在这一刻,我比平时更想你。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/74737bb1b424cb23e845c23e15cc19a4.mp3\"}}', 0, '', '2022-01-15 11:26:13'); INSERT INTO `sys_oper_log` VALUES (2308, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"2\",\"menuName\":\"api预警清空\",\"params\":{},\"parentId\":2047,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"warning:warning:remove\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 11:38:58'); INSERT INTO `sys_oper_log` VALUES (2309, 'api预警', 3, 'com.xjs.controller.ApiWarningController.clearAll()', 'DELETE', 1, 'admin', '', '/apiwarning/all', '127.0.0.1', '', '', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'* from api_warning\' at line 1\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-warning\\target\\classes\\mapper\\apiwarning\\ApiWarningMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: delete * from api_warning\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'* from api_warning\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'* from api_warning\' at line 1', '2022-01-15 11:45:17'); INSERT INTO `sys_oper_log` VALUES (2310, 'api预警', 3, 'com.xjs.controller.ApiWarningController.clearAll()', 'DELETE', 1, 'admin', '', '/apiwarning/all', '127.0.0.1', '', '', '{\"code\":200,\"data\":7651}', 0, '', '2022-01-15 11:48:10'); INSERT INTO `sys_oper_log` VALUES (2311, 'api预警', 3, 'com.xjs.controller.ApiWarningController.clearAll()', 'DELETE', 1, 'admin', '', '/apiwarning/all', '127.0.0.1', '', '', '{\"code\":200,\"data\":45}', 0, '', '2022-01-15 11:50:44'); INSERT INTO `sys_oper_log` VALUES (2312, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'from api_warning set handle = 2\' at line 1\r\n### The error may exist in file [D:\\Dev\\IdeaPerject\\GitHub\\RuoYi-Cloud\\xjs-business\\xjs-business-warning\\target\\classes\\mapper\\apiwarning\\ApiWarningMapper.xml]\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: update from api_warning set handle = 2\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'from api_warning set handle = 2\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'from api_warning set handle = 2\' at line 1', '2022-01-15 12:04:13'); INSERT INTO `sys_oper_log` VALUES (2313, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"edit\",\"orderNum\":\"2\",\"menuName\":\"api预警全部标记已读\",\"params\":{},\"parentId\":2047,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"warning:warning:handleAll\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 12:06:08'); INSERT INTO `sys_oper_log` VALUES (2314, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":500}', 0, '', '2022-01-15 12:06:32'); INSERT INTO `sys_oper_log` VALUES (2315, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":500}', 0, '', '2022-01-15 12:06:48'); INSERT INTO `sys_oper_log` VALUES (2316, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":7651}', 0, '', '2022-01-15 12:07:59'); INSERT INTO `sys_oper_log` VALUES (2317, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":7652}', 0, '', '2022-01-15 12:08:07'); INSERT INTO `sys_oper_log` VALUES (2318, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":7652}', 0, '', '2022-01-15 12:08:08'); INSERT INTO `sys_oper_log` VALUES (2319, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":7652}', 0, '', '2022-01-15 12:08:10'); INSERT INTO `sys_oper_log` VALUES (2320, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":7655}', 0, '', '2022-01-15 12:10:33'); INSERT INTO `sys_oper_log` VALUES (2321, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"惭愧棒棒糖,吃了之后会对生前所做的错事非常惭愧,是整人武器中的极品!\",\"createTime\":1642219862040,\"id\":1482203646676086786,\"source\":\"整人专家\",\"type\":3}}', 0, '', '2022-01-15 12:11:02'); INSERT INTO `sys_oper_log` VALUES (2322, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我会补偿你的,我保证。\",\"createTime\":1642219863654,\"id\":1482203653458276353,\"source\":\"狮子王 The lion king\",\"type\":3}}', 0, '', '2022-01-15 12:11:03'); INSERT INTO `sys_oper_log` VALUES (2323, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你为什么要欺负我,我一个女生离家那么远,在这里工作,又那么辛苦,你为什么要欺负我\",\"createTime\":1642219864706,\"id\":1482203657866489857,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2022-01-15 12:11:04'); INSERT INTO `sys_oper_log` VALUES (2324, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"她傻到以为我也是真的爱她\",\"createTime\":1642219865214,\"id\":1482203659972030466,\"source\":\"感谢你曾来过\",\"type\":2}}', 0, '', '2022-01-15 12:11:05'); INSERT INTO `sys_oper_log` VALUES (2325, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生没有失败,只有暂时停止成功!\",\"createTime\":1642219867520,\"id\":1482203669631512577,\"source\":\"suniczls\",\"type\":5}}', 0, '', '2022-01-15 12:11:07'); INSERT INTO `sys_oper_log` VALUES (2326, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世界上没有偶然,有的只是必然。\",\"createTime\":1642219901297,\"id\":1482203811298324481,\"source\":\"279120482\",\"type\":5}}', 0, '', '2022-01-15 12:11:41'); INSERT INTO `sys_oper_log` VALUES (2327, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1642220303578,\"id\":1482205498612297730,\"source\":\"施企巴乔夫\",\"type\":4}}', 0, '', '2022-01-15 12:18:23'); INSERT INTO `sys_oper_log` VALUES (2328, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"别和我谈理想,戒了。\",\"createTime\":1642220306301,\"id\":1482205510054359041,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-15 12:18:26'); INSERT INTO `sys_oper_log` VALUES (2329, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482205509983080449', '127.0.0.1', '', '1482205509983080449', '{\"code\":200}', 0, '', '2022-01-15 12:18:33'); INSERT INTO `sys_oper_log` VALUES (2330, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482233141562904578', '127.0.0.1', '', '1482233141562904578', '{\"code\":200}', 0, '', '2022-01-15 14:09:37'); INSERT INTO `sys_oper_log` VALUES (2331, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":225}', 0, '', '2022-01-15 14:10:09'); INSERT INTO `sys_oper_log` VALUES (2332, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"桑丘,让他们管我叫疯子吧,我还疯得不够,所以得不到他们的赞许。\",\"createTime\":1642227071034,\"id\":1482233883375874050,\"source\":\"l863921044\",\"type\":5}}', 0, '', '2022-01-15 14:11:11'); INSERT INTO `sys_oper_log` VALUES (2333, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642227077473,\"en\":\"Better do more daily,trivial,ordinary and practical work that is needed by the people,than say a thousand empty words that may be sweet to the ear.\",\"id\":1482233910370414593,\"zh\":\"多做一些人民需要的,日常的,细小的,平凡而实际的工作,胜过说一千句漂亮动听的话语.\"}}', 0, '', '2022-01-15 14:11:17'); INSERT INTO `sys_oper_log` VALUES (2334, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Better do more daily,trivial,ordinary and practical work that is needed by the people,than say a thousand empty words that may be sweet to the ear.\",\"zh\":\"多做一些人民需要的,日常的,细小的,平凡而实际的工作,胜过说一千句漂亮动听的话语.\"}}', 0, '', '2022-01-15 14:11:20'); INSERT INTO `sys_oper_log` VALUES (2335, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Better do more daily,trivial,ordinary and practical work that is needed by the people,than say a thousand empty words that may be sweet to the ear.\",\"zh\":\"多做一些人民需要的,日常的,细小的,平凡而实际的工作,胜过说一千句漂亮动听的话语.\"}}', 0, '', '2022-01-15 14:11:23'); INSERT INTO `sys_oper_log` VALUES (2336, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Better do more daily,trivial,ordinary and practical work that is needed by the people,than say a thousand empty words that may be sweet to the ear.\",\"zh\":\"多做一些人民需要的,日常的,细小的,平凡而实际的工作,胜过说一千句漂亮动听的话语.\"}}', 0, '', '2022-01-15 14:11:27'); INSERT INTO `sys_oper_log` VALUES (2337, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":79}', 0, '', '2022-01-15 14:13:19'); INSERT INTO `sys_oper_log` VALUES (2338, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"They say the important thing in life isn’t the destination, it’s the journey.\",\"dataId\":3778,\"date\":1590768000000,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/dcd893adff2212b21de324618ef02b4a.png\",\"note\":\"人们说人生最重要的不是目的地,而是旅途本身。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/56241ac9409a2c6ed7c1ad78285c014f.mp3\"}}', 0, '', '2022-01-15 14:13:41'); INSERT INTO `sys_oper_log` VALUES (2339, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"My heart laments at the sight of the autumn moon above the mountain pass.\",\"dataId\":3886,\"date\":1600099200000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9101c02a3e36b762e6ead8dd8c1b4470.png\",\"note\":\"何处最伤心,关山见秋月。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/a72c894674a784965fcf3ff6847f0a80.mp3\"}}', 0, '', '2022-01-15 14:14:32'); INSERT INTO `sys_oper_log` VALUES (2340, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Hello from the outside, at least I can say that I\'ve tried to tell you.\",\"createTime\":1642227381422,\"dataId\":3953,\"date\":1605888000000,\"id\":1482235185229115394,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/5d4796ea694c8934c61aec8b1dd812b0.png\",\"note\":\"这相隔千里的来电,至少能让我不留遗憾。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/5a714089234ea82d12ccf07b230bd47c.mp3\"}}', 0, '', '2022-01-15 14:16:21'); INSERT INTO `sys_oper_log` VALUES (2341, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":132}', 0, '', '2022-01-15 14:20:20'); INSERT INTO `sys_oper_log` VALUES (2342, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":2}', 0, '', '2022-01-15 14:22:34'); INSERT INTO `sys_oper_log` VALUES (2343, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482237168182824961', '127.0.0.1', '', '1482237168182824961', '{\"code\":200}', 0, '', '2022-01-15 14:24:50'); INSERT INTO `sys_oper_log` VALUES (2344, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":1}', 0, '', '2022-01-15 14:25:07'); INSERT INTO `sys_oper_log` VALUES (2345, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"An aim in life is the only fortune worth finding.\",\"dataId\":4935,\"date\":1596643200000,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/f58a058d6a91c3a9cd8f80adaf68cd6e.3b89602f0ad9b149645c13975d49e12e.jpeg\",\"note\":\"生活的目标,是唯一值得我们去寻找的财富。\",\"source\":\"Robert Louis Stevenson\",\"tts\":\"\"}}', 0, '', '2022-01-15 14:25:10'); INSERT INTO `sys_oper_log` VALUES (2346, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":262}', 0, '', '2022-01-15 14:25:17'); INSERT INTO `sys_oper_log` VALUES (2347, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":27}', 0, '', '2022-01-15 14:56:59'); INSERT INTO `sys_oper_log` VALUES (2348, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482267325555740674', '127.0.0.1', '', '1482267325555740674', '{\"code\":200}', 0, '', '2022-01-15 16:24:36'); INSERT INTO `sys_oper_log` VALUES (2349, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482277433522196482', '127.0.0.1', '', '1482277433522196482', '{\"code\":200}', 0, '', '2022-01-15 17:04:45'); INSERT INTO `sys_oper_log` VALUES (2350, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":121}', 0, '', '2022-01-15 17:05:08'); INSERT INTO `sys_oper_log` VALUES (2351, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我发现很多年少有为的人都是经历过很大的苦难挺过来才有今天的风光,所以你年少时吃过的苦终有一天会成为你站到人生高处的基石。 \",\"createTime\":1642237539265,\"id\":1482277790344196097,\"source\":\"年少有为\",\"type\":2}}', 0, '', '2022-01-15 17:05:39'); INSERT INTO `sys_oper_log` VALUES (2352, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The situation is not quite so cut and dried.\",\"createTime\":1642238792194,\"dataId\":4203,\"date\":1627488000000,\"id\":1482283045488340994,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a90b27614453323065fbfd2210274a80.png\",\"note\":\"情况并非已成定局。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/24450c6b2418c5136107add89c0294be.mp3\"}}', 0, '', '2022-01-15 17:26:32'); INSERT INTO `sys_oper_log` VALUES (2353, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人只要能掌握自己,便什么也不会失去。\",\"createTime\":1642238794410,\"id\":1482283054787112961,\"source\":\"第一道防线\",\"type\":5}}', 0, '', '2022-01-15 17:26:34'); INSERT INTO `sys_oper_log` VALUES (2354, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"天气\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"The weather\",\"src\":\"天气\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-15 17:26:39'); INSERT INTO `sys_oper_log` VALUES (2355, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482283054720028673', '127.0.0.1', '', '1482283054720028673', '{\"code\":200}', 0, '', '2022-01-15 17:27:34'); INSERT INTO `sys_oper_log` VALUES (2356, '在线用户', 7, 'com.ruoyi.system.controller.SysUserOnlineController.forceLogout()', 'DELETE', 1, 'admin', NULL, '/online/4be2aa6e-ee64-402a-9143-f48bf590850d', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 17:27:43'); INSERT INTO `sys_oper_log` VALUES (2357, '在线用户', 7, 'com.ruoyi.system.controller.SysUserOnlineController.forceLogout()', 'DELETE', 1, 'admin', NULL, '/online/e0762dcf-5e8e-4a89-9700-09c8c47027f6', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-15 17:27:45'); INSERT INTO `sys_oper_log` VALUES (2358, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The wisest mind has something yet to learn.\",\"createTime\":1642238870113,\"dataId\":3907,\"date\":1601913600000,\"id\":1482283372325285889,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/c1b6d764839c943b3a302e6567b21dad.png\",\"note\":\"即使最聪明的人也还有要学习的。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/89e6a8005f904fc2adc60317a952ad22.mp3\"}}', 0, '', '2022-01-15 17:27:50'); INSERT INTO `sys_oper_log` VALUES (2359, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1196}', 0, '', '2022-01-15 17:56:32'); INSERT INTO `sys_oper_log` VALUES (2360, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '', 1, '获取IP信息异常!!', '2022-01-15 21:36:10'); INSERT INTO `sys_oper_log` VALUES (2361, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '', 1, '获取IP信息异常!!', '2022-01-15 21:41:47'); INSERT INTO `sys_oper_log` VALUES (2362, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '', 1, '获取IP信息异常!!', '2022-01-15 21:44:45'); INSERT INTO `sys_oper_log` VALUES (2363, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '', 1, '获取IP信息异常!!', '2022-01-15 21:45:02'); INSERT INTO `sys_oper_log` VALUES (2364, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 21:45:47'); INSERT INTO `sys_oper_log` VALUES (2365, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 21:47:03'); INSERT INTO `sys_oper_log` VALUES (2366, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 21:51:06'); INSERT INTO `sys_oper_log` VALUES (2367, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 21:51:14'); INSERT INTO `sys_oper_log` VALUES (2368, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 21:51:18'); INSERT INTO `sys_oper_log` VALUES (2369, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 21:51:34'); INSERT INTO `sys_oper_log` VALUES (2370, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 21:53:04'); INSERT INTO `sys_oper_log` VALUES (2371, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The size of your dreams must always exceed your current capacity to achieve them.\",\"createTime\":1642254801949,\"dataId\":4016,\"date\":1611331200000,\"id\":1482350195230085121,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/94bd189b6d0ee6be0e0c7fe841dfbe13.png\",\"note\":\"你的梦想应该总是比当前的能力要大。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/7be13911cd416ab1ee94e2606b1b217f.mp3\"}}', 0, '', '2022-01-15 21:53:21'); INSERT INTO `sys_oper_log` VALUES (2372, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It doesn\'t matter who you are on the outside. The main thing is who you are on the inside.\",\"createTime\":1642254867488,\"dataId\":4370,\"date\":1641916800000,\"id\":1482350470175100930,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/03ec35f0450a964a778069ea4f5bf37e.png\",\"note\":\"你的外表并不重要,重要的是你的内心。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/d67851e94bdb1c802ef5bbd73354d83c.mp3\"}}', 0, '', '2022-01-15 21:54:27'); INSERT INTO `sys_oper_log` VALUES (2373, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 21:54:55'); INSERT INTO `sys_oper_log` VALUES (2374, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 21:59:08'); INSERT INTO `sys_oper_log` VALUES (2375, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"北京市\",\"cityId\":\"110000\",\"desc\":\"北京市北京市 教育网\",\"ip\":\"\'\'\",\"isp\":\"教育网\",\"province\":\"北京市\"}}', 0, '', '2022-01-15 22:01:19'); INSERT INTO `sys_oper_log` VALUES (2376, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"北京市\",\"cityId\":\"110000\",\"desc\":\"北京市北京市 教育网\",\"ip\":\"\'\'\",\"isp\":\"教育网\",\"province\":\"北京市\"}}', 0, '', '2022-01-15 22:07:54'); INSERT INTO `sys_oper_log` VALUES (2377, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"北京市\",\"cityId\":\"110000\",\"desc\":\"北京市北京市 教育网\",\"ip\":\"\'\'\",\"isp\":\"教育网\",\"province\":\"北京市\"}}', 0, '', '2022-01-15 22:09:04'); INSERT INTO `sys_oper_log` VALUES (2378, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:09:59'); INSERT INTO `sys_oper_log` VALUES (2379, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:13:10'); INSERT INTO `sys_oper_log` VALUES (2380, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:14:32'); INSERT INTO `sys_oper_log` VALUES (2381, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:14:57'); INSERT INTO `sys_oper_log` VALUES (2382, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:16:32'); INSERT INTO `sys_oper_log` VALUES (2383, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:17:15'); INSERT INTO `sys_oper_log` VALUES (2384, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:18:13'); INSERT INTO `sys_oper_log` VALUES (2385, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:20:49'); INSERT INTO `sys_oper_log` VALUES (2386, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:24:39'); INSERT INTO `sys_oper_log` VALUES (2387, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:32:02'); INSERT INTO `sys_oper_log` VALUES (2388, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:32:10'); INSERT INTO `sys_oper_log` VALUES (2389, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:33:23'); INSERT INTO `sys_oper_log` VALUES (2390, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:34:51'); INSERT INTO `sys_oper_log` VALUES (2391, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:36:29'); INSERT INTO `sys_oper_log` VALUES (2392, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:39:21'); INSERT INTO `sys_oper_log` VALUES (2393, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:41:31'); INSERT INTO `sys_oper_log` VALUES (2394, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:58:31'); INSERT INTO `sys_oper_log` VALUES (2395, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 22:58:42'); INSERT INTO `sys_oper_log` VALUES (2396, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 本机地址\",\"ip\":\"127.0.0.1\",\"isp\":\"本机地址\",\"province\":\"\"}}', 0, '', '2022-01-15 23:00:37'); INSERT INTO `sys_oper_log` VALUES (2397, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"南昌市\",\"cityId\":\"360100\",\"desc\":\"江西省南昌市 移动\",\"ip\":\"\'183.217.81.80\'\",\"isp\":\"移动\",\"province\":\"江西省\"}}', 0, '', '2022-01-15 23:01:41'); INSERT INTO `sys_oper_log` VALUES (2398, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"南昌市\",\"cityId\":\"360100\",\"desc\":\"江西省南昌市 移动\",\"ip\":\"\'183.217.81.80\'\",\"isp\":\"移动\",\"province\":\"江西省\"}}', 0, '', '2022-01-15 23:09:47'); INSERT INTO `sys_oper_log` VALUES (2399, '获取IP', 0, 'com.xjs.weather.controller.IPController.getIPApiData()', 'GET', 1, 'admin', '', '/ipInfo', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"南昌市\",\"cityId\":\"360100\",\"desc\":\"江西省南昌市 移动\",\"ip\":\"183.217.81.80\",\"isp\":\"移动\",\"province\":\"江西省\"}}', 0, '', '2022-01-15 23:17:06'); INSERT INTO `sys_oper_log` VALUES (2400, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Some people choose to see the ugliness in this world. The disarray. I choose to see the beauty.\",\"createTime\":1642324348103,\"dataId\":4061,\"date\":1615219200000,\"id\":1482641892979712001,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3c323d57036d925b0d0c4da3dc211136.png\",\"note\":\"一些人选择去看见这个世界的丑陋,混乱,我选择去发现美好。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c0ac03f0c2ab71b31bf40b6afc6ed827.mp3\"}}', 0, '', '2022-01-16 17:12:28'); INSERT INTO `sys_oper_log` VALUES (2401, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":302,\"apiName\":\"ROLL-IP信息\",\"dayCount\":30,\"apiUrl\":\"http://www.mxnzp.com/api/ip/self\",\"createTime\":1642253771000,\"limitCount\":100,\"updateTime\":1642259826000,\"id\":1482345869933744129,\"totalCount\":30}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 17:13:16'); INSERT INTO `sys_oper_log` VALUES (2402, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果今天的你还没有什么目标,那么明天的清晨,你用什么理由把自己叫醒呢?\",\"createTime\":1642324455002,\"id\":1482642341367586817,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-16 17:14:15'); INSERT INTO `sys_oper_log` VALUES (2403, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"机会靠左手,努力靠右手,成功靠双手。\",\"createTime\":1642324458932,\"id\":1482642357805064194,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-16 17:14:18'); INSERT INTO `sys_oper_log` VALUES (2404, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":517}', 0, '', '2022-01-16 17:14:26'); INSERT INTO `sys_oper_log` VALUES (2405, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":572}', 0, '', '2022-01-16 17:14:35'); INSERT INTO `sys_oper_log` VALUES (2406, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Whatever you do, just don\'t make any rash decision.\",\"dataId\":4218,\"date\":1628784000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a3562026372317ab865f3a31750bb8cd.png\",\"note\":\"无论你想做什么,千万不要贸然行事。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c7de7077586deaae9a9e42ce453da961.mp3\"}}', 0, '', '2022-01-16 17:14:53'); INSERT INTO `sys_oper_log` VALUES (2407, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Some say you’d never meet your heroes,but if you are really blessed,you get them as your parents.\",\"createTime\":1642324496413,\"dataId\":3680,\"date\":1581955200000,\"id\":1482642515036938242,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/ed5256d6faf004390f0d6429e6c8ec56.png\",\"note\":\"有些人说你可能一辈子都遇不到自己的英雄,但是如果你足够幸运的话,他们会是你的父母。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f0c69d6db45c1cba5a448be8a0fb3bff.mp3\"}}', 0, '', '2022-01-16 17:14:56'); INSERT INTO `sys_oper_log` VALUES (2408, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要贬低黄昏,黄昏同清晨一样是成就事业的时间。\",\"createTime\":1642325663831,\"id\":1482647411526148098,\"source\":\"天雄\",\"type\":4}}', 0, '', '2022-01-16 17:34:23'); INSERT INTO `sys_oper_log` VALUES (2409, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"实时\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"real time\",\"src\":\"实时\"}]}}', 0, '', '2022-01-16 17:34:31'); INSERT INTO `sys_oper_log` VALUES (2410, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'api_now_weather', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-16 17:38:44'); INSERT INTO `sys_oper_log` VALUES (2411, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"给个机会让我照顾你一下,时间不长,就一辈子。\",\"createTime\":1642326100758,\"id\":1482649244143394817,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-16 17:41:40'); INSERT INTO `sys_oper_log` VALUES (2412, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"预报\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"forecast\",\"src\":\"预报\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-16 17:41:44'); INSERT INTO `sys_oper_log` VALUES (2413, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"Casts\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"数据类型转换\",\"src\":\"Casts\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-01-16 17:44:45'); INSERT INTO `sys_oper_log` VALUES (2414, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你是没赶上我好的时候……这两年,是有点虚了。\",\"createTime\":1642326667011,\"id\":1482651619176423425,\"source\":\"非诚勿扰2\",\"type\":3}}', 0, '', '2022-01-16 17:51:07'); INSERT INTO `sys_oper_log` VALUES (2415, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":733}', 0, '', '2022-01-16 17:51:12'); INSERT INTO `sys_oper_log` VALUES (2416, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":2013,\"apiName\":\"天行-朋友圈\",\"dayCount\":12,\"apiUrl\":\"http://api.tianapi.com/pyqwenan/index\",\"createTime\":1641027687000,\"limitCount\":50,\"updateTime\":1642326488000,\"id\":1477203303311577090,\"totalCount\":1405}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 17:51:39'); INSERT INTO `sys_oper_log` VALUES (2417, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":128,\"apiName\":\"天行-名人名言\",\"dayCount\":3,\"apiUrl\":\"http://api.tianapi.com/mingyan/index\",\"createTime\":1641027717000,\"limitCount\":50,\"updateTime\":1642325664000,\"id\":1477203429832757249,\"totalCount\":1411}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 17:51:42'); INSERT INTO `sys_oper_log` VALUES (2418, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":109,\"apiName\":\"天行-网易云\",\"dayCount\":7,\"apiUrl\":\"http://api.tianapi.com/hotreview/index\",\"createTime\":1641027736000,\"limitCount\":50,\"updateTime\":1642326014000,\"id\":1477203506580131842,\"totalCount\":1359}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 17:51:44'); INSERT INTO `sys_oper_log` VALUES (2419, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":1129,\"apiName\":\"天行-经典台词\",\"dayCount\":3,\"apiUrl\":\"http://api.tianapi.com/dialogue/index\",\"createTime\":1641027757000,\"limitCount\":50,\"updateTime\":1642326667000,\"id\":1477203594752790530,\"totalCount\":1411}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 17:51:49'); INSERT INTO `sys_oper_log` VALUES (2420, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":55,\"apiName\":\"天行-翻译字典\",\"dayCount\":8,\"apiUrl\":\"http://api.tianapi.com/enwords/index\",\"createTime\":1641032271000,\"limitCount\":50,\"updateTime\":1642227088000,\"id\":1477222527450963970,\"totalCount\":26}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 17:51:53'); INSERT INTO `sys_oper_log` VALUES (2421, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":127,\"apiName\":\"天行-英语一言\",\"dayCount\":4,\"apiUrl\":\"http://api.tianapi.com/ensentence/index\",\"createTime\":1641032271000,\"limitCount\":50,\"updateTime\":1642227077000,\"id\":1477222528369516546,\"totalCount\":34}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 17:51:56'); INSERT INTO `sys_oper_log` VALUES (2422, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":589}', 0, '', '2022-01-16 19:30:09'); INSERT INTO `sys_oper_log` VALUES (2423, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482676526195130370', '127.0.0.1', '', '1482676526195130370', '{\"code\":200}', 0, '', '2022-01-16 19:30:17'); INSERT INTO `sys_oper_log` VALUES (2424, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"成熟的人生无需辩解,仅仅一个微笑足矣。\",\"createTime\":1642332670465,\"id\":1482676799470772226,\"source\":\"shmily\",\"type\":5}}', 0, '', '2022-01-16 19:31:10'); INSERT INTO `sys_oper_log` VALUES (2425, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Passion is a key ingredient to the study and practice of law and of life.\",\"dataId\":3725,\"date\":1586102400000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/88a1b7e9b02be6388329a4be911f7293.png\",\"note\":\"激情是学习和实践法律不可或缺的要素,同时也是生命中不可或缺的要素。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/17c662155203497977f9536ac2bac6e1.mp3\"}}', 0, '', '2022-01-16 19:31:16'); INSERT INTO `sys_oper_log` VALUES (2426, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"男人总是对不同的女人说着重复的话,其实回头看看,男人你只不过是把曾经走过的路又来来回回的走了几遍又几遍 !\",\"createTime\":1642334484499,\"id\":1482684408089223169,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-16 20:01:24'); INSERT INTO `sys_oper_log` VALUES (2427, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"He who controls others may be powerful, but he who has mastered himself is mightier still.\",\"dataId\":3712,\"date\":1585065600000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/40b394f1c4b2ec69c2a7e4688f39e801.png\",\"note\":\"胜人者有力,自胜者强。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/8021ba1a97604a881cb09a89fcba274b.mp3\"}}', 0, '', '2022-01-16 20:04:01'); INSERT INTO `sys_oper_log` VALUES (2428, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":40,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":21,\"total\":43}}', 0, '', '2022-01-16 20:04:04'); INSERT INTO `sys_oper_log` VALUES (2429, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":43}}', 0, '', '2022-01-16 20:04:04'); INSERT INTO `sys_oper_log` VALUES (2430, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642334650436,\"en\":\"A man\'s vanity is actually in proportion to ignorance.\",\"id\":1482685104075251713,\"zh\":\" 一个人的虚荣心实际上和他的愚蠢程度成正比。\"}}', 0, '', '2022-01-16 20:04:10'); INSERT INTO `sys_oper_log` VALUES (2431, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"天气\",\"top\":2,\"createTime\":1642334660694,\"isCollect\":1,\"id\":1482685147138134017,\"sort\":0,\"content\":\"天气\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 20:04:20'); INSERT INTO `sys_oper_log` VALUES (2432, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1482685147138134017', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 20:05:10'); INSERT INTO `sys_oper_log` VALUES (2433, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"天气\",\"top\":2,\"createTime\":1642334717670,\"englishWord\":\"weather\",\"isCollect\":1,\"id\":1482685386079244290,\"sort\":0,\"content\":\"天气\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 20:05:17'); INSERT INTO `sys_oper_log` VALUES (2434, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642334845125,\"en\":\"A man never discloses his own character so clearly as when he describes another\'s.\",\"id\":1482685920655908865,\"zh\":\"一个人在描述别人的性格时最能暴露出自己的性格。\"}}', 0, '', '2022-01-16 20:07:25'); INSERT INTO `sys_oper_log` VALUES (2435, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":302,\"apiName\":\"ROLL-IP信息\",\"dayCount\":30,\"apiUrl\":\"http://www.mxnzp.com/api/ip/self\",\"createTime\":1642253771000,\"limitCount\":50,\"updateTime\":1642259826000,\"id\":1482345869933744129,\"totalCount\":30}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 20:12:17'); INSERT INTO `sys_oper_log` VALUES (2436, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":64,\"apiName\":\"天行-抖音热搜榜\",\"dayCount\":5,\"apiUrl\":\"http://api.tianapi.com/douyinhot/index\",\"createTime\":1641969644000,\"limitCount\":50,\"updateTime\":1642240484000,\"id\":1481154154675298305,\"totalCount\":35}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 20:12:23'); INSERT INTO `sys_oper_log` VALUES (2437, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":50,\"apiName\":\"天行-微博热搜榜\",\"dayCount\":5,\"apiUrl\":\"http://api.tianapi.com/weibohot/index\",\"createTime\":1641968357000,\"limitCount\":50,\"updateTime\":1642240484000,\"id\":1481148757860147202,\"totalCount\":40}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 20:12:27'); INSERT INTO `sys_oper_log` VALUES (2438, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":74,\"apiName\":\"天行-百度热搜榜\",\"dayCount\":5,\"apiUrl\":\"http://api.tianapi.com/nethot/index\",\"createTime\":1641869096000,\"limitCount\":50,\"updateTime\":1642240484000,\"id\":1480732428317446145,\"totalCount\":38}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 20:12:31'); INSERT INTO `sys_oper_log` VALUES (2439, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":63,\"apiName\":\"天行-微信热搜榜\",\"dayCount\":5,\"apiUrl\":\"http://api.tianapi.com/wxhottopic/index\",\"createTime\":1641865484000,\"limitCount\":50,\"updateTime\":1642240484000,\"id\":1480717276431994882,\"totalCount\":45}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 20:12:36'); INSERT INTO `sys_oper_log` VALUES (2440, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":124,\"apiName\":\"天行-全网热搜榜\",\"dayCount\":5,\"apiUrl\":\"http://api.tianapi.com/networkhot/index\",\"createTime\":1641828948000,\"limitCount\":50,\"updateTime\":1642240483000,\"id\":1480564034572640257,\"totalCount\":52}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 20:12:41'); INSERT INTO `sys_oper_log` VALUES (2441, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":116,\"apiName\":\"天行-每日一句\",\"dayCount\":5,\"apiUrl\":\"http://api.tianapi.com/everyday/index\",\"createTime\":1641648801000,\"limitCount\":50,\"updateTime\":1642334641000,\"id\":1479808444745322497,\"totalCount\":166}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 20:12:46'); INSERT INTO `sys_oper_log` VALUES (2442, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们也许再也不会见面了吧,因此我绝对不会忘了你的声音,你的眼眸,与你一起看到过的所有的景色,以及,与你一起度过的那个耀眼的夏天。\",\"createTime\":1642335197947,\"id\":1482687400544772097,\"source\":\"以风之名\",\"type\":5}}', 0, '', '2022-01-16 20:13:17'); INSERT INTO `sys_oper_log` VALUES (2443, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I know someone in the world is waiting for me, although I\'ve no idea of who he is. But I feel happy every day for this.\",\"createTime\":1642335201093,\"dataId\":3658,\"date\":1580572800000,\"id\":1482687413702303745,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/d59bf2c57adb681fb853b7579c77b393.png\",\"note\":\"我知道这世上有人在等我,尽管我不知道他是谁。但是因为这样,我每天都非常快乐。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/dcd5c1247dae9c2131d01410d73b2dc6.mp3\"}}', 0, '', '2022-01-16 20:13:21'); INSERT INTO `sys_oper_log` VALUES (2444, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In spite of you and me and the whole silly world going to pieces around us, I love you.\",\"createTime\":1642335298781,\"dataId\":3392,\"date\":1557936000000,\"id\":1482687823422889985,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-05-16.jpg\",\"note\":\"哪怕是世界末日,我都会爱着你。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-05-16-day.mp3\"}}', 0, '', '2022-01-16 20:14:58'); INSERT INTO `sys_oper_log` VALUES (2445, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Since 1921, the Communist party of China has gone through a glorious history of 100 years.\",\"createTime\":1642335420437,\"dataId\":4175,\"date\":1625068800000,\"id\":1482688333722886146,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/87102a1d5d405351096582eae5569ae9.png\",\"note\":\"自1921年以来,中国共产党已走过了一百年的辉煌历程。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/dd0546dee57967655fef1bf980388992.mp3\"}}', 0, '', '2022-01-16 20:17:00'); INSERT INTO `sys_oper_log` VALUES (2446, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Problems are not stop signs, they are guidelines.\",\"createTime\":1642335426247,\"dataId\":4018,\"date\":1611504000000,\"id\":1482688358058237954,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/2c3dfdc776529db37f49680f611fd4e2.png\",\"note\":\"问题不是止步不前的标志,而是前进的指引。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/012e61e616cbaaed9ab606b554d1ff33.mp3\"}}', 0, '', '2022-01-16 20:17:06'); INSERT INTO `sys_oper_log` VALUES (2447, '获取天气', 0, 'com.xjs.weather.controller.WeatherController.getWeatherApiData()', 'GET', 1, 'admin', '', '/weather', '127.0.0.1', '', '', '', 1, '获取天气数据为空', '2022-01-16 21:14:09'); INSERT INTO `sys_oper_log` VALUES (2448, '获取天气', 0, 'com.xjs.weather.controller.WeatherController.getWeatherApiData()', 'GET', 1, 'admin', '', '/weather', '127.0.0.1', '', '', '', 1, '获取天气数据为空', '2022-01-16 21:16:10'); INSERT INTO `sys_oper_log` VALUES (2449, '获取天气', 0, 'com.xjs.weather.controller.WeatherController.getWeatherApiData()', 'GET', 1, 'admin', '', '/weather', '127.0.0.1', '', '', '', 1, 'class com.alibaba.fastjson.JSONArray cannot be cast to class com.alibaba.fastjson.JSONObject (com.alibaba.fastjson.JSONArray and com.alibaba.fastjson.JSONObject are in unnamed module of loader \'app\')', '2022-01-16 21:20:01'); INSERT INTO `sys_oper_log` VALUES (2450, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"DEFAULT\",\"params\":{},\"cronExpression\":\"0 0/10 * 1/1 * ? \",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1642339800000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-16 21:24:42'); INSERT INTO `sys_oper_log` VALUES (2451, '获取天气', 0, 'com.xjs.weather.controller.WeatherController.getWeatherApiData()', 'GET', 1, 'admin', '', '/weather', '127.0.0.1', '', '', '', 1, 'class com.alibaba.fastjson.JSONArray cannot be cast to class com.alibaba.fastjson.JSONObject (com.alibaba.fastjson.JSONArray and com.alibaba.fastjson.JSONObject are in unnamed module of loader \'app\')', '2022-01-16 21:24:45'); INSERT INTO `sys_oper_log` VALUES (2452, '获取天气', 0, 'com.xjs.weather.controller.WeatherController.getWeatherApiData()', 'GET', 1, 'admin', '', '/weather', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"id\":1482705940131856386,\"province\":\"江西\",\"reporttime\":1642338511000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-16 21:26:58'); INSERT INTO `sys_oper_log` VALUES (2453, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":212,\"apiName\":\"高德-天气预报\",\"dayCount\":5,\"apiUrl\":\"https://restapi.amap.com/v3/weather/weatherInfo\",\"createTime\":1642338849000,\"limitCount\":50,\"updateTime\":1642339618000,\"id\":1482702713948680193,\"totalCount\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 21:28:22'); INSERT INTO `sys_oper_log` VALUES (2454, '获取天气', 0, 'com.xjs.weather.controller.WeatherController.getWeatherApiData()', 'GET', 1, 'admin', '', '/weather', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"id\":1482705940131856386,\"province\":\"江西\",\"reporttime\":1642338511000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-16 21:32:24'); INSERT INTO `sys_oper_log` VALUES (2455, '获取天气', 0, 'com.xjs.weather.controller.WeatherController.getWeatherApiData()', 'GET', 1, 'admin', '', '/weather', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"id\":1482705940131856386,\"province\":\"江西\",\"reporttime\":1642338511000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-16 21:35:11'); INSERT INTO `sys_oper_log` VALUES (2456, '定时任务', 1, 'com.ruoyi.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"天气预报定时任务\",\"concurrent\":\"1\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0/1 10 * * * ?\",\"jobId\":101,\"createBy\":\"admin\",\"nextValidTime\":1642342200000,\"invokeTarget\":\"WeatherTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-16 21:57:55'); INSERT INTO `sys_oper_log` VALUES (2457, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"天气预报定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/10 * 1/1 * ? \",\"jobId\":101,\"createBy\":\"admin\",\"nextValidTime\":1642341600000,\"createTime\":1642341475000,\"updateBy\":\"admin\",\"invokeTarget\":\"WeatherTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-16 21:58:15'); INSERT INTO `sys_oper_log` VALUES (2458, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/10 * 1/1 * ? \",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1642341600000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-16 21:58:23'); INSERT INTO `sys_oper_log` VALUES (2459, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":101,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-16 21:58:34'); INSERT INTO `sys_oper_log` VALUES (2460, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":101,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-16 22:03:42'); INSERT INTO `sys_oper_log` VALUES (2461, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":101,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-16 22:09:28'); INSERT INTO `sys_oper_log` VALUES (2462, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482705252509233153', '127.0.0.1', '', '1482705252509233153', '{\"code\":200}', 0, '', '2022-01-16 22:11:22'); INSERT INTO `sys_oper_log` VALUES (2463, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":158}', 0, '', '2022-01-16 22:31:44'); INSERT INTO `sys_oper_log` VALUES (2464, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It hurts to remember,but it would be worse to forget.\",\"createTime\":1642343521136,\"dataId\":4192,\"date\":1626537600000,\"id\":1482722310487756802,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/271e8a9de6aee4ee4005d84e7a377ccc.png\",\"note\":\"铭记虽痛苦,但遗忘更糟糕。 \",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/b7135224af703461b208325816b911ff.mp3\"}}', 0, '', '2022-01-16 22:32:01'); INSERT INTO `sys_oper_log` VALUES (2465, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":219,\"apiName\":\"高德-天气预报\",\"dayCount\":11,\"apiUrl\":\"https://restapi.amap.com/v3/weather/weatherInfo\",\"createTime\":1642338849000,\"limitCount\":30,\"updateTime\":1642343400000,\"id\":1482702713948680193,\"totalCount\":11}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 22:32:07'); INSERT INTO `sys_oper_log` VALUES (2466, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":227,\"apiName\":\"ROLL-IP信息\",\"dayCount\":2,\"apiUrl\":\"http://www.mxnzp.com/api/ip/self\",\"createTime\":1642253771000,\"limitCount\":30,\"updateTime\":1642341601000,\"id\":1482345869933744129,\"totalCount\":32}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 22:32:11'); INSERT INTO `sys_oper_log` VALUES (2467, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":59,\"apiName\":\"天行-抖音热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/douyinhot/index\",\"createTime\":1641969644000,\"limitCount\":30,\"updateTime\":1642335433000,\"id\":1481154154675298305,\"totalCount\":36}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 22:32:15'); INSERT INTO `sys_oper_log` VALUES (2468, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":57,\"apiName\":\"天行-微博热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/weibohot/index\",\"createTime\":1641968357000,\"limitCount\":30,\"updateTime\":1642335433000,\"id\":1481148757860147202,\"totalCount\":41}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 22:32:19'); INSERT INTO `sys_oper_log` VALUES (2469, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":65,\"apiName\":\"天行-百度热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/nethot/index\",\"createTime\":1641869096000,\"limitCount\":30,\"updateTime\":1642335433000,\"id\":1480732428317446145,\"totalCount\":39}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 22:32:23'); INSERT INTO `sys_oper_log` VALUES (2470, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":60,\"apiName\":\"天行-微信热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/wxhottopic/index\",\"createTime\":1641865484000,\"limitCount\":30,\"updateTime\":1642335433000,\"id\":1480717276431994882,\"totalCount\":46}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 22:32:31'); INSERT INTO `sys_oper_log` VALUES (2471, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":530,\"apiName\":\"天行-全网热搜榜\",\"dayCount\":1,\"apiUrl\":\"http://api.tianapi.com/networkhot/index\",\"createTime\":1641828948000,\"limitCount\":30,\"updateTime\":1642335433000,\"id\":1480564034572640257,\"totalCount\":53}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 22:32:35'); INSERT INTO `sys_oper_log` VALUES (2472, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":116,\"apiName\":\"天行-每日一句\",\"dayCount\":10,\"apiUrl\":\"http://api.tianapi.com/everyday/index\",\"createTime\":1641648801000,\"limitCount\":30,\"updateTime\":1642343521000,\"id\":1479808444745322497,\"totalCount\":171}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-16 22:32:40'); INSERT INTO `sys_oper_log` VALUES (2473, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们青年的箴言就是勇敢、顽强、坚定,就是排除一切障碍。\",\"createTime\":1642343570731,\"id\":1482722518533623810,\"source\":\"奥斯特洛夫斯基\",\"type\":4}}', 0, '', '2022-01-16 22:32:50'); INSERT INTO `sys_oper_log` VALUES (2474, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"益重青青志,风霜恒不渝。\",\"createTime\":1642343573125,\"id\":1482722528587370498,\"source\":\"(唐)李隆基\",\"type\":4}}', 0, '', '2022-01-16 22:32:53'); INSERT INTO `sys_oper_log` VALUES (2475, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"少年有他的山海,有他的重重山影,有他的万里波涛。如果可以,风给他,沙漠给他,天空也给他。是无拘无束的风,会下大雨的沙漠和铺满星辰的天空。万物给他,让他自由。\",\"createTime\":1642343573992,\"id\":1482722532202860545,\"source\":\"佚名\",\"type\":2}}', 0, '', '2022-01-16 22:32:54'); INSERT INTO `sys_oper_log` VALUES (2476, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"成熟不是为了走向复杂,而是为了抵达天真。\",\"createTime\":1642343574243,\"id\":1482722533243047938,\"source\":\"论语\",\"type\":1}}', 0, '', '2022-01-16 22:32:54'); INSERT INTO `sys_oper_log` VALUES (2477, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"社会和自然的区别就在于,社会是有一定道德目标的。\",\"createTime\":1642343574732,\"id\":1482722535285673986,\"source\":\"赫胥黎\",\"type\":4}}', 0, '', '2022-01-16 22:32:54'); INSERT INTO `sys_oper_log` VALUES (2478, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不管怎样,我终相信这个世界是美好的。\",\"createTime\":1642343575583,\"id\":1482722538884386818,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-16 22:32:55'); INSERT INTO `sys_oper_log` VALUES (2479, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"中国人是富于美感的民族。\",\"createTime\":1642343576000,\"id\":1482722540620828674,\"source\":\"蔡元培\",\"type\":4}}', 0, '', '2022-01-16 22:32:56'); INSERT INTO `sys_oper_log` VALUES (2480, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你最近还好吗?我已无从知晓 希望你一切都好。[可爱] “你说喜欢就是放肆,但爱就是克制 后来我才知道错过就是遗憾 ”\",\"createTime\":1642343576898,\"id\":1482722544399896577,\"source\":\"最近 (正式版)\",\"type\":2}}', 0, '', '2022-01-16 22:32:56'); INSERT INTO `sys_oper_log` VALUES (2481, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"无知而又纯洁的岁月是任何人都曾拥有的,世界上没有一成不变的事物,所以只要以其他方式找到自己的快乐就行了。\",\"createTime\":1642343577489,\"id\":1482722546866147329,\"source\":\"尚昱\",\"type\":5}}', 0, '', '2022-01-16 22:32:57'); INSERT INTO `sys_oper_log` VALUES (2482, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我说“求你别走”但我也说“我放过你” \",\"createTime\":1642343578200,\"id\":1482722549852491777,\"source\":\"下坠Falling\",\"type\":2}}', 0, '', '2022-01-16 22:32:58'); INSERT INTO `sys_oper_log` VALUES (2483, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Ten men banded together in love can do what ten thousand separately would fail in.\",\"createTime\":1642343622816,\"dataId\":3549,\"date\":1571328000000,\"id\":1482722736985559042,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-18.jpg\",\"note\":\"以爱心聚在一起的十个人能够完成一万个分散的人做不到的事情。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-18-day.mp3\"}}', 0, '', '2022-01-16 22:33:42'); INSERT INTO `sys_oper_log` VALUES (2484, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We don\'t want to tell our dreams. We want to show them.\",\"createTime\":1642381752734,\"dataId\":3585,\"date\":1574352000000,\"id\":1482882665412800513,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-22.jpg\",\"note\":\"我们不用说出自己的梦想,我们只要秀出它们。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-22-day.mp3\"}}', 0, '', '2022-01-17 09:09:12'); INSERT INTO `sys_oper_log` VALUES (2485, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"哭,只能说明你懦弱,别让她看见你的懦弱,告诉她你很坚强。\",\"createTime\":1642381816739,\"id\":1482882933898588162,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-17 09:10:16'); INSERT INTO `sys_oper_log` VALUES (2486, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":21}', 0, '', '2022-01-17 09:10:57'); INSERT INTO `sys_oper_log` VALUES (2487, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Pretend modest often is nonsense, sometimes just is the beat around the bush boast.\",\"dataId\":3709,\"date\":1584806400000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/86ab971af68c9e29f95a66473cb1d3ed.png\",\"note\":\"假装谦虚往往就是信口开河,有时候简直是拐弯抹角的自夸。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/85a48bdd2347928e4a683745faa295c6.mp3\"}}', 0, '', '2022-01-17 09:11:27'); INSERT INTO `sys_oper_log` VALUES (2488, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It’s not so much how busy you are, but why you are busy.\",\"createTime\":1642383371883,\"dataId\":4042,\"date\":1613577600000,\"id\":1482889456636899330,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d5361b2222572971e64ae760bbe648c0.png\",\"note\":\"重要的不是你有多忙,而是你为何而忙。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/f76c2a807c75646833857ec85415741f.mp3\"}}', 0, '', '2022-01-17 09:36:11'); INSERT INTO `sys_oper_log` VALUES (2489, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642383379300,\"en\":\"It\'s two o\'clock.\",\"id\":1482889487733469186,\"zh\":\" 现在两点。\"}}', 0, '', '2022-01-17 09:36:19'); INSERT INTO `sys_oper_log` VALUES (2490, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, '', '2022-01-17 09:37:01'); INSERT INTO `sys_oper_log` VALUES (2491, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The human voice can never reach the distance that is covered by the still small voice of conscience.\",\"createTime\":1642383435894,\"dataId\":3783,\"date\":1591200000000,\"id\":1482889725156241409,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/1184a3d9eb0c2adae8880a07bec05341.png\",\"note\":\"良心之声寂静微小,但它传递的距离是人声永远达不到的。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/a866541896f6b81abb6f967d92e66335.mp3\"}}', 0, '', '2022-01-17 09:37:15'); INSERT INTO `sys_oper_log` VALUES (2492, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"光怪陆离都经历,山川湖海放心里。\",\"createTime\":1642383795696,\"id\":1482891234254237698,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-17 09:43:15'); INSERT INTO `sys_oper_log` VALUES (2493, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"检查\",\"top\":2,\"createTime\":1642383800685,\"englishWord\":\"check\",\"isCollect\":1,\"id\":1482891255196405761,\"sort\":0,\"content\":\"check\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-17 09:43:20'); INSERT INTO `sys_oper_log` VALUES (2494, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642383803804,\"en\":\"Great trees keep down little ones.\",\"id\":1482891268278431746,\"zh\":\"大树底下,小树难长。\"}}', 0, '', '2022-01-17 09:43:23'); INSERT INTO `sys_oper_log` VALUES (2495, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"exist\"}', '', 1, '该单词已存在!!!!', '2022-01-17 09:44:02'); INSERT INTO `sys_oper_log` VALUES (2496, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"天气预报定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/20 * 1/1 * ?\",\"jobId\":101,\"createBy\":\"admin\",\"nextValidTime\":1642384800000,\"createTime\":1642341475000,\"updateBy\":\"admin\",\"invokeTarget\":\"WeatherTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-17 09:53:53'); INSERT INTO `sys_oper_log` VALUES (2497, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":101,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-17 09:54:20'); INSERT INTO `sys_oper_log` VALUES (2498, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642385768729,\"humidity\":\"93\",\"id\":1482899509775400961,\"province\":\"江西\",\"reporttime\":1642385318000,\"temperature\":\"7\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 10:16:08'); INSERT INTO `sys_oper_log` VALUES (2499, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 10:08:38\"}}', 0, '', '2022-01-17 10:16:37'); INSERT INTO `sys_oper_log` VALUES (2500, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1642385318000,\"temperature\":\"7\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 10:19:41'); INSERT INTO `sys_oper_log` VALUES (2501, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"环境愈艰难困苦,就愈需要坚定的毅力和信心,而且,懈怠的害处就愈大。\",\"createTime\":1642386269468,\"id\":1482901610022813698,\"source\":\"列夫·托尔斯泰\",\"type\":4}}', 0, '', '2022-01-17 10:24:29'); INSERT INTO `sys_oper_log` VALUES (2502, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642386273369,\"en\":\"There is a tide in the affairs of men.\",\"id\":1482901626380599297,\"zh\":\"人生事业有盛有衰.\"}}', 0, '', '2022-01-17 10:24:33'); INSERT INTO `sys_oper_log` VALUES (2503, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"There is a tide in the affairs of men.\",\"zh\":\"人生事业有盛有衰.\"}}', 0, '', '2022-01-17 10:24:35'); INSERT INTO `sys_oper_log` VALUES (2504, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"There is a tide in the affairs of men.\",\"zh\":\"人生事业有盛有衰.\"}}', 0, '', '2022-01-17 10:24:37'); INSERT INTO `sys_oper_log` VALUES (2505, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"There is a tide in the affairs of men.\",\"zh\":\"人生事业有盛有衰.\"}}', 0, '', '2022-01-17 10:24:39'); INSERT INTO `sys_oper_log` VALUES (2506, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"There is a tide in the affairs of men.\",\"zh\":\"人生事业有盛有衰.\"}}', 0, '', '2022-01-17 10:24:42'); INSERT INTO `sys_oper_log` VALUES (2507, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1642385318000,\"temperature\":\"7\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 10:25:28'); INSERT INTO `sys_oper_log` VALUES (2508, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 10:08:38\"}}', 0, '', '2022-01-17 10:25:33'); INSERT INTO `sys_oper_log` VALUES (2509, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 11:34:09\"}}', 0, '', '2022-01-17 11:49:53'); INSERT INTO `sys_oper_log` VALUES (2510, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I\'m doing better than I ever was.\",\"createTime\":1642391493374,\"dataId\":4336,\"date\":1638979200000,\"id\":1482923520626507777,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/497fd8a3f47fa6a7e076c1691cda8ace.png\",\"note\":\"我已今非昔比。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/1e23085748ac20116e4b2088990efb14.mp3\"}}', 0, '', '2022-01-17 11:51:33'); INSERT INTO `sys_oper_log` VALUES (2511, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"历史孕育了真理,它能和时间抗衡,把遗闻旧事保藏下来。它是往昔的迹象,当代的鉴戒,后世的教训。\",\"createTime\":1642391496736,\"id\":1482923534773895169,\"source\":\"塞万提斯\",\"type\":4}}', 0, '', '2022-01-17 11:51:36'); INSERT INTO `sys_oper_log` VALUES (2512, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642391503548,\"en\":\"\\\"I\'m fine,too.\\\"\",\"id\":1482923563286773761,\"zh\":\" 我也很好。\"}}', 0, '', '2022-01-17 11:51:43'); INSERT INTO `sys_oper_log` VALUES (2513, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Living without an aim is like sailing without a compass\",\"createTime\":1642391745851,\"dataId\":3601,\"date\":1575648000000,\"id\":1482924579583410178,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-07.jpg\",\"note\":\"生活没有目标就像航海没有指南针。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/8b9a57050589786b8a921a6c58c26b7b.mp3\"}}', 0, '', '2022-01-17 11:55:45'); INSERT INTO `sys_oper_log` VALUES (2514, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"While there is life, there is hope.\",\"createTime\":1642391750340,\"dataId\":4345,\"date\":1639756800000,\"id\":1482924598457778178,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/ed098700a9f1fb34778a77d2d589b25f.png\",\"note\":\"生命不息,希望不止。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/11ef31fbc058850a836d6a886e9877ca.mp3\"}}', 0, '', '2022-01-17 11:55:50'); INSERT INTO `sys_oper_log` VALUES (2515, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Whatever you can do or dream you can, begin it. Boldness has genius, power and magic in it.\",\"createTime\":1642391755964,\"dataId\":3644,\"date\":1579363200000,\"id\":1482924622004600834,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/38eee24565b1dbd6a6192468bb392c42.png\",\"note\":\"无论你能做什么,或者梦想能做什么,着手开始吧。大胆就是天赋、能量和魔力的代名词。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/342a1abd423bacb290e74c500af264f3.mp3\"}}', 0, '', '2022-01-17 11:55:55'); INSERT INTO `sys_oper_log` VALUES (2516, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Now if you know what you\'re worth, go and get what you\'re worth.\",\"dataId\":3928,\"date\":1603728000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/385772ea4c82392aa56f59a1b9e8a492.png\",\"note\":\"如果你知道你的价值,你就前进实现你的价值。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/ae6e31395e52f3144d30ddbc093dbcd6.mp3\"}}', 0, '', '2022-01-17 12:00:42'); INSERT INTO `sys_oper_log` VALUES (2517, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You need to believe that something extraordinary is possible. \",\"createTime\":1642394323292,\"dataId\":3721,\"date\":1585843200000,\"id\":1482935390175477762,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9ca66a3e74f5fc8c5603df154aa053ae.png\",\"note\":\"你要去相信,生命中有些特别的东西,是可能存在的。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/ebcd2df6f2c9fe64e4ab1714fb220c83.mp3\"}}', 0, '', '2022-01-17 12:38:43'); INSERT INTO `sys_oper_log` VALUES (2518, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Instead of wondering when your next vacation is, maybe you should set up a life you don\'t need to escape from.\",\"createTime\":1642394333995,\"dataId\":4945,\"date\":1597334400000,\"id\":1482935435062919170,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/fad58824d54e836d2d8ecce1e25877f5.f07d9a16162a766db1cec9fa68f44272.jpeg\",\"note\":\"与其期盼下一次假期,不如创造一种不需要逃离的生活。\",\"source\":\"Seth Godin\",\"tts\":\"\"}}', 0, '', '2022-01-17 12:38:54'); INSERT INTO `sys_oper_log` VALUES (2519, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Imperfection is beauty, madness is genius and it\'s better to be absolutely ridiculous than absolutely boring.\",\"createTime\":1642394351211,\"dataId\":3667,\"date\":1582473600000,\"id\":1482935507297222658,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/4b7ce8bb6563d4608b41871901f993a7.png\",\"note\":\"不完美是一种美,疯狂是一种天分,不靠谱总好过无聊至极。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b1370f7a220883871265b25dc413b7fb.mp3\"}}', 0, '', '2022-01-17 12:39:11'); INSERT INTO `sys_oper_log` VALUES (2520, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The more you like yourself, the less you are like anyone else, which makes you unique. \",\"dataId\":3674,\"date\":1582214400000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/989161761a0eb45a1fe106acd46bbed5.png\",\"note\":\"你越喜欢你自己,你就越不像其他人,而这会使你变得独特。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/c217dc31ed32ffb5757b11a485d554ab.mp3\"}}', 0, '', '2022-01-17 12:41:17'); INSERT INTO `sys_oper_log` VALUES (2521, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们的事业就是学习再学习,努力积累更多的知识,因为有了知识,社会就会有长足的进步,人类的未来幸福就在于此。\",\"createTime\":1642394495085,\"id\":1482936110765293569,\"source\":\"契诃夫\",\"type\":4}}', 0, '', '2022-01-17 12:41:35'); INSERT INTO `sys_oper_log` VALUES (2522, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-17 13:34:31'); INSERT INTO `sys_oper_log` VALUES (2523, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Do the thing that makes you happy. Life is about feeding your soul.\",\"createTime\":1642397683187,\"dataId\":3890,\"date\":1600444800000,\"id\":1482949482625875970,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/2ff85c779e548f4d286b5f0a60b5feab.png\",\"note\":\"去做能让你开心的事,人生最重要的是满足自己。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/ab16d2d95a54dabfc49184f099070cc8.mp3\"}}', 0, '', '2022-01-17 13:34:43'); INSERT INTO `sys_oper_log` VALUES (2524, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Positive thinking will let you do everything better than negative thinking will.\",\"dataId\":3784,\"date\":1591286400000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/53fc2baa3f5acb6766c7d046fb5d6f33.png\",\"note\":\"比起悲观,乐观会让你把每一件事都做得更好。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/83578231e1444acfeba4057fc60722b4.mp3\"}}', 0, '', '2022-01-17 13:46:54'); INSERT INTO `sys_oper_log` VALUES (2525, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":4}', 0, '', '2022-01-17 13:49:14'); INSERT INTO `sys_oper_log` VALUES (2526, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"举白旗投降并不代表你胆小。\",\"createTime\":1642398592956,\"id\":1482953298435883009,\"source\":\"斗阵俱乐部(搏击俱乐部)Fight Club\",\"type\":3}}', 0, '', '2022-01-17 13:49:52'); INSERT INTO `sys_oper_log` VALUES (2527, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"People of accomplishment rarely sat back and let things happen to them. They went out and happened to things.\",\"createTime\":1642398622257,\"dataId\":3577,\"date\":1573660800000,\"id\":1482953421379321857,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-14.jpg\",\"note\":\"有成就的人显少等着让事情在他们身上发生,他们出门造就事情的发生。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-14-day.mp3\"}}', 0, '', '2022-01-17 13:50:22'); INSERT INTO `sys_oper_log` VALUES (2528, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Confidence is contagious. So is a lack of confidence.\",\"dataId\":3588,\"date\":1574611200000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-25.jpg\",\"note\":\"自信是会传染的,缺乏自信也是。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-25-day.mp3\"}}', 0, '', '2022-01-17 13:50:42'); INSERT INTO `sys_oper_log` VALUES (2529, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If I were dead and buried and I heard your voice, beneath the sod my heart of dust would still rejoice.\",\"dataId\":3754,\"date\":1588694400000,\"imgurl\":\"https://v-sq.ks3-cn-beijing.ksyun.com/image/563f7b7909e7dd57813391db7542f00c.png\",\"note\":\"我死后还会听见你的声音,我在墓中的灵魂依旧欢欣。\",\"source\":\"新版每日一句\",\"tts\":\"https://v-sq.ks3-cn-beijing.ksyun.com/audio/0a7be78d0f5641394802c26c8136f340.mp3\"}}', 0, '', '2022-01-17 13:50:43'); INSERT INTO `sys_oper_log` VALUES (2530, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I feel I stand in a desert with my hands outstretched, and you are raining down upon me.\",\"createTime\":1642398644143,\"dataId\":4134,\"date\":1621526400000,\"id\":1482953513171664898,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a3c5bd52cdd96bbca11255b028bfe0b0.png\",\"note\":\"我感觉自己张开双手站在一片沙漠中,你如雨水般降临在我身上。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/349d814dccb823f3263a8be842b6ac71.mp3\"}}', 0, '', '2022-01-17 13:50:44'); INSERT INTO `sys_oper_log` VALUES (2531, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Go back to England, and tell them there, that Scotland\'s daughters and sons are yours no more. Tell them Scotland is free.\",\"createTime\":1642398657763,\"dataId\":3417,\"date\":1560096000000,\"id\":1482953570268725250,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-10.jpg\",\"note\":\"回去告诉整个英格兰,苏格兰儿女不再是他们的臣民,告诉他们苏格兰是自由的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-10-day.mp3\"}}', 0, '', '2022-01-17 13:50:57'); INSERT INTO `sys_oper_log` VALUES (2532, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Histories make men wise; poems witty; the mathematics subtle; natural philosophy deep; moral grave; logic and rhetoric able to contend.\",\"createTime\":1642398771766,\"dataId\":3495,\"date\":1566662400000,\"id\":1482954048465518593,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-25.jpg\",\"note\":\"历史使人明智;诗词使人灵秀;数学使人周密;自然哲学使人深刻;伦理使人庄重;逻辑修辞学使人善辨。 \",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-25-day.mp3\"}}', 0, '', '2022-01-17 13:52:51'); INSERT INTO `sys_oper_log` VALUES (2533, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Summer has filled her veins with light and her heart is washed with noon.\",\"createTime\":1642398779504,\"dataId\":4118,\"date\":1620144000000,\"id\":1482954080874905601,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/31a0fbf62d1cb529ac4754b79987a63b.png\",\"note\":\"夏日使她血管里充满光,她温暖的心受午间洗沐。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/71226d396ac35b9f03c1a18625f404b1.mp3\"}}', 0, '', '2022-01-17 13:52:59'); INSERT INTO `sys_oper_log` VALUES (2534, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Those who have knocked me down, thank you! It\'s so comfortable to lie down.\",\"createTime\":1642398810181,\"dataId\":4278,\"date\":1633968000000,\"id\":1482954209543569409,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/1bb699aa4d1d23206b9ec70987f4a230.png\",\"note\":\"那些曾经把我击倒的人,谢谢你们!躺平真舒服。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/85d4926faf885ba13f33975b279e7be0.mp3\"}}', 0, '', '2022-01-17 13:53:30'); INSERT INTO `sys_oper_log` VALUES (2535, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Any woman who understands the problems of running a home will be nearer to understanding the problems of running a country.\",\"createTime\":1642398812904,\"dataId\":3695,\"date\":1583596800000,\"id\":1482954220989825026,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/b7a8003ccb64bda3570bff825f5027f7.png\",\"note\":\"了解持家难处的女性,较易明白治国之难处。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/497395050b13463819f2032527667d09.mp3\"}}', 0, '', '2022-01-17 13:53:32'); INSERT INTO `sys_oper_log` VALUES (2536, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Go back to England, and tell them there, that Scotland\'s daughters and sons are yours no more. Tell them Scotland is free.\",\"dataId\":3417,\"date\":1560096000000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-10.jpg\",\"note\":\"回去告诉整个英格兰,苏格兰儿女不再是他们的臣民,告诉他们苏格兰是自由的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-10-day.mp3\"}}', 0, '', '2022-01-17 13:54:05'); INSERT INTO `sys_oper_log` VALUES (2537, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"This path has been placed before you. The choice is yours alone.\",\"createTime\":1642399577594,\"dataId\":3615,\"date\":1576857600000,\"id\":1482957428319567874,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-21.jpg\",\"note\":\"路就在你脚下,你自己决定。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b99a7f85c8e01de07d6cb559f03351fc.mp3\"}}', 0, '', '2022-01-17 14:06:17'); INSERT INTO `sys_oper_log` VALUES (2538, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The tragedy of life is not so much what men suffer, but what they miss.\",\"createTime\":1642399620299,\"dataId\":3418,\"date\":1560182400000,\"id\":1482957607470874625,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-11.jpg\",\"note\":\"生活的悲剧不在于人们受多少苦,而在于人们错过了什么。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-11-day.mp3\"}}', 0, '', '2022-01-17 14:07:00'); INSERT INTO `sys_oper_log` VALUES (2539, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1642397640000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:07:13'); INSERT INTO `sys_oper_log` VALUES (2540, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1642397640000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:07:14'); INSERT INTO `sys_oper_log` VALUES (2541, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The most exhausting thing in life is being insincere.\",\"createTime\":1642399634949,\"dataId\":4303,\"date\":1636128000000,\"id\":1482957668909039618,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/8337f86bd17720eb48c75162f2263679.png\",\"note\":\"生活中最使人筋疲力尽的事是弄虚作假。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2863e7a077064a06516756d49115ae86.mp3\"}}', 0, '', '2022-01-17 14:07:14'); INSERT INTO `sys_oper_log` VALUES (2542, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1642397640000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:15:44'); INSERT INTO `sys_oper_log` VALUES (2543, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"He who has a why to live can bear almost any how.\",\"createTime\":1642400145200,\"dataId\":3952,\"date\":1605801600000,\"id\":1482959809019101186,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/379cf20bda8c0d0000624f812df29076.png\",\"note\":\"一个人知道自己为什么而活,就可以忍受任何一种生活。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/3dd21f467afd5333a7b108b9123128d3.mp3\"}}', 0, '', '2022-01-17 14:15:45'); INSERT INTO `sys_oper_log` VALUES (2544, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:17:18'); INSERT INTO `sys_oper_log` VALUES (2545, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"As a body everyone is single, as a soul never.\",\"dataId\":3964,\"date\":1606838400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4e66ba0ca31b47d8914690081640fab4.png\",\"note\":\"每个人的身体都是独立的,但灵魂从来不是。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6a5e7acf715b8a0c7ecd80953cf8321f.mp3\"}}', 0, '', '2022-01-17 14:17:19'); INSERT INTO `sys_oper_log` VALUES (2546, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:21:15'); INSERT INTO `sys_oper_log` VALUES (2547, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Perfection is not just about control. It\'s also about letting go.\",\"createTime\":1642400475715,\"dataId\":4225,\"date\":1629388800000,\"id\":1482961195341430785,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a06a7791a6f3174740e657d7aa656b6b.png\",\"note\":\"完美不是控制出来的,是爆发出来的。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/8234c89da784821a709d3950a9ccc8bb.mp3\"}}', 0, '', '2022-01-17 14:21:15'); INSERT INTO `sys_oper_log` VALUES (2548, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:21:16'); INSERT INTO `sys_oper_log` VALUES (2549, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you can love your enemy, you already have the victory.\",\"createTime\":1642400477046,\"dataId\":3921,\"date\":1603123200000,\"id\":1482961200911466497,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/2d0d7cfeb7fe4fce491b154d67cb9f99.png\",\"note\":\"若你能爱你的敌人,那你已经取得了胜利。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/7753e95e1c9106880d75177c274f3dba.mp3\"}}', 0, '', '2022-01-17 14:21:17'); INSERT INTO `sys_oper_log` VALUES (2550, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:21:23'); INSERT INTO `sys_oper_log` VALUES (2551, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The only impossible journey is the one you never begin.\",\"createTime\":1642400484449,\"dataId\":4071,\"date\":1616083200000,\"id\":1482961231949316098,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a646a56dc6a96facf3463f5520903601.png\",\"note\":\"唯一不可能的行程,是你从未启程的那个。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/5b42a4323487f3428a673eb86a5e9277.mp3\"}}', 0, '', '2022-01-17 14:21:24'); INSERT INTO `sys_oper_log` VALUES (2552, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:21:52'); INSERT INTO `sys_oper_log` VALUES (2553, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you only do what you can do you’ll never be more than you are now.\",\"createTime\":1642400512240,\"dataId\":3820,\"date\":1594396800000,\"id\":1482961348525801473,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/e953b8ec8843f605f113ebd12039738c.png\",\"note\":\"如果你只做你力所能及的事,你就没法进步。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/3c5177458f7b354f307428053e4ef525.mp3\"}}', 0, '', '2022-01-17 14:21:52'); INSERT INTO `sys_oper_log` VALUES (2554, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:21:58'); INSERT INTO `sys_oper_log` VALUES (2555, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The decline of literature indicates the decline of a nation; the two keep in their downward tendency.\",\"createTime\":1642400520054,\"dataId\":3497,\"date\":1566835200000,\"id\":1482961381279121409,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-27.jpg\",\"note\":\"文学的衰落表明一个民族的衰落。这两者走下坡路的时间是齐头并进的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-27-day.mp3\"}}', 0, '', '2022-01-17 14:22:00'); INSERT INTO `sys_oper_log` VALUES (2556, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:22:52'); INSERT INTO `sys_oper_log` VALUES (2557, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It’s not so much how busy you are, but why you are busy.\",\"dataId\":4042,\"date\":1613577600000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d5361b2222572971e64ae760bbe648c0.png\",\"note\":\"重要的不是你有多忙,而是你为何而忙。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/f76c2a807c75646833857ec85415741f.mp3\"}}', 0, '', '2022-01-17 14:22:53'); INSERT INTO `sys_oper_log` VALUES (2558, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:23:07'); INSERT INTO `sys_oper_log` VALUES (2559, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Out of sight, out of mind.\",\"createTime\":1642400588322,\"dataId\":4332,\"date\":1638633600000,\"id\":1482961667632644098,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/2b5c272f4d904591aeaa0d1b5042ac05.png\",\"note\":\"眼不见,心不烦。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/3370894a17b88d74dfb1ab234c75dc6d.mp3\"}}', 0, '', '2022-01-17 14:23:08'); INSERT INTO `sys_oper_log` VALUES (2560, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:23:40'); INSERT INTO `sys_oper_log` VALUES (2561, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:23:51'); INSERT INTO `sys_oper_log` VALUES (2562, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I have always regarded myself as the pillar of my life.\",\"createTime\":1642400631978,\"dataId\":4941,\"date\":1597161600000,\"id\":1482961850701430785,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/0efd889c1ae6a14a6391ce35077c4291.ad43c48ab968bb078ec96921175f03d7.jpeg\",\"note\":\"我一直认为,我才是我人生的中流砥柱。\",\"source\":\"梅丽尔·斯特里普\",\"tts\":\"\"}}', 0, '', '2022-01-17 14:23:51'); INSERT INTO `sys_oper_log` VALUES (2563, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:25:05'); INSERT INTO `sys_oper_log` VALUES (2564, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Keep what you say and carry out what you do.\",\"createTime\":1642400705754,\"dataId\":4264,\"date\":1632758400000,\"id\":1482962160148791297,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/cdc270a8b53a7e7a8b2db2bea51d938a.png\",\"note\":\"言必行,行必果。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0c9b12a6bf6d3558436f69f584bf2c36.mp3\"}}', 0, '', '2022-01-17 14:25:05'); INSERT INTO `sys_oper_log` VALUES (2565, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:25:18'); INSERT INTO `sys_oper_log` VALUES (2566, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You are so much more than how you look.\",\"createTime\":1642400719555,\"dataId\":4331,\"date\":1638547200000,\"id\":1482962218055352321,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/b1c13b5bb7cf16e43fb5dd1c29a2604d.png\",\"note\":\"你比你的外表更有魅力。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/482be207974569f3653caa83710c6c9a.mp3\"}}', 0, '', '2022-01-17 14:25:19'); INSERT INTO `sys_oper_log` VALUES (2567, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:27:06'); INSERT INTO `sys_oper_log` VALUES (2568, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642400238771,\"humidity\":\"91\",\"id\":1482960201501097985,\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:27:08'); INSERT INTO `sys_oper_log` VALUES (2569, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The key to immortality is first living a life worth remembering.\",\"dataId\":3959,\"date\":1606406400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/b2e696e0161b098597a49c32bd77bb53.png\",\"note\":\"若想死后永垂不朽,首先得活得精彩。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/9a54e5884b6bb6bd712b8f5b9a718bfb.mp3\"}}', 0, '', '2022-01-17 14:27:10'); INSERT INTO `sys_oper_log` VALUES (2570, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:29:40'); INSERT INTO `sys_oper_log` VALUES (2571, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you are not in good control of time or cannot set priorities for different matters, what you do is surely to be rebated.\",\"createTime\":1642400980169,\"dataId\":3444,\"date\":1562428800000,\"id\":1482963311179055105,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-07.jpg\",\"note\":\"无法充分掌握时间、区别事情的缓急先后,你所做的一切都大打折扣\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-07-day.mp3\"}}', 0, '', '2022-01-17 14:29:40'); INSERT INTO `sys_oper_log` VALUES (2572, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:29:50'); INSERT INTO `sys_oper_log` VALUES (2573, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"He who does not punish evil commands it to be done.\",\"createTime\":1642400991951,\"dataId\":3755,\"date\":1588780800000,\"id\":1482963360575373313,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/d1c2cb3cdd77329bb13d5305b29954e8.png\",\"note\":\"不惩罪恶,无异于鼓动他人作恶。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/b48ad9c6bd596223adf483619925537a.mp3\"}}', 0, '', '2022-01-17 14:29:51'); INSERT INTO `sys_oper_log` VALUES (2574, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:29:55'); INSERT INTO `sys_oper_log` VALUES (2575, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I am not afraid of storms,for I am learning how to sail my ship.\",\"createTime\":1642400995289,\"dataId\":4163,\"date\":1624118400000,\"id\":1482963374538211329,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d69c7f37cda56a8187a17c18e2fad88f.png\",\"note\":\"我不害怕风暴, 因为我正在学习如何乘风破浪。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cee08205350a732b4842e4a0ce5fb02c.mp3\"}}', 0, '', '2022-01-17 14:29:55'); INSERT INTO `sys_oper_log` VALUES (2576, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:30:32'); INSERT INTO `sys_oper_log` VALUES (2577, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I feel I stand in a desert with my hands outstretched, and you are raining down upon me.\",\"dataId\":4134,\"date\":1621526400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a3c5bd52cdd96bbca11255b028bfe0b0.png\",\"note\":\"我感觉自己张开双手站在一片沙漠中,你如雨水般降临在我身上。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/349d814dccb823f3263a8be842b6ac71.mp3\"}}', 0, '', '2022-01-17 14:30:33'); INSERT INTO `sys_oper_log` VALUES (2578, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:31:03'); INSERT INTO `sys_oper_log` VALUES (2579, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"That is the essence of science: ask an impertinent question, and you are on the way to the pertinent answer.\",\"createTime\":1642401063806,\"dataId\":3547,\"date\":1571155200000,\"id\":1482963661923532801,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-16.jpg\",\"note\":\"科学的本质是:问一个不恰当的问题,于是走上了通往恰当答案的路。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-16-day.mp3\"}}', 0, '', '2022-01-17 14:31:03'); INSERT INTO `sys_oper_log` VALUES (2580, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:31:36'); INSERT INTO `sys_oper_log` VALUES (2581, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Time is a great teacher, but unfortunately it kills all its pupils. \",\"createTime\":1642401097801,\"dataId\":4124,\"date\":1620662400000,\"id\":1482963804500508673,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/5f9cca12359ee38e12de09bbfa1947e2.png\",\"note\":\"时间是位伟大的导师,但不幸的是它消蚀每一个学生的生命。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0385d89414002a795cd5583da9356a7c.mp3\"}}', 0, '', '2022-01-17 14:31:37'); INSERT INTO `sys_oper_log` VALUES (2582, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:31:59'); INSERT INTO `sys_oper_log` VALUES (2583, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We have always defined ourselves by the ability to overcome the impossible.\",\"createTime\":1642401120290,\"dataId\":4371,\"date\":1642003200000,\"id\":1482963898893320194,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/b87a89cfc316e08e40975659f18ece09.png\",\"note\":\"我们总坚信自己有能力去完成不可能的事。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0b8053701ad3a73d6bb3922fb7bc272a.mp3\"}}', 0, '', '2022-01-17 14:32:00'); INSERT INTO `sys_oper_log` VALUES (2584, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:32:10'); INSERT INTO `sys_oper_log` VALUES (2585, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The failures and reverses which await men-and one after another sadden the brow of youth-add a dignity to the prospect of human life, which no Arcadian success would do.\",\"createTime\":1642401131199,\"dataId\":3460,\"date\":1563638400000,\"id\":1482963944636399617,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-21.jpg\",\"note\":\"尽管失败和挫折等待着人们,一次次地夺走青春的容颜,但却给人生的前景增添了一份尊严,这是任何顺利的成功都不能做到的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-21-day.mp3\"}}', 0, '', '2022-01-17 14:32:11'); INSERT INTO `sys_oper_log` VALUES (2586, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:32:17'); INSERT INTO `sys_oper_log` VALUES (2587, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Opportunities are like sunrises. If you wait too long, you miss them. \",\"createTime\":1642401138669,\"dataId\":3873,\"date\":1598976000000,\"id\":1482963975951073282,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/4afe51ce08f171aaa723cc31b20ce3eb.png\",\"note\":\"机遇就像晨光,稍纵即逝。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b41e6018bcb83c257d9574ad65420bf4.mp3\"}}', 0, '', '2022-01-17 14:32:18'); INSERT INTO `sys_oper_log` VALUES (2588, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:33:16'); INSERT INTO `sys_oper_log` VALUES (2589, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:33:32'); INSERT INTO `sys_oper_log` VALUES (2590, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Remember, you\'re the one who can fill the world with sunshine.\",\"createTime\":1642401213371,\"dataId\":3930,\"date\":1603900800000,\"id\":1482964289240416257,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/9c846447f19016b5f2551fab408927a9.png\",\"note\":\"请记住,你是能让世界洒满阳光的人。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/4c6f03e4dcd28479105c70d8c5c04dee.mp3\"}}', 0, '', '2022-01-17 14:33:33'); INSERT INTO `sys_oper_log` VALUES (2591, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:33:38'); INSERT INTO `sys_oper_log` VALUES (2592, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Since 1921, the Communist party of China has gone through a glorious history of 100 years.\",\"dataId\":4175,\"date\":1625068800000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/87102a1d5d405351096582eae5569ae9.png\",\"note\":\"自1921年以来,中国共产党已走过了一百年的辉煌历程。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/dd0546dee57967655fef1bf980388992.mp3\"}}', 0, '', '2022-01-17 14:33:38'); INSERT INTO `sys_oper_log` VALUES (2593, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:34:10'); INSERT INTO `sys_oper_log` VALUES (2594, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"This is the \\\"oasis\\\" world, where the only limit is your own imagination.\",\"createTime\":1642401252139,\"dataId\":3912,\"date\":1602345600000,\"id\":1482964451870359553,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/066593e98210bf19039e1b24854ad227.png\",\"note\":\"这是“绿洲”世界,在这里唯一限制你的是你自己的想象力。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/ae9b5f9474cb8700c0cef61cb9bb2094.mp3\"}}', 0, '', '2022-01-17 14:34:12'); INSERT INTO `sys_oper_log` VALUES (2595, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:34:29'); INSERT INTO `sys_oper_log` VALUES (2596, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Hope is a good thing and maybe the best of things. And no good thing ever dies.\",\"createTime\":1642401270903,\"dataId\":3592,\"date\":1574956800000,\"id\":1482964530593251329,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-29.jpg\",\"note\":\"希望是美好的,也许是人间至善,而美好的事物永不消逝。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/442927dc7ec88d5f23eaee1f490098fc.mp3\"}}', 0, '', '2022-01-17 14:34:30'); INSERT INTO `sys_oper_log` VALUES (2597, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:34:34'); INSERT INTO `sys_oper_log` VALUES (2598, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sometimes a little discomfort in the beginning can save a whole lot of pain down the road.\",\"createTime\":1642401275309,\"dataId\":3807,\"date\":1593273600000,\"id\":1482964549077549058,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/8a20a4c29e196544dcdc49c84e8e6a5e.png\",\"note\":\"有时起初的隐忍可以避免一路的疼痛。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/65171924e841cf6b6b331efd22cd927f.mp3\"}}', 0, '', '2022-01-17 14:34:35'); INSERT INTO `sys_oper_log` VALUES (2599, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:34:45'); INSERT INTO `sys_oper_log` VALUES (2600, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I do not live in the world alone, but in a thousand worlds.\",\"createTime\":1642401286815,\"dataId\":3796,\"date\":1592323200000,\"id\":1482964597328822274,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/8294874ce9b5170b75c1a6c5a6866821.png\",\"note\":\"我不是独自生活在这世界上,而是生活在千百个世界之中。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b6dc01d1a18bdfd2ede01f90d446aeb9.mp3\"}}', 0, '', '2022-01-17 14:34:46'); INSERT INTO `sys_oper_log` VALUES (2601, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:34:50'); INSERT INTO `sys_oper_log` VALUES (2602, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Maybe life has no meaning, and the best we can hope for is just being nice.\",\"createTime\":1642401290506,\"dataId\":3831,\"date\":1595347200000,\"id\":1482964612822581250,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/dd53655f27bd46653597c5afb2a96e79.png\",\"note\":\"可能生活本来就没什么意义,我们能做到最好的就是友善对待身边的一切。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/e474451fa937d7c0c24215c759a1e7fa.mp3\"}}', 0, '', '2022-01-17 14:34:50'); INSERT INTO `sys_oper_log` VALUES (2603, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:36:59'); INSERT INTO `sys_oper_log` VALUES (2604, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Content and riches seldom meet together. Riches take thou, contentment I had rather.\",\"createTime\":1642401419280,\"dataId\":3517,\"date\":1568908800000,\"id\":1482965152893747202,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-09-20.jpg\",\"note\":\"财富与满足很少能同时拥有。拿走财富吧,我宁愿只要满足。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-09-20-day.mp3\"}}', 0, '', '2022-01-17 14:36:59'); INSERT INTO `sys_oper_log` VALUES (2605, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482965152893648898', '127.0.0.1', '', '1482965152893648898', '{\"code\":200}', 0, '', '2022-01-17 14:37:08'); INSERT INTO `sys_oper_log` VALUES (2606, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:37:12'); INSERT INTO `sys_oper_log` VALUES (2607, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you don\'t walk out, you will think that this is the whole world.\",\"createTime\":1642401433908,\"dataId\":3704,\"date\":1584374400000,\"id\":1482965214243831809,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/620434360c6ca579b912c14ecdc4a10a.png\",\"note\":\"如果你不出去走走,你就会以为这就是全世界。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/bf24f87ed89380a94e11887d591c4326.mp3\"}}', 0, '', '2022-01-17 14:37:13'); INSERT INTO `sys_oper_log` VALUES (2608, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482965214243733505', '127.0.0.1', '', '1482965214243733505', '{\"code\":200}', 0, '', '2022-01-17 14:37:15'); INSERT INTO `sys_oper_log` VALUES (2609, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这歌让我有种嫦娥在蹦迪的错觉\",\"createTime\":1642401530735,\"id\":1482965620357316610,\"source\":\"广寒宫\",\"type\":2}}', 0, '', '2022-01-17 14:38:50'); INSERT INTO `sys_oper_log` VALUES (2610, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642401534598,\"en\":\"Write it on your heart that every day is the best of the year.\",\"id\":1482965636597661697,\"zh\":\"把这铭记在你心里:每一天都是一年中最好的日子.\"}}', 0, '', '2022-01-17 14:38:54'); INSERT INTO `sys_oper_log` VALUES (2611, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1642399716000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:39:18'); INSERT INTO `sys_oper_log` VALUES (2612, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642401673776,\"humidity\":\"89\",\"id\":1482966220377669633,\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:41:13'); INSERT INTO `sys_oper_log` VALUES (2613, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:41:17'); INSERT INTO `sys_oper_log` VALUES (2614, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:41:27'); INSERT INTO `sys_oper_log` VALUES (2615, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:42:13'); INSERT INTO `sys_oper_log` VALUES (2616, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:42:58'); INSERT INTO `sys_oper_log` VALUES (2617, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642401785958,\"en\":\"Don\'t expect anything original form an echo.\",\"id\":1482966690856943618,\"zh\":\"不要期望从回声中找到独创的东西.\"}}', 0, '', '2022-01-17 14:43:05'); INSERT INTO `sys_oper_log` VALUES (2618, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:43:29'); INSERT INTO `sys_oper_log` VALUES (2619, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"现已加入洗脑好歌曲豪华午餐\",\"createTime\":1642401863520,\"id\":1482967016158773250,\"source\":\"Outside\",\"type\":2}}', 0, '', '2022-01-17 14:44:23'); INSERT INTO `sys_oper_log` VALUES (2620, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Only those that risk going too far can possibly know how far they can go.\",\"createTime\":1642401880841,\"dataId\":4052,\"date\":1614441600000,\"id\":1482967088816701441,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/90b10703acbac934c3645416ef3811fd.png\",\"note\":\"只有勇于承担风险,敢于走出去的人,才会明白他们到底能走多远。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f9e6c47875232135902bf8be33238ad6.mp3\"}}', 0, '', '2022-01-17 14:44:40'); INSERT INTO `sys_oper_log` VALUES (2621, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482967088816603138', '127.0.0.1', '', '1482967088816603138', '{\"code\":200}', 0, '', '2022-01-17 14:44:44'); INSERT INTO `sys_oper_log` VALUES (2622, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:46:33'); INSERT INTO `sys_oper_log` VALUES (2623, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Spring is when you feel like whistling even with a shoe full of slush.\\u000B\",\"dataId\":4103,\"date\":1618848000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/681f6be34e4ca4d8604a3ba86963325e.png\",\"note\":\"所谓春天,就是即使鞋子灌满泥巴,仍然想吹起口哨。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/394d4c0ed5713382909c23a0f61b8fdf.mp3\"}}', 0, '', '2022-01-17 14:46:33'); INSERT INTO `sys_oper_log` VALUES (2624, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:46:46'); INSERT INTO `sys_oper_log` VALUES (2625, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:47:44'); INSERT INTO `sys_oper_log` VALUES (2626, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You must have long-range goals to keep you from being frustrated by short-term failures.\",\"createTime\":1642402064680,\"dataId\":4079,\"date\":1616774400000,\"id\":1482967859889160194,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/efc0dfdaaccd096d35829da97aa3c362.png\",\"note\":\"你必须要有远期目标,以让你在短期失败时不致感到受挫。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/3a9b2e7f23dcfe5d5905ea81327c9489.mp3\"}}', 0, '', '2022-01-17 14:47:44'); INSERT INTO `sys_oper_log` VALUES (2627, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:48:49'); INSERT INTO `sys_oper_log` VALUES (2628, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:50:50'); INSERT INTO `sys_oper_log` VALUES (2629, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:50:52'); INSERT INTO `sys_oper_log` VALUES (2630, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I had always heard your entire life flashes in front of your eyes the second before you die. First of all, that one second isn’t a second at all, it stretches on forever, like an ocean of time.\",\"createTime\":1642402252488,\"dataId\":3422,\"date\":1560528000000,\"id\":1482968647638171649,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-15.jpg\",\"note\":\"听说人在死前的一秒钟,其一生会闪过眼前。其实不是一秒,而是无尽的时间,时间海洋。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-15-day.mp3\"}}', 0, '', '2022-01-17 14:50:52'); INSERT INTO `sys_oper_log` VALUES (2631, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:50:55'); INSERT INTO `sys_oper_log` VALUES (2632, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:51:34'); INSERT INTO `sys_oper_log` VALUES (2633, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There is always conceit and negligence behind miscount.\",\"createTime\":1642402295352,\"dataId\":3909,\"date\":1602086400000,\"id\":1482968827443789825,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/f8e424ac8695fdac8a2ede3bfe18ca55.png\",\"note\":\"在不幸的背后,总是有着奢侈与怠慢。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6b0b5e3f49582b6f28e4c3901631b06d.mp3\"}}', 0, '', '2022-01-17 14:51:35'); INSERT INTO `sys_oper_log` VALUES (2634, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:52:04'); INSERT INTO `sys_oper_log` VALUES (2635, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:52:26'); INSERT INTO `sys_oper_log` VALUES (2636, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:54:04'); INSERT INTO `sys_oper_log` VALUES (2637, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:54:04'); INSERT INTO `sys_oper_log` VALUES (2638, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:55:02'); INSERT INTO `sys_oper_log` VALUES (2639, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:16'); INSERT INTO `sys_oper_log` VALUES (2640, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:17'); INSERT INTO `sys_oper_log` VALUES (2641, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:18'); INSERT INTO `sys_oper_log` VALUES (2642, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:18'); INSERT INTO `sys_oper_log` VALUES (2643, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:19'); INSERT INTO `sys_oper_log` VALUES (2644, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:20'); INSERT INTO `sys_oper_log` VALUES (2645, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:40'); INSERT INTO `sys_oper_log` VALUES (2646, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:40'); INSERT INTO `sys_oper_log` VALUES (2647, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:41'); INSERT INTO `sys_oper_log` VALUES (2648, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:42'); INSERT INTO `sys_oper_log` VALUES (2649, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:42'); INSERT INTO `sys_oper_log` VALUES (2650, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:43'); INSERT INTO `sys_oper_log` VALUES (2651, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:44'); INSERT INTO `sys_oper_log` VALUES (2652, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:55:46'); INSERT INTO `sys_oper_log` VALUES (2653, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:55:59'); INSERT INTO `sys_oper_log` VALUES (2654, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:00'); INSERT INTO `sys_oper_log` VALUES (2655, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:00'); INSERT INTO `sys_oper_log` VALUES (2656, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:01'); INSERT INTO `sys_oper_log` VALUES (2657, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:01'); INSERT INTO `sys_oper_log` VALUES (2658, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:01'); INSERT INTO `sys_oper_log` VALUES (2659, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:02'); INSERT INTO `sys_oper_log` VALUES (2660, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:02'); INSERT INTO `sys_oper_log` VALUES (2661, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:02'); INSERT INTO `sys_oper_log` VALUES (2662, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:05'); INSERT INTO `sys_oper_log` VALUES (2663, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:05'); INSERT INTO `sys_oper_log` VALUES (2664, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:14'); INSERT INTO `sys_oper_log` VALUES (2665, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:56:15'); INSERT INTO `sys_oper_log` VALUES (2666, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:15'); INSERT INTO `sys_oper_log` VALUES (2667, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:17'); INSERT INTO `sys_oper_log` VALUES (2668, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:56:23'); INSERT INTO `sys_oper_log` VALUES (2669, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:57:05'); INSERT INTO `sys_oper_log` VALUES (2670, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:07'); INSERT INTO `sys_oper_log` VALUES (2671, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:08'); INSERT INTO `sys_oper_log` VALUES (2672, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:08'); INSERT INTO `sys_oper_log` VALUES (2673, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:09'); INSERT INTO `sys_oper_log` VALUES (2674, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:10'); INSERT INTO `sys_oper_log` VALUES (2675, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:11'); INSERT INTO `sys_oper_log` VALUES (2676, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:14'); INSERT INTO `sys_oper_log` VALUES (2677, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:15'); INSERT INTO `sys_oper_log` VALUES (2678, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:17'); INSERT INTO `sys_oper_log` VALUES (2679, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:18'); INSERT INTO `sys_oper_log` VALUES (2680, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:19'); INSERT INTO `sys_oper_log` VALUES (2681, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:20'); INSERT INTO `sys_oper_log` VALUES (2682, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:21'); INSERT INTO `sys_oper_log` VALUES (2683, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:21'); INSERT INTO `sys_oper_log` VALUES (2684, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:21'); INSERT INTO `sys_oper_log` VALUES (2685, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:21'); INSERT INTO `sys_oper_log` VALUES (2686, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:21'); INSERT INTO `sys_oper_log` VALUES (2687, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:22'); INSERT INTO `sys_oper_log` VALUES (2688, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:22'); INSERT INTO `sys_oper_log` VALUES (2689, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:57:22'); INSERT INTO `sys_oper_log` VALUES (2690, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:58:18'); INSERT INTO `sys_oper_log` VALUES (2691, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:58:19'); INSERT INTO `sys_oper_log` VALUES (2692, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:58:33'); INSERT INTO `sys_oper_log` VALUES (2693, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:58:34'); INSERT INTO `sys_oper_log` VALUES (2694, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:58:38'); INSERT INTO `sys_oper_log` VALUES (2695, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 14:58:39'); INSERT INTO `sys_oper_log` VALUES (2696, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 14:59:58'); INSERT INTO `sys_oper_log` VALUES (2697, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:00'); INSERT INTO `sys_oper_log` VALUES (2698, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:00'); INSERT INTO `sys_oper_log` VALUES (2699, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:00'); INSERT INTO `sys_oper_log` VALUES (2700, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:01'); INSERT INTO `sys_oper_log` VALUES (2701, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:05'); INSERT INTO `sys_oper_log` VALUES (2702, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:00:06'); INSERT INTO `sys_oper_log` VALUES (2703, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:06'); INSERT INTO `sys_oper_log` VALUES (2704, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:07'); INSERT INTO `sys_oper_log` VALUES (2705, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:08'); INSERT INTO `sys_oper_log` VALUES (2706, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:09'); INSERT INTO `sys_oper_log` VALUES (2707, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:31'); INSERT INTO `sys_oper_log` VALUES (2708, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:00:31'); INSERT INTO `sys_oper_log` VALUES (2709, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:32'); INSERT INTO `sys_oper_log` VALUES (2710, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:32'); INSERT INTO `sys_oper_log` VALUES (2711, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:33'); INSERT INTO `sys_oper_log` VALUES (2712, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:33'); INSERT INTO `sys_oper_log` VALUES (2713, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:35'); INSERT INTO `sys_oper_log` VALUES (2714, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:00:36'); INSERT INTO `sys_oper_log` VALUES (2715, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:13'); INSERT INTO `sys_oper_log` VALUES (2716, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:15'); INSERT INTO `sys_oper_log` VALUES (2717, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:15'); INSERT INTO `sys_oper_log` VALUES (2718, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:16'); INSERT INTO `sys_oper_log` VALUES (2719, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:17'); INSERT INTO `sys_oper_log` VALUES (2720, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:17'); INSERT INTO `sys_oper_log` VALUES (2721, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:24'); INSERT INTO `sys_oper_log` VALUES (2722, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:25'); INSERT INTO `sys_oper_log` VALUES (2723, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:02:25'); INSERT INTO `sys_oper_log` VALUES (2724, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:26'); INSERT INTO `sys_oper_log` VALUES (2725, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:26'); INSERT INTO `sys_oper_log` VALUES (2726, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:28'); INSERT INTO `sys_oper_log` VALUES (2727, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:30'); INSERT INTO `sys_oper_log` VALUES (2728, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:30'); INSERT INTO `sys_oper_log` VALUES (2729, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:32'); INSERT INTO `sys_oper_log` VALUES (2730, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:33'); INSERT INTO `sys_oper_log` VALUES (2731, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:34'); INSERT INTO `sys_oper_log` VALUES (2732, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:02:36'); INSERT INTO `sys_oper_log` VALUES (2733, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:02:59'); INSERT INTO `sys_oper_log` VALUES (2734, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:03:00'); INSERT INTO `sys_oper_log` VALUES (2735, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:03:17'); INSERT INTO `sys_oper_log` VALUES (2736, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:03:17'); INSERT INTO `sys_oper_log` VALUES (2737, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:03:19'); INSERT INTO `sys_oper_log` VALUES (2738, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:03:20'); INSERT INTO `sys_oper_log` VALUES (2739, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:06:17'); INSERT INTO `sys_oper_log` VALUES (2740, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:22'); INSERT INTO `sys_oper_log` VALUES (2741, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:23'); INSERT INTO `sys_oper_log` VALUES (2742, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:24'); INSERT INTO `sys_oper_log` VALUES (2743, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:25'); INSERT INTO `sys_oper_log` VALUES (2744, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:26'); INSERT INTO `sys_oper_log` VALUES (2745, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:28'); INSERT INTO `sys_oper_log` VALUES (2746, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:28'); INSERT INTO `sys_oper_log` VALUES (2747, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:29'); INSERT INTO `sys_oper_log` VALUES (2748, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:30'); INSERT INTO `sys_oper_log` VALUES (2749, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:06:49'); INSERT INTO `sys_oper_log` VALUES (2750, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We are the melodies and the notes of your opus. We are the music of your life.\",\"createTime\":1642403209503,\"dataId\":3881,\"date\":1599667200000,\"id\":1482972661670985729,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/d06b61a2d013bfe8be9079effd7e270e.png\",\"note\":\"我们就是您创作的旋律和音符。我们是您人生的乐章。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/2fe927f9d4b7e55f378f91245efe1f3b.mp3\"}}', 0, '', '2022-01-17 15:06:49'); INSERT INTO `sys_oper_log` VALUES (2751, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:49'); INSERT INTO `sys_oper_log` VALUES (2752, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:51'); INSERT INTO `sys_oper_log` VALUES (2753, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:06:57'); INSERT INTO `sys_oper_log` VALUES (2754, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:06:57'); INSERT INTO `sys_oper_log` VALUES (2755, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"As a kid growing up, I never skipped steps. I always worked on fundamentals because I know athleticism is fleeting.\",\"dataId\":3661,\"date\":1580227200000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/d8a8bba6ef4c30fe1cbd069608d409f1.png\",\"note\":\"成长过程中,我从来没有跳过任何一个步骤,致力于打好基础,因为我知道,运动员生涯短暂。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b3128e516893dbf97e90d683360eb5d9.mp3\"}}', 0, '', '2022-01-17 15:06:58'); INSERT INTO `sys_oper_log` VALUES (2756, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:07:01'); INSERT INTO `sys_oper_log` VALUES (2757, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:08:49'); INSERT INTO `sys_oper_log` VALUES (2758, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:08:51'); INSERT INTO `sys_oper_log` VALUES (2759, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:08:52'); INSERT INTO `sys_oper_log` VALUES (2760, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:08:52'); INSERT INTO `sys_oper_log` VALUES (2761, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:08:52'); INSERT INTO `sys_oper_log` VALUES (2762, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:08:53'); INSERT INTO `sys_oper_log` VALUES (2763, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:08:53'); INSERT INTO `sys_oper_log` VALUES (2764, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:09:09'); INSERT INTO `sys_oper_log` VALUES (2765, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You must never be fearful about what you are doing when it is right.\",\"createTime\":1642403349397,\"dataId\":3580,\"date\":1573920000000,\"id\":1482973248428949506,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-17.jpg\",\"note\":\"做事绝不要感到害怕,如果它是对的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-17-day.mp3\"}}', 0, '', '2022-01-17 15:09:09'); INSERT INTO `sys_oper_log` VALUES (2766, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:09:09'); INSERT INTO `sys_oper_log` VALUES (2767, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:09:10'); INSERT INTO `sys_oper_log` VALUES (2768, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:09:29'); INSERT INTO `sys_oper_log` VALUES (2769, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:09:51'); INSERT INTO `sys_oper_log` VALUES (2770, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:09:54'); INSERT INTO `sys_oper_log` VALUES (2771, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:09:57'); INSERT INTO `sys_oper_log` VALUES (2772, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:10:57'); INSERT INTO `sys_oper_log` VALUES (2773, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:11:05'); INSERT INTO `sys_oper_log` VALUES (2774, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:11:09'); INSERT INTO `sys_oper_log` VALUES (2775, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:11:12'); INSERT INTO `sys_oper_log` VALUES (2776, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Without you, today\'s emotions would be the scurf of yesterday\'s.\",\"createTime\":1642403472710,\"dataId\":3420,\"date\":1560355200000,\"id\":1482973765653741569,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-13.jpg\",\"note\":\"如果没有你,如此的良辰美景让我去向何人诉说?\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-13-day.mp3\"}}', 0, '', '2022-01-17 15:11:12'); INSERT INTO `sys_oper_log` VALUES (2777, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:11:16'); INSERT INTO `sys_oper_log` VALUES (2778, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:11:44'); INSERT INTO `sys_oper_log` VALUES (2779, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:11:44'); INSERT INTO `sys_oper_log` VALUES (2780, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:11:46'); INSERT INTO `sys_oper_log` VALUES (2781, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:11:46'); INSERT INTO `sys_oper_log` VALUES (2782, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:11:59'); INSERT INTO `sys_oper_log` VALUES (2783, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:11:59'); INSERT INTO `sys_oper_log` VALUES (2784, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 14:33:52\"}}', 0, '', '2022-01-17 15:12:05'); INSERT INTO `sys_oper_log` VALUES (2785, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642401232000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:12:16'); INSERT INTO `sys_oper_log` VALUES (2786, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The decline of literature indicates the decline of a nation; the two keep in their downward tendency.\",\"dataId\":3497,\"date\":1566835200000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-27.jpg\",\"note\":\"文学的衰落表明一个民族的衰落。这两者走下坡路的时间是齐头并进的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-27-day.mp3\"}}', 0, '', '2022-01-17 15:12:16'); INSERT INTO `sys_oper_log` VALUES (2787, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:12:30'); INSERT INTO `sys_oper_log` VALUES (2788, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:12:32'); INSERT INTO `sys_oper_log` VALUES (2789, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:12:32'); INSERT INTO `sys_oper_log` VALUES (2790, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642403556254,\"humidity\":\"88\",\"id\":1482974116045897730,\"province\":\"江西\",\"reporttime\":1642403314000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:12:36'); INSERT INTO `sys_oper_log` VALUES (2791, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Being genius is not enough, it takes courage to change people\'s hearts.\",\"createTime\":1642403556273,\"dataId\":3605,\"date\":1575993600000,\"id\":1482974116117200897,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-11.jpg\",\"note\":\"成为天才是不够的,改变人们的想法更需要勇气。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f53974aa5acf5b774c40d392bd15a5eb.mp3\"}}', 0, '', '2022-01-17 15:12:36'); INSERT INTO `sys_oper_log` VALUES (2792, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:12:36'); INSERT INTO `sys_oper_log` VALUES (2793, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:12:38'); INSERT INTO `sys_oper_log` VALUES (2794, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:12:39'); INSERT INTO `sys_oper_log` VALUES (2795, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:12:39'); INSERT INTO `sys_oper_log` VALUES (2796, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:12:41'); INSERT INTO `sys_oper_log` VALUES (2797, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:12:55'); INSERT INTO `sys_oper_log` VALUES (2798, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:12:56'); INSERT INTO `sys_oper_log` VALUES (2799, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:13:22'); INSERT INTO `sys_oper_log` VALUES (2800, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:13:22'); INSERT INTO `sys_oper_log` VALUES (2801, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:13:30'); INSERT INTO `sys_oper_log` VALUES (2802, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642403556254,\"humidity\":\"88\",\"id\":1482974116045897730,\"province\":\"江西\",\"reporttime\":1642403314000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:14:51'); INSERT INTO `sys_oper_log` VALUES (2803, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:15:26'); INSERT INTO `sys_oper_log` VALUES (2804, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642403556254,\"humidity\":\"88\",\"id\":1482974116045897730,\"province\":\"江西\",\"reporttime\":1642403314000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:15:53'); INSERT INTO `sys_oper_log` VALUES (2805, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:15:53'); INSERT INTO `sys_oper_log` VALUES (2806, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:15:59'); INSERT INTO `sys_oper_log` VALUES (2807, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:16:00'); INSERT INTO `sys_oper_log` VALUES (2808, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:16:10'); INSERT INTO `sys_oper_log` VALUES (2809, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:16:13'); INSERT INTO `sys_oper_log` VALUES (2810, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642403556254,\"humidity\":\"88\",\"id\":1482974116045897730,\"province\":\"江西\",\"reporttime\":1642403314000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:16:17'); INSERT INTO `sys_oper_log` VALUES (2811, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sometimes l feel I’m fighting for a life I just ain’t got the time to live. I want it all to mean something.\",\"createTime\":1642403779063,\"dataId\":3826,\"date\":1594915200000,\"id\":1482975050536828930,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/2fa4f52252271bf26a9eaf39c5e2e7ef.png\",\"note\":\"我常常觉得我在为一个没时间享受的人生奋斗,我希望它能有价值。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/173722770719b152cd96414fa14f801f.mp3\"}}', 0, '', '2022-01-17 15:16:19'); INSERT INTO `sys_oper_log` VALUES (2812, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:16:26'); INSERT INTO `sys_oper_log` VALUES (2813, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:16:30'); INSERT INTO `sys_oper_log` VALUES (2814, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:16:32'); INSERT INTO `sys_oper_log` VALUES (2815, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:16:56'); INSERT INTO `sys_oper_log` VALUES (2816, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:18:58'); INSERT INTO `sys_oper_log` VALUES (2817, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:01'); INSERT INTO `sys_oper_log` VALUES (2818, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:02'); INSERT INTO `sys_oper_log` VALUES (2819, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:02'); INSERT INTO `sys_oper_log` VALUES (2820, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:03'); INSERT INTO `sys_oper_log` VALUES (2821, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:03'); INSERT INTO `sys_oper_log` VALUES (2822, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:03'); INSERT INTO `sys_oper_log` VALUES (2823, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:04'); INSERT INTO `sys_oper_log` VALUES (2824, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:04'); INSERT INTO `sys_oper_log` VALUES (2825, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:04'); INSERT INTO `sys_oper_log` VALUES (2826, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:05'); INSERT INTO `sys_oper_log` VALUES (2827, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:05'); INSERT INTO `sys_oper_log` VALUES (2828, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:06'); INSERT INTO `sys_oper_log` VALUES (2829, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:09'); INSERT INTO `sys_oper_log` VALUES (2830, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:12'); INSERT INTO `sys_oper_log` VALUES (2831, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:14'); INSERT INTO `sys_oper_log` VALUES (2832, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:14'); INSERT INTO `sys_oper_log` VALUES (2833, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:17'); INSERT INTO `sys_oper_log` VALUES (2834, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:18'); INSERT INTO `sys_oper_log` VALUES (2835, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:20'); INSERT INTO `sys_oper_log` VALUES (2836, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:25'); INSERT INTO `sys_oper_log` VALUES (2837, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:26'); INSERT INTO `sys_oper_log` VALUES (2838, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:26'); INSERT INTO `sys_oper_log` VALUES (2839, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:26'); INSERT INTO `sys_oper_log` VALUES (2840, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:26'); INSERT INTO `sys_oper_log` VALUES (2841, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:26'); INSERT INTO `sys_oper_log` VALUES (2842, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:27'); INSERT INTO `sys_oper_log` VALUES (2843, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:27'); INSERT INTO `sys_oper_log` VALUES (2844, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:27'); INSERT INTO `sys_oper_log` VALUES (2845, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:27'); INSERT INTO `sys_oper_log` VALUES (2846, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:28'); INSERT INTO `sys_oper_log` VALUES (2847, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:28'); INSERT INTO `sys_oper_log` VALUES (2848, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:29'); INSERT INTO `sys_oper_log` VALUES (2849, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:29'); INSERT INTO `sys_oper_log` VALUES (2850, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:19:34'); INSERT INTO `sys_oper_log` VALUES (2851, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642403556254,\"humidity\":\"88\",\"id\":1482974116045897730,\"province\":\"江西\",\"reporttime\":1642403314000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:19:37'); INSERT INTO `sys_oper_log` VALUES (2852, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It’s what you do right now that makes a difference.\",\"createTime\":1642403977916,\"dataId\":4174,\"date\":1624982400000,\"id\":1482975884586762242,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/739b0286d0e30ca6efee2510551f7bbc.png\",\"note\":\"你现在所做的是改变现状的关键。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/83426fbf81da71e4382ef9637663a471.mp3\"}}', 0, '', '2022-01-17 15:19:37'); INSERT INTO `sys_oper_log` VALUES (2853, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"他朗声道:“贫道五百年前散人吕洞玄,五十年前龙虎山齐玄帧,如今武当洪洗象,已修得七百年功德。” “贫道立誓,愿为天地正道再修三百年!” “只求天地开一线,让徐脂虎飞升!” 年轻道士声如洪钟,响彻天地间。 “求徐脂虎乘鹤飞升!” 黄鹤齐鸣。 有一袭红衣骑鹤入天门。\",\"createTime\":1642403995751,\"id\":1482975959446700034,\"source\":\"下山\",\"type\":2}}', 0, '', '2022-01-17 15:19:55'); INSERT INTO `sys_oper_log` VALUES (2854, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642404019459,\"en\":\"Equivocation is first cousin to a lie.\",\"id\":1482976058872676354,\"zh\":\"模棱两可是谎话的近亲。\"}}', 0, '', '2022-01-17 15:20:19'); INSERT INTO `sys_oper_log` VALUES (2855, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Equivocation is first cousin to a lie.\",\"zh\":\"模棱两可是谎话的近亲。\"}}', 0, '', '2022-01-17 15:20:35'); INSERT INTO `sys_oper_log` VALUES (2856, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:21:15'); INSERT INTO `sys_oper_log` VALUES (2857, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:21:18'); INSERT INTO `sys_oper_log` VALUES (2858, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:21:19'); INSERT INTO `sys_oper_log` VALUES (2859, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:21:19'); INSERT INTO `sys_oper_log` VALUES (2860, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I only pray our life be long, and our souls together heavenward fly!\",\"createTime\":1642404084428,\"dataId\":3902,\"date\":1601481600000,\"id\":1482976331338858498,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/932e9823c262fe60a371404e7ddbb3d9.png\",\"note\":\"但愿人长久,千里共婵娟。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a27a7b66c8cff1a40fb51f55960ebd51.mp3\"}}', 0, '', '2022-01-17 15:21:24'); INSERT INTO `sys_oper_log` VALUES (2861, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与人间寥寥月色,长眠一场。\",\"createTime\":1642404148980,\"id\":1482976602135707649,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-17 15:22:28'); INSERT INTO `sys_oper_log` VALUES (2862, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642403314000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:22:43'); INSERT INTO `sys_oper_log` VALUES (2863, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"杀人放火金腰带,造桥铺路无尸骸....世界不应该这样,做人不应该这样\",\"createTime\":1642404164145,\"id\":1482976665725550594,\"source\":\"无间道\",\"type\":3}}', 0, '', '2022-01-17 15:22:44'); INSERT INTO `sys_oper_log` VALUES (2864, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"杀人放火金腰带,造桥铺路无尸骸....世界不应该这样,做人不应该这样\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{}}', 0, '', '2022-01-17 15:24:47'); INSERT INTO `sys_oper_log` VALUES (2865, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"杀人放火金腰带,造桥铺路无尸骸....世界不应该这样,做人不应该这样\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Kill and set fire to the golden belt, build bridges and pave roads without bones The world should not be like this, life should not be like this\",\"src\":\"杀人放火金腰带,造桥铺路无尸骸....世界不应该这样,做人不应该这样\"}]}}', 0, '', '2022-01-17 15:24:50'); INSERT INTO `sys_oper_log` VALUES (2866, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"杀人放火金腰带,造桥铺路无尸骸....世界不应该这样,做人不应该这样\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Kill and set fire to the golden belt, build bridges and pave roads without bones The world should not be like this, life should not be like this\",\"src\":\"杀人放火金腰带,造桥铺路无尸骸....世界不应该这样,做人不应该这样\"}]}}', 0, '', '2022-01-17 15:25:08'); INSERT INTO `sys_oper_log` VALUES (2867, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真理在火里不会燃烧,在水里不会下沉。\",\"createTime\":1642404365391,\"id\":1482977509778898945,\"source\":\"(印度)谚语\",\"type\":4}}', 0, '', '2022-01-17 15:26:05'); INSERT INTO `sys_oper_log` VALUES (2868, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"劳动是人类的命运。\",\"createTime\":1642404366947,\"id\":1482977516326207490,\"source\":\"荷马\",\"type\":4}}', 0, '', '2022-01-17 15:26:06'); INSERT INTO `sys_oper_log` VALUES (2869, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"向日葵告诉我,只要面对着阳光努力向上,日子就会变得单纯而美好。\",\"createTime\":1642404368029,\"id\":1482977520897998849,\"source\":\"几米《又寂寞又美好》\",\"type\":1}}', 0, '', '2022-01-17 15:26:08'); INSERT INTO `sys_oper_log` VALUES (2870, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你为什么喜欢看那节目那是逃避的唯一方法,不是吗?逃到另一种生活\",\"createTime\":1642404369210,\"id\":1482977525830500354,\"source\":\"贫民百万富翁(Slumdog Millionaire)\",\"type\":3}}', 0, '', '2022-01-17 15:26:09'); INSERT INTO `sys_oper_log` VALUES (2871, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你笑的好讨厌啊,我要你哭!\",\"createTime\":1642404370377,\"id\":1482977530721058817,\"source\":\"铁鸡斗蜈蚣\",\"type\":3}}', 0, '', '2022-01-17 15:26:10'); INSERT INTO `sys_oper_log` VALUES (2872, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"社会和自然的区别就在于,社会是有一定道德目标的。\",\"createTime\":1642404371381,\"id\":1482977534936334338,\"source\":\"赫胥黎\",\"type\":4}}', 0, '', '2022-01-17 15:26:11'); INSERT INTO `sys_oper_log` VALUES (2873, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在无限的时间的河流里,人生仅仅是微小又微小的波浪。\",\"createTime\":1642404371943,\"id\":1482977537276755969,\"source\":\"郭小川\",\"type\":4}}', 0, '', '2022-01-17 15:26:11'); INSERT INTO `sys_oper_log` VALUES (2874, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从心里默默喜欢到现在的无法自拔 你的和好来的太突然 我不知道该怎么办 如果他能给你你想要的幸福 我愿一辈子退出你的面前 在角落里默默的关心你关注你 爱你是我这辈子最不后悔的事情 我愿做你的影子 不离不弃 我会一直等你 因为我爱你啊cxx\",\"createTime\":1642404373279,\"id\":1482977542888734722,\"source\":\"追光者\",\"type\":2}}', 0, '', '2022-01-17 15:26:13'); INSERT INTO `sys_oper_log` VALUES (2875, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"从心里默默喜欢到现在的无法自拔 你的和好来的太突然 我不知道该怎么办 如果他能给你你想要的幸福 我愿一辈子退出你的面前 在角落里默默的关心你关注你 爱你是我这辈子最不后悔的事情 我愿做你的影子 不离不弃 我会一直等你 因为我爱你啊cxx\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"From the silent love in my heart to the present, I can\'t extricate myself. Your reconciliation is too sudden. I don\'t know what to do. If he can give you the happiness you want, I\'m willing to withdraw from your face all my life, care about you silently in the corner, love you is the most regretful thing in my life. I\'m willing to be your shadow. I\'ll always wait for you because I love you cxx\",\"src\":\"从心里默默喜欢到现在的无法自拔 你的和好来的太突然 我不知道该怎么办 如果他能给你你想要的幸福 我愿一辈子退出你的面前 在角落里默默的关心你关注你 爱你是我这辈子最不后悔的事情 我愿做你的影子 不离不弃 我会一直等你 因为我爱你啊cxx\"}]}}', 0, '', '2022-01-17 15:26:19'); INSERT INTO `sys_oper_log` VALUES (2876, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"从心里\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"From the heart\",\"src\":\"从心里\"}]}}', 0, '', '2022-01-17 15:26:35'); INSERT INTO `sys_oper_log` VALUES (2877, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:29:43'); INSERT INTO `sys_oper_log` VALUES (2878, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:29:45'); INSERT INTO `sys_oper_log` VALUES (2879, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:29:46'); INSERT INTO `sys_oper_log` VALUES (2880, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:29:47'); INSERT INTO `sys_oper_log` VALUES (2881, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:11'); INSERT INTO `sys_oper_log` VALUES (2882, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:16'); INSERT INTO `sys_oper_log` VALUES (2883, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:17'); INSERT INTO `sys_oper_log` VALUES (2884, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:21'); INSERT INTO `sys_oper_log` VALUES (2885, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:22'); INSERT INTO `sys_oper_log` VALUES (2886, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:23'); INSERT INTO `sys_oper_log` VALUES (2887, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:23'); INSERT INTO `sys_oper_log` VALUES (2888, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:24'); INSERT INTO `sys_oper_log` VALUES (2889, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642403314000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:31:47'); INSERT INTO `sys_oper_log` VALUES (2890, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:48'); INSERT INTO `sys_oper_log` VALUES (2891, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:49'); INSERT INTO `sys_oper_log` VALUES (2892, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642403314000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:31:50'); INSERT INTO `sys_oper_log` VALUES (2893, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:31:50'); INSERT INTO `sys_oper_log` VALUES (2894, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"被人揭下面具是一种失败,自己揭下面具却是一种胜利。\",\"createTime\":1642404711803,\"id\":1482978962773884930,\"source\":\"雨果\",\"type\":4}}', 0, '', '2022-01-17 15:31:51'); INSERT INTO `sys_oper_log` VALUES (2895, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:32:02'); INSERT INTO `sys_oper_log` VALUES (2896, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642403314000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:32:03'); INSERT INTO `sys_oper_log` VALUES (2897, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:32:03'); INSERT INTO `sys_oper_log` VALUES (2898, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:32:04'); INSERT INTO `sys_oper_log` VALUES (2899, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不觉得换气声很像那种无助的抽泣声吗....\",\"createTime\":1642404724992,\"id\":1482979018067394562,\"source\":\"Wonderful U (Demo Version)\",\"type\":2}}', 0, '', '2022-01-17 15:32:04'); INSERT INTO `sys_oper_log` VALUES (2900, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:32:05'); INSERT INTO `sys_oper_log` VALUES (2901, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:32:05'); INSERT INTO `sys_oper_log` VALUES (2902, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:33:08'); INSERT INTO `sys_oper_log` VALUES (2903, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:33:18'); INSERT INTO `sys_oper_log` VALUES (2904, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:34:40'); INSERT INTO `sys_oper_log` VALUES (2905, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:34:41'); INSERT INTO `sys_oper_log` VALUES (2906, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:08:35\"}}', 0, '', '2022-01-17 15:34:42'); INSERT INTO `sys_oper_log` VALUES (2907, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"日子过的象流水一般。它静静的从我们身边缓缓流过,不带半分声响。那些我们当年执着的人,执着的事,执着之后,却变成一种负担。\",\"createTime\":1642404906868,\"id\":1482979780898045953,\"source\":\"占星术杀人魔法\",\"type\":5}}', 0, '', '2022-01-17 15:35:06'); INSERT INTO `sys_oper_log` VALUES (2908, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"正因为听不见和看不到,所以风子才会做这样的事情。\",\"createTime\":1642404909662,\"id\":1482979792646291457,\"source\":\"悠光喵~~\",\"type\":5}}', 0, '', '2022-01-17 15:35:09'); INSERT INTO `sys_oper_log` VALUES (2909, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"正因为听不见和看不到,所以风子才会做这样的事情。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":66,\"errorCode\":0,\"transResult\":[{\"dst\":\"Because can\'t hear and see, so the wind would do such a thing.\",\"src\":\"正因为听不见和看不到,所以风子才会做这样的事情。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-17 15:36:24'); INSERT INTO `sys_oper_log` VALUES (2910, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"却听闻坊间姑娘喜着素衣,茫茫红尘自别有风情,喜花灯,喜烟火,喜世间芳华好颜色。素袖展招,半壁山河。是以灵魂更迭浮生,自诩万种风情实非良人,却醉于刻薄眼神,不远万里扣响古城。前半生玩弄世人,临了阖眼只叹息,命运半点不由人。后事种种,皆显于九万字诗文,撰文者,一清冷书生也。\",\"createTime\":1642405074569,\"id\":1482980484316381186,\"source\":\"九万字\",\"type\":2}}', 0, '', '2022-01-17 15:37:54'); INSERT INTO `sys_oper_log` VALUES (2911, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"见过磕长头的人吗?他们的脸和手都很脏,可是心灵却很干净\",\"createTime\":1642405095546,\"id\":1482980572283518977,\"source\":\"可可西里\",\"type\":3}}', 0, '', '2022-01-17 15:38:15'); INSERT INTO `sys_oper_log` VALUES (2912, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人的思想,必定重于前世、现世或来世的某一方,无法从站在历史时点的“自己的思想”的领域超脱出来。\",\"createTime\":1642405177317,\"id\":1482980915285311489,\"source\":\"三岛由纪夫\",\"type\":4}}', 0, '', '2022-01-17 15:39:37'); INSERT INTO `sys_oper_log` VALUES (2913, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有一天停下来仔细想想 又不是缺从头再来的勇气 也不是不无道理抓着不放 可每次都想在爱里侥幸存活 到头来每次的勇气都是一个教训\",\"createTime\":1642406137509,\"id\":1482984942609874945,\"source\":\"勇气\",\"type\":2}}', 0, '', '2022-01-17 15:55:37'); INSERT INTO `sys_oper_log` VALUES (2914, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sometimes life hits you in the head with a brick. Don\'t lose faith.\",\"createTime\":1642406137553,\"dataId\":3976,\"date\":1607875200000,\"id\":1482984942807007234,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a43928baaf293d8c4a1a27de94f330a4.png\",\"note\":\"有时生活给你当头痛击,但是别丧失信念。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cc51c0c1ad57224b2ed577f8c01b2d6a.mp3\"}}', 0, '', '2022-01-17 15:55:37'); INSERT INTO `sys_oper_log` VALUES (2915, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有些人,尤其是儿童,常常在生人或他们的长辈面前显出一种村俗的羞怯态度,他们的思想、言辞、容貌,全都显得狼狈不堪;自己在紊乱中也失去了主宰,什么事情都做不成,至少做来显得不自然,不优雅,不能因此得到人家的喜悦与欢迎。医治这种毛病的惟一办法也与医治其他毛病的办法一样,要使他们通过练习养成一种相反的习惯,而主要的就是多交各种朋友。\",\"createTime\":1642406143788,\"id\":1482984968920743938,\"source\":\"洛克\",\"type\":4}}', 0, '', '2022-01-17 15:55:43'); INSERT INTO `sys_oper_log` VALUES (2916, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Winter Begins arrives on November 7 or November 8 each year. At this time of the year, some rivers in China start to freeze.\",\"createTime\":1642406143827,\"dataId\":3600,\"date\":1573142400000,\"id\":1482984969122070529,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-08.jpg\",\"note\":\"“立冬”节气,在每年的11月7日或8日。每年的这个时候,中国的河流开始结冰。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-081-day.mp3\"}}', 0, '', '2022-01-17 15:55:43'); INSERT INTO `sys_oper_log` VALUES (2917, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642404838000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:56:02'); INSERT INTO `sys_oper_log` VALUES (2918, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:33:58\"}}', 0, '', '2022-01-17 15:56:03'); INSERT INTO `sys_oper_log` VALUES (2919, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642404838000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:56:11'); INSERT INTO `sys_oper_log` VALUES (2920, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"塔拉!我要回家.我要想办法让他回到我身边.无论如何,明天是崭新的一天.\",\"createTime\":1642406172861,\"id\":1482985090874327042,\"source\":\"乱世佳人(Gone with the wind)\",\"type\":3}}', 0, '', '2022-01-17 15:56:12'); INSERT INTO `sys_oper_log` VALUES (2921, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The farther backward you can look, the farther forward you will see.\",\"dataId\":3684,\"date\":1582646400000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/2ccd961a79cfb993a814b8e20639ef07.png\",\"note\":\"你回首看得越远,你向前也会看得越远。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/0d4f999b644a1ac01cb8177f639da94d.mp3\"}}', 0, '', '2022-01-17 15:56:12'); INSERT INTO `sys_oper_log` VALUES (2922, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:33:58\"}}', 0, '', '2022-01-17 15:56:15'); INSERT INTO `sys_oper_log` VALUES (2923, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:33:58\"}}', 0, '', '2022-01-17 15:56:16'); INSERT INTO `sys_oper_log` VALUES (2924, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642404838000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:57:49'); INSERT INTO `sys_oper_log` VALUES (2925, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642404838000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:58:01'); INSERT INTO `sys_oper_log` VALUES (2926, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有多少力量,就做多少事;切莫等待,等待常会落空。\",\"createTime\":1642406281356,\"id\":1482985545935339522,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-17 15:58:01'); INSERT INTO `sys_oper_log` VALUES (2927, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Excellence is not a skill. It is an attitude.\",\"createTime\":1642406281356,\"dataId\":3911,\"date\":1602259200000,\"id\":1482985545935339523,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/dae8e4e61d500a82b576424de17f1d21.png\",\"note\":\"卓越不是一种技能,而是一种态度。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c203bd9569f4235800f6e8540c4ff6d4.mp3\"}}', 0, '', '2022-01-17 15:58:01'); INSERT INTO `sys_oper_log` VALUES (2928, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:33:58\"}}', 0, '', '2022-01-17 15:58:08'); INSERT INTO `sys_oper_log` VALUES (2929, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:33:58\"}}', 0, '', '2022-01-17 15:58:09'); INSERT INTO `sys_oper_log` VALUES (2930, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642404838000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:58:20'); INSERT INTO `sys_oper_log` VALUES (2931, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642404838000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:58:30'); INSERT INTO `sys_oper_log` VALUES (2932, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"知道你看不到的,你就像是深渊,我跌入后,想要急于证明我是爱你的,却忘了问你,爱不爱我。怕付出的都只是一厢情愿。\",\"createTime\":1642406311266,\"id\":1482985671416332290,\"source\":\"下坠Falling\",\"type\":2}}', 0, '', '2022-01-17 15:58:31'); INSERT INTO `sys_oper_log` VALUES (2933, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I have tried my best to live an ordinary life.\",\"createTime\":1642406311310,\"dataId\":4260,\"date\":1632412800000,\"id\":1482985671558938625,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/9eb1785b28c81d02685508055679aad7.png\",\"note\":\"我拼劲全力,不过是为了过完平凡的一生。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a240489f66474dede40d8a1c92aeb1a1.mp3\"}}', 0, '', '2022-01-17 15:58:31'); INSERT INTO `sys_oper_log` VALUES (2934, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:33:58\"}}', 0, '', '2022-01-17 15:58:34'); INSERT INTO `sys_oper_log` VALUES (2935, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642404838000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 15:59:09'); INSERT INTO `sys_oper_log` VALUES (2936, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"像旧巷子里的猫,我很自由,但没有归宿。\",\"createTime\":1642406350300,\"id\":1482985835124211713,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-17 15:59:10'); INSERT INTO `sys_oper_log` VALUES (2937, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Peace is not only better than war, but infinitely more arduous.\",\"createTime\":1642406350335,\"dataId\":3777,\"date\":1590681600000,\"id\":1482985835283595265,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/9e0ad8dccb68897883fb7a688f177e2e.png\",\"note\":\"和平不仅仅是比战争好,而是它远比战争来的艰辛。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/e540858fc4bfb374f3147ca3744b4857.mp3\"}}', 0, '', '2022-01-17 15:59:10'); INSERT INTO `sys_oper_log` VALUES (2938, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 15:33:58\"}}', 0, '', '2022-01-17 15:59:13'); INSERT INTO `sys_oper_log` VALUES (2939, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642404838000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:00:13'); INSERT INTO `sys_oper_log` VALUES (2940, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"小时候跟着父亲去城里卖西瓜,害怕同学会看到我,就拼命地将自己隐藏起来,一路心惊肉跳。现在想来那条路绿树成荫,阳光飒爽,若不是我害怕面对自己的不完美,一定能看到许多美好的景致,那条路,正如其他的所有路,从来都不应该被逃避。\",\"createTime\":1642406413840,\"id\":1482986101596733441,\"source\":\"平凡之路\",\"type\":2}}', 0, '', '2022-01-17 16:00:13'); INSERT INTO `sys_oper_log` VALUES (2941, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You\'ll never move others, heart to heart, unless your speech comes from your heart.\",\"createTime\":1642406413867,\"dataId\":3536,\"date\":1570204800000,\"id\":1482986101722562562,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-05.jpg\",\"note\":\"如果你说的话并非发自你的内心,你就不可能触动别人的心弦。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-05-day.mp3\"}}', 0, '', '2022-01-17 16:00:13'); INSERT INTO `sys_oper_log` VALUES (2942, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"读过一本好书,像交了一个益友。\",\"createTime\":1642406418428,\"id\":1482986120856977409,\"source\":\"藏克家\",\"type\":4}}', 0, '', '2022-01-17 16:00:18'); INSERT INTO `sys_oper_log` VALUES (2943, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The more things you do, the more you can do.\",\"createTime\":1642406418477,\"dataId\":3584,\"date\":1574265600000,\"id\":1482986121049915393,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-21.jpg\",\"note\":\"做的愈多,你会做的就愈多。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-21-day.mp3\"}}', 0, '', '2022-01-17 16:00:18'); INSERT INTO `sys_oper_log` VALUES (2944, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"智者不入爱河,愚者为情所困\",\"createTime\":1642406667611,\"id\":1482987166002036738,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-17 16:04:27'); INSERT INTO `sys_oper_log` VALUES (2945, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You make millions of decisions that mean nothing and then one day your order takes out and it changes your life.\",\"createTime\":1642406667635,\"dataId\":4165,\"date\":1624032000000,\"id\":1482987166136254466,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/71353a15ce92ccd892463f306dcd5e34.png\",\"note\":\"你每天都在做很多看起来毫无意义的决定,但某天你的某个决定就能改变你的一生。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a726c3694a47995380bea382a22737a8.mp3\"}}', 0, '', '2022-01-17 16:04:27'); INSERT INTO `sys_oper_log` VALUES (2946, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642404838000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:05:01'); INSERT INTO `sys_oper_log` VALUES (2947, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"养不教,父之过。教不严,师之惰。\",\"createTime\":1642406701457,\"id\":1482987307983421441,\"source\":\"《三字经》\",\"type\":4}}', 0, '', '2022-01-17 16:05:01'); INSERT INTO `sys_oper_log` VALUES (2948, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The first step in solving any problem is recognizing there is one.\",\"createTime\":1642406701472,\"dataId\":3940,\"date\":1604764800000,\"id\":1482987308046336002,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e6519ab828bd39acd62fca1ef3a0db1e.png\",\"note\":\"解决任何问题的第一步,是要承认问题的存在。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/fb2824182c588eba64fdea5b661b0e26.mp3\"}}', 0, '', '2022-01-17 16:05:01'); INSERT INTO `sys_oper_log` VALUES (2949, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我尽可能不去缅怀往事,因为来时的路不可能回头。\",\"createTime\":1642406726317,\"id\":1482987412270596097,\"source\":\"三毛\",\"type\":1}}', 0, '', '2022-01-17 16:05:26'); INSERT INTO `sys_oper_log` VALUES (2950, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I thought I\'d make a difference,but no one knows I\'m here.\",\"createTime\":1642406726638,\"dataId\":4157,\"date\":1623513600000,\"id\":1482987413616967681,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/6acaaf22e7e7507b948d82b46e7c5e67.png\",\"note\":\"我还妄想大展身手 到头来还不是默默无闻.。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/31aa4bb872b22ef267493d58a93cc36a.mp3\"}}', 0, '', '2022-01-17 16:05:26'); INSERT INTO `sys_oper_log` VALUES (2951, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The best way to predict your future is to create it.\",\"createTime\":1642406874987,\"dataId\":4281,\"date\":1634227200000,\"id\":1482988035825188865,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/6f3139b30f126a956caefe60649a01d2.png\",\"note\":\"预测未来的最好方式就是去创造它。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/70151ea101b998a9f10f0fc273fe44a9.mp3\"}}', 0, '', '2022-01-17 16:07:54'); INSERT INTO `sys_oper_log` VALUES (2952, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要去等待一个不爱你的人 你付出多少不一定得到多少\",\"createTime\":1642406875663,\"id\":1482988038614401025,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-17 16:07:55'); INSERT INTO `sys_oper_log` VALUES (2953, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It is not more vacation we need—it is more vocation!\",\"createTime\":1642407079612,\"dataId\":4275,\"date\":1633622400000,\"id\":1482988894076256258,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/88747f3748887a3f20fc5592508c42d5.png\",\"note\":\"我们需要的不是更多的假期,而是更强的使命感!\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cd15008c7701f7df7ab33920bca7adff.mp3\"}}', 0, '', '2022-01-17 16:11:19'); INSERT INTO `sys_oper_log` VALUES (2954, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"第一次听是新年晚会上,有个高年级的哥哥唱,声音忧伤,有着浓浓的怀旧感,我疑惑的看他,为何他会选这样的歌。后来喜欢上这首歌后,每次都会想起他唱这歌的样子,在不被尊重的舞台上,在观众的喧闹里,淡然。于是成了我的结,至此无法忍受世人锦衣夜行。\",\"createTime\":1642407079628,\"id\":1482988894160142337,\"source\":\"黄昏\",\"type\":2}}', 0, '', '2022-01-17 16:11:19'); INSERT INTO `sys_oper_log` VALUES (2955, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Although the world is full of suffering, it is also full of the overcoming of it.\",\"dataId\":3421,\"date\":1560441600000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-14.jpg\",\"note\":\"虽然世界多苦难,但是苦难总是能战胜的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-14-day.mp3\"}}', 0, '', '2022-01-17 16:11:27'); INSERT INTO `sys_oper_log` VALUES (2956, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"死亡是生命的一部分,是我们注定要做的一件事\",\"createTime\":1642407087763,\"id\":1482988928234668034,\"source\":\"阿甘正传(Forrest gump)\",\"type\":3}}', 0, '', '2022-01-17 16:11:27'); INSERT INTO `sys_oper_log` VALUES (2957, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"What is the most resilient parasite? Bacteria? A virus? An intestinal worm? An idea.\",\"createTime\":1642407136707,\"dataId\":3471,\"date\":1564588800000,\"id\":1482989133550043137,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-01.jpg\",\"note\":\"最具有可塑性的寄生生物是什么?是细菌吗?是病毒吗?是肠虫吗?其实是人的想法。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-01-day.mp3\"}}', 0, '', '2022-01-17 16:12:16'); INSERT INTO `sys_oper_log` VALUES (2958, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你永远都不会知道 你在路上随便见到的路人甲 是别人做梦都想见到的人 \",\"createTime\":1642407137354,\"id\":1482989136234397698,\"source\":\"公子向北走\",\"type\":2}}', 0, '', '2022-01-17 16:12:17'); INSERT INTO `sys_oper_log` VALUES (2959, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"问祖宗之泽,吾享者是,当念积累之难。问子孙之福,吾贻者是,要思倾覆之易。\",\"createTime\":1642407139891,\"id\":1482989146887929858,\"source\":\"《格言联璧》\",\"type\":4}}', 0, '', '2022-01-17 16:12:19'); INSERT INTO `sys_oper_log` VALUES (2960, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Down to Gehenna or up to the Throne,He travels the fastest who travels alone.\",\"createTime\":1642407139925,\"dataId\":3773,\"date\":1590336000000,\"id\":1482989147017953282,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/853362c6b9d971f050f5b04ea2515d85.png\",\"note\":\"无论是下到炼狱还是登上王位,独行的人走得最快。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/9ee8018c482b4f0b1e5a5c72e89c7401.mp3\"}}', 0, '', '2022-01-17 16:12:19'); INSERT INTO `sys_oper_log` VALUES (2961, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642407140728,\"humidity\":\"87\",\"id\":1482989150406950914,\"province\":\"江西\",\"reporttime\":1642406924000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:12:20'); INSERT INTO `sys_oper_log` VALUES (2962, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642407140728,\"humidity\":\"87\",\"id\":1482989150406950914,\"province\":\"江西\",\"reporttime\":1642406924000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:12:38'); INSERT INTO `sys_oper_log` VALUES (2963, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你每想念一次春天,枝头就攒了一朵花开。\",\"createTime\":1642407158858,\"id\":1482989226428710913,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-17 16:12:38'); INSERT INTO `sys_oper_log` VALUES (2964, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Calm, brave, discerning, not selfish.\",\"dataId\":3896,\"date\":1600963200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e820c5b7e8c19a9055f622454bd3e919.png\",\"note\":\"沉着、勇猛,有辨别,不自私。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c64168047573477949485991d529996e.mp3\"}}', 0, '', '2022-01-17 16:12:38'); INSERT INTO `sys_oper_log` VALUES (2965, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我和她接近的时候,我们之间的距离只有0.01公分,我对她一无所知,57个小时之后,我爱上了她\",\"createTime\":1642407194709,\"id\":1482989376840646657,\"source\":\"阿飞正传\",\"type\":3}}', 0, '', '2022-01-17 16:13:14'); INSERT INTO `sys_oper_log` VALUES (2966, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All those moments will be lost in time, like tears in rain.\",\"createTime\":1642407194729,\"dataId\":4198,\"date\":1627056000000,\"id\":1482989376907755522,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/291971b44256131187032d8b32c715ed.png\",\"note\":\"所有这些时刻,终将随时光流逝,一如眼泪,在雨中消失。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/76f162a51f7cecde8a2e072c79287af8.mp3\"}}', 0, '', '2022-01-17 16:13:14'); INSERT INTO `sys_oper_log` VALUES (2967, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Pretend modest often is nonsense, sometimes just is the beat around the bush boast.\",\"dataId\":3709,\"date\":1584806400000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/86ab971af68c9e29f95a66473cb1d3ed.png\",\"note\":\"假装谦虚往往就是信口开河,有时候简直是拐弯抹角的自夸。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/85a48bdd2347928e4a683745faa295c6.mp3\"}}', 0, '', '2022-01-17 16:15:00'); INSERT INTO `sys_oper_log` VALUES (2968, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我该如何怀念一个我不知道的世界?\",\"createTime\":1642407300985,\"id\":1482989822560944130,\"source\":\"革命前夕的摩托车日记\",\"type\":3}}', 0, '', '2022-01-17 16:15:00'); INSERT INTO `sys_oper_log` VALUES (2969, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642407140728,\"humidity\":\"87\",\"id\":1482989150406950914,\"province\":\"江西\",\"reporttime\":1642406924000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:15:35'); INSERT INTO `sys_oper_log` VALUES (2970, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"什么样的终点,才配的上这一路的颠沛流离。\",\"createTime\":1642407335968,\"id\":1482989969332224002,\"source\":\"另一个天堂\",\"type\":2}}', 0, '', '2022-01-17 16:15:35'); INSERT INTO `sys_oper_log` VALUES (2971, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Do the thing that makes you happy. Life is about feeding your soul.\",\"dataId\":3890,\"date\":1600444800000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/2ff85c779e548f4d286b5f0a60b5feab.png\",\"note\":\"去做能让你开心的事,人生最重要的是满足自己。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/ab16d2d95a54dabfc49184f099070cc8.mp3\"}}', 0, '', '2022-01-17 16:15:36'); INSERT INTO `sys_oper_log` VALUES (2972, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Expect the best, plan for the worst, and prepare to be surprised. \",\"createTime\":1642407581453,\"dataId\":4017,\"date\":1611417600000,\"id\":1482990998970941441,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/2eabd3620a51f09f2cd28d26ae5a9c00.png\",\"note\":\"抱最好的期望,做最坏的打算,并准备接受意外的惊喜。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a7b26c280819087c2058f4491d86e891.mp3\"}}', 0, '', '2022-01-17 16:19:41'); INSERT INTO `sys_oper_log` VALUES (2973, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没有书籍,就不能打赢思想之战,正如没有舰就不能打赢海战一样。\",\"createTime\":1642407582122,\"id\":1482991001772736513,\"source\":\"罗斯福\",\"type\":4}}', 0, '', '2022-01-17 16:19:42'); INSERT INTO `sys_oper_log` VALUES (2974, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"经验丰富的人读书用两只眼睛,一只眼睛看到纸面上的话,另一眼睛看到纸的背面。\",\"createTime\":1642407605851,\"id\":1482991101282598914,\"source\":\"歌德\",\"type\":4}}', 0, '', '2022-01-17 16:20:05'); INSERT INTO `sys_oper_log` VALUES (2975, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The mankind’s courage and resolution will be witnessed and remembered by stars.\",\"createTime\":1642407606945,\"dataId\":3742,\"date\":1587657600000,\"id\":1482991105883750402,\"imgurl\":\"https://v-sq.ks3-cn-beijing.ksyun.com/image/635badcbf027c9345d7cc7c10ea14a8b.png\",\"note\":\"人类的勇气和坚毅必将被镌刻在星空之下。\",\"source\":\"新版每日一句\",\"tts\":\"https://v-sq.ks3-cn-beijing.ksyun.com/audio/cc51b82981fe3dccebb5cac20c8a9efa.mp3\"}}', 0, '', '2022-01-17 16:20:06'); INSERT INTO `sys_oper_log` VALUES (2976, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You must practice being stupid, dumb, unthinking, empty.\",\"createTime\":1642407790072,\"dataId\":3838,\"date\":1595952000000,\"id\":1482991873982447618,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/e815017cb9c132f3c6882620c4123fde.png\",\"note\":\"你得学着痴一点,钝一些,少想一些,彻底放空自己。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/e404945788d891859de0385bf429e077.mp3\"}}', 0, '', '2022-01-17 16:23:10'); INSERT INTO `sys_oper_log` VALUES (2977, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要用你那冠冕堂皇的理由来掩饰你的谎言,其实你每次说谎我都知道只是我不想去揭穿你!\",\"createTime\":1642407790147,\"id\":1482991874267660289,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-17 16:23:10'); INSERT INTO `sys_oper_log` VALUES (2978, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1642406924000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:23:10'); INSERT INTO `sys_oper_log` VALUES (2979, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1642406924000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:24:25'); INSERT INTO `sys_oper_log` VALUES (2980, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"风骨神仙籍里人,诗狂酒圣且平生。开元一遇成何事,留得千秋万古名。\",\"createTime\":1642407866344,\"id\":1482992193848459266,\"source\":\"杨花落尽子规啼\",\"type\":2}}', 0, '', '2022-01-17 16:24:26'); INSERT INTO `sys_oper_log` VALUES (2981, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Presence of mind and courage in distress are more than armies to procure success.\",\"createTime\":1642407866364,\"dataId\":3806,\"date\":1593187200000,\"id\":1482992193915568130,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/a70413e7e999cea63739d3313b362652.png\",\"note\":\"危难时保持理智和勇气,胜过千军万马去夺取胜利。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/6b5e60ce7fe6c6f4d7f34c073c6e1489.mp3\"}}', 0, '', '2022-01-17 16:24:26'); INSERT INTO `sys_oper_log` VALUES (2982, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482992193915469826', '127.0.0.1', '', '1482992193915469826', '{\"code\":200}', 0, '', '2022-01-17 16:26:00'); INSERT INTO `sys_oper_log` VALUES (2983, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 16:08:44\"}}', 0, '', '2022-01-17 16:26:17'); INSERT INTO `sys_oper_log` VALUES (2984, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 16:08:44\"}}', 0, '', '2022-01-17 16:26:47'); INSERT INTO `sys_oper_log` VALUES (2985, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1642406924000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:27:29'); INSERT INTO `sys_oper_log` VALUES (2986, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1642406924000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:27:35'); INSERT INTO `sys_oper_log` VALUES (2987, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 16:08:44\"}}', 0, '', '2022-01-17 16:27:37'); INSERT INTO `sys_oper_log` VALUES (2988, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 16:08:44\"}}', 0, '', '2022-01-17 16:30:33'); INSERT INTO `sys_oper_log` VALUES (2989, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 16:08:44\"}}', 0, '', '2022-01-17 16:30:36'); INSERT INTO `sys_oper_log` VALUES (2990, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 16:08:44\"}}', 0, '', '2022-01-17 16:30:37'); INSERT INTO `sys_oper_log` VALUES (2991, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1642406924000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:30:44'); INSERT INTO `sys_oper_log` VALUES (2992, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 16:08:44\"}}', 0, '', '2022-01-17 16:31:27'); INSERT INTO `sys_oper_log` VALUES (2993, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 16:08:44\"}}', 0, '', '2022-01-17 16:31:31'); INSERT INTO `sys_oper_log` VALUES (2994, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-17\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"1\"},{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"4\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-17 16:08:44\"}}', 0, '', '2022-01-17 16:31:39'); INSERT INTO `sys_oper_log` VALUES (2995, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642408327620,\"en\":\"It\'s been a long time\",\"id\":1482994128626368513,\"zh\":\"好久不见。\"}}', 0, '', '2022-01-17 16:32:07'); INSERT INTO `sys_oper_log` VALUES (2996, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"多希望地球是平的,那样,我一直望下去,就可以看到你。\",\"createTime\":1642408369525,\"id\":1482994304388677633,\"source\":\"似水年华\",\"type\":3}}', 0, '', '2022-01-17 16:32:49'); INSERT INTO `sys_oper_log` VALUES (2997, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There is no birth of consciousness without pain.\",\"createTime\":1642408369558,\"dataId\":4047,\"date\":1614009600000,\"id\":1482994304522895361,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/02c27c03c497c2dcbe359844a1e4a02a.png\",\"note\":\"没有伤痛,就不会有醒觉。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a91a46cfee634e76054063fde6cfabed.mp3\"}}', 0, '', '2022-01-17 16:32:49'); INSERT INTO `sys_oper_log` VALUES (2998, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1482996110720122881', '127.0.0.1', '', '1482996110720122881', '{\"code\":200}', 0, '', '2022-01-17 16:40:36'); INSERT INTO `sys_oper_log` VALUES (2999, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"qq\",\"orderNum\":\"5\",\"menuName\":\"平台工具\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"tools\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-17 16:42:13'); INSERT INTO `sys_oper_log` VALUES (3000, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"money\",\"orderNum\":\"1\",\"menuName\":\"小工具\",\"params\":{},\"parentId\":2058,\"isCache\":\"0\",\"path\":\"apitools\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-17 16:43:47'); INSERT INTO `sys_oper_log` VALUES (3001, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"money\",\"orderNum\":\"1\",\"menuName\":\"API工具\",\"params\":{},\"parentId\":2058,\"isCache\":\"0\",\"path\":\"apitools\",\"component\":\"business/tools/apitools/index\",\"children\":[],\"createTime\":1642409027000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2059,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-17 16:45:13'); INSERT INTO `sys_oper_log` VALUES (3002, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1642408426000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-17 16:45:28'); INSERT INTO `sys_oper_log` VALUES (3003, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"money\",\"orderNum\":\"1\",\"menuName\":\"API工具\",\"params\":{},\"parentId\":2058,\"isCache\":\"0\",\"path\":\"apitools\",\"component\":\"business/tools/apitools/index\",\"children\":[],\"createTime\":1642409027000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2059,\"menuType\":\"C\",\"perms\":\"tools:apitools:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-17 16:48:22'); INSERT INTO `sys_oper_log` VALUES (3004, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"money\",\"orderNum\":\"1\",\"menuName\":\"API工具\",\"params\":{},\"parentId\":2058,\"isCache\":\"0\",\"path\":\"apitools\",\"component\":\"business/tools/apitools/index\",\"children\":[],\"createTime\":1642409027000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2059,\"menuType\":\"C\",\"perms\":\"openapi:apitools:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-17 16:48:56'); INSERT INTO `sys_oper_log` VALUES (3005, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"恐惧让你沦为囚犯。希望让你重获自由坚强的人只能救赎自己,伟大的人才能拯救他人记着,希望是件好东西,没准儿是件最好的东西,而且从没有一样好 东西会消逝!\",\"createTime\":1642410192320,\"id\":1483001949707288578,\"source\":\"刺激1995(肖申克的救赎)The shawshank redemption\",\"type\":3}}', 0, '', '2022-01-17 17:03:12'); INSERT INTO `sys_oper_log` VALUES (3006, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"To simply wake up every morning a better person than when I went to bed. \",\"createTime\":1642410192345,\"dataId\":3878,\"date\":1599408000000,\"id\":1483001949841506306,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9b17aa72767c2c9d85a7cad3e9ef42e3.png\",\"note\":\"我只愿早上起来成为一个比入睡前更好的人。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/a3dcaf90301d3205c1f8c042c41c8945.mp3\"}}', 0, '', '2022-01-17 17:03:12'); INSERT INTO `sys_oper_log` VALUES (3007, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"节假日\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"The holiday season\",\"src\":\"节假日\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-17 17:03:18'); INSERT INTO `sys_oper_log` VALUES (3008, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642468729551,\"humidity\":\"79\",\"id\":1483247472670310402,\"province\":\"江西\",\"reporttime\":1642468121000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 09:18:49'); INSERT INTO `sys_oper_log` VALUES (3009, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"input\",\"orderNum\":\"1\",\"menuName\":\"性能监控\",\"params\":{},\"parentId\":2045,\"isCache\":\"0\",\"path\":\"performance\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-18 09:19:47'); INSERT INTO `sys_oper_log` VALUES (3010, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"input\",\"orderNum\":\"1\",\"menuName\":\"性能监控\",\"params\":{},\"parentId\":2045,\"isCache\":\"0\",\"path\":\"performance\",\"component\":\"business/monitor/performance/index\",\"children\":[],\"createTime\":1642468787000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2060,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-18 09:20:10'); INSERT INTO `sys_oper_log` VALUES (3011, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"input\",\"orderNum\":\"1\",\"menuName\":\"性能监控\",\"params\":{},\"parentId\":2045,\"isCache\":\"0\",\"path\":\"performance\",\"component\":\"business/monitor/performance/index\",\"children\":[],\"createTime\":1642468787000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2060,\"menuType\":\"C\",\"perms\":\"monitor:performance:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-18 09:20:29'); INSERT INTO `sys_oper_log` VALUES (3012, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642468729551,\"humidity\":\"79\",\"id\":1483247472670310402,\"province\":\"江西\",\"reporttime\":1642468121000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 09:20:33'); INSERT INTO `sys_oper_log` VALUES (3013, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642469628000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:08:19'); INSERT INTO `sys_oper_log` VALUES (3014, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642469628000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:10:59'); INSERT INTO `sys_oper_log` VALUES (3015, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642469628000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:15:41'); INSERT INTO `sys_oper_log` VALUES (3016, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642472390400,\"humidity\":\"75\",\"id\":1483262827354554370,\"province\":\"江西\",\"reporttime\":1642471713000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:19:50'); INSERT INTO `sys_oper_log` VALUES (3017, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642472390400,\"humidity\":\"75\",\"id\":1483262827354554370,\"province\":\"江西\",\"reporttime\":1642471713000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:22:31'); INSERT INTO `sys_oper_log` VALUES (3018, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642472390400,\"humidity\":\"75\",\"id\":1483262827354554370,\"province\":\"江西\",\"reporttime\":1642471713000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:22:45'); INSERT INTO `sys_oper_log` VALUES (3019, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642472390400,\"humidity\":\"75\",\"id\":1483262827354554370,\"province\":\"江西\",\"reporttime\":1642471713000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:23:44'); INSERT INTO `sys_oper_log` VALUES (3020, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642472390400,\"humidity\":\"75\",\"id\":1483262827354554370,\"province\":\"江西\",\"reporttime\":1642471713000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:24:41'); INSERT INTO `sys_oper_log` VALUES (3021, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642472390400,\"humidity\":\"75\",\"id\":1483262827354554370,\"province\":\"江西\",\"reporttime\":1642471713000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:25:04'); INSERT INTO `sys_oper_log` VALUES (3022, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642472390400,\"humidity\":\"75\",\"id\":1483262827354554370,\"province\":\"江西\",\"reporttime\":1642471713000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:25:59'); INSERT INTO `sys_oper_log` VALUES (3023, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"4\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"5\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:08:33\"}}', 0, '', '2022-01-18 10:27:38'); INSERT INTO `sys_oper_log` VALUES (3024, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1642471713000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:30:28'); INSERT INTO `sys_oper_log` VALUES (3025, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642473368468,\"humidity\":\"73\",\"id\":1483266929706840065,\"province\":\"江西\",\"reporttime\":1642473229000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:36:08'); INSERT INTO `sys_oper_log` VALUES (3026, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"4\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"5\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:36:16'); INSERT INTO `sys_oper_log` VALUES (3027, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"2\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"3\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"4\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"5\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:36:22'); INSERT INTO `sys_oper_log` VALUES (3028, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642473229000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:38:56'); INSERT INTO `sys_oper_log` VALUES (3029, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:38:58'); INSERT INTO `sys_oper_log` VALUES (3030, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:40:22'); INSERT INTO `sys_oper_log` VALUES (3031, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:40:24'); INSERT INTO `sys_oper_log` VALUES (3032, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:40:24'); INSERT INTO `sys_oper_log` VALUES (3033, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642473229000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:40:26'); INSERT INTO `sys_oper_log` VALUES (3034, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:40:28'); INSERT INTO `sys_oper_log` VALUES (3035, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:40:29'); INSERT INTO `sys_oper_log` VALUES (3036, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642473229000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:40:30'); INSERT INTO `sys_oper_log` VALUES (3037, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:40:34'); INSERT INTO `sys_oper_log` VALUES (3038, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:42:17'); INSERT INTO `sys_oper_log` VALUES (3039, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:42:22'); INSERT INTO `sys_oper_log` VALUES (3040, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642473229000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:42:28'); INSERT INTO `sys_oper_log` VALUES (3041, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:42:30'); INSERT INTO `sys_oper_log` VALUES (3042, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642473229000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 10:49:30'); INSERT INTO `sys_oper_log` VALUES (3043, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:49:35'); INSERT INTO `sys_oper_log` VALUES (3044, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 10:33:49\"}}', 0, '', '2022-01-18 10:51:20'); INSERT INTO `sys_oper_log` VALUES (3045, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Tears will never help.\",\"createTime\":1642474283688,\"dataId\":4362,\"date\":1641225600000,\"id\":1483270768392658946,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/df2d880693170a4bed1177488a45d920.png\",\"note\":\"眼泪永远没办法帮上忙。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/64ef089f2ef5e25e36039043b05a0a96.mp3\"}}', 0, '', '2022-01-18 10:51:23'); INSERT INTO `sys_oper_log` VALUES (3046, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"现在突然发现,计划毕竟是计划,计划得再怎么美好,再怎么令人向往!当真正到了执行的那一天,并不是像计划那样,总是有点欠缺!\",\"createTime\":1642474284732,\"id\":1483270772771512322,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-18 10:51:24'); INSERT INTO `sys_oper_log` VALUES (3047, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642474298657,\"en\":\"A bow long bent grows weak.\",\"id\":1483270831152029697,\"zh\":\"常拉满弓无力。\"}}', 0, '', '2022-01-18 10:51:38'); INSERT INTO `sys_oper_log` VALUES (3048, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"性质\",\"top\":2,\"createTime\":1642474315886,\"englishWord\":\"properties\",\"isCollect\":1,\"id\":1483270903470092289,\"sort\":0,\"content\":\"properties\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 10:51:55'); INSERT INTO `sys_oper_log` VALUES (3049, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"A bow long bent grows weak.\",\"zh\":\"常拉满弓无力。\"}}', 0, '', '2022-01-18 10:51:59'); INSERT INTO `sys_oper_log` VALUES (3050, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Life is mediocre, short and long, but there is no way to know what is good or bad, gain or loss is difficult.\",\"createTime\":1642474330062,\"dataId\":4164,\"date\":1624204800000,\"id\":1483270962916089857,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/5fd37477a4c994a59209527361dff86f.png\",\"note\":\"人生碌碌,竞短论长,却不道荣枯有数,得失难量。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/daa4ee531611ae0b85490c22347b5929.mp3\"}}', 0, '', '2022-01-18 10:52:10'); INSERT INTO `sys_oper_log` VALUES (3051, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"梦总是有会醒来的时候,不会醒的梦总有一天会变成悲伤。\",\"createTime\":1642474330133,\"id\":1483270963180331010,\"source\":\"林志广\",\"type\":5}}', 0, '', '2022-01-18 10:52:10'); INSERT INTO `sys_oper_log` VALUES (3052, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools', '127.0.0.1', '', '', '', 1, '', '2022-01-18 11:25:16'); INSERT INTO `sys_oper_log` VALUES (3053, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools', '127.0.0.1', '', '', '{\"code\":200}', 0, '', '2022-01-18 11:26:02'); INSERT INTO `sys_oper_log` VALUES (3054, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools', '127.0.0.1', '', '', '{\"code\":200}', 0, '', '2022-01-18 11:27:36'); INSERT INTO `sys_oper_log` VALUES (3055, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":1},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":6},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":7},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":8},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":13},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":14},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":16}]}', 0, '', '2022-01-18 11:31:31'); INSERT INTO `sys_oper_log` VALUES (3056, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642475319000,\"temperature\":\"9\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 11:32:25'); INSERT INTO `sys_oper_log` VALUES (3057, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"节假日\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:holiday\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-18 11:50:36'); INSERT INTO `sys_oper_log` VALUES (3058, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642476836000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 11:55:50'); INSERT INTO `sys_oper_log` VALUES (3059, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 11:33:56\"}}', 0, '', '2022-01-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (3060, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":166,\"apiName\":\"ROLL-节假日\",\"dayCount\":4,\"apiUrl\":\"https://www.mxnzp.com/api/holiday/recent/list\",\"createTime\":1642476363000,\"limitCount\":30,\"updateTime\":1642476692000,\"id\":1483279488409292801,\"totalCount\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 11:56:07'); INSERT INTO `sys_oper_log` VALUES (3061, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":97}', 0, '', '2022-01-18 11:56:33'); INSERT INTO `sys_oper_log` VALUES (3062, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":127}', 0, '', '2022-01-18 11:56:38'); INSERT INTO `sys_oper_log` VALUES (3063, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Winners never quit and quitters never win. \",\"createTime\":1642478307355,\"dataId\":3832,\"date\":1595433600000,\"id\":1483287644883537922,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/0d14f98e09f0cde2bbe5284a4e482c26.png\",\"note\":\"退缩者永无胜利,胜利者永不退缩。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/45aeb437d228f2785ed3ae19740bfe72.mp3\"}}', 0, '', '2022-01-18 11:58:27'); INSERT INTO `sys_oper_log` VALUES (3064, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"劳动是人类的命运。\",\"createTime\":1642478308316,\"id\":1483287648872321025,\"source\":\"荷马\",\"type\":4}}', 0, '', '2022-01-18 11:58:28'); INSERT INTO `sys_oper_log` VALUES (3065, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"service\"}', '', 1, '该单词已存在!!!!', '2022-01-18 11:58:52'); INSERT INTO `sys_oper_log` VALUES (3066, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"插件\",\"top\":2,\"createTime\":1642478343044,\"englishWord\":\"plugin\",\"isCollect\":1,\"id\":1483287794548862978,\"sort\":0,\"content\":\"plugin\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 11:59:03'); INSERT INTO `sys_oper_log` VALUES (3067, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642478345479,\"en\":\"Beauty will buy no beef.\",\"id\":1483287804795572225,\"zh\":\"漂亮不能当饭吃。\"}}', 0, '', '2022-01-18 11:59:05'); INSERT INTO `sys_oper_log` VALUES (3068, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2},{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":40,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":21,\"total\":47}}', 0, '', '2022-01-18 11:59:10'); INSERT INTO `sys_oper_log` VALUES (3069, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":47}}', 0, '', '2022-01-18 11:59:12'); INSERT INTO `sys_oper_log` VALUES (3070, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642476836000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 11:59:16'); INSERT INTO `sys_oper_log` VALUES (3071, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2},{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":40,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":21,\"total\":47}}', 0, '', '2022-01-18 11:59:20'); INSERT INTO `sys_oper_log` VALUES (3072, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":47}}', 0, '', '2022-01-18 11:59:21'); INSERT INTO `sys_oper_log` VALUES (3073, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":47}}', 0, '', '2022-01-18 11:59:21'); INSERT INTO `sys_oper_log` VALUES (3074, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2},{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":40,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":21,\"total\":47}}', 0, '', '2022-01-18 11:59:46'); INSERT INTO `sys_oper_log` VALUES (3075, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":47}}', 0, '', '2022-01-18 11:59:48'); INSERT INTO `sys_oper_log` VALUES (3076, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":47}}', 0, '', '2022-01-18 11:59:48'); INSERT INTO `sys_oper_log` VALUES (3077, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":47}}', 0, '', '2022-01-18 11:59:48'); INSERT INTO `sys_oper_log` VALUES (3078, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 13:33:56\"}}', 0, '', '2022-01-18 13:42:45'); INSERT INTO `sys_oper_log` VALUES (3079, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 13:33:56\"}}', 0, '', '2022-01-18 13:43:02'); INSERT INTO `sys_oper_log` VALUES (3080, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We can easily forgive a child who is afraid of the dark; the real tragedy of life is when men are afraid of the light.\",\"createTime\":1642484813544,\"dataId\":3690,\"date\":1583164800000,\"id\":1483314933839056897,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/ea0306fce3016ecd4b0957149189fb27.png\",\"note\":\"孩子害怕黑暗,情有可原;人生真正的悲剧,是成人害怕光明。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/e6f6729111798ca861eed5666d5976db.mp3\"}}', 0, '', '2022-01-18 13:46:53'); INSERT INTO `sys_oper_log` VALUES (3081, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们青年的箴言就是勇敢、顽强、坚定,就是排除一切障碍。\",\"createTime\":1642484813620,\"id\":1483314934115880962,\"source\":\"奥斯特洛夫斯基\",\"type\":4}}', 0, '', '2022-01-18 13:46:53'); INSERT INTO `sys_oper_log` VALUES (3082, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"attribution\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"归因\",\"src\":\"attribution\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-01-18 13:46:55'); INSERT INTO `sys_oper_log` VALUES (3083, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"手机\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"Mobile phone\",\"src\":\"手机\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-18 13:47:55'); INSERT INTO `sys_oper_log` VALUES (3084, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"可移动的\",\"top\":1,\"createTime\":1642486145088,\"englishWord\":\"mobile\",\"isCollect\":2,\"id\":1483320518697414657,\"sort\":0,\"content\":\"mobile\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 14:09:05'); INSERT INTO `sys_oper_log` VALUES (3085, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642486148610,\"en\":\"That\'s all right.\",\"id\":1483320533457195010,\"zh\":\" 没事儿。\"}}', 0, '', '2022-01-18 14:09:08'); INSERT INTO `sys_oper_log` VALUES (3086, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西电信\",\"mobile\":\"18907084292\",\"province\":\"江西\"}}', 0, '', '2022-01-18 14:15:17'); INSERT INTO `sys_oper_log` VALUES (3087, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西电信\",\"mobile\":\"18907084291\",\"province\":\"江西\"}}', 0, '', '2022-01-18 14:15:24'); INSERT INTO `sys_oper_log` VALUES (3088, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"}}', 0, '', '2022-01-18 14:15:32'); INSERT INTO `sys_oper_log` VALUES (3089, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"176079939\",\"province\":\"\"}}', 0, '', '2022-01-18 14:15:35'); INSERT INTO `sys_oper_log` VALUES (3090, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"???\",\"province\":\"\"}}', 0, '', '2022-01-18 14:15:45'); INSERT INTO `sys_oper_log` VALUES (3091, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642486560330,\"humidity\":\"63\",\"id\":1483322260386390018,\"province\":\"江西\",\"reporttime\":1642486115000,\"temperature\":\"13\",\"weather\":\"霾\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 14:16:00'); INSERT INTO `sys_oper_log` VALUES (3092, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"???\",\"province\":\"\"}}', 0, '', '2022-01-18 14:17:40'); INSERT INTO `sys_oper_log` VALUES (3093, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"???\",\"province\":\"\"}}', 0, '', '2022-01-18 14:22:05'); INSERT INTO `sys_oper_log` VALUES (3094, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"???\",\"province\":\"\"}}', 0, '', '2022-01-18 14:22:10'); INSERT INTO `sys_oper_log` VALUES (3095, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"???\",\"province\":\"\"}}', 0, '', '2022-01-18 14:23:07'); INSERT INTO `sys_oper_log` VALUES (3096, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"10086\",\"province\":\"\"}}', 0, '', '2022-01-18 14:23:20'); INSERT INTO `sys_oper_log` VALUES (3097, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-18 14:29:00'); INSERT INTO `sys_oper_log` VALUES (3098, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-18 14:29:06'); INSERT INTO `sys_oper_log` VALUES (3099, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-18 14:29:07'); INSERT INTO `sys_oper_log` VALUES (3100, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-18 14:29:14'); INSERT INTO `sys_oper_log` VALUES (3101, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西电信\",\"mobile\":\"18907084291\",\"province\":\"江西\"}}', 0, '', '2022-01-18 14:30:03'); INSERT INTO `sys_oper_log` VALUES (3102, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-18 14:30:06'); INSERT INTO `sys_oper_log` VALUES (3103, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西电信\",\"mobile\":\"18907084295\",\"province\":\"江西\"}}', 0, '', '2022-01-18 14:30:10'); INSERT INTO `sys_oper_log` VALUES (3104, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1483323266583121922', '127.0.0.1', '', '1483323266583121922', '{\"code\":200}', 0, '', '2022-01-18 14:35:24'); INSERT INTO `sys_oper_log` VALUES (3105, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 14:34:02\"}}', 0, '', '2022-01-18 14:35:27'); INSERT INTO `sys_oper_log` VALUES (3106, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 14:34:02\"}}', 0, '', '2022-01-18 14:36:10'); INSERT INTO `sys_oper_log` VALUES (3107, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1483327157651525634', '127.0.0.1', '', '1483327157651525634', '{\"code\":200}', 0, '', '2022-01-18 14:36:13'); INSERT INTO `sys_oper_log` VALUES (3108, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 14:34:02\"}}', 0, '', '2022-01-18 14:36:14'); INSERT INTO `sys_oper_log` VALUES (3109, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 14:34:02\"}}', 0, '', '2022-01-18 14:36:17'); INSERT INTO `sys_oper_log` VALUES (3110, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The secret of getting ahead is getting started.\",\"createTime\":1642487782885,\"dataId\":4013,\"date\":1611072000000,\"id\":1483327388157890561,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/1dc87ae4e7171a326921a25cfdebc8b4.png\",\"note\":\"成功的秘诀是开始行动。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2f1bc8ba74fbfdd2e597b17766ef96a9.mp3\"}}', 0, '', '2022-01-18 14:36:22'); INSERT INTO `sys_oper_log` VALUES (3111, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"秋日薄暮,用菊花煮竹叶青,人与海棠俱醉。\",\"createTime\":1642487783718,\"id\":1483327391618191362,\"source\":\"林清玄\",\"type\":1}}', 0, '', '2022-01-18 14:36:23'); INSERT INTO `sys_oper_log` VALUES (3112, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"64%\",\"reporttime\":1642489709000,\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"}}', 0, '', '2022-01-18 15:19:17'); INSERT INTO `sys_oper_log` VALUES (3113, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"64%\",\"reporttime\":1642489709000,\"temp\":\"12℃\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"}}', 0, '', '2022-01-18 15:20:51'); INSERT INTO `sys_oper_log` VALUES (3114, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%90%8D%E4%B9%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 15:36:14'); INSERT INTO `sys_oper_log` VALUES (3115, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%90%8D%E4%B9%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 萍乡市\",\"cityCode\":\"360300\",\"forecasts\":[{\"date\":\"2022-01-18\",\"dayOfWeek\":\"2\",\"daytemp\":\"11℃\",\"dayweather\":\"阴\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-19\",\"dayOfWeek\":\"3\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-20\",\"dayOfWeek\":\"4\",\"daytemp\":\"17℃\",\"dayweather\":\"多云\",\"nighttemp\":\"8℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"15℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"11℃\",\"nightweather\":\"中雨\"}],\"reportTime\":\"2022-01-18 15:33:51\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 15:43:53'); INSERT INTO `sys_oper_log` VALUES (3116, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%90%8D%E4%B9%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 萍乡市\",\"cityCode\":\"360300\",\"forecasts\":[{\"date\":\"2022-01-18\",\"dayOfWeek\":\"2\",\"daytemp\":\"11℃\",\"dayweather\":\"阴\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-19\",\"dayOfWeek\":\"3\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-20\",\"dayOfWeek\":\"4\",\"daytemp\":\"17℃\",\"dayweather\":\"多云\",\"nighttemp\":\"8℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"15℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"11℃\",\"nightweather\":\"中雨\"}],\"reportTime\":\"2022-01-18 15:33:51\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 15:46:04'); INSERT INTO `sys_oper_log` VALUES (3117, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1642491234000,\"temperature\":\"12\",\"weather\":\"霾\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 15:46:36'); INSERT INTO `sys_oper_log` VALUES (3118, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%90%8D%E4%B9%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 萍乡市\",\"cityCode\":\"360300\",\"forecasts\":[{\"date\":\"2022-01-18\",\"dayOfWeek\":\"2\",\"daytemp\":\"11℃\",\"dayweather\":\"阴\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-19\",\"dayOfWeek\":\"3\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-20\",\"dayOfWeek\":\"4\",\"daytemp\":\"17℃\",\"dayweather\":\"多云\",\"nighttemp\":\"8℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"15℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"11℃\",\"nightweather\":\"中雨\"}],\"reportTime\":\"2022-01-18 15:33:51\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 15:47:48'); INSERT INTO `sys_oper_log` VALUES (3119, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%90%8D%E4%B9%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 萍乡市\",\"humidity\":\"70%\",\"reporttime\":1642491231000,\"temp\":\"11℃\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 15:48:00'); INSERT INTO `sys_oper_log` VALUES (3120, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%90%8D%E4%B9%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 萍乡市\",\"humidity\":\"70%\",\"reporttime\":1642491231000,\"temp\":\"11℃\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 15:52:00'); INSERT INTO `sys_oper_log` VALUES (3121, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E4%B9%9D%E6%B1%9F', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 九江市\",\"cityCode\":\"360400\",\"forecasts\":[{\"date\":\"2022-01-18\",\"dayOfWeek\":\"2\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"3℃\",\"nightweather\":\"晴\"},{\"date\":\"2022-01-19\",\"dayOfWeek\":\"3\",\"daytemp\":\"16℃\",\"dayweather\":\"晴\",\"nighttemp\":\"3℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-20\",\"dayOfWeek\":\"4\",\"daytemp\":\"11℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-18 15:33:57\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 15:52:19'); INSERT INTO `sys_oper_log` VALUES (3122, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%90%8D%E4%B9%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 萍乡市\",\"humidity\":\"70%\",\"reporttime\":1642491231000,\"temp\":\"11℃\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 15:52:40'); INSERT INTO `sys_oper_log` VALUES (3123, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1642491234000,\"temperature\":\"12\",\"weather\":\"霾\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 16:00:40'); INSERT INTO `sys_oper_log` VALUES (3124, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":242,\"apiName\":\"ROLL-预报天气\",\"dayCount\":1,\"apiUrl\":\"https://www.mxnzp.com/api/weather/forecast\",\"createTime\":1642492340000,\"limitCount\":30,\"updateTime\":1642492340000,\"id\":1483346501949345794,\"totalCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 16:00:44'); INSERT INTO `sys_oper_log` VALUES (3125, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":235,\"apiName\":\"ROLL-实时天气\",\"dayCount\":2,\"apiUrl\":\"https://www.mxnzp.com/api/weather/current\",\"createTime\":1642492321000,\"limitCount\":30,\"updateTime\":1642492360000,\"id\":1483346421552926722,\"totalCount\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 16:00:47'); INSERT INTO `sys_oper_log` VALUES (3126, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":1290,\"apiName\":\"ROLL-手机归属地\",\"dayCount\":12,\"apiUrl\":\"https://www.mxnzp.com/api/mobile_location/aim_mobile\",\"createTime\":1642486518000,\"limitCount\":30,\"updateTime\":1642487411000,\"id\":1483322081784516609,\"totalCount\":12}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 16:00:50'); INSERT INTO `sys_oper_log` VALUES (3127, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1483348602368708609', '127.0.0.1', '', '1483348602368708609', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-18 16:00:53'); INSERT INTO `sys_oper_log` VALUES (3128, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 15:33:54\"}}', 0, '', '2022-01-18 16:00:56'); INSERT INTO `sys_oper_log` VALUES (3129, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":68}', 0, '', '2022-01-18 16:01:39'); INSERT INTO `sys_oper_log` VALUES (3130, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642493444039,\"humidity\":\"64\",\"id\":1483351132746174466,\"province\":\"江西\",\"reporttime\":1642493311000,\"temperature\":\"13\",\"weather\":\"霾\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 16:10:44'); INSERT INTO `sys_oper_log` VALUES (3131, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"cityCode\":\"360100\",\"forecasts\":[{\"date\":\"2022-01-18\",\"dayOfWeek\":\"2\",\"daytemp\":\"13℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-19\",\"dayOfWeek\":\"3\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"7℃\",\"nightweather\":\"晴\"},{\"date\":\"2022-01-20\",\"dayOfWeek\":\"4\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"8℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"12℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"9℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-18 16:08:31\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 16:14:45'); INSERT INTO `sys_oper_log` VALUES (3132, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E6%B1%9F%E8%A5%BF', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省\",\"cityCode\":\"360000\",\"forecasts\":[{\"date\":\"2022-01-18\",\"dayOfWeek\":\"2\",\"daytemp\":\"13℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-19\",\"dayOfWeek\":\"3\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"7℃\",\"nightweather\":\"晴\"},{\"date\":\"2022-01-20\",\"dayOfWeek\":\"4\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"8℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"12℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"9℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-18 16:08:20\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 16:14:49'); INSERT INTO `sys_oper_log` VALUES (3133, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"成功之秘诀,在始终不变其目的。\",\"createTime\":1642493743066,\"id\":1483352386931150849,\"source\":\"毕因士腓特\",\"type\":4}}', 0, '', '2022-01-18 16:15:43'); INSERT INTO `sys_oper_log` VALUES (3134, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Death smiles at us all. All a man can do is smiles back.\",\"createTime\":1642493743084,\"dataId\":3936,\"date\":1604419200000,\"id\":1483352387040202754,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/096b2766b4ccaea35a4f046d2f5aece1.png\",\"note\":\"死神在向我们每个人微笑,我们所能做的只有回敬微笑。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/3ac3578135cb213d8e0fc4f6b154f2e9.mp3\"}}', 0, '', '2022-01-18 16:15:43'); INSERT INTO `sys_oper_log` VALUES (3135, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642493444039,\"humidity\":\"64\",\"id\":1483351132746174466,\"province\":\"江西\",\"reporttime\":1642493311000,\"temperature\":\"13\",\"weather\":\"霾\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 16:19:29'); INSERT INTO `sys_oper_log` VALUES (3136, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 16:08:31\"}}', 0, '', '2022-01-18 16:19:32'); INSERT INTO `sys_oper_log` VALUES (3137, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E6%B1%9F%E8%A5%BF', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省\",\"cityCode\":\"360000\",\"forecasts\":[{\"date\":\"2022-01-18\",\"dayOfWeek\":\"2\",\"daytemp\":\"13℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-19\",\"dayOfWeek\":\"3\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"7℃\",\"nightweather\":\"晴\"},{\"date\":\"2022-01-20\",\"dayOfWeek\":\"4\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"8℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"12℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"9℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-18 16:08:20\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-18 16:19:39'); INSERT INTO `sys_oper_log` VALUES (3138, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一切未成定局,未来等待你去开创.\",\"createTime\":1642493995036,\"id\":1483353443753152514,\"source\":\"终结者3\",\"type\":3}}', 0, '', '2022-01-18 16:19:55'); INSERT INTO `sys_oper_log` VALUES (3139, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you don\'t walk out, you will think that this is the whole world.\",\"createTime\":1642493995047,\"dataId\":4316,\"date\":1637251200000,\"id\":1483353443828649985,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/73e131fff26a395bb80700a389da4f99.png\",\"note\":\"走出去,才能看到更大的世界。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2b8e62d76029e41cfc07557239b776c8.mp3\"}}', 0, '', '2022-01-18 16:19:55'); INSERT INTO `sys_oper_log` VALUES (3140, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1642493311000,\"temperature\":\"13\",\"weather\":\"霾\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 16:24:12'); INSERT INTO `sys_oper_log` VALUES (3141, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 16:08:31\"}}', 0, '', '2022-01-18 16:24:14'); INSERT INTO `sys_oper_log` VALUES (3142, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642507464459,\"humidity\":\"78\",\"id\":1483409938660941825,\"province\":\"江西\",\"reporttime\":1642505632000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 20:04:24'); INSERT INTO `sys_oper_log` VALUES (3143, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 19:33:52\"}}', 0, '', '2022-01-18 20:04:28'); INSERT INTO `sys_oper_log` VALUES (3144, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642507464459,\"humidity\":\"78\",\"id\":1483409938660941825,\"province\":\"江西\",\"reporttime\":1642505632000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 20:04:35'); INSERT INTO `sys_oper_log` VALUES (3145, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642507464459,\"humidity\":\"78\",\"id\":1483409938660941825,\"province\":\"江西\",\"reporttime\":1642505632000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 20:06:54'); INSERT INTO `sys_oper_log` VALUES (3146, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642507464459,\"humidity\":\"78\",\"id\":1483409938660941825,\"province\":\"江西\",\"reporttime\":1642505632000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 20:09:05'); INSERT INTO `sys_oper_log` VALUES (3147, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"能不能给我们留一条生路?\",\"createTime\":1642507942286,\"id\":1483411942774890497,\"source\":\"铁达尼号(Titanic)\",\"type\":3}}', 0, '', '2022-01-18 20:12:22'); INSERT INTO `sys_oper_log` VALUES (3148, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Everything that has a beginning has an end. \",\"dataId\":4338,\"date\":1639152000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e15d36b3b4becb76e4d3c651a386e085.png\",\"note\":\"世间万物有始皆有终。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/37028313a7899e9c3dae43bb90a1c7e3.mp3\"}}', 0, '', '2022-01-18 20:12:22'); INSERT INTO `sys_oper_log` VALUES (3149, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 19:33:52\"}}', 0, '', '2022-01-18 20:12:29'); INSERT INTO `sys_oper_log` VALUES (3150, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1483338187119144961', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 20:13:32'); INSERT INTO `sys_oper_log` VALUES (3151, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1483338578095386626', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 20:13:34'); INSERT INTO `sys_oper_log` VALUES (3152, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:08:41\"}}', 0, '', '2022-01-18 20:14:50'); INSERT INTO `sys_oper_log` VALUES (3153, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:08:41\"}}', 0, '', '2022-01-18 20:14:56'); INSERT INTO `sys_oper_log` VALUES (3154, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sometimes life hits you in the head with a brick. Don\'t lose faith.\",\"dataId\":3976,\"date\":1607875200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a43928baaf293d8c4a1a27de94f330a4.png\",\"note\":\"有时生活给你当头痛击,但是别丧失信念。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cc51c0c1ad57224b2ed577f8c01b2d6a.mp3\"}}', 0, '', '2022-01-18 20:16:42'); INSERT INTO `sys_oper_log` VALUES (3155, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你不用分清东南西北,只需要走向有我的方向。\",\"createTime\":1642508202495,\"id\":1483413034212483073,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-18 20:16:42'); INSERT INTO `sys_oper_log` VALUES (3156, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:08:41\"}}', 0, '', '2022-01-18 20:16:58'); INSERT INTO `sys_oper_log` VALUES (3157, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:08:41\"}}', 0, '', '2022-01-18 20:17:01'); INSERT INTO `sys_oper_log` VALUES (3158, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:08:41\"}}', 0, '', '2022-01-18 20:17:03'); INSERT INTO `sys_oper_log` VALUES (3159, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:08:41\"}}', 0, '', '2022-01-18 20:17:04'); INSERT INTO `sys_oper_log` VALUES (3160, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:08:41\"}}', 0, '', '2022-01-18 20:17:06'); INSERT INTO `sys_oper_log` VALUES (3161, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:08:41\"}}', 0, '', '2022-01-18 20:17:25'); INSERT INTO `sys_oper_log` VALUES (3162, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:08:41\"}}', 0, '', '2022-01-18 20:17:28'); INSERT INTO `sys_oper_log` VALUES (3163, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642508260851,\"en\":\"\\\"Yes,I\'ve just come back from Scotland.\\\"\",\"id\":1483413278975287298,\"zh\":\" 是的,我刚从苏格兰回来。\"}}', 0, '', '2022-01-18 20:17:40'); INSERT INTO `sys_oper_log` VALUES (3164, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1642507721000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 20:32:02'); INSERT INTO `sys_oper_log` VALUES (3165, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1642507721000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 20:38:03'); INSERT INTO `sys_oper_log` VALUES (3166, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1642507721000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 20:38:08'); INSERT INTO `sys_oper_log` VALUES (3167, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:33:45\"}}', 0, '', '2022-01-18 20:38:17'); INSERT INTO `sys_oper_log` VALUES (3168, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:33:45\"}}', 0, '', '2022-01-18 20:56:10'); INSERT INTO `sys_oper_log` VALUES (3169, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 20:33:45\"}}', 0, '', '2022-01-18 21:07:24'); INSERT INTO `sys_oper_log` VALUES (3170, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1483425793461399554', '127.0.0.1', '', '1483425793461399554', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-18 21:07:28'); INSERT INTO `sys_oper_log` VALUES (3171, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1642509225000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 21:08:22'); INSERT INTO `sys_oper_log` VALUES (3172, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1483426038199037954', '127.0.0.1', '', '1483426038199037954', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-18 21:10:54'); INSERT INTO `sys_oper_log` VALUES (3173, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":34}', 0, '', '2022-01-18 21:12:14'); INSERT INTO `sys_oper_log` VALUES (3174, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 21:34:00\"}}', 0, '', '2022-01-18 21:36:53'); INSERT INTO `sys_oper_log` VALUES (3175, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"autowired的\",\"top\":2,\"createTime\":1642513610341,\"englishWord\":\"autowired\",\"isCollect\":1,\"id\":1483435716345839618,\"sort\":0,\"content\":\"autowired\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 21:46:50'); INSERT INTO `sys_oper_log` VALUES (3176, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"可移动的\",\"top\":2,\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"isCollect\":2,\"id\":1483320518697414657,\"sort\":0,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 21:47:16'); INSERT INTO `sys_oper_log` VALUES (3177, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"可移动的\",\"top\":2,\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"isCollect\":1,\"id\":1483320518697414657,\"sort\":0,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 21:47:27'); INSERT INTO `sys_oper_log` VALUES (3178, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642513650981,\"en\":\"Work is the true source of human welfare.\",\"id\":1483435886823301121,\"zh\":\"劳动是人类福祉的真正源泉.\"}}', 0, '', '2022-01-18 21:47:30'); INSERT INTO `sys_oper_log` VALUES (3179, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"自动注入\",\"top\":2,\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"isCollect\":1,\"id\":1483435716345839618,\"sort\":0,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-18 21:47:58'); INSERT INTO `sys_oper_log` VALUES (3180, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 22:33:41\"}}', 0, '', '2022-01-18 22:40:53'); INSERT INTO `sys_oper_log` VALUES (3181, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 22:33:41\"}}', 0, '', '2022-01-18 22:40:55'); INSERT INTO `sys_oper_log` VALUES (3182, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 22:33:41\"}}', 0, '', '2022-01-18 22:40:57'); INSERT INTO `sys_oper_log` VALUES (3183, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:41:31'); INSERT INTO `sys_oper_log` VALUES (3184, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:41:38'); INSERT INTO `sys_oper_log` VALUES (3185, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 22:33:41\"}}', 0, '', '2022-01-18 22:41:38'); INSERT INTO `sys_oper_log` VALUES (3186, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 22:33:41\"}}', 0, '', '2022-01-18 22:41:39'); INSERT INTO `sys_oper_log` VALUES (3187, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:41:39'); INSERT INTO `sys_oper_log` VALUES (3188, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 22:33:41\"}}', 0, '', '2022-01-18 22:41:40'); INSERT INTO `sys_oper_log` VALUES (3189, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:41:40'); INSERT INTO `sys_oper_log` VALUES (3190, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 22:33:41\"}}', 0, '', '2022-01-18 22:41:41'); INSERT INTO `sys_oper_log` VALUES (3191, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:41:41'); INSERT INTO `sys_oper_log` VALUES (3192, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-18\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-18 22:33:41\"}}', 0, '', '2022-01-18 22:41:42'); INSERT INTO `sys_oper_log` VALUES (3193, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:41:42'); INSERT INTO `sys_oper_log` VALUES (3194, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1483449478377320450', '127.0.0.1', '', '1483449478377320450', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-18 22:41:48'); INSERT INTO `sys_oper_log` VALUES (3195, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你所看见的和感受到的,你所喜爱和理解的,全是你正在穿越的风景。\",\"createTime\":1642516935506,\"id\":1483449663098675202,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-18 22:42:15'); INSERT INTO `sys_oper_log` VALUES (3196, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Nothing great in the world has been accomplished without passion.\",\"createTime\":1642516935519,\"dataId\":4943,\"date\":1597248000000,\"id\":1483449663165784066,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/ba402be69418928dbcf0e64efa6920f5.c2553c189f2ec00deb5413d333d3070e.jpeg\",\"note\":\"世上没有任何伟业的成就能够离得开激情。\",\"source\":\"黑格尔\",\"tts\":\"\"}}', 0, '', '2022-01-18 22:42:15'); INSERT INTO `sys_oper_log` VALUES (3197, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:45:52'); INSERT INTO `sys_oper_log` VALUES (3198, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Patriotism is deeply rooted in the instincts and emotions of human being.\",\"createTime\":1642517152915,\"dataId\":4267,\"date\":1633017600000,\"id\":1483450574969724929,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/eb5a5f36242b66611440e1fd481733a0.png\",\"note\":\"爱国精神深深根植于人的本能和情感之中。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cfd032d3ced47817390310105ab7c7dd.mp3\"}}', 0, '', '2022-01-18 22:45:52'); INSERT INTO `sys_oper_log` VALUES (3199, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如今最好,别说来日方长。\",\"createTime\":1642517152940,\"id\":1483450575103942657,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-18 22:45:52'); INSERT INTO `sys_oper_log` VALUES (3200, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的生命属于整个社会;在我有生之年,尽我力所能及为整个社会工作,这就是我的特殊的荣幸。\",\"createTime\":1642517165424,\"id\":1483450627448856577,\"source\":\"萧伯纳\",\"type\":4}}', 0, '', '2022-01-18 22:46:05'); INSERT INTO `sys_oper_log` VALUES (3201, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Death is not the end of life, forgetting is.\",\"createTime\":1642517165708,\"dataId\":4227,\"date\":1629561600000,\"id\":1483450628652621826,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/7636d2fd677398d46c420be51bb0bc4c.png\",\"note\":\"死亡并不是生命的终点,遗忘才是。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e027595c7a84374e1c072cb018eb6f6f.mp3\"}}', 0, '', '2022-01-18 22:46:05'); INSERT INTO `sys_oper_log` VALUES (3202, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:46:07'); INSERT INTO `sys_oper_log` VALUES (3203, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我,不是坏人,也不是好人,我只是和别人不同\",\"createTime\":1642517167980,\"id\":1483450638182080514,\"source\":\"完美的世界(A Perfect World)\",\"type\":3}}', 0, '', '2022-01-18 22:46:07'); INSERT INTO `sys_oper_log` VALUES (3204, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A rolling stone gathers no moss.\",\"createTime\":1642517168007,\"dataId\":3938,\"date\":1604592000000,\"id\":1483450638257577986,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/185bc5137770931640f9a25dc89bb990.png\",\"note\":\"滚石不生苔。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/8ff09afd117450b78906eeb820867b9f.mp3\"}}', 0, '', '2022-01-18 22:46:08'); INSERT INTO `sys_oper_log` VALUES (3205, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:46:34'); INSERT INTO `sys_oper_log` VALUES (3206, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"持续不断地劳动是人生的铁律,也是艺术的铁律。\",\"createTime\":1642517194874,\"id\":1483450750945943554,\"source\":\"巴尔扎克\",\"type\":4}}', 0, '', '2022-01-18 22:46:34'); INSERT INTO `sys_oper_log` VALUES (3207, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"That was my way of getting through difficult times of low confidence - hard work.\",\"createTime\":1642517194882,\"dataId\":3579,\"date\":1573833600000,\"id\":1483450751013052418,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-16.jpg\",\"note\":\"我渡过没自信那困难时刻的方法是:努力。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-16-day.mp3\"}}', 0, '', '2022-01-18 22:46:34'); INSERT INTO `sys_oper_log` VALUES (3208, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:47:32'); INSERT INTO `sys_oper_log` VALUES (3209, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你抽烟的姿势越来越熟练,爱人也越来越随便。从当时的三杯倒到现在喝不醉,这是堕落不是成长。可是没人掐掉你手中的烟,没人给你一个家,没人替你挡掉手中的酒。说白了,除了孤独和酒你什么都没有。\",\"createTime\":1642517253140,\"id\":1483450995360620546,\"source\":\"老头说\",\"type\":2}}', 0, '', '2022-01-18 22:47:33'); INSERT INTO `sys_oper_log` VALUES (3210, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Problems are not stop signs, they are guidelines.\",\"dataId\":4018,\"date\":1611504000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/2c3dfdc776529db37f49680f611fd4e2.png\",\"note\":\"问题不是止步不前的标志,而是前进的指引。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/012e61e616cbaaed9ab606b554d1ff33.mp3\"}}', 0, '', '2022-01-18 22:47:33'); INSERT INTO `sys_oper_log` VALUES (3211, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:48:36'); INSERT INTO `sys_oper_log` VALUES (3212, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果有一天我忍不住问你,你一定要骗我。就算你心里多不情愿,也不要告诉我你最爱的人不是我。\",\"createTime\":1642517317327,\"id\":1483451264580411394,\"source\":\"东邪西毒\",\"type\":3}}', 0, '', '2022-01-18 22:48:37'); INSERT INTO `sys_oper_log` VALUES (3213, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There are some natures too noble to curb and too lofty to bend.\",\"createTime\":1642517317327,\"dataId\":4039,\"date\":1613318400000,\"id\":1483451264580411393,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/1a7a3c02e6a7df729f84a8ea4eeca8a3.png\",\"note\":\"有些性情,崇高不可遏,高傲不可屈。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/784ae073a71643d1ec5fff1e3c7243a3.mp3\"}}', 0, '', '2022-01-18 22:48:37'); INSERT INTO `sys_oper_log` VALUES (3214, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:48:45'); INSERT INTO `sys_oper_log` VALUES (3215, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Optimists are right. Pessimists are right. It’s up to you to choose which you will be.\",\"createTime\":1642517325797,\"dataId\":4083,\"date\":1617120000000,\"id\":1483451300106166273,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/1cc262608a32d5871a7de8f4590f16f3.png\",\"note\":\"乐观者是对的,悲观者也没错,你自己决定你想成为哪种人。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/f77338a4b816c85d78a9504f333d97e5.mp3\"}}', 0, '', '2022-01-18 22:48:45'); INSERT INTO `sys_oper_log` VALUES (3216, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我想跟你玩个游戏\",\"createTime\":1642517325805,\"id\":1483451300106166274,\"source\":\"夺魂巨(Saw)\",\"type\":3}}', 0, '', '2022-01-18 22:48:45'); INSERT INTO `sys_oper_log` VALUES (3217, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"忘记一个人,并非不再想起,而是偶尔想起,心中却不再有波澜。\",\"createTime\":1642517418170,\"id\":1483451687550803969,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-18 22:50:18'); INSERT INTO `sys_oper_log` VALUES (3218, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I dreamed a dream in time gone by, when hope was high and life worth living.\",\"createTime\":1642517418395,\"dataId\":3714,\"date\":1585238400000,\"id\":1483451688452579330,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/72dd5cad0cb2eca493202bca516c5e7c.png\",\"note\":\"曾几何时,我流连梦境,心比天高,人生充满希望。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/cba13d0ca29b7682e72bab3e282910f3.mp3\"}}', 0, '', '2022-01-18 22:50:18'); INSERT INTO `sys_oper_log` VALUES (3219, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:50:47'); INSERT INTO `sys_oper_log` VALUES (3220, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Enjoy the journey of life and not just the endgame.\",\"createTime\":1642517448189,\"dataId\":3903,\"date\":1601568000000,\"id\":1483451813455421441,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a03101080851864937c63964b8e5b689.png\",\"note\":\"享受人生旅程而不仅是关注结果。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/7d5f8b65f095537d8b74e54e423bab36.mp3\"}}', 0, '', '2022-01-18 22:50:48'); INSERT INTO `sys_oper_log` VALUES (3221, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"最遗憾的是,我们连合照都没有:(\",\"createTime\":1642517448222,\"id\":1483451813593833473,\"source\":\"有一种悲伤\",\"type\":2}}', 0, '', '2022-01-18 22:50:48'); INSERT INTO `sys_oper_log` VALUES (3222, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:50:58'); INSERT INTO `sys_oper_log` VALUES (3223, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A ship in port is safe, but that’s not what ships are built for. Sail out to sea and do new things.\",\"createTime\":1642517458822,\"dataId\":3510,\"date\":1567958400000,\"id\":1483451858049261570,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-09-09.jpg\",\"note\":\"停在港湾里的船是最安全的,但安全不是船追求的目标。扬帆远航,去开创新的事业吧。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-09-09-day.mp3\"}}', 0, '', '2022-01-18 22:50:58'); INSERT INTO `sys_oper_log` VALUES (3224, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"越是困难,越要抬起头,地上可找不到任何希望!\",\"createTime\":1642517458935,\"id\":1483451858527412225,\"source\":\"世界尽头之海\",\"type\":5}}', 0, '', '2022-01-18 22:50:58'); INSERT INTO `sys_oper_log` VALUES (3225, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 22:51:08'); INSERT INTO `sys_oper_log` VALUES (3226, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Any mind that is capable of a real sorrow is capable of good.\",\"createTime\":1642517469255,\"dataId\":4135,\"date\":1621612800000,\"id\":1483451901774880769,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/24e777ff9e2a41925c9887fa17539dea.png\",\"note\":\"真正悲伤过的人都是心存善念的。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/ffcaec10501553f4679db3344b78c08d.mp3\"}}', 0, '', '2022-01-18 22:51:09'); INSERT INTO `sys_oper_log` VALUES (3227, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每次上街耳机里放到粥大爷的歌都会不知觉的走起六亲不认的步伐[大哭] \",\"createTime\":1642517469267,\"id\":1483451901841989633,\"source\":\"出山\",\"type\":2}}', 0, '', '2022-01-18 22:51:09'); INSERT INTO `sys_oper_log` VALUES (3228, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Listen to the pain. It\'s both history teacher and fortune teller. \",\"createTime\":1642518114991,\"dataId\":4102,\"date\":1618761600000,\"id\":1483454610234105857,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d4e9c80c9bd821206cc476b0a75f38ae.png\",\"note\":\"倾听你的痛苦。痛苦是历史老师,也是预言家。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e56fb952b097e55d6b8f175b38d4e5a7.mp3\"}}', 0, '', '2022-01-18 23:01:54'); INSERT INTO `sys_oper_log` VALUES (3229, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"总之岁月漫长,然而值得等待。\",\"createTime\":1642518115185,\"id\":1483454611031023618,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-18 23:01:55'); INSERT INTO `sys_oper_log` VALUES (3230, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 23:03:02'); INSERT INTO `sys_oper_log` VALUES (3231, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"什么都不做,才会来不及。\",\"createTime\":1642518182936,\"id\":1483454895165759490,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-18 23:03:02'); INSERT INTO `sys_oper_log` VALUES (3232, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Two roads diverged in a wood and I took the one less traveled by.\",\"createTime\":1642518182947,\"dataId\":4376,\"date\":1642435200000,\"id\":1483454895232868353,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/25027921703d0e46aa6d0d969a9bb87f.jpg\",\"note\":\"树林中有两条路,我选择了人迹罕至的那一条。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/8c2fde560e8de676219d98abc44e8777.mp3\"}}', 0, '', '2022-01-18 23:03:02'); INSERT INTO `sys_oper_log` VALUES (3233, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 23:03:28'); INSERT INTO `sys_oper_log` VALUES (3234, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"刘翔是唯一一个在直线跑道上真正打败黑人的运动员,甚至创造了连白人都没做到的记录。刘翔参加了48次世界大赛,36次冠军,6次亚军,3次季军,然而有些人却只记得他退赛2次\",\"createTime\":1642518208588,\"id\":1483455002774822913,\"source\":\"Nevada (feat. Cozi Zuehlsdorff)\",\"type\":2}}', 0, '', '2022-01-18 23:03:28'); INSERT INTO `sys_oper_log` VALUES (3235, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Two roads diverged in a wood and I took the one less traveled by.\",\"dataId\":4376,\"date\":1642435200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/25027921703d0e46aa6d0d969a9bb87f.jpg\",\"note\":\"树林中有两条路,我选择了人迹罕至的那一条。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/8c2fde560e8de676219d98abc44e8777.mp3\"}}', 0, '', '2022-01-18 23:03:28'); INSERT INTO `sys_oper_log` VALUES (3236, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“如果失去后才意识到一样东西对自己重要性,或许那个时候也为时已晚,只能成为一件憾事。切斯特顿说过一句话:“爱任何事物的方法,就是要意识到你可能会失去它。” 我想那些理解这句话的人,一定会靠自身感受,去花很多时间去珍惜那些人和事。毕竟人生没有岁月可回首,该珍惜时还是要珍惜。\",\"createTime\":1642518217537,\"id\":1483455040301260801,\"source\":\"四块五\",\"type\":2}}', 0, '', '2022-01-18 23:03:37'); INSERT INTO `sys_oper_log` VALUES (3237, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Two roads diverged in a wood and I took the one less traveled by.\",\"dataId\":4376,\"date\":1642435200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/25027921703d0e46aa6d0d969a9bb87f.jpg\",\"note\":\"树林中有两条路,我选择了人迹罕至的那一条。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/8c2fde560e8de676219d98abc44e8777.mp3\"}}', 0, '', '2022-01-18 23:03:37'); INSERT INTO `sys_oper_log` VALUES (3238, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 23:03:38'); INSERT INTO `sys_oper_log` VALUES (3239, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"愿你是能披荆斩棘的女英雄,也是被人疼爱的小朋友。\",\"createTime\":1642518218981,\"id\":1483455046383001602,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-18 23:03:38'); INSERT INTO `sys_oper_log` VALUES (3240, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Two roads diverged in a wood and I took the one less traveled by.\",\"dataId\":4376,\"date\":1642435200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/25027921703d0e46aa6d0d969a9bb87f.jpg\",\"note\":\"树林中有两条路,我选择了人迹罕至的那一条。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/8c2fde560e8de676219d98abc44e8777.mp3\"}}', 0, '', '2022-01-18 23:03:39'); INSERT INTO `sys_oper_log` VALUES (3241, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 23:03:54'); INSERT INTO `sys_oper_log` VALUES (3242, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sometimes we stare so long at a door that is closing that we see too late the one that is open.\",\"createTime\":1642518234700,\"dataId\":3631,\"date\":1578240000000,\"id\":1483455112313266177,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2020-01-06.jpg\",\"note\":\"我们有时太久地专注于消失的机会,以致于太晚发现开放的机会。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/9ca81c5cddac5dcf7f25b930cbaf4c16.mp3\"}}', 0, '', '2022-01-18 23:03:54'); INSERT INTO `sys_oper_log` VALUES (3243, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一直保持微笑是有诀窍的,那就是,在想哭的时候放声大哭。\",\"createTime\":1642518234827,\"id\":1483455112829165569,\"source\":\"夏未安\",\"type\":5}}', 0, '', '2022-01-18 23:03:54'); INSERT INTO `sys_oper_log` VALUES (3244, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你是我此生最美好的风景,而我确是你此生最多余的配角。\",\"createTime\":1642518240470,\"id\":1483455136493428737,\"source\":\"shmily\",\"type\":5}}', 0, '', '2022-01-18 23:04:00'); INSERT INTO `sys_oper_log` VALUES (3245, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Life is mediocre, short and long, but there is no way to know what is good or bad, gain or loss is difficult.\",\"dataId\":4164,\"date\":1624204800000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/5fd37477a4c994a59209527361dff86f.png\",\"note\":\"人生碌碌,竞短论长,却不道荣枯有数,得失难量。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/daa4ee531611ae0b85490c22347b5929.mp3\"}}', 0, '', '2022-01-18 23:04:00'); INSERT INTO `sys_oper_log` VALUES (3246, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 23:05:58'); INSERT INTO `sys_oper_log` VALUES (3247, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时间从来不说话,却回答了所有问题。\",\"createTime\":1642518358960,\"id\":1483455633510064129,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-18 23:05:58'); INSERT INTO `sys_oper_log` VALUES (3248, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Solitude is the soul\'s holiday, an opportunity to stop doing for others and to surprise and delight ourselves instead.\",\"createTime\":1642518358968,\"dataId\":3673,\"date\":1582300800000,\"id\":1483455633510064130,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/a356fcff007bd65048e48e92bd6795df.png\",\"note\":\"独处是灵魂的假期,你可以不为他人奔忙,只为给自己带来惊喜与喜悦。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/3534bca1b7ec29560daa7e1960b9bd62.mp3\"}}', 0, '', '2022-01-18 23:05:58'); INSERT INTO `sys_oper_log` VALUES (3249, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 23:06:09'); INSERT INTO `sys_oper_log` VALUES (3250, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"互相喜欢+物质基础=甜甜的恋爱\",\"createTime\":1642518369611,\"id\":1483455678191984642,\"source\":\"拾忆\",\"type\":2}}', 0, '', '2022-01-18 23:06:09'); INSERT INTO `sys_oper_log` VALUES (3251, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Don\'t judge each day by the harvest you reap but by the seeds that you plant.\",\"createTime\":1642518369614,\"dataId\":3633,\"date\":1578412800000,\"id\":1483455678191984643,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2020-01-08.jpg\",\"note\":\"不要用你的收成来评价你的每一天,而要看你每天播种了多少。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/e51ba1632c91b0e8ec9ee9da9c56466a.mp3\"}}', 0, '', '2022-01-18 23:06:09'); INSERT INTO `sys_oper_log` VALUES (3252, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642516421000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-18 23:06:36'); INSERT INTO `sys_oper_log` VALUES (3253, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"阿sir,我不做大哥很久了!\",\"createTime\":1642518396515,\"id\":1483455791022956545,\"source\":\"英雄本色\",\"type\":3}}', 0, '', '2022-01-18 23:06:36'); INSERT INTO `sys_oper_log` VALUES (3254, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"To be a sailor of the world, bound for all ports.\",\"createTime\":1642518396537,\"dataId\":4323,\"date\":1637856000000,\"id\":1483455791090065410,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/2abcfe6c9c68179a6fd6ab17425d436e.png\",\"note\":\"做世界的水手,游遍所有的港口。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cc5e8e5a19d57b4274cdf1bcb4db3ac4.mp3\"}}', 0, '', '2022-01-18 23:06:36'); INSERT INTO `sys_oper_log` VALUES (3255, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 08:40:59'); INSERT INTO `sys_oper_log` VALUES (3256, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 08:42:06'); INSERT INTO `sys_oper_log` VALUES (3257, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每次上街耳机里放到粥大爷的歌都会不知觉的走起六亲不认的步伐[大哭] \",\"createTime\":1642552931275,\"id\":1483600640260325377,\"source\":\"出山\",\"type\":2}}', 0, '', '2022-01-19 08:42:11'); INSERT INTO `sys_oper_log` VALUES (3258, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Readers are plentiful. Thinkers are rare.\",\"createTime\":1642552931322,\"dataId\":4235,\"date\":1630252800000,\"id\":1483600640461651969,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d187b41ce2e4541bb0f9bf0cc1771524.png\",\"note\":\"阅读的人很多,但思考的人很少。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2194cec6e07dc5395a4f4772e0371713.mp3\"}}', 0, '', '2022-01-19 08:42:11'); INSERT INTO `sys_oper_log` VALUES (3259, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天是阳菜的生日!お誕生日おめでとう、陽菜!\",\"createTime\":1642553091353,\"id\":1483601311726452737,\"source\":\"大丈夫 (Movie edit)\",\"type\":2}}', 0, '', '2022-01-19 08:44:51'); INSERT INTO `sys_oper_log` VALUES (3260, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Confidence is contagious. So is a lack of confidence.\",\"dataId\":3588,\"date\":1574611200000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-25.jpg\",\"note\":\"自信是会传染的,缺乏自信也是。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-25-day.mp3\"}}', 0, '', '2022-01-19 08:44:51'); INSERT INTO `sys_oper_log` VALUES (3261, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"What makes life dreary is the want of motive. \",\"createTime\":1642553162689,\"dataId\":4146,\"date\":1622563200000,\"id\":1483601610922934274,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/52af7521b08474161792f06d035367b4.png\",\"note\":\"没有了目的,生活便郁闷无光。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/7dfd7edc1eec8e45bb9aee1ceea2dc82.mp3\"}}', 0, '', '2022-01-19 08:46:02'); INSERT INTO `sys_oper_log` VALUES (3262, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"别慌,月亮也正在大海某处迷茫。\",\"createTime\":1642553163369,\"id\":1483601613787643906,\"source\":\"李诞\",\"type\":1}}', 0, '', '2022-01-19 08:46:03'); INSERT INTO `sys_oper_log` VALUES (3263, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我感到一种需要,一种加速的需要!\",\"createTime\":1642553185968,\"id\":1483601708570525698,\"source\":\"壮志凌云 Top gun\",\"type\":3}}', 0, '', '2022-01-19 08:46:25'); INSERT INTO `sys_oper_log` VALUES (3264, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Live your life by a compass, not a clock.\",\"createTime\":1642553185968,\"dataId\":3894,\"date\":1600790400000,\"id\":1483601708570525697,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d6fc1df55505495605b9bfd2856a96c6.png\",\"note\":\"不要以时钟,而是以罗盘來指引你的人生。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/89fe5dc585901a37b988036d9f0abce5.mp3\"}}', 0, '', '2022-01-19 08:46:25'); INSERT INTO `sys_oper_log` VALUES (3265, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我没有爱情,我没有男人,我没有钱,可是我依然过的很好\",\"createTime\":1642553190826,\"id\":1483601728912900098,\"source\":\"不再让你孤单\",\"type\":3}}', 0, '', '2022-01-19 08:46:30'); INSERT INTO `sys_oper_log` VALUES (3266, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Some people choose to see the ugliness in this world. The disarray. I choose to see the beauty.\",\"dataId\":4061,\"date\":1615219200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3c323d57036d925b0d0c4da3dc211136.png\",\"note\":\"一些人选择去看见这个世界的丑陋,混乱,我选择去发现美好。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c0ac03f0c2ab71b31bf40b6afc6ed827.mp3\"}}', 0, '', '2022-01-19 08:46:30'); INSERT INTO `sys_oper_log` VALUES (3267, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"谁是出头鸟,出来一步!(大家都走了一步)\",\"createTime\":1642553295113,\"id\":1483602166349447169,\"source\":\"功夫\",\"type\":3}}', 0, '', '2022-01-19 08:48:15'); INSERT INTO `sys_oper_log` VALUES (3268, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You would not think any duty small if you yourself were great.\",\"createTime\":1642553295440,\"dataId\":3918,\"date\":1602864000000,\"id\":1483602167687430145,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/90e34cb124e164ffeba8041afa846576.png\",\"note\":\"如果自身伟大,任何工作你都不会觉得渺小。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6a0eda0287a117658fb9667b2ee1c483.mp3\"}}', 0, '', '2022-01-19 08:48:15'); INSERT INTO `sys_oper_log` VALUES (3269, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"倚天切!屠龙斩!降龙十八炒!打狗铲!\",\"createTime\":1642553331486,\"id\":1483602318913060865,\"source\":\"食神\",\"type\":3}}', 0, '', '2022-01-19 08:48:51'); INSERT INTO `sys_oper_log` VALUES (3270, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I can\'t give up without a fight!\",\"createTime\":1642553331519,\"dataId\":4204,\"date\":1627574400000,\"id\":1483602319047278594,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/b365de5d1d7e06a30ae1ade80fe0f895.png\",\"note\":\"我不能不战而降!\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/f03ee8143bfa8e4104ae34d17642b1c3.mp3\"}}', 0, '', '2022-01-19 08:48:51'); INSERT INTO `sys_oper_log` VALUES (3271, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\" Love is what binds us, through fair or stormy weather.\",\"createTime\":1642553364334,\"dataId\":4034,\"date\":1612972800000,\"id\":1483602456645615618,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d99d9a39b875d684c4f5186d297088a5.png\",\"note\":\"爱将我们紧紧相连,共度风风雨雨。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/8ebd80694a96a59056c3a13bef005c79.mp3\"}}', 0, '', '2022-01-19 08:49:24'); INSERT INTO `sys_oper_log` VALUES (3272, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你说什么,没听见、是因为声音传播的有点慢.\",\"createTime\":1641647468000,\"id\":1479802852433682434,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-19 08:49:26'); INSERT INTO `sys_oper_log` VALUES (3273, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"高热火焰!看你的盔甲可不可以抵挡住我三万度的火焰!\",\"createTime\":1642553423024,\"id\":1483602702830288897,\"source\":\"凌凌漆大战金鎗客\",\"type\":3}}', 0, '', '2022-01-19 08:50:23'); INSERT INTO `sys_oper_log` VALUES (3274, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"As a kid growing up, I never skipped steps. I always worked on fundamentals because I know athleticism is fleeting.\",\"dataId\":3661,\"date\":1580227200000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/d8a8bba6ef4c30fe1cbd069608d409f1.png\",\"note\":\"成长过程中,我从来没有跳过任何一个步骤,致力于打好基础,因为我知道,运动员生涯短暂。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b3128e516893dbf97e90d683360eb5d9.mp3\"}}', 0, '', '2022-01-19 08:50:23'); INSERT INTO `sys_oper_log` VALUES (3275, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 08:50:58'); INSERT INTO `sys_oper_log` VALUES (3276, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I will dedicate myself to medicine with love for my motherland and loyalty to the people.\",\"createTime\":1642553459798,\"dataId\":3724,\"date\":1585929600000,\"id\":1483602857063235587,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/ac507bf71675028e5b5a6f869cb5866d.png\",\"note\":\"我志愿献身医学,热爱祖国,忠于人民。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b64cf8a2eb9f4aedaf48b38bfd0794fe.mp3\"}}', 0, '', '2022-01-19 08:50:59'); INSERT INTO `sys_oper_log` VALUES (3277, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一段爱情可以带来多大的伤害,也一定曾经带来多大的快乐,爱情其实就是这样!\",\"createTime\":1642553459797,\"id\":1483602857063235586,\"source\":\"百年好合\",\"type\":3}}', 0, '', '2022-01-19 08:50:59'); INSERT INTO `sys_oper_log` VALUES (3278, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"别人稍一注意你,你就敞开心扉,你觉得这是坦率,其实这是孤独。\",\"createTime\":1642553563076,\"id\":1483603290263535618,\"source\":\"国王与乞丐\",\"type\":1}}', 0, '', '2022-01-19 08:52:43'); INSERT INTO `sys_oper_log` VALUES (3279, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-19 08:52:45'); INSERT INTO `sys_oper_log` VALUES (3280, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The snow whispers around me. \",\"createTime\":1642553637308,\"dataId\":4319,\"date\":1637510400000,\"id\":1483603601577361409,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/00d88fe9ffebd0cf20d1b752bac2005e.png\",\"note\":\"雪花萦绕在我耳边,窃窃私语。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/04e1b525390b4872214343a6faa10591.mp3\"}}', 0, '', '2022-01-19 08:53:57'); INSERT INTO `sys_oper_log` VALUES (3281, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好读书,不求甚解。\",\"createTime\":1642553638024,\"id\":1483603604630814722,\"source\":\"陶渊明\",\"type\":4}}', 0, '', '2022-01-19 08:53:58'); INSERT INTO `sys_oper_log` VALUES (3282, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 08:54:41'); INSERT INTO `sys_oper_log` VALUES (3283, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我拥有大风和烈酒,享受着孤独和自由\",\"createTime\":1642553681436,\"id\":1483603786676191234,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-19 08:54:41'); INSERT INTO `sys_oper_log` VALUES (3284, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The revelation of thought takes men out of servitude into freedom.\",\"createTime\":1642553681446,\"dataId\":3716,\"date\":1585411200000,\"id\":1483603786751688705,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/5ec6b4df771bd68c0715ac71456fc508.png\",\"note\":\"思想的解放使人们摆脱奴役获得自由。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/66294c8e4741ce640624a3e871356da8.mp3\"}}', 0, '', '2022-01-19 08:54:41'); INSERT INTO `sys_oper_log` VALUES (3285, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Everything is dangerous. If it weren\'t so, life wouldn\'t be worth living.\",\"createTime\":1642553741681,\"dataId\":4287,\"date\":1634745600000,\"id\":1483604039395590145,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/8ac2083b6fa0e20bc06cadf4460bb6b5.png\",\"note\":\"凡事皆有风险。若非如此,人生将不值一过。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/83c2cb6db4076c38b96302aa905bcd63.mp3\"}}', 0, '', '2022-01-19 08:55:41'); INSERT INTO `sys_oper_log` VALUES (3286, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我没有料到,官僚机构把它的利爪伸到我们的棺材里。\",\"createTime\":1642553742348,\"id\":1483604042188996609,\"source\":\"巴尔扎克\",\"type\":4}}', 0, '', '2022-01-19 08:55:42'); INSERT INTO `sys_oper_log` VALUES (3287, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 08:55:44'); INSERT INTO `sys_oper_log` VALUES (3288, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Hope is like the sun, as we journey toward it, casts the shadow of our burden behind us.\",\"createTime\":1642553744476,\"dataId\":3837,\"date\":1595865600000,\"id\":1483604051106086914,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/4fcbb17399f1098342cb524332dc8953.png\",\"note\":\"希望有如太阳,当我们向它行进时,便把我们负担的阴影投在身后。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/78e8375d5bf03ceecc5f7c9c353cbb6e.mp3\"}}', 0, '', '2022-01-19 08:55:44'); INSERT INTO `sys_oper_log` VALUES (3289, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你侵占我们的国家~杀害我们的百姓~收起你的虚伪!\",\"createTime\":1642553744470,\"id\":1483604051038978050,\"source\":\"叶问\",\"type\":3}}', 0, '', '2022-01-19 08:55:44'); INSERT INTO `sys_oper_log` VALUES (3290, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"魔装少女就是本少爷!\",\"createTime\":1642553773752,\"id\":1483604173856587778,\"source\":\"零之幻想\",\"type\":5}}', 0, '', '2022-01-19 08:56:13'); INSERT INTO `sys_oper_log` VALUES (3291, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Every person has two educations, one which he receives from others, and one, more important, which he gives to himself.\",\"createTime\":1642553774588,\"dataId\":3424,\"date\":1560700800000,\"id\":1483604177409163266,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-17.jpg\",\"note\":\"每个人都受两种教育,一种来自别人,另一种更重要,是来自自己。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-17-day.mp3\"}}', 0, '', '2022-01-19 08:56:14'); INSERT INTO `sys_oper_log` VALUES (3292, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"戳爷这副细腻、磁性甚至可以说具有魔力的嗓音 配上很小马丁风格的电音 真是满足了大家无限的期待 仿佛夏日的维他柠檬茶一般激爽!其实 光是冲着二人的这两张美颜 这首歌就值得循环起来了吧[大笑]\",\"createTime\":1642553783485,\"id\":1483604214717497346,\"source\":\"There For You\",\"type\":2}}', 0, '', '2022-01-19 08:56:23'); INSERT INTO `sys_oper_log` VALUES (3293, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I have crossed oceans of time to find you.\",\"dataId\":4104,\"date\":1618934400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/5455cc73ee8729bf7e92ec3bc2a0ccd9.png\",\"note\":\"我跨越时间的海洋来寻你。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cc295d8a6d9c2b27920c15a4c3010030.mp3\"}}', 0, '', '2022-01-19 08:56:23'); INSERT INTO `sys_oper_log` VALUES (3294, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"为何人类捡起棍子…是用棍子攻击别人?! 而不是用棍子搀扶起…另一个人?!\",\"createTime\":1642553818026,\"id\":1483604359580368897,\"source\":\"开麦拉惊魂\",\"type\":3}}', 0, '', '2022-01-19 08:56:58'); INSERT INTO `sys_oper_log` VALUES (3295, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Victory and defeat arc each of the same price.\",\"createTime\":1642553818028,\"dataId\":3805,\"date\":1593100800000,\"id\":1483604359580368898,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/7d98c625ea9ecf3e49808b92734024a7.png\",\"note\":\"胜利和失败每方都是同等的代价。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/16558c4960785b640c78172bf9c647b6.mp3\"}}', 0, '', '2022-01-19 08:56:58'); INSERT INTO `sys_oper_log` VALUES (3296, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"丧失了自尊心的人,是一个没有出息的个人;丧失了自尊心的民族,是一个无望的民族。\",\"createTime\":1642553829081,\"id\":1483604405981954050,\"source\":\"陈祖芬\",\"type\":4}}', 0, '', '2022-01-19 08:57:09'); INSERT INTO `sys_oper_log` VALUES (3297, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Even with two eyes, you only see half of the picture.\",\"createTime\":1642553829083,\"dataId\":4195,\"date\":1626796800000,\"id\":1483604405990342658,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/fbae58c16f66981de17e90414c16bee5.png\",\"note\":\"即便亲眼所见,也无法窥得全貌。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/1025c474a22d6ebb55bf4a3b160f0098.mp3\"}}', 0, '', '2022-01-19 08:57:09'); INSERT INTO `sys_oper_log` VALUES (3298, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We turn not older with years, but newer every day.\",\"createTime\":1642553875045,\"dataId\":4285,\"date\":1634572800000,\"id\":1483604598739582978,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3779dc29c7ad7c06f97c029b1a2e9f6b.png\",\"note\":\"我们并非在年复一年地变老,而是日复一日地焕然一新。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0d973a6b5d19536a5de69a262e358358.mp3\"}}', 0, '', '2022-01-19 08:57:55'); INSERT INTO `sys_oper_log` VALUES (3299, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真理永远是不朽的,而谬误总有一天要被纠正。\",\"createTime\":1642553875043,\"id\":1483604598739582977,\"source\":\"玛·埃迪\",\"type\":4}}', 0, '', '2022-01-19 08:57:55'); INSERT INTO `sys_oper_log` VALUES (3300, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I have crossed oceans of time to find you.\",\"dataId\":4104,\"date\":1618934400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/5455cc73ee8729bf7e92ec3bc2a0ccd9.png\",\"note\":\"我跨越时间的海洋来寻你。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cc295d8a6d9c2b27920c15a4c3010030.mp3\"}}', 0, '', '2022-01-19 08:58:50'); INSERT INTO `sys_oper_log` VALUES (3301, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人说, 林深时见鹿, 海蓝时见鲸, 梦醒时见你。 可实际, 林深时雾起, 海蓝时浪涌, 梦醒时也许未见鹿, 未见鲸,亦未见你。 但是, 鹿踏雾而来, 鲸随浪儿起, 你没回头,又怎知我没来过。\",\"createTime\":1642553930258,\"id\":1483604830311301122,\"source\":\"That Girl\",\"type\":2}}', 0, '', '2022-01-19 08:58:50'); INSERT INTO `sys_oper_log` VALUES (3302, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"劳动果实是所有果实中最甜蜜的。\",\"createTime\":1642553933171,\"id\":1483604842562863105,\"source\":\"(欧洲)谚语\",\"type\":4}}', 0, '', '2022-01-19 08:58:53'); INSERT INTO `sys_oper_log` VALUES (3303, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"What I see here is nothing but a shell. What is most important is what is invisible.\",\"createTime\":1642553933173,\"dataId\":3895,\"date\":1600876800000,\"id\":1483604842562863106,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/906cda332d8f41f555f7b66afb71d006.png\",\"note\":\"我看到的都是表象,最重要的东西肉眼是看不见的。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2cb39870c9b2d5682ea33dc3e83acdab.mp3\"}}', 0, '', '2022-01-19 08:58:53'); INSERT INTO `sys_oper_log` VALUES (3304, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不开心,就算长生不老也没用,开心,就算只能活几天也足够!\",\"createTime\":1642553965102,\"id\":1483604976474406913,\"source\":\"齐天大圣西游记\",\"type\":3}}', 0, '', '2022-01-19 08:59:25'); INSERT INTO `sys_oper_log` VALUES (3305, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Just take one deep breath, and all trouble will disappear.\",\"createTime\":1642553965402,\"dataId\":3898,\"date\":1601136000000,\"id\":1483604977745281025,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/da64f0226ee6da9874b5b1d0268f36c3.png\",\"note\":\"天大烦恼,一个深呼吸就什么都没了。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0ab24000dbb3042c15b0d046912c5376.mp3\"}}', 0, '', '2022-01-19 08:59:25'); INSERT INTO `sys_oper_log` VALUES (3306, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I love you not for who you are, but for who I am with you.\",\"createTime\":1642553998161,\"dataId\":4365,\"date\":1641484800000,\"id\":1483605115154874369,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/049a3bb00559ef4b274f0cef2b583fc9.png\",\"note\":\"我爱你不是因为你是谁,而是我在你面前可以是谁。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a346a28bb414a0cd64f6b153c5289271.mp3\"}}', 0, '', '2022-01-19 08:59:58'); INSERT INTO `sys_oper_log` VALUES (3307, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"梦想是什么,梦想是现实的延续;现实是什么,现实是梦想的终结。\",\"createTime\":1642553998276,\"id\":1483605115616247809,\"source\":\"kigoo\",\"type\":5}}', 0, '', '2022-01-19 08:59:58'); INSERT INTO `sys_oper_log` VALUES (3308, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"What we do for ourselves dies with us. What we do for others and the world remains and is immortal.\",\"createTime\":1642554001131,\"dataId\":3675,\"date\":1582128000000,\"id\":1483605127595180042,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/5da79b78e83b625ff93947ca043bcec9.png\",\"note\":\"为自己做的都会随着死去而消逝,为他人和世界所做的将会延续而不朽。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/96f31b0f7fa377322529233f206e03f6.mp3\"}}', 0, '', '2022-01-19 09:00:01'); INSERT INTO `sys_oper_log` VALUES (3309, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"看那天地日月,恒静无言;青山长河,世代绵延;就像在我心中,你从未离去,也从未改变。\",\"createTime\":1642554001127,\"id\":1483605127595180034,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-19 09:00:01'); INSERT INTO `sys_oper_log` VALUES (3310, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 09:03:44'); INSERT INTO `sys_oper_log` VALUES (3311, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不管再怎么痛苦、烦恼,即使说一定要忘记你,还是办不到,还是那么喜欢你,不能从这种心情中逃跑。\",\"createTime\":1642554224433,\"id\":1483606064170680322,\"source\":\"爱情白皮书\",\"type\":3}}', 0, '', '2022-01-19 09:03:44'); INSERT INTO `sys_oper_log` VALUES (3312, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Never give up until the fight is over.\",\"createTime\":1642554225435,\"dataId\":4329,\"date\":1638374400000,\"id\":1483606068369178625,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/f8c22dd91a6153bcf431910449d5be6b.png\",\"note\":\"永远不要放弃,要一直战斗到最后一秒。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0721bf0e8c549c7ee674a6e84fc31cbe.mp3\"}}', 0, '', '2022-01-19 09:03:45'); INSERT INTO `sys_oper_log` VALUES (3313, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"不管再怎么痛苦、烦恼,即使说一定要忘记你,还是办不到,还是那么喜欢你,不能从这种心情中逃跑。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"No matter how much pain and trouble, even if we say we must forget you, we still can\'t do it, we still like you so much, and we can\'t escape from this mood.\",\"src\":\"不管再怎么痛苦、烦恼,即使说一定要忘记你,还是办不到,还是那么喜欢你,不能从这种心情中逃跑。\"}]}}', 0, '', '2022-01-19 09:03:57'); INSERT INTO `sys_oper_log` VALUES (3314, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 09:04:09'); INSERT INTO `sys_oper_log` VALUES (3315, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 08:33:43\"}}', 0, '', '2022-01-19 09:04:09'); INSERT INTO `sys_oper_log` VALUES (3316, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 08:33:43\"}}', 0, '', '2022-01-19 09:04:11'); INSERT INTO `sys_oper_log` VALUES (3317, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 09:04:11'); INSERT INTO `sys_oper_log` VALUES (3318, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 09:07:06'); INSERT INTO `sys_oper_log` VALUES (3319, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 09:07:11'); INSERT INTO `sys_oper_log` VALUES (3320, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Go as far as you can see, when you get there you\'ll be able to see farther. \",\"createTime\":1642554432041,\"dataId\":3746,\"date\":1588003200000,\"id\":1483606934920773635,\"imgurl\":\"https://v-sq.ks3-cn-beijing.ksyun.com/image/3b2bb61f37d7d09ae9d00cd36ae36648.png\",\"note\":\"去你所能到达的最远处,等你到那儿,你会看得更远。\",\"source\":\"新版每日一句\",\"tts\":\"https://v-sq.ks3-cn-beijing.ksyun.com/audio/7a02fb394900d2c29c1ffa6a0d1ed695.mp3\"}}', 0, '', '2022-01-19 09:07:12'); INSERT INTO `sys_oper_log` VALUES (3321, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"说了多少回了,要团结,眼睛要看这别人的长处。这次出来,一是通过实战锻炼队伍,二是考察新人,在这里我特别要表扬的是小叶和四眼。两位虽然刚刚入道,做人啊,不但突破了自己, 也超越了在座的前辈。\",\"createTime\":1642554432041,\"id\":1483606934920773634,\"source\":\"天下无贼\",\"type\":3}}', 0, '', '2022-01-19 09:07:12'); INSERT INTO `sys_oper_log` VALUES (3322, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 09:07:13'); INSERT INTO `sys_oper_log` VALUES (3323, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每次上街耳机里放到粥大爷的歌都会不知觉的走起六亲不认的步伐[大哭] \",\"createTime\":1642554434295,\"id\":1483606944429260802,\"source\":\"出山\",\"type\":2}}', 0, '', '2022-01-19 09:07:14'); INSERT INTO `sys_oper_log` VALUES (3324, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"After the rain, the sun will reappear. There is life. After the pain, the joy will be here.\",\"createTime\":1642554434299,\"dataId\":3453,\"date\":1563033600000,\"id\":1483606944429260803,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-14.jpg\",\"note\":\"雨后必见太阳。这就是生活。正如痛苦过后必见快乐。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-14-day.mp3\"}}', 0, '', '2022-01-19 09:07:14'); INSERT INTO `sys_oper_log` VALUES (3325, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642552423000,\"temperature\":\"7\",\"weather\":\"雾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 09:08:35'); INSERT INTO `sys_oper_log` VALUES (3326, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Go as far as you can see, when you get there you\'ll be able to see farther. \",\"dataId\":3746,\"date\":1588003200000,\"imgurl\":\"https://v-sq.ks3-cn-beijing.ksyun.com/image/3b2bb61f37d7d09ae9d00cd36ae36648.png\",\"note\":\"去你所能到达的最远处,等你到那儿,你会看得更远。\",\"source\":\"新版每日一句\",\"tts\":\"https://v-sq.ks3-cn-beijing.ksyun.com/audio/7a02fb394900d2c29c1ffa6a0d1ed695.mp3\"}}', 0, '', '2022-01-19 09:08:35'); INSERT INTO `sys_oper_log` VALUES (3327, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"并不是你生命中的男人有价值,而是你与男人在一起的生命。---米-怀斯特\",\"createTime\":1642554515569,\"id\":1483607285279375361,\"source\":\"我不是天使I\'m no angel\",\"type\":3}}', 0, '', '2022-01-19 09:08:35'); INSERT INTO `sys_oper_log` VALUES (3328, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 09:33:54\"}}', 0, '', '2022-01-19 09:50:37'); INSERT INTO `sys_oper_log` VALUES (3329, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642556034000,\"temperature\":\"8\",\"weather\":\"雾\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 09:50:37'); INSERT INTO `sys_oper_log` VALUES (3330, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 09:33:54\"}}', 0, '', '2022-01-19 09:50:41'); INSERT INTO `sys_oper_log` VALUES (3331, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"98\",\"province\":\"江西\",\"reporttime\":1642556034000,\"temperature\":\"8\",\"weather\":\"雾\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 09:50:41'); INSERT INTO `sys_oper_log` VALUES (3332, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们可能把幻想作为伴侣,但必须以理智作为我们指引。\",\"createTime\":1642557169259,\"id\":1483618415657762817,\"source\":\"约翰逊\",\"type\":4}}', 0, '', '2022-01-19 09:52:49'); INSERT INTO `sys_oper_log` VALUES (3333, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"At some point, you got to decide for yourself who you\'re going to be—can\'t let nobody make that decision for you.\",\"createTime\":1642557170251,\"dataId\":3591,\"date\":1574870400000,\"id\":1483618419801735170,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-28.jpg\",\"note\":\"在某些时刻,你得自己决定要成为什么样的人,不能让别人帮你做决定。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/https://edu-wps.ks3-cn-beijing.ksyun.com/audio/c9020c426e2448af4dfb2f225b31bc5d.mp3\"}}', 0, '', '2022-01-19 09:52:50'); INSERT INTO `sys_oper_log` VALUES (3334, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 10:33:44\"}}', 0, '', '2022-01-19 10:47:25'); INSERT INTO `sys_oper_log` VALUES (3335, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1642559624000,\"temperature\":\"9\",\"weather\":\"雾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 10:47:25'); INSERT INTO `sys_oper_log` VALUES (3336, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 10:33:44\"}}', 0, '', '2022-01-19 10:47:46'); INSERT INTO `sys_oper_log` VALUES (3337, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1642559624000,\"temperature\":\"9\",\"weather\":\"雾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 10:47:46'); INSERT INTO `sys_oper_log` VALUES (3338, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1642559624000,\"temperature\":\"9\",\"weather\":\"雾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 10:47:50'); INSERT INTO `sys_oper_log` VALUES (3339, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 10:33:44\"}}', 0, '', '2022-01-19 10:47:50'); INSERT INTO `sys_oper_log` VALUES (3340, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1642559624000,\"temperature\":\"9\",\"weather\":\"雾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 10:49:15'); INSERT INTO `sys_oper_log` VALUES (3341, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1642559624000,\"temperature\":\"9\",\"weather\":\"雾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 10:49:22'); INSERT INTO `sys_oper_log` VALUES (3342, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E9%A6%99%E8%95%89', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"香蕉\",\"goodsType\":\"湿垃圾\"},\"recommendList\":{\"goodsName\":\"香蕉皮\",\"goodsType\":\"湿垃圾\"}},\"msg\":\"操作成功\"}', 0, '', '2022-01-19 11:26:25'); INSERT INTO `sys_oper_log` VALUES (3343, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%9A%AE%E9%9E%8B', '127.0.0.1', '', '', '', 1, 'syntax error, expect {, actual [, fieldName recommendList, pos 1, line 1, column 2[{\"goodsName\":\"皮鞋\",\"goodsType\":\"可回收垃圾\"},{\"goodsName\":\"旧皮鞋\",\"goodsType\":\"可回收垃圾\"}]', '2022-01-19 11:26:31'); INSERT INTO `sys_oper_log` VALUES (3344, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":1417,\"apiName\":\"ROLL-垃圾分类\",\"dayCount\":3,\"apiUrl\":\"https://www.mxnzp.com/api/rubbish/type\",\"createTime\":1642562750000,\"limitCount\":30,\"updateTime\":1642562791000,\"id\":1483641821371441153,\"totalCount\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-19 11:27:24'); INSERT INTO `sys_oper_log` VALUES (3345, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":34,\"msg\":\"操作成功\"}', 0, '', '2022-01-19 11:32:59'); INSERT INTO `sys_oper_log` VALUES (3346, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%9A%AE%E9%9E%8B', '127.0.0.1', '', '', '', 1, 'syntax error, expect {, actual [, fieldName recommendList, pos 1, line 1, column 2[{\"goodsName\":\"皮鞋\",\"goodsType\":\"可回收垃圾\"},{\"goodsName\":\"旧皮鞋\",\"goodsType\":\"可回收垃圾\"}]', '2022-01-19 11:33:42'); INSERT INTO `sys_oper_log` VALUES (3347, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 11:33:54\"}}', 0, '', '2022-01-19 11:34:45'); INSERT INTO `sys_oper_log` VALUES (3348, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642563285968,\"humidity\":\"85\",\"id\":1483644071036739586,\"province\":\"江西\",\"reporttime\":1642563234000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 11:34:45'); INSERT INTO `sys_oper_log` VALUES (3349, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 11:33:54\"}}', 0, '', '2022-01-19 11:34:51'); INSERT INTO `sys_oper_log` VALUES (3350, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642563285968,\"humidity\":\"85\",\"id\":1483644071036739586,\"province\":\"江西\",\"reporttime\":1642563234000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 11:34:51'); INSERT INTO `sys_oper_log` VALUES (3351, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"图片\",\"top\":2,\"createTime\":1642563485969,\"englishWord\":\"The picture\",\"isCollect\":1,\"id\":1483644909901729793,\"sort\":0,\"content\":\"图片\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-19 11:38:06'); INSERT INTO `sys_oper_log` VALUES (3352, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"图片\",\"top\":2,\"createTime\":1642563486000,\"englishWord\":\"picture\",\"isCollect\":1,\"id\":1483644909901729793,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-19 11:38:19'); INSERT INTO `sys_oper_log` VALUES (3353, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642563501142,\"en\":\"Where there is unity, there is victory. / Victory belongs to those who are united.\",\"id\":1483644973499965442,\"zh\":\"有团结就有胜利.\"}}', 0, '', '2022-01-19 11:38:21'); INSERT INTO `sys_oper_log` VALUES (3354, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642563872487,\"en\":\"In settling on island,the first building erected by a Spaniard wil be a church; by a Frenchman,a fort; by a Dutchman,a warehouse; and by an Englishman, an alehouse.\",\"id\":1483646531079921665,\"zh\":\"在海岛定居时,西班牙人先造教堂;法国人先造要塞;荷兰人先造仓库而英 国人则先造酒店。\"}}', 0, '', '2022-01-19 11:44:32'); INSERT INTO `sys_oper_log` VALUES (3355, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642563285968,\"humidity\":\"85\",\"id\":1483644071036739586,\"province\":\"江西\",\"reporttime\":1642563234000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 11:44:39'); INSERT INTO `sys_oper_log` VALUES (3356, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 11:33:54\"}}', 0, '', '2022-01-19 11:44:39'); INSERT INTO `sys_oper_log` VALUES (3357, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"想见就见的日子,要好好珍惜,多多见面。\",\"createTime\":1642563949557,\"id\":1483646854292987905,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-19 11:45:49'); INSERT INTO `sys_oper_log` VALUES (3358, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I want to bring out the secrets of nature and apply them for the happiness of man. I don\'t know of any better service to offer for the short time we are in the world.\",\"createTime\":1642563950731,\"dataId\":3494,\"date\":1566576000000,\"id\":1483646859259043842,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-24.jpg\",\"note\":\"我想揭示大自然的秘密,用来造福人类。我认为,在我们的短暂一生中,最好的贡献莫过于此了。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-24-day.mp3\"}}', 0, '', '2022-01-19 11:45:50'); INSERT INTO `sys_oper_log` VALUES (3359, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"想见就见的日子,要好好珍惜,多多见面。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":24,\"errorCode\":0,\"transResult\":[{\"dst\":\"\'d like to see on the day of, want to cherish, meet a lot.\",\"src\":\"想见就见的日子,要好好珍惜,多多见面。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-19 11:45:57'); INSERT INTO `sys_oper_log` VALUES (3360, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"想见就见的日子,要好好珍惜,多多见面。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"\'d like to see on the day of, want to cherish, meet a lot.\",\"src\":\"想见就见的日子,要好好珍惜,多多见面。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-19 11:45:59'); INSERT INTO `sys_oper_log` VALUES (3361, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"想见就见的日子,要好好珍惜,多多见面。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"\'d like to see on the day of, want to cherish, meet a lot.\",\"src\":\"想见就见的日子,要好好珍惜,多多见面。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-19 11:46:02'); INSERT INTO `sys_oper_log` VALUES (3362, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1475398251439112193,1475398202093125634,1475397779659603969,1475397426755059713,1475394355039748098,1475394342368755714,1475394327399284737,1475394298659913730,1475394275679322114,1475394255903178753', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-19 11:47:00'); INSERT INTO `sys_oper_log` VALUES (3363, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%9E%8E', '127.0.0.1', '', '', '', 1, '', '2022-01-19 11:57:01'); INSERT INTO `sys_oper_log` VALUES (3364, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%82%BB%E9%80%BC', '127.0.0.1', '', '', '', 1, '', '2022-01-19 11:58:04'); INSERT INTO `sys_oper_log` VALUES (3365, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%9E%8E', '127.0.0.1', '', '', '', 1, '未搜索到相关物品垃圾分类信息,该关键词已上报,感谢您的使用', '2022-01-19 12:00:30'); INSERT INTO `sys_oper_log` VALUES (3366, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":5},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":7},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":12},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":13},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":15}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 12:14:26'); INSERT INTO `sys_oper_log` VALUES (3367, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%82%BB%E9%80%BC', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-19 12:15:24'); INSERT INTO `sys_oper_log` VALUES (3368, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E7%9E%8E', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-19 12:15:29'); INSERT INTO `sys_oper_log` VALUES (3369, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture/', '127.0.0.1', '', '', '', 1, '', '2022-01-19 13:47:24'); INSERT INTO `sys_oper_log` VALUES (3370, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"158301\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvymn6gj31c00u0k50.jpg\"},{\"imageFileLength\":\"101163\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta3b1hrj31c00u0wgz.jpg\"},{\"imageFileLength\":\"164000\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf59ixvj31900u043d.jpg\"},{\"imageFileLength\":\"138836\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8ou2ekj31c00u0n0s.jpg\"},{\"imageFileLength\":\"114822\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbaswbfj31c00u00vt.jpg\"},{\"imageFileLength\":\"119559\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utapk63zj31hc0u0q5t.jpg\"},{\"imageFileLength\":\"264174\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urw0z3jkj31hc0u0ao6.jpg\"},{\"imageFileLength\":\"121191\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ur9x7ie1j31c00u00vu.jpg\"},{\"imageFileLength\":\"107701\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpael2oj31c00u0qec.jpg\"},{\"imageFileLength\":\"172517\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8rh3w3j31c00u0aez.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 13:52:39'); INSERT INTO `sys_oper_log` VALUES (3371, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"178733\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urav2glwj31c00u043f.jpg\"},{\"imageFileLength\":\"97051\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbao9jqj31c00u0wgv.jpg\"},{\"imageFileLength\":\"144341\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4u9rrqj31hc0u0jv0.jpg\"},{\"imageFileLength\":\"156136\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbex3o5j31c00u042s.jpg\"},{\"imageFileLength\":\"143016\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfktkfcj31c00u0qat.jpg\"},{\"imageFileLength\":\"171277\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8psh6xj31c00u0gqe.jpg\"},{\"imageFileLength\":\"223699\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvn7tx2j31c00u0k5u.jpg\"},{\"imageFileLength\":\"191771\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq5286obj31hc0u00y6.jpg\"},{\"imageFileLength\":\"153971\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utazjweqj31c00u0q78.jpg\"},{\"imageFileLength\":\"140647\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut5d2ulvj31hc0u0why.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 13:53:07'); INSERT INTO `sys_oper_log` VALUES (3372, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"176\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbfnqnkj31hc0u07b2.jpg\"},{\"imageFileLength\":\"250\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpj44r3j31c00u0n6o.jpg\"},{\"imageFileLength\":\"181\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us94m8ovj31c00u0wjg.jpg\"},{\"imageFileLength\":\"117\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbg77cj31c00u0ad5.jpg\"},{\"imageFileLength\":\"141\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8tkdbgj31c00u0djm.jpg\"},{\"imageFileLength\":\"98\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8i43qxj31c00u076t.jpg\"},{\"imageFileLength\":\"120\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usevh49wj31c00u0juh.jpg\"},{\"imageFileLength\":\"111\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utav03crj31c00u0act.jpg\"},{\"imageFileLength\":\"160\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5irmfnj31hc0u0aen.jpg\"},{\"imageFileLength\":\"255\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us95dlj8j31hc0u0tfe.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 14:00:44'); INSERT INTO `sys_oper_log` VALUES (3373, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"171MB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursvoilij31c00u0wrk.jpg\"},{\"imageFileLength\":\"221MB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urac70t1j31hc0u0k01.jpg\"},{\"imageFileLength\":\"222MB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usffr0v7j31hc0u0dli.jpg\"},{\"imageFileLength\":\"159MB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb9c65bj31hc0u0wiu.jpg\"},{\"imageFileLength\":\"312MB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp85swqj31c00u048n.jpg\"},{\"imageFileLength\":\"136MB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut472oezj31c00u0420.jpg\"},{\"imageFileLength\":\"221MB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8nktemj31hc0u0grf.jpg\"},{\"imageFileLength\":\"143MB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8h5s09j31c00u0tcq.jpg\"},{\"imageFileLength\":\"171MB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf148q8j31c00u0jwf.jpg\"},{\"imageFileLength\":\"193MB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5ilfnmj31c00u0435.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 14:01:02'); INSERT INTO `sys_oper_log` VALUES (3374, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"111KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utake5qfj31c00u0q5r.jpg\"},{\"imageFileLength\":\"114KB\",\"imageSize\":\"1623x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb0gettj31930u0dl5.jpg\"},{\"imageFileLength\":\"160KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf59ixvj31900u043d.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq59yi2qj31hc0u00ya.jpg\"},{\"imageFileLength\":\"191KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uralv2qqj31c00u0n2q.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8lxrsyj31c00u0jv2.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb21419j31c00u079m.jpg\"},{\"imageFileLength\":\"226KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9aoq8fj31c00u07b7.jpg\"},{\"imageFileLength\":\"261KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urayd66kj31c00u0gth.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fat03j31hc0u00wc.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 14:04:59'); INSERT INTO `sys_oper_log` VALUES (3375, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642570434000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 14:07:03'); INSERT INTO `sys_oper_log` VALUES (3376, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642570434000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 14:07:03'); INSERT INTO `sys_oper_log` VALUES (3377, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642570434000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 14:07:07'); INSERT INTO `sys_oper_log` VALUES (3378, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 13:33:54\"}}', 0, '', '2022-01-19 14:07:09'); INSERT INTO `sys_oper_log` VALUES (3379, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642570434000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 14:07:11'); INSERT INTO `sys_oper_log` VALUES (3380, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 13:33:54\"}}', 0, '', '2022-01-19 14:07:11'); INSERT INTO `sys_oper_log` VALUES (3381, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"记得当时年纪小,你爱谈天我爱笑。\",\"createTime\":1642584172222,\"id\":1483731674314551297,\"source\":\"三毛\",\"type\":1}}', 0, '', '2022-01-19 17:22:52'); INSERT INTO `sys_oper_log` VALUES (3382, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We all, whether we know it or not, are fighting to make the kind of a world that we should like.\",\"createTime\":1642584172263,\"dataId\":3812,\"date\":1593705600000,\"id\":1483731674507489281,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/2dcaa7b352ff7f6fe507cf382c6619ef.png\",\"note\":\"不管意识到与否,我们都在为创造一个我们喜欢的世界而奋斗。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/bdcddc60a14e05c251cdb68472ed4eb2.mp3\"}}', 0, '', '2022-01-19 17:22:52'); INSERT INTO `sys_oper_log` VALUES (3383, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"历史今天\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":17,\"errorCode\":0,\"transResult\":[{\"dst\":\"History today\",\"src\":\"历史今天\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-19 17:22:57'); INSERT INTO `sys_oper_log` VALUES (3384, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642591500704,\"humidity\":\"80\",\"id\":1483762412223635457,\"province\":\"江西\",\"reporttime\":1642590515000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 19:25:00'); INSERT INTO `sys_oper_log` VALUES (3385, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642591500704,\"humidity\":\"80\",\"id\":1483762412223635457,\"province\":\"江西\",\"reporttime\":1642590515000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 19:25:13'); INSERT INTO `sys_oper_log` VALUES (3386, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 19:08:35\"}}', 0, '', '2022-01-19 19:25:13'); INSERT INTO `sys_oper_log` VALUES (3387, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642591500704,\"humidity\":\"80\",\"id\":1483762412223635457,\"province\":\"江西\",\"reporttime\":1642590515000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 19:25:44'); INSERT INTO `sys_oper_log` VALUES (3388, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我遇见你很晚/可是我会陪伴你很久。\",\"createTime\":1642591547883,\"id\":1483762610060566530,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-19 19:25:47'); INSERT INTO `sys_oper_log` VALUES (3389, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Whatever you do, just don\'t make any rash decision.\",\"dataId\":4218,\"date\":1628784000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a3562026372317ab865f3a31750bb8cd.png\",\"note\":\"无论你想做什么,千万不要贸然行事。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c7de7077586deaae9a9e42ce453da961.mp3\"}}', 0, '', '2022-01-19 19:25:48'); INSERT INTO `sys_oper_log` VALUES (3390, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我遇见你很晚/可是我会陪伴你很久。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":18,\"errorCode\":0,\"transResult\":[{\"dst\":\"I met you very late, but I will accompany you for a long time.\",\"src\":\"我遇见你很晚/可是我会陪伴你很久。\"},{\"dst\":\"\",\"src\":\"\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-19 19:25:53'); INSERT INTO `sys_oper_log` VALUES (3391, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642591500704,\"humidity\":\"80\",\"id\":1483762412223635457,\"province\":\"江西\",\"reporttime\":1642590515000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 19:25:56'); INSERT INTO `sys_oper_log` VALUES (3392, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 19:08:35\"}}', 0, '', '2022-01-19 19:25:56'); INSERT INTO `sys_oper_log` VALUES (3393, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642591567770,\"en\":\"A man of moral integrity does not fear any slanderous attack.\",\"id\":1483762693518827522,\"zh\":\"人正不怕影子斜。\"}}', 0, '', '2022-01-19 19:26:07'); INSERT INTO `sys_oper_log` VALUES (3394, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":116}', 0, '', '2022-01-19 19:26:48'); INSERT INTO `sys_oper_log` VALUES (3395, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642592032000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 19:48:54'); INSERT INTO `sys_oper_log` VALUES (3396, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Pretend modest often is nonsense, sometimes just is the beat around the bush boast.\",\"dataId\":3709,\"date\":1584806400000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/86ab971af68c9e29f95a66473cb1d3ed.png\",\"note\":\"假装谦虚往往就是信口开河,有时候简直是拐弯抹角的自夸。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/85a48bdd2347928e4a683745faa295c6.mp3\"}}', 0, '', '2022-01-19 19:49:14'); INSERT INTO `sys_oper_log` VALUES (3397, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这是傻瓜的血脉使然啊。\",\"createTime\":1642592954508,\"id\":1483768509919641601,\"source\":\"Sumire\",\"type\":5}}', 0, '', '2022-01-19 19:49:14'); INSERT INTO `sys_oper_log` VALUES (3398, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642595629000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 20:57:46'); INSERT INTO `sys_oper_log` VALUES (3399, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The goal is not always meant to be reached, but to serve as a mark for our aim.\",\"createTime\":1642597069767,\"dataId\":4075,\"date\":1616428800000,\"id\":1483785770524983298,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4165993cde05f0d9cee617a349d49c2b.png\",\"note\":\"目标不一定永远都会达到,但可以当我们瞄准的方向。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e2fa1b723e425983eedb2173c35a8915.mp3\"}}', 0, '', '2022-01-19 20:57:49'); INSERT INTO `sys_oper_log` VALUES (3400, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"难怪你们敢反抗~原来请了个保镳啊!\",\"createTime\":1642597069882,\"id\":1483785771040882690,\"source\":\"叶问\",\"type\":3}}', 0, '', '2022-01-19 20:57:49'); INSERT INTO `sys_oper_log` VALUES (3401, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"Comment\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":40,\"transResult\":[{\"dst\":\"Comment\",\"src\":\"Comment\"}],\"type\":\"UNSUPPORTED\"}}', 0, '', '2022-01-19 20:57:56'); INSERT INTO `sys_oper_log` VALUES (3402, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"Comment\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"议论\",\"src\":\"Comment\"}]}}', 0, '', '2022-01-19 20:58:03'); INSERT INTO `sys_oper_log` VALUES (3403, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"Comment\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"议论\",\"src\":\"Comment\"}]}}', 0, '', '2022-01-19 20:58:06'); INSERT INTO `sys_oper_log` VALUES (3404, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"Comment\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":40,\"transResult\":[{\"dst\":\"Comment\",\"src\":\"Comment\"}],\"type\":\"UNSUPPORTED\"}}', 0, '', '2022-01-19 20:58:09'); INSERT INTO `sys_oper_log` VALUES (3405, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642595629000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 20:58:35'); INSERT INTO `sys_oper_log` VALUES (3406, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 20:33:49\"}}', 0, '', '2022-01-19 20:58:35'); INSERT INTO `sys_oper_log` VALUES (3407, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Everything negative- pressure, challenges- is all an opportunity for me to rise.\",\"createTime\":1642597806789,\"dataId\":3662,\"date\":1580313600000,\"id\":1483788861823500289,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/82b9fdac640ef5b42e42517523872245.png\",\"note\":\"每件负面的事情-压力、挑战-都是令我崛起的机会。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/52ebd02d6f18f1deaddec359c8f51c27.mp3\"}}', 0, '', '2022-01-19 21:10:06'); INSERT INTO `sys_oper_log` VALUES (3408, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"去年高考完徒步搭车 川滇 滇藏 青藏线 一个半月 在旅途结束的西宁看了电影 回来单曲循环 16岁便独自搭车川藏线 作为妹子我也真算得上异类 平时不敢听它 一听就想哭想背包出发 现在大一 前几天憋坏了 逃课骑摩托车去了趟川西 奔驰在一望无际大草原柏油公路 单曲循环 平凡之路 放声大唱 你不知道有多自由\",\"createTime\":1642597806801,\"id\":1483788861894803458,\"source\":\"平凡之路\",\"type\":2}}', 0, '', '2022-01-19 21:10:06'); INSERT INTO `sys_oper_log` VALUES (3409, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:28:12'); INSERT INTO `sys_oper_log` VALUES (3410, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:31:06'); INSERT INTO `sys_oper_log` VALUES (3411, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"1931-1-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"date\":\"1929-1-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"date\":\"1925-1-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"date\":\"1923-1-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"date\":\"1919-1-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:31:44'); INSERT INTO `sys_oper_log` VALUES (3412, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"1931-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"date\":\"1929-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"date\":\"1925-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"date\":\"1923-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"date\":\"1919-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:35:00'); INSERT INTO `sys_oper_log` VALUES (3413, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"1931-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"date\":\"1929-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"date\":\"1925-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"date\":\"1923-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"date\":\"1919-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:37:34'); INSERT INTO `sys_oper_log` VALUES (3414, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"1931-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"date\":\"1929-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"date\":\"1925-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"date\":\"1923-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"date\":\"1919-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:37:35'); INSERT INTO `sys_oper_log` VALUES (3415, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"1931-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"date\":\"1929-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"date\":\"1925-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"date\":\"1923-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"date\":\"1919-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:37:36'); INSERT INTO `sys_oper_log` VALUES (3416, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"1931-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"date\":\"1929-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"date\":\"1925-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"date\":\"1923-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"date\":\"1919-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:37:37'); INSERT INTO `sys_oper_log` VALUES (3417, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"1931-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"date\":\"1929-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"date\":\"1925-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"date\":\"1923-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"date\":\"1919-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:37:38'); INSERT INTO `sys_oper_log` VALUES (3418, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"1931-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"date\":\"1929-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"date\":\"1925-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"date\":\"1923-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"date\":\"1919-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:37:38'); INSERT INTO `sys_oper_log` VALUES (3419, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"1931-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"date\":\"1929-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"date\":\"1925-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"date\":\"1923-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"date\":\"1919-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:37:39'); INSERT INTO `sys_oper_log` VALUES (3420, '获取历史今天分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"1931-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/65174148437.jpg\",\"title\":\"联合国副秘书长明石康诞辰\",\"year\":\"1931\"},{\"date\":\"1929-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/19/2B174141252.jpg\",\"title\":\"戊戌变法主要领导人之一梁启超逝世\",\"year\":\"1929\"},{\"date\":\"1925-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/11/0817325550.jpg\",\"title\":\"“仁义军”匪首之一驼龙在长春被枪决\",\"year\":\"1925\"},{\"date\":\"1923-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"法国宣布发明了射程90公里的新火炮\",\"year\":\"1923\"},{\"date\":\"1919-01-19\",\"day\":\"19\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208113625670.jpg\",\"title\":\"英国翻译家、杨宪益之妻戴乃迭出生于北京\",\"year\":\"1919\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:37:41'); INSERT INTO `sys_oper_log` VALUES (3421, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1483796384739717122', '127.0.0.1', '', '1483796384739717122', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-19 21:40:28'); INSERT INTO `sys_oper_log` VALUES (3422, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 21:33:51\"}}', 0, '', '2022-01-19 21:40:28'); INSERT INTO `sys_oper_log` VALUES (3423, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642599231000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 21:40:28'); INSERT INTO `sys_oper_log` VALUES (3424, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642599231000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 21:40:33'); INSERT INTO `sys_oper_log` VALUES (3425, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 21:33:51\"}}', 0, '', '2022-01-19 21:40:34'); INSERT INTO `sys_oper_log` VALUES (3426, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 21:33:51\"}}', 0, '', '2022-01-19 21:40:35'); INSERT INTO `sys_oper_log` VALUES (3427, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642599231000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 21:40:35'); INSERT INTO `sys_oper_log` VALUES (3428, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1483811485655986178', '127.0.0.1', '', '1483811485655986178', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-19 22:48:51'); INSERT INTO `sys_oper_log` VALUES (3429, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-19\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-01-20\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-19 22:38:47\"}}', 0, '', '2022-01-19 22:48:53'); INSERT INTO `sys_oper_log` VALUES (3430, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1642603127000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-19 22:48:53'); INSERT INTO `sys_oper_log` VALUES (3431, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642639117000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 09:06:28'); INSERT INTO `sys_oper_log` VALUES (3432, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642649630000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 11:57:49'); INSERT INTO `sys_oper_log` VALUES (3433, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642649630000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 11:58:00'); INSERT INTO `sys_oper_log` VALUES (3434, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-01-20 11:58:03'); INSERT INTO `sys_oper_log` VALUES (3435, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642649630000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 11:58:22'); INSERT INTO `sys_oper_log` VALUES (3436, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642649630000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 11:58:24'); INSERT INTO `sys_oper_log` VALUES (3437, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 11:33:50\"}}', 0, '', '2022-01-20 11:58:25'); INSERT INTO `sys_oper_log` VALUES (3438, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 11:33:50\"}}', 0, '', '2022-01-20 11:58:33'); INSERT INTO `sys_oper_log` VALUES (3439, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642649630000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 11:58:33'); INSERT INTO `sys_oper_log` VALUES (3440, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Some people dream of success, while other people get up and make it happen.\",\"createTime\":1642651142037,\"dataId\":4949,\"date\":1597680000000,\"id\":1484012566089998337,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/d7f6eb46af6d66e03695c06cf6fdb546.31f9bda7a46f25daf78ede2efcda76e5.jpeg\",\"note\":\"有些人只是梦想去成功,而其他人却起身让梦想成真。\",\"source\":\"Wayne Huizenga\",\"tts\":\"\"}}', 0, '', '2022-01-20 11:59:02'); INSERT INTO `sys_oper_log` VALUES (3441, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真正的朋友是一个灵魂寓于两个身体,两个灵魂只有一个思想,两颗心的跳动是一致的。\",\"createTime\":1642651143013,\"id\":1484012570154278913,\"source\":\"菏马\",\"type\":4}}', 0, '', '2022-01-20 11:59:03'); INSERT INTO `sys_oper_log` VALUES (3442, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Positive thinking will let you do everything better than negative thinking will.\",\"dataId\":3784,\"date\":1591286400000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/53fc2baa3f5acb6766c7d046fb5d6f33.png\",\"note\":\"比起悲观,乐观会让你把每一件事都做得更好。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/83578231e1444acfeba4057fc60722b4.mp3\"}}', 0, '', '2022-01-20 11:59:10'); INSERT INTO `sys_oper_log` VALUES (3443, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"懒惰它是一种对待劳动态度的特殊作风。它以难于卷入工作而易于离开工作为其特点。\",\"createTime\":1642651150644,\"id\":1484012602152624129,\"source\":\"网络收集\",\"type\":4}}', 0, '', '2022-01-20 11:59:10'); INSERT INTO `sys_oper_log` VALUES (3444, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"懒惰它是一种对待劳动态度的特殊作风。它以难于卷入工作而易于离开工作为其特点。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":30,\"errorCode\":0,\"transResult\":[{\"dst\":\"Laziness is a special attitude toward work style.\",\"src\":\"懒惰它是一种对待劳动态度的特殊作风。\"},{\"dst\":\"It is to hard to involved in the work and easy to leave the work for its characteristics.\",\"src\":\"它以难于卷入工作而易于离开工作为其特点。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-20 11:59:21'); INSERT INTO `sys_oper_log` VALUES (3445, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642656831000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 13:40:02'); INSERT INTO `sys_oper_log` VALUES (3446, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 13:33:51\"}}', 0, '', '2022-01-20 13:40:02'); INSERT INTO `sys_oper_log` VALUES (3447, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人的价值并不取决于是否掌握真理,或者自认为真理在握;决定人的价值的是追求真理的孜孜不倦的精神。\",\"createTime\":1642657424500,\"id\":1484038916662272001,\"source\":\"莱辛\",\"type\":4}}', 0, '', '2022-01-20 13:43:44'); INSERT INTO `sys_oper_log` VALUES (3448, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"This path has been placed before you. The choice is yours alone.\",\"dataId\":3615,\"date\":1576857600000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-21.jpg\",\"note\":\"路就在你脚下,你自己决定。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/b99a7f85c8e01de07d6cb559f03351fc.mp3\"}}', 0, '', '2022-01-20 13:43:44'); INSERT INTO `sys_oper_log` VALUES (3449, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"简\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"Jane\",\"src\":\"简\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-20 13:43:47'); INSERT INTO `sys_oper_log` VALUES (3450, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"简单\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"simple\",\"src\":\"简单\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-20 13:43:51'); INSERT INTO `sys_oper_log` VALUES (3451, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"复杂\\n\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"complex\",\"src\":\"复杂\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-20 13:44:06'); INSERT INTO `sys_oper_log` VALUES (3452, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/2', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入中文!!!\"}', 0, '', '2022-01-20 14:06:21'); INSERT INTO `sys_oper_log` VALUES (3453, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E5%93%88%E5%93%88%E5%93%88', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"哈哈哈\",\"originContent\":\"哈哈哈\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 14:06:25'); INSERT INTO `sys_oper_log` VALUES (3454, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E7%AC%91%E6%AD%BB%E6%88%91%E4%BA%86', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"笑死我了\",\"originContent\":\"笑死我了\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 14:06:30'); INSERT INTO `sys_oper_log` VALUES (3455, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E5%97%AF%E5%93%BC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"嗯哼\",\"originContent\":\"嗯哼\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 14:06:34'); INSERT INTO `sys_oper_log` VALUES (3456, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E4%BA%BA%E7%9A%84%E4%BB%B7%E5%80%BC%E5%B9%B6%E4%B8%8D%E5%8F%96%E5%86%B3%E4%BA%8E%E6%98%AF%E5%90%A6%E6%8E%8C%E6%8F%A1%E7%9C%9F%E7%90%86', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"人的價值並不取決於是否掌握真理\",\"originContent\":\"人的价值并不取决于是否掌握真理\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 14:09:02'); INSERT INTO `sys_oper_log` VALUES (3457, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"中国人\",\"top\":2,\"createTime\":1642659164273,\"englishWord\":\"Chinese\",\"isCollect\":1,\"id\":1484046213794910210,\"sort\":0,\"content\":\"Chinese\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-20 14:12:44'); INSERT INTO `sys_oper_log` VALUES (3458, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"口述\",\"top\":2,\"createTime\":1642659170789,\"englishWord\":\"dict\",\"isCollect\":1,\"id\":1484046241120800770,\"sort\":0,\"content\":\"dict\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-20 14:12:50'); INSERT INTO `sys_oper_log` VALUES (3459, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642659173122,\"en\":\"One never goes to the temple for no reason.\",\"id\":1484046250859962369,\"zh\":\"无事不登三宝殿。\"}}', 0, '', '2022-01-20 14:12:53'); INSERT INTO `sys_oper_log` VALUES (3460, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"One never goes to the temple for no reason.\",\"zh\":\"无事不登三宝殿。\"}}', 0, '', '2022-01-20 14:12:56'); INSERT INTO `sys_oper_log` VALUES (3461, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E7%AC%91%E6%AD%BB%E4%BA%86', '127.0.0.1', '', '', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 14:28:04'); INSERT INTO `sys_oper_log` VALUES (3462, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E7%AC%91', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"笑〈动〉\\n\\n (会意。从竹,从夭。杨承庆曰,竹得风其体夭屈,如人之笑”。字或从竹,从夭。本义因喜悦开颜或出声)\\n\\n 同本义 \\n\\n 笑,喜也。--《说文》。杨承庆曰竹得风,其体夭屈,如人之笑也。李阳冰刊定说文从之。”\\n\\n 竹为乐器,君子乐然后笑也。--《字林》。朱骏声曰此字古皆从犬,本义犬狎人声也。从犬,箾省声。”\\n\\n 一握为笑。--《易·萃》\\n\\n 载笑载言。--《诗·卫风·氓》\\n\\n 言笑晏晏。\\n\\n 两小儿笑曰。--《列子·汤问》\\n\\n 乐然后笑,人不厌其笑。--《论语·宪问》\\n\\n 止增笑耳。--《聊斋志异·狼三则》\\n\\n 笑而止之。--《\\n\\n 笑(哾)xiào\\n\\n ⒈露出喜悦的表情,发出欢乐的声音微~。大~。~逐颜开。\\n\\n ⒉指讥笑,嘲笑耻~。莫见~。别取~他。\\n\\n ⒊\\n\\n ⒋\\n\\n ①能使人发笑的话。\\n\\n ②轻视,讥讽净闹~话。\",\"pinyin\":\"xiào\",\"radicals\":\"竹\",\"strokes\":\"10\",\"traditional\":\"笑\",\"word\":\"笑\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 14:29:11'); INSERT INTO `sys_oper_log` VALUES (3463, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E7%AC%91%E4%BA%86', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-20 14:30:27'); INSERT INTO `sys_oper_log` VALUES (3464, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E7%AC%91', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"笑〈动〉\\n\\n (会意。从竹,从夭。杨承庆曰,竹得风其体夭屈,如人之笑”。字或从竹,从夭。本义因喜悦开颜或出声)\\n\\n 同本义 \\n\\n 笑,喜也。--《说文》。杨承庆曰竹得风,其体夭屈,如人之笑也。李阳冰刊定说文从之。”\\n\\n 竹为乐器,君子乐然后笑也。--《字林》。朱骏声曰此字古皆从犬,本义犬狎人声也。从犬,箾省声。”\\n\\n 一握为笑。--《易·萃》\\n\\n 载笑载言。--《诗·卫风·氓》\\n\\n 言笑晏晏。\\n\\n 两小儿笑曰。--《列子·汤问》\\n\\n 乐然后笑,人不厌其笑。--《论语·宪问》\\n\\n 止增笑耳。--《聊斋志异·狼三则》\\n\\n 笑而止之。--《\\n\\n 笑(哾)xiào\\n\\n ⒈露出喜悦的表情,发出欢乐的声音微~。大~。~逐颜开。\\n\\n ⒉指讥笑,嘲笑耻~。莫见~。别取~他。\\n\\n ⒊\\n\\n ⒋\\n\\n ①能使人发笑的话。\\n\\n ②轻视,讥讽净闹~话。\",\"pinyin\":\"xiào\",\"radicals\":\"竹\",\"strokes\":\"10\",\"traditional\":\"笑\",\"word\":\"笑\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 14:30:29'); INSERT INTO `sys_oper_log` VALUES (3465, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%9B%9B', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"四 \\n\\n (指事。甲骨文字形,象鼻子喘息呼气之形。本义数目。三加一所得) 同本义 \\n\\n 四,阴数也。四分之。--《说文》\\n\\n 阴数次三也。--《玉篇》\\n\\n 路下四亚之。--《仪礼·觐礼》。注谓乘马也。”\\n\\n 光被四表。--《书·尧典》\\n\\n 闰月定四时成岁。\\n\\n 良马四之--《诗·鄘风·干旄》\\n\\n 安得猛士兮守四方!--刘邦《大风歌》\\n\\n 又如四垂(四边);四梢(城镇四方边缘地方);四隅头(四方街口,四处);四柱(指人出生的年、月、日、时);四不拗六(少数拗不过多数);四趁(相称,各处都合适);四门(四方之门\\n\\n );四鼓(四更);四知(天知、神知、我知、子知);四\\n\\n 四sì数目字三~五。\",\"pinyin\":\"sì\",\"radicals\":\"囗\",\"strokes\":\"5\",\"traditional\":\"四\",\"word\":\"四\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 14:30:32'); INSERT INTO `sys_oper_log` VALUES (3466, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E6%AD%BB', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"死 \\n\\n (会意。小篆字形。右边是人,左边是歺”,残骨,指人的形体与魂魄分离。本义生命终止)\\n\\n 同本义 \\n\\n 死,民之卒事也。--《说文》\\n\\n 死者,人之终也。--《列子·天瑞》\\n\\n 庶人曰死。--《礼记·曲礼》\\n\\n 沁人曰死。--《礼记·檀弓》\\n\\n 民知不死,其亦夫有奋心。--《左传·哀公十六年》\\n\\n 楚令尹死。╠《左传·昭公二十三年》\\n\\n 予之及于死者不知其几矣!--宋·文天祥《指南录·后序》\\n\\n 亡何国变,宁南死。--清·黄宗羲《柳敬亭传》\\n\\n 又如死生(死亡和生存);死过(死去,去世);死限(死期,寿命的期限)\\n\\n 死sǐ\\n\\n ⒈生物失去生命,跟\\\"活\\\"相对~亡。~得其所。\\n\\n ⒉拼命,不顾性命不怕~。决一~战。\\n\\n ⒊不可调和的,誓不两立的~敌。~对头。\\n\\n ⒋不活动,不灵活~水。~板。~气沉沉。\\n\\n ⒌不通的~巷道。堵~漏洞。~路一条。\\n\\n ⒍在形容词后,〈表〉程度到了极点讨厌~了。真是乐~人。\",\"pinyin\":\"sǐ\",\"radicals\":\"歹\",\"strokes\":\"6\",\"traditional\":\"死\",\"word\":\"死\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 14:30:35'); INSERT INTO `sys_oper_log` VALUES (3467, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E4%BA%86', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"了〈助〉 le\\n\\n 用在动词或形容词后,表示完成 \\n\\n 了 〈语气〉\\n\\n 表示肯定语气 \\n\\n 表示促进或劝止 \\n\\n 表示感叹语气 \\n\\n 了 〈动〉\\n\\n (象形。从子,无臂。小篆字象婴儿束其两臂形。初生的婴儿,往往束其两臂而裹之。本义束婴儿两臂)\\n\\n 手弯曲 \\n\\n 了liǎo\\n\\n ⒈懂得,明白~然。明~。~如指掌。不甚~ ~。\\n\\n ⒉结束,完毕此事已~。没完没~。不~ ~之。\\n\\n ⒊全,完全~无惧色。\\n\\n ⒋在动词后,跟\\\"不\\\"、\\\"得\\\"连用,〈表〉可能,可以他做不~。她办得~。\\n\\n ⒌\\n\\n ①很明白,知道得很清楚。\\n\\n ②调查,打听。\\n\\n ⒍\\n\\n ⒎\\n\\n ①能干,厉害她可~得。\\n\\n ②\\\"能办\\\"、\\\"可以\\\"的意思。多见于反诘句中,〈表〉不平常,严重那还~得。\\n\\n ⒏\\n\\n 了le\\n\\n ⒈助词。\\n\\n ①在动词或形容词后〈表〉事情完成买~两件衣服。节省~五斤汽油。\\n\\n ②在句末或句中停顿的地方〈表〉肯定的语气天晴~。他走~。她想~许久,终于想起~那件事。算~,你们不必争吵~。\",\"pinyin\":\"le\",\"radicals\":\"乙\",\"strokes\":\"2\",\"traditional\":\"了\",\"word\":\"了\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 14:30:38'); INSERT INTO `sys_oper_log` VALUES (3468, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/3603122199512200012', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"年月日\",\"idCardNum\":\"3603122199512200012\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 15:02:36'); INSERT INTO `sys_oper_log` VALUES (3469, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/3603121199512200012', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"年月日\",\"idCardNum\":\"3603121199512200012\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 15:02:52'); INSERT INTO `sys_oper_log` VALUES (3470, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199512200012', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:02'); INSERT INTO `sys_oper_log` VALUES (3471, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/350312199905050022', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:17'); INSERT INTO `sys_oper_log` VALUES (3472, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/350312199905050022', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:18'); INSERT INTO `sys_oper_log` VALUES (3473, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/350312199905050022', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:18'); INSERT INTO `sys_oper_log` VALUES (3474, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/350312199905050022', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:19'); INSERT INTO `sys_oper_log` VALUES (3475, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36031219981028001x', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:30'); INSERT INTO `sys_oper_log` VALUES (3476, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36031219981028001x', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:31'); INSERT INTO `sys_oper_log` VALUES (3477, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36031219981028001x', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:31'); INSERT INTO `sys_oper_log` VALUES (3478, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36031219981028001x', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:32'); INSERT INTO `sys_oper_log` VALUES (3479, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36031219981028001x', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:32'); INSERT INTO `sys_oper_log` VALUES (3480, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199810280011', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:34'); INSERT INTO `sys_oper_log` VALUES (3481, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199810280011', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:34'); INSERT INTO `sys_oper_log` VALUES (3482, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199810280011', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:03:35'); INSERT INTO `sys_oper_log` VALUES (3483, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199810280011', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:04:30'); INSERT INTO `sys_oper_log` VALUES (3484, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199810280011', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:05:06'); INSERT INTO `sys_oper_log` VALUES (3485, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199810280011', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:05:09'); INSERT INTO `sys_oper_log` VALUES (3486, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199810280011', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:05:41'); INSERT INTO `sys_oper_log` VALUES (3487, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/3603121998102800122', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-20 15:06:43'); INSERT INTO `sys_oper_log` VALUES (3488, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199810280022', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1998年10月28日\",\"idCardNum\":\"360312199810280022\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-20 15:06:48'); INSERT INTO `sys_oper_log` VALUES (3489, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 15:08:32\"}}', 0, '', '2022-01-20 15:11:12'); INSERT INTO `sys_oper_log` VALUES (3490, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642662672857,\"humidity\":\"61\",\"id\":1484060929841848321,\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:11:12'); INSERT INTO `sys_oper_log` VALUES (3491, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人世间的感情不过两种,一种是相濡以沫却厌倦到老,一种是相忘江湖却怀念到哭。\",\"createTime\":1642662679877,\"id\":1484060959281668097,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-20 15:11:19'); INSERT INTO `sys_oper_log` VALUES (3492, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Imagination is more important than knowledge. Knowledge is limited. Imagination encircles the world.\",\"createTime\":1642662679931,\"dataId\":3685,\"date\":1582732800000,\"id\":1484060959474606081,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9037723b10afe8230198d0cee52b20d2.png\",\"note\":\"想象力比知识更为重要。知识是有限的,而想象力则包围着整个世界。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/39064e3a2c0a314df35f6d6e9ff95702.mp3\"}}', 0, '', '2022-01-20 15:11:19'); INSERT INTO `sys_oper_log` VALUES (3493, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"人世间的感情不过两种,一种是相濡以沫却厌倦到老,一种是相忘江湖却怀念到哭。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"There are only two kinds of feelings in the world. One is to help each other but get tired of getting old, and the other is to forget the Jianghu but miss to cry.\",\"src\":\"人世间的感情不过两种,一种是相濡以沫却厌倦到老,一种是相忘江湖却怀念到哭。\"}]}}', 0, '', '2022-01-20 15:11:37'); INSERT INTO `sys_oper_log` VALUES (3494, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:21:43'); INSERT INTO `sys_oper_log` VALUES (3495, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:23:30'); INSERT INTO `sys_oper_log` VALUES (3496, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:24:22'); INSERT INTO `sys_oper_log` VALUES (3497, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:25:29'); INSERT INTO `sys_oper_log` VALUES (3498, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:25:55'); INSERT INTO `sys_oper_log` VALUES (3499, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:26:11'); INSERT INTO `sys_oper_log` VALUES (3500, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:26:25'); INSERT INTO `sys_oper_log` VALUES (3501, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:29:00'); INSERT INTO `sys_oper_log` VALUES (3502, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:29:07'); INSERT INTO `sys_oper_log` VALUES (3503, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:32:26'); INSERT INTO `sys_oper_log` VALUES (3504, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:32:33'); INSERT INTO `sys_oper_log` VALUES (3505, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:33:26'); INSERT INTO `sys_oper_log` VALUES (3506, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:33:58'); INSERT INTO `sys_oper_log` VALUES (3507, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:36:47'); INSERT INTO `sys_oper_log` VALUES (3508, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:37:50'); INSERT INTO `sys_oper_log` VALUES (3509, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:40:17'); INSERT INTO `sys_oper_log` VALUES (3510, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:41:44'); INSERT INTO `sys_oper_log` VALUES (3511, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:41:54'); INSERT INTO `sys_oper_log` VALUES (3512, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:42:03'); INSERT INTO `sys_oper_log` VALUES (3513, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:42:30'); INSERT INTO `sys_oper_log` VALUES (3514, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:42:51'); INSERT INTO `sys_oper_log` VALUES (3515, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:43:05'); INSERT INTO `sys_oper_log` VALUES (3516, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:43:15'); INSERT INTO `sys_oper_log` VALUES (3517, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:46:06'); INSERT INTO `sys_oper_log` VALUES (3518, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:47:39'); INSERT INTO `sys_oper_log` VALUES (3519, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:50:06'); INSERT INTO `sys_oper_log` VALUES (3520, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:50:30'); INSERT INTO `sys_oper_log` VALUES (3521, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:51:11'); INSERT INTO `sys_oper_log` VALUES (3522, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:52:46'); INSERT INTO `sys_oper_log` VALUES (3523, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:54:09'); INSERT INTO `sys_oper_log` VALUES (3524, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:54:27'); INSERT INTO `sys_oper_log` VALUES (3525, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:54:35'); INSERT INTO `sys_oper_log` VALUES (3526, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:54:56'); INSERT INTO `sys_oper_log` VALUES (3527, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:56:04'); INSERT INTO `sys_oper_log` VALUES (3528, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:56:36'); INSERT INTO `sys_oper_log` VALUES (3529, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:56:41'); INSERT INTO `sys_oper_log` VALUES (3530, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:56:53'); INSERT INTO `sys_oper_log` VALUES (3531, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:57:18'); INSERT INTO `sys_oper_log` VALUES (3532, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:59:12'); INSERT INTO `sys_oper_log` VALUES (3533, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:59:33'); INSERT INTO `sys_oper_log` VALUES (3534, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:59:38'); INSERT INTO `sys_oper_log` VALUES (3535, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 15:59:44'); INSERT INTO `sys_oper_log` VALUES (3536, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:02:17'); INSERT INTO `sys_oper_log` VALUES (3537, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:02:58'); INSERT INTO `sys_oper_log` VALUES (3538, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:03:13'); INSERT INTO `sys_oper_log` VALUES (3539, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:03:41'); INSERT INTO `sys_oper_log` VALUES (3540, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:04:24'); INSERT INTO `sys_oper_log` VALUES (3541, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:04:27'); INSERT INTO `sys_oper_log` VALUES (3542, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:04:41'); INSERT INTO `sys_oper_log` VALUES (3543, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:05:02'); INSERT INTO `sys_oper_log` VALUES (3544, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:05:47'); INSERT INTO `sys_oper_log` VALUES (3545, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:05:53'); INSERT INTO `sys_oper_log` VALUES (3546, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:06:41'); INSERT INTO `sys_oper_log` VALUES (3547, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:07:01'); INSERT INTO `sys_oper_log` VALUES (3548, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1642662511000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:07:33'); INSERT INTO `sys_oper_log` VALUES (3549, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:14:48'); INSERT INTO `sys_oper_log` VALUES (3550, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:15:51'); INSERT INTO `sys_oper_log` VALUES (3551, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:16:07'); INSERT INTO `sys_oper_log` VALUES (3552, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:16:15'); INSERT INTO `sys_oper_log` VALUES (3553, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:18:24'); INSERT INTO `sys_oper_log` VALUES (3554, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:20:07'); INSERT INTO `sys_oper_log` VALUES (3555, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:20:54'); INSERT INTO `sys_oper_log` VALUES (3556, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 16:04:02\"}}', 0, '', '2022-01-20 16:20:56'); INSERT INTO `sys_oper_log` VALUES (3557, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 16:04:02\"}}', 0, '', '2022-01-20 16:20:57'); INSERT INTO `sys_oper_log` VALUES (3558, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:20:57'); INSERT INTO `sys_oper_log` VALUES (3559, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:22:02'); INSERT INTO `sys_oper_log` VALUES (3560, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:22:49'); INSERT INTO `sys_oper_log` VALUES (3561, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:23:08'); INSERT INTO `sys_oper_log` VALUES (3562, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642666488513,\"humidity\":\"65\",\"id\":1484076933867266049,\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:23:29'); INSERT INTO `sys_oper_log` VALUES (3563, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:25:53'); INSERT INTO `sys_oper_log` VALUES (3564, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:26:49'); INSERT INTO `sys_oper_log` VALUES (3565, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:27:17'); INSERT INTO `sys_oper_log` VALUES (3566, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:27:18'); INSERT INTO `sys_oper_log` VALUES (3567, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:28:02'); INSERT INTO `sys_oper_log` VALUES (3568, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:30:25'); INSERT INTO `sys_oper_log` VALUES (3569, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:32:56'); INSERT INTO `sys_oper_log` VALUES (3570, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:33:13'); INSERT INTO `sys_oper_log` VALUES (3571, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:33:50'); INSERT INTO `sys_oper_log` VALUES (3572, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:34:48'); INSERT INTO `sys_oper_log` VALUES (3573, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:35:16'); INSERT INTO `sys_oper_log` VALUES (3574, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:36:11'); INSERT INTO `sys_oper_log` VALUES (3575, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:36:24'); INSERT INTO `sys_oper_log` VALUES (3576, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:37:18'); INSERT INTO `sys_oper_log` VALUES (3577, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:38:06'); INSERT INTO `sys_oper_log` VALUES (3578, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:38:24'); INSERT INTO `sys_oper_log` VALUES (3579, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:38:44'); INSERT INTO `sys_oper_log` VALUES (3580, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:39:07'); INSERT INTO `sys_oper_log` VALUES (3581, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:39:19'); INSERT INTO `sys_oper_log` VALUES (3582, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:39:35'); INSERT INTO `sys_oper_log` VALUES (3583, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:40:00'); INSERT INTO `sys_oper_log` VALUES (3584, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:40:13'); INSERT INTO `sys_oper_log` VALUES (3585, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:40:57'); INSERT INTO `sys_oper_log` VALUES (3586, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:42:12'); INSERT INTO `sys_oper_log` VALUES (3587, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:42:21'); INSERT INTO `sys_oper_log` VALUES (3588, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:42:46'); INSERT INTO `sys_oper_log` VALUES (3589, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:43:13'); INSERT INTO `sys_oper_log` VALUES (3590, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 16:38:50\"}}', 0, '', '2022-01-20 16:43:33'); INSERT INTO `sys_oper_log` VALUES (3591, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1642665841000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:43:33'); INSERT INTO `sys_oper_log` VALUES (3592, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1642667930000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:48:57'); INSERT INTO `sys_oper_log` VALUES (3593, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1642667930000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:50:15'); INSERT INTO `sys_oper_log` VALUES (3594, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:17'); INSERT INTO `sys_oper_log` VALUES (3595, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:42'); INSERT INTO `sys_oper_log` VALUES (3596, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:42'); INSERT INTO `sys_oper_log` VALUES (3597, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:42'); INSERT INTO `sys_oper_log` VALUES (3598, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:42'); INSERT INTO `sys_oper_log` VALUES (3599, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:42'); INSERT INTO `sys_oper_log` VALUES (3600, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:42'); INSERT INTO `sys_oper_log` VALUES (3601, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:43'); INSERT INTO `sys_oper_log` VALUES (3602, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:43'); INSERT INTO `sys_oper_log` VALUES (3603, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:43'); INSERT INTO `sys_oper_log` VALUES (3604, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:43'); INSERT INTO `sys_oper_log` VALUES (3605, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:44'); INSERT INTO `sys_oper_log` VALUES (3606, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:44'); INSERT INTO `sys_oper_log` VALUES (3607, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:44'); INSERT INTO `sys_oper_log` VALUES (3608, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:44'); INSERT INTO `sys_oper_log` VALUES (3609, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:44'); INSERT INTO `sys_oper_log` VALUES (3610, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:44'); INSERT INTO `sys_oper_log` VALUES (3611, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:45'); INSERT INTO `sys_oper_log` VALUES (3612, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:45'); INSERT INTO `sys_oper_log` VALUES (3613, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:45'); INSERT INTO `sys_oper_log` VALUES (3614, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:45'); INSERT INTO `sys_oper_log` VALUES (3615, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:45'); INSERT INTO `sys_oper_log` VALUES (3616, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:46'); INSERT INTO `sys_oper_log` VALUES (3617, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:46'); INSERT INTO `sys_oper_log` VALUES (3618, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:46'); INSERT INTO `sys_oper_log` VALUES (3619, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:46'); INSERT INTO `sys_oper_log` VALUES (3620, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:46'); INSERT INTO `sys_oper_log` VALUES (3621, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:47'); INSERT INTO `sys_oper_log` VALUES (3622, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:47'); INSERT INTO `sys_oper_log` VALUES (3623, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:47'); INSERT INTO `sys_oper_log` VALUES (3624, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:47'); INSERT INTO `sys_oper_log` VALUES (3625, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:47'); INSERT INTO `sys_oper_log` VALUES (3626, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:48'); INSERT INTO `sys_oper_log` VALUES (3627, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:48'); INSERT INTO `sys_oper_log` VALUES (3628, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:48'); INSERT INTO `sys_oper_log` VALUES (3629, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:48'); INSERT INTO `sys_oper_log` VALUES (3630, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:48'); INSERT INTO `sys_oper_log` VALUES (3631, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:49'); INSERT INTO `sys_oper_log` VALUES (3632, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:49'); INSERT INTO `sys_oper_log` VALUES (3633, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:49'); INSERT INTO `sys_oper_log` VALUES (3634, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:49'); INSERT INTO `sys_oper_log` VALUES (3635, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:50'); INSERT INTO `sys_oper_log` VALUES (3636, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:50'); INSERT INTO `sys_oper_log` VALUES (3637, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:50'); INSERT INTO `sys_oper_log` VALUES (3638, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:50'); INSERT INTO `sys_oper_log` VALUES (3639, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:51'); INSERT INTO `sys_oper_log` VALUES (3640, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:51'); INSERT INTO `sys_oper_log` VALUES (3641, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:51'); INSERT INTO `sys_oper_log` VALUES (3642, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:52'); INSERT INTO `sys_oper_log` VALUES (3643, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:52'); INSERT INTO `sys_oper_log` VALUES (3644, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:53'); INSERT INTO `sys_oper_log` VALUES (3645, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:54'); INSERT INTO `sys_oper_log` VALUES (3646, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:55'); INSERT INTO `sys_oper_log` VALUES (3647, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:55'); INSERT INTO `sys_oper_log` VALUES (3648, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:56'); INSERT INTO `sys_oper_log` VALUES (3649, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484086028389224450', '127.0.0.1', '', '1484086028389224450', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:58'); INSERT INTO `sys_oper_log` VALUES (3650, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:50:59'); INSERT INTO `sys_oper_log` VALUES (3651, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484086041416732673', '127.0.0.1', '', '1484086041416732673', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:51:02'); INSERT INTO `sys_oper_log` VALUES (3652, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:51:03'); INSERT INTO `sys_oper_log` VALUES (3653, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1642667930000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:55:50'); INSERT INTO `sys_oper_log` VALUES (3654, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:55:52'); INSERT INTO `sys_oper_log` VALUES (3655, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:55:54'); INSERT INTO `sys_oper_log` VALUES (3656, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:55:57'); INSERT INTO `sys_oper_log` VALUES (3657, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:56:06'); INSERT INTO `sys_oper_log` VALUES (3658, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1642667930000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:56:07'); INSERT INTO `sys_oper_log` VALUES (3659, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:56:08'); INSERT INTO `sys_oper_log` VALUES (3660, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:56:33'); INSERT INTO `sys_oper_log` VALUES (3661, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1642667930000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 16:58:25'); INSERT INTO `sys_oper_log` VALUES (3662, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 16:58:27'); INSERT INTO `sys_oper_log` VALUES (3663, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1642667930000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 17:01:12'); INSERT INTO `sys_oper_log` VALUES (3664, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:01:12'); INSERT INTO `sys_oper_log` VALUES (3665, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:01:28'); INSERT INTO `sys_oper_log` VALUES (3666, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:01:30'); INSERT INTO `sys_oper_log` VALUES (3667, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:18:44'); INSERT INTO `sys_oper_log` VALUES (3668, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:19:23'); INSERT INTO `sys_oper_log` VALUES (3669, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:20:01'); INSERT INTO `sys_oper_log` VALUES (3670, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:21:14'); INSERT INTO `sys_oper_log` VALUES (3671, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:22:03'); INSERT INTO `sys_oper_log` VALUES (3672, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642669710000,\"temperature\":\"13\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 17:22:10'); INSERT INTO `sys_oper_log` VALUES (3673, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:22:11'); INSERT INTO `sys_oper_log` VALUES (3674, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:22:55'); INSERT INTO `sys_oper_log` VALUES (3675, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:22:55'); INSERT INTO `sys_oper_log` VALUES (3676, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642669710000,\"temperature\":\"13\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 17:22:57'); INSERT INTO `sys_oper_log` VALUES (3677, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:22:57'); INSERT INTO `sys_oper_log` VALUES (3678, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:24:10'); INSERT INTO `sys_oper_log` VALUES (3679, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642669710000,\"temperature\":\"13\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 17:25:52'); INSERT INTO `sys_oper_log` VALUES (3680, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:25:54'); INSERT INTO `sys_oper_log` VALUES (3681, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:25:54'); INSERT INTO `sys_oper_log` VALUES (3682, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:25:54'); INSERT INTO `sys_oper_log` VALUES (3683, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642669710000,\"temperature\":\"13\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 17:26:19'); INSERT INTO `sys_oper_log` VALUES (3684, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:26:19'); INSERT INTO `sys_oper_log` VALUES (3685, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642669710000,\"temperature\":\"13\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 17:26:44'); INSERT INTO `sys_oper_log` VALUES (3686, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:26:45'); INSERT INTO `sys_oper_log` VALUES (3687, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:26:46'); INSERT INTO `sys_oper_log` VALUES (3688, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:26:46'); INSERT INTO `sys_oper_log` VALUES (3689, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1642669710000,\"temperature\":\"13\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 17:27:08'); INSERT INTO `sys_oper_log` VALUES (3690, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:27:10'); INSERT INTO `sys_oper_log` VALUES (3691, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:29:08'); INSERT INTO `sys_oper_log` VALUES (3692, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:29:11'); INSERT INTO `sys_oper_log` VALUES (3693, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:29:26'); INSERT INTO `sys_oper_log` VALUES (3694, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:29:29'); INSERT INTO `sys_oper_log` VALUES (3695, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:29:42'); INSERT INTO `sys_oper_log` VALUES (3696, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:29:44'); INSERT INTO `sys_oper_log` VALUES (3697, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:29:48'); INSERT INTO `sys_oper_log` VALUES (3698, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 17:29:52'); INSERT INTO `sys_oper_log` VALUES (3699, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642674777171,\"humidity\":\"71\",\"id\":1484111699042324482,\"province\":\"江西\",\"reporttime\":1642673040000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 18:32:57'); INSERT INTO `sys_oper_log` VALUES (3700, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642674777171,\"humidity\":\"71\",\"id\":1484111699042324482,\"province\":\"江西\",\"reporttime\":1642673040000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 18:33:51'); INSERT INTO `sys_oper_log` VALUES (3701, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642674777171,\"humidity\":\"71\",\"id\":1484111699042324482,\"province\":\"江西\",\"reporttime\":1642673040000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 18:34:05'); INSERT INTO `sys_oper_log` VALUES (3702, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642674777171,\"humidity\":\"71\",\"id\":1484111699042324482,\"province\":\"江西\",\"reporttime\":1642673040000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 18:34:14'); INSERT INTO `sys_oper_log` VALUES (3703, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642674777171,\"humidity\":\"71\",\"id\":1484111699042324482,\"province\":\"江西\",\"reporttime\":1642673040000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 18:34:22'); INSERT INTO `sys_oper_log` VALUES (3704, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642674777171,\"humidity\":\"71\",\"id\":1484111699042324482,\"province\":\"江西\",\"reporttime\":1642673040000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 18:34:41'); INSERT INTO `sys_oper_log` VALUES (3705, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:34:53'); INSERT INTO `sys_oper_log` VALUES (3706, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:35:59'); INSERT INTO `sys_oper_log` VALUES (3707, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:36:06'); INSERT INTO `sys_oper_log` VALUES (3708, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:37:58'); INSERT INTO `sys_oper_log` VALUES (3709, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:11'); INSERT INTO `sys_oper_log` VALUES (3710, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:12'); INSERT INTO `sys_oper_log` VALUES (3711, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642674777171,\"humidity\":\"71\",\"id\":1484111699042324482,\"province\":\"江西\",\"reporttime\":1642673040000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 18:39:14'); INSERT INTO `sys_oper_log` VALUES (3712, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:14'); INSERT INTO `sys_oper_log` VALUES (3713, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:16'); INSERT INTO `sys_oper_log` VALUES (3714, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:17'); INSERT INTO `sys_oper_log` VALUES (3715, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 18:38:35\"}}', 0, '', '2022-01-20 18:39:23'); INSERT INTO `sys_oper_log` VALUES (3716, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642674777171,\"humidity\":\"71\",\"id\":1484111699042324482,\"province\":\"江西\",\"reporttime\":1642673040000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 18:39:23'); INSERT INTO `sys_oper_log` VALUES (3717, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 18:38:35\"}}', 0, '', '2022-01-20 18:39:24'); INSERT INTO `sys_oper_log` VALUES (3718, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642674777171,\"humidity\":\"71\",\"id\":1484111699042324482,\"province\":\"江西\",\"reporttime\":1642673040000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 18:39:24'); INSERT INTO `sys_oper_log` VALUES (3719, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484113317221580801', '127.0.0.1', '', '1484113317221580801', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:26'); INSERT INTO `sys_oper_log` VALUES (3720, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:27'); INSERT INTO `sys_oper_log` VALUES (3721, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:28'); INSERT INTO `sys_oper_log` VALUES (3722, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:29'); INSERT INTO `sys_oper_log` VALUES (3723, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:47'); INSERT INTO `sys_oper_log` VALUES (3724, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:39:50'); INSERT INTO `sys_oper_log` VALUES (3725, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484113474906439682', '127.0.0.1', '', '1484113474906439682', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:40:13'); INSERT INTO `sys_oper_log` VALUES (3726, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:41:12'); INSERT INTO `sys_oper_log` VALUES (3727, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:43:56'); INSERT INTO `sys_oper_log` VALUES (3728, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:43:57'); INSERT INTO `sys_oper_log` VALUES (3729, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:43:59'); INSERT INTO `sys_oper_log` VALUES (3730, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:44:02'); INSERT INTO `sys_oper_log` VALUES (3731, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:03'); INSERT INTO `sys_oper_log` VALUES (3732, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:44:05'); INSERT INTO `sys_oper_log` VALUES (3733, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:06'); INSERT INTO `sys_oper_log` VALUES (3734, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:44:08'); INSERT INTO `sys_oper_log` VALUES (3735, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:10'); INSERT INTO `sys_oper_log` VALUES (3736, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:44:19'); INSERT INTO `sys_oper_log` VALUES (3737, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:21'); INSERT INTO `sys_oper_log` VALUES (3738, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:24'); INSERT INTO `sys_oper_log` VALUES (3739, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:26'); INSERT INTO `sys_oper_log` VALUES (3740, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:27'); INSERT INTO `sys_oper_log` VALUES (3741, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:30'); INSERT INTO `sys_oper_log` VALUES (3742, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:31'); INSERT INTO `sys_oper_log` VALUES (3743, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:33'); INSERT INTO `sys_oper_log` VALUES (3744, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:38'); INSERT INTO `sys_oper_log` VALUES (3745, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:44:39'); INSERT INTO `sys_oper_log` VALUES (3746, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:48:05'); INSERT INTO `sys_oper_log` VALUES (3747, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:48:53'); INSERT INTO `sys_oper_log` VALUES (3748, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:48:55'); INSERT INTO `sys_oper_log` VALUES (3749, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:48:55'); INSERT INTO `sys_oper_log` VALUES (3750, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:48:56'); INSERT INTO `sys_oper_log` VALUES (3751, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:48:58'); INSERT INTO `sys_oper_log` VALUES (3752, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:49:00'); INSERT INTO `sys_oper_log` VALUES (3753, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:49:02'); INSERT INTO `sys_oper_log` VALUES (3754, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:49:04'); INSERT INTO `sys_oper_log` VALUES (3755, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:49:10'); INSERT INTO `sys_oper_log` VALUES (3756, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:49:22'); INSERT INTO `sys_oper_log` VALUES (3757, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:49:53'); INSERT INTO `sys_oper_log` VALUES (3758, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 18:38:35\"}}', 0, '', '2022-01-20 18:49:53'); INSERT INTO `sys_oper_log` VALUES (3759, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 18:38:35\"}}', 0, '', '2022-01-20 18:50:04'); INSERT INTO `sys_oper_log` VALUES (3760, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:50:04'); INSERT INTO `sys_oper_log` VALUES (3761, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:50:04'); INSERT INTO `sys_oper_log` VALUES (3762, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 18:38:35\"}}', 0, '', '2022-01-20 18:50:04'); INSERT INTO `sys_oper_log` VALUES (3763, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 18:38:35\"}}', 0, '', '2022-01-20 18:50:05'); INSERT INTO `sys_oper_log` VALUES (3764, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:50:05'); INSERT INTO `sys_oper_log` VALUES (3765, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 18:38:35\"}}', 0, '', '2022-01-20 18:50:05'); INSERT INTO `sys_oper_log` VALUES (3766, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:50:06'); INSERT INTO `sys_oper_log` VALUES (3767, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 18:38:35\"}}', 0, '', '2022-01-20 18:50:06'); INSERT INTO `sys_oper_log` VALUES (3768, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:50:06'); INSERT INTO `sys_oper_log` VALUES (3769, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 18:38:35\"}}', 0, '', '2022-01-20 18:50:06'); INSERT INTO `sys_oper_log` VALUES (3770, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:50:06'); INSERT INTO `sys_oper_log` VALUES (3771, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 18:38:35\"}}', 0, '', '2022-01-20 18:50:06'); INSERT INTO `sys_oper_log` VALUES (3772, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:50:07'); INSERT INTO `sys_oper_log` VALUES (3773, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"千万别沮丧,你要知道,无论经历什么事,都是成长。\",\"createTime\":1642675854508,\"id\":1484116217717018625,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-20 18:50:54'); INSERT INTO `sys_oper_log` VALUES (3774, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You got to put the past behind before you can move on.\",\"createTime\":1642675854542,\"dataId\":3960,\"date\":1606492800000,\"id\":1484116217851236354,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e22cd4038343c69574b2436f943e67e6.png\",\"note\":\"只有忘记过去,才能继续前行。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/3d70081fdd5e858576b7ef6b0b4b2517.mp3\"}}', 0, '', '2022-01-20 18:50:54'); INSERT INTO `sys_oper_log` VALUES (3775, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 18:51:29'); INSERT INTO `sys_oper_log` VALUES (3776, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54ofotj31c00u042n.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ian5pj31c00u0gob.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utau2zv2j31c00u0wir.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg3lbn7j31hc0u0qbm.jpg\"},{\"imageFileLength\":\"84KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utan6elgj31hc0u0gni.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfhtbqnj31hc0u0107.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt4utcg2j318g0p0gqt.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dj1496qj31hc0u0h1z.jpg\"},{\"imageFileLength\":\"258KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uravuf0nj31c00u0gt3.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fat03j31hc0u00wc.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 18:51:31'); INSERT INTO `sys_oper_log` VALUES (3777, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 19:06:25'); INSERT INTO `sys_oper_log` VALUES (3778, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrl6vysj31c00u0k6p.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqevtepzj31400p00z1.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8sz4e2j31c00u042v.jpg\"},{\"imageFileLength\":\"242KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqft4yo9j318g0p0wll.jpg\"},{\"imageFileLength\":\"84KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utan6elgj31hc0u0gni.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut56udo0j31ao0t6goo.jpg\"},{\"imageFileLength\":\"367KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fwh5g7oj31hc0u0u0x.jpg\"},{\"imageFileLength\":\"288KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbfmetaj31hc0u0wm6.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97cwznj31c00u0dk4.jpg\"},{\"imageFileLength\":\"204KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraqnhwij31c00u0wkn.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:06:43'); INSERT INTO `sys_oper_log` VALUES (3779, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 19:06:49'); INSERT INTO `sys_oper_log` VALUES (3780, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"222KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usffr0v7j31hc0u0dli.jpg\"},{\"imageFileLength\":\"397KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gt6behzj31hc0u0e7t.jpg\"},{\"imageFileLength\":\"245KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfxqu7wj31hc0u0q98.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28evp7c8mj31c00u0qar.jpg\"},{\"imageFileLength\":\"284KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs8i8fkj31c00u04al.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9sgg8zj31c00u0n2l.jpg\"},{\"imageFileLength\":\"232KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpte9j1j31c00u0qe5.jpg\"},{\"imageFileLength\":\"328KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1usrisishj31c00u017z.jpg\"},{\"imageFileLength\":\"108KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut85lksaj31c00u00vl.jpg\"},{\"imageFileLength\":\"111KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utav03crj31c00u0act.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:06:50'); INSERT INTO `sys_oper_log` VALUES (3781, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 19:08:09'); INSERT INTO `sys_oper_log` VALUES (3782, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9eivqkj31c00u0n11.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq52o2ywj31hc0u0dku.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq1hbj37j31ao0t677y.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvb91ayj31hc0u016f.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbcm1f8j31c00u0dke.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq58w3m4j31c00u0440.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utargvguj31c00u0whm.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut561hjoj31hc0u0tc4.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usecnpn0j31c00u042b.jpg\"},{\"imageFileLength\":\"87KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpfcr3aj31400p0ajp.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:08:12'); INSERT INTO `sys_oper_log` VALUES (3783, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5admesj31c00u0jx9.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq54emp8j31c00u0teg.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9bp7gij31c00u0q89.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us95fyn5j31c00u0tcz.jpg\"},{\"imageFileLength\":\"253KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb1xkpij31c00u0jyg.jpg\"},{\"imageFileLength\":\"195KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfll9cwj31hc0u00ze.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta46blbj31c00u0gor.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utawz9tsj31hc0u00xd.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf0u6xtj31c00u0tbx.jpg\"},{\"imageFileLength\":\"101KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8v42bsj31c00u0q5g.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:08:12'); INSERT INTO `sys_oper_log` VALUES (3784, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"200KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5fbwuxj31hc0u0q94.jpg\"},{\"imageFileLength\":\"128KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4qtkpyj31c00u0whx.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbkntusj31c00u0793.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfhtbqnj31hc0u0107.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28domz88jj31c00u04ef.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1us9f6n9wj31c00u079b.jpg\"},{\"imageFileLength\":\"270KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqflo7zqj31hc0u0qb8.jpg\"},{\"imageFileLength\":\"220KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut58mw6tj31hc0u0wkc.jpg\"},{\"imageFileLength\":\"204KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfj2yggj31c00u07at.jpg\"},{\"imageFileLength\":\"282KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g28dctiu7hj31c00u0kjl.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:08:13'); INSERT INTO `sys_oper_log` VALUES (3785, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8ixyrlj31c00u00wl.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursxq4wxj31c00u0wrm.jpg\"},{\"imageFileLength\":\"671KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28enm82eqj31hc0u04qp.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb9u746j31c00u043c.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us95ab21j31c00u0tda.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaz29y5j31hc0u0adu.jpg\"},{\"imageFileLength\":\"96KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut40m317j31c00u040w.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4fbql0j31hc0u0juo.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usfc9bvjj31c00u0q83.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvvt75jj31c00u017h.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:08:20'); INSERT INTO `sys_oper_log` VALUES (3786, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"95KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbao9jqj31c00u0wgv.jpg\"},{\"imageFileLength\":\"250KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpj44r3j31c00u0n6o.jpg\"},{\"imageFileLength\":\"194KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us967xfmj31c00u079l.jpg\"},{\"imageFileLength\":\"270KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uragmso0j31c00u07cd.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8k3gz8j31c00u0q6p.jpg\"},{\"imageFileLength\":\"266KB\",\"imageSize\":\"1621x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5r62d6j31910u019g.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us95ab21j31c00u0tda.jpg\"},{\"imageFileLength\":\"226KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9aoq8fj31c00u07b7.jpg\"},{\"imageFileLength\":\"105KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1uq1gy6hgj31ao0t6wha.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf35qmtj31c00u0jw9.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:08:25'); INSERT INTO `sys_oper_log` VALUES (3787, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"114KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urav6mnjj31c00u0q81.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt54sfi9j318g0p0jxo.jpg\"},{\"imageFileLength\":\"94KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraoapnsj31c00u0jvi.jpg\"},{\"imageFileLength\":\"374KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf1krf1j31hc0u048i.jpg\"},{\"imageFileLength\":\"384KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8l33k7j31c00u07gb.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uiclaax9j31900u077u.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb7o6pzj31c00u00wj.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb357ylj31c00u0tdg.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7xs7c9j31c00u0n00.jpg\"},{\"imageFileLength\":\"202KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97zs5kj31c00u0n2s.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:08:59'); INSERT INTO `sys_oper_log` VALUES (3788, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"158KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg3lbn7j31hc0u0qbm.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfen2ghj31c00u07bj.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbg77cj31c00u0ad5.jpg\"},{\"imageFileLength\":\"297KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fyvnihej31hc0u0e2b.jpg\"},{\"imageFileLength\":\"191KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uralv2qqj31c00u0n2q.jpg\"},{\"imageFileLength\":\"126KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utags0xqj31hc0u0whm.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urou6a37j31c00u0dpf.jpg\"},{\"imageFileLength\":\"221KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvymtcnj31c00u0qhq.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dbqm8c1j31hc0u0ae5.jpg\"},{\"imageFileLength\":\"97KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utahurzlj31c00u0tb7.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:09:05'); INSERT INTO `sys_oper_log` VALUES (3789, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbh0zurj31c00u0wjg.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbemeerj31c00u0q7b.jpg\"},{\"imageFileLength\":\"179KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7qckabj31hc0u0dke.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqd9m82j31c00u0439.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp8hvzwj31c00u0ajz.jpg\"},{\"imageFileLength\":\"287KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpbf59xj31c00u0dpf.jpg\"},{\"imageFileLength\":\"297KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fyvnihej31hc0u0e2b.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8y2lfzj31c00u0q7v.jpg\"},{\"imageFileLength\":\"231KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf6pafsj31c00u0gs7.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28en4m6tcj31c00u07k6.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:09:36'); INSERT INTO `sys_oper_log` VALUES (3790, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"270KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uragmso0j31c00u07cd.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq1hbj37j31ao0t677y.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useks5rcj31c00u0gpo.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb2jxt9j31c00u0dmz.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqd9m82j31c00u0439.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ural2vxij31c00u0tdq.jpg\"},{\"imageFileLength\":\"297KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g28d43y0z7j31c00u0npd.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utazsu0hj31c00u0n0v.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urt1qxesj31hc0u0naa.jpg\"},{\"imageFileLength\":\"256KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqffq7doj31hc0u0aib.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:09:38'); INSERT INTO `sys_oper_log` VALUES (3791, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 19:09:47'); INSERT INTO `sys_oper_log` VALUES (3792, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"186KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urve4h82j31hc0u0wsr.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8ixyrlj31c00u00wl.jpg\"},{\"imageFileLength\":\"205KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfeeg85j31hc0u0gqu.jpg\"},{\"imageFileLength\":\"170KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut96nxguj31c00u0gqc.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gysd0vsj31c00u0adl.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfa1vowj31c00u042n.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaukq1nj31c00u00wc.jpg\"},{\"imageFileLength\":\"200KB\",\"imageSize\":\"1600x1000\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4x8t2vj318g0rs79f.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97cwznj31c00u0dk4.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utamtevtj31hc0u00yd.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:09:48'); INSERT INTO `sys_oper_log` VALUES (3793, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 19:10:43'); INSERT INTO `sys_oper_log` VALUES (3794, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfffcxgj31c00u0djb.jpg\"},{\"imageFileLength\":\"270KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uragmso0j31c00u07cd.jpg\"},{\"imageFileLength\":\"252KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54p98dj31c00u0460.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraw1lgaj31hc0u0dkn.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut5cnvpgj31ao0t6jvk.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8htavxj31c00u0q7g.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7uws9pj31hc0u0q76.jpg\"},{\"imageFileLength\":\"231KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urt0w74oj31hc0u0n9o.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28en4m6tcj31c00u07k6.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbnbkacj31c00u0gq0.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:10:44'); INSERT INTO `sys_oper_log` VALUES (3795, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"218KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursh5e59j31c00u0ana.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicph7kzj31920u0tci.jpg\"},{\"imageFileLength\":\"218KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp55dbcj31c00u0k1h.jpg\"},{\"imageFileLength\":\"154KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4gs693j31c00u078e.jpg\"},{\"imageFileLength\":\"187KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqflvjhnj31c00u0dly.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8h5s09j31c00u0tcq.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq59yi2qj31hc0u00ya.jpg\"},{\"imageFileLength\":\"297KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fyvnihej31hc0u0e2b.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fy8xuovj31c00u0qe1.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq58noj7j31c00u0tdi.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:11:28'); INSERT INTO `sys_oper_log` VALUES (3796, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursw8cwhj31c00u0qfe.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4h9aefj31c00u00xp.jpg\"},{\"imageFileLength\":\"183KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8a82thj31c00u00xu.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9db545j31c00u00w0.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ural2vxij31c00u0tdq.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usehiodij31c00u0422.jpg\"},{\"imageFileLength\":\"121KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utav4pt7j31hc0u041i.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf6m5dzj31400p00z1.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp9w1ioj31hc0u049u.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7ht0ooj31c00u0ady.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:11:29'); INSERT INTO `sys_oper_log` VALUES (3797, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"186KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq52o2ywj31hc0u0dku.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf3l3uoj31c00u0gpy.jpg\"},{\"imageFileLength\":\"276KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb76iomj31c00u046s.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ey4i7j31c00u0n1g.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta3b1hrj31c00u0wgz.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpbwzsmj31c00u0ajx.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8eqvy7j31hc0u0q7w.jpg\"},{\"imageFileLength\":\"191KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf2u87vj31c00u0q8i.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1521x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5qc7sdj31690u0gwo.jpg\"},{\"imageFileLength\":\"204KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useqcs5kj31c00u0tei.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:11:33'); INSERT INTO `sys_oper_log` VALUES (3798, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"144KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut81vzwij31c00u0n10.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb3fomvj31hc0u0tc5.jpg\"},{\"imageFileLength\":\"95KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbao9jqj31c00u0wgv.jpg\"},{\"imageFileLength\":\"208KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut844peaj31c00u0wkb.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9kgu7aj31c00u0422.jpg\"},{\"imageFileLength\":\"183KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us98grmxj31c00u0dl2.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqo7722j31c00u07kc.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8aqzb4j31c00u0gpl.jpg\"},{\"imageFileLength\":\"200KB\",\"imageSize\":\"1600x1000\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4x8t2vj318g0rs79f.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursn3l8wj31c00u0zw9.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:11:35'); INSERT INTO `sys_oper_log` VALUES (3799, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf2n29xj31c00u0q9f.jpg\"},{\"imageFileLength\":\"296KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf4h5c0j31hc0u0dot.jpg\"},{\"imageFileLength\":\"203KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfgcexnj31c00u044z.jpg\"},{\"imageFileLength\":\"226KB\",\"imageSize\":\"1920x1200\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005zWjpngy1fuvgj17oy3j31hc0xc7aa.jpg\"},{\"imageFileLength\":\"113KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4xx0c7j31c00u0tbs.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useu7tuzj31c00u0gpk.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8q1glpj31hc0u078u.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8y6c4lj31c00u0gp8.jpg\"},{\"imageFileLength\":\"282KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqft14dbj31c00u0gsb.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut50wnxdj31c00u0n1n.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:11:36'); INSERT INTO `sys_oper_log` VALUES (3800, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"277KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfkrdq9j31c00u011i.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9eivqkj31c00u0n11.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9buu8aj31c00u0wjk.jpg\"},{\"imageFileLength\":\"95KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbao9jqj31c00u0wgv.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursyki98j31c00u0qg0.jpg\"},{\"imageFileLength\":\"246KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utc0rr7gj31c00u0ah9.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf8isetj31c00u00wz.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta3b1hrj31c00u0wgz.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ilsmij31c00u0wjt.jpg\"},{\"imageFileLength\":\"208KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5gw775j31hc0u0tek.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:11:37'); INSERT INTO `sys_oper_log` VALUES (3801, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urav2glwj31c00u043f.jpg\"},{\"imageFileLength\":\"228KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvzo3ouj31c00u04d5.jpg\"},{\"imageFileLength\":\"257KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqgcv2bwj31hc0u0jzn.jpg\"},{\"imageFileLength\":\"299KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5qlt09j31hc0u0k2z.jpg\"},{\"imageFileLength\":\"161KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5mimkzj31c00u0jwn.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utabkr0fj31c00u0tbz.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8q1glpj31hc0u078u.jpg\"},{\"imageFileLength\":\"160KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb5vyibj31c00u0aeq.jpg\"},{\"imageFileLength\":\"229KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4odkpzj31c00u0tfi.jpg\"},{\"imageFileLength\":\"336KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ersrcv1j31c00u01kx.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:11:41'); INSERT INTO `sys_oper_log` VALUES (3802, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"131KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut485mdzj31ao0t6gox.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1f3d9oj31hc0u0ae4.jpg\"},{\"imageFileLength\":\"201KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb6y8ysj31c00u044i.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb9u746j31c00u043c.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut5cnvpgj31ao0t6jvk.jpg\"},{\"imageFileLength\":\"349KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs54t22j31hc0u07fx.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbc45nmj31c00u078k.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8y6c4lj31c00u0gp8.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utancrnoj31hc0u0q5m.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv9ywrqj31hc0u0tnd.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:11:45'); INSERT INTO `sys_oper_log` VALUES (3803, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8ixyrlj31c00u00wl.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1frs9vj31c00u0tcm.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utau2zv2j31c00u0wir.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg3lbn7j31hc0u0qbm.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usegcrvpj31c00u0q66.jpg\"},{\"imageFileLength\":\"101KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4o01k5j31c00u0td1.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut466y67j31hc0u0dk0.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us93kanwj31c00u0juy.jpg\"},{\"imageFileLength\":\"312KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urphzevej31hc0u0dpo.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utakzwq7j31c00u0q6j.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:11:55'); INSERT INTO `sys_oper_log` VALUES (3804, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1642675115000,\"temperature\":\"11\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-20 19:12:09'); INSERT INTO `sys_oper_log` VALUES (3805, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"273KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvka0b2j31hc0u0aol.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1ep5icj31hc0u00vc.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut55000kj31hc0u0tc4.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usexuhffj31c00u00vx.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb7a5atj31c00u0gqd.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8hrah4j31c00u0tdo.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usecnpn0j31c00u042b.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut5g6j3ij31c00u042b.jpg\"},{\"imageFileLength\":\"203KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb0kxphj31hc0u0afd.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5ilfnmj31c00u0435.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:12:11'); INSERT INTO `sys_oper_log` VALUES (3806, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"165KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ycin6j31hc0u042q.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf0h9wnj31ao0t6tdp.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfpatiyj31hc0u0ah2.jpg\"},{\"imageFileLength\":\"203KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gthwn95j31c00u01kx.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf8isetj31c00u00wz.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbc4jvoj31c00u0wjj.jpg\"},{\"imageFileLength\":\"384KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8l33k7j31c00u07gb.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursjwe4pj31c00u0gyy.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usevh49wj31c00u0juh.jpg\"},{\"imageFileLength\":\"211KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uratlfh2j31c00u00z2.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:12:25'); INSERT INTO `sys_oper_log` VALUES (3807, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"282KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbf0jw1j31c00u0jzy.jpg\"},{\"imageFileLength\":\"108KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utaz82r4j31c00u0dio.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut3zl7zhj31c00u077e.jpg\"},{\"imageFileLength\":\"100KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utanu5ckj31c00u00va.jpg\"},{\"imageFileLength\":\"262KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqeyfe17j31c00u0tf4.jpg\"},{\"imageFileLength\":\"238KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5axa6fj31c00u0tef.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut4ncue0j31hc0u0tbs.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7uws9pj31hc0u0q76.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut50wnxdj31c00u0n1n.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursnz5lxj31c00u0145.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:12:33'); INSERT INTO `sys_oper_log` VALUES (3808, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut58hmjgj31c00u0acq.jpg\"},{\"imageFileLength\":\"293KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvwato6j31hc0u0qhw.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8ymyozj31c00u00wn.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf2h076j31c00u0adg.jpg\"},{\"imageFileLength\":\"258KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urw0z3jkj31hc0u0ao6.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dj1496qj31hc0u0h1z.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut561hjoj31hc0u0tc4.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut59xq5yj31c00u0td1.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut94def3j31c00u0ad6.jpg\"},{\"imageFileLength\":\"201KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1us9h7s6hj31hc0u0gqu.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:12:54'); INSERT INTO `sys_oper_log` VALUES (3809, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usemmapzj31c00u0q63.jpg\"},{\"imageFileLength\":\"226KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvij3j7j31c00u04dl.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq553mjwj31hc0u0n21.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usezkigyj31c00u0wk2.jpg\"},{\"imageFileLength\":\"170KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut96nxguj31c00u0gqc.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut45hq65j31c00u0gq2.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useu7tuzj31c00u0gpk.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut466y67j31hc0u0dk0.jpg\"},{\"imageFileLength\":\"278KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursh0sxhj31c00u0qef.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfttmz1j31c00u044r.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:13:24'); INSERT INTO `sys_oper_log` VALUES (3810, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:13:28'); INSERT INTO `sys_oper_log` VALUES (3811, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:13:34'); INSERT INTO `sys_oper_log` VALUES (3812, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"141KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut56mw3sj31c00u078e.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7lfgvxj31c00u0n0v.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urahmb20j31hc0u0qbh.jpg\"},{\"imageFileLength\":\"128KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ura7ecfij31c00u0tc9.jpg\"},{\"imageFileLength\":\"235KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usezf60sj31c00u045y.jpg\"},{\"imageFileLength\":\"540KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ij0kdj31hc0u017i.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useo90o9j31c00u0q5y.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv4fe6lj31hc0u0k5s.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1etslbj31hc0u0gop.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfzbaegj31c00u0ai8.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:13:36'); INSERT INTO `sys_oper_log` VALUES (3813, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:13:37'); INSERT INTO `sys_oper_log` VALUES (3814, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"181KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfc4idvj31hc0u00xg.jpg\"},{\"imageFileLength\":\"197KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfi3lt6j31c00u0447.jpg\"},{\"imageFileLength\":\"374KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf1krf1j31hc0u048i.jpg\"},{\"imageFileLength\":\"259KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfwkaiaj318g0p0ahp.jpg\"},{\"imageFileLength\":\"160KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf59ixvj31900u043d.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utanqnghj31c00u041y.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt4utcg2j318g0p0gqt.jpg\"},{\"imageFileLength\":\"531KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g28d49ebhej31hc0u0kjl.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54s22pj31c00u0tcv.jpg\"},{\"imageFileLength\":\"361KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urph8jmij31hc0u0qe0.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:13:38'); INSERT INTO `sys_oper_log` VALUES (3815, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"80KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utales2rj31c00u0766.jpg\"},{\"imageFileLength\":\"228KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfsnjn2j31c00u0qa0.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utag2k78j31c00u00vn.jpg\"},{\"imageFileLength\":\"203KB\",\"imageSize\":\"1680x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb9wwhjj31ao0u0gxv.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8x295yj31hc0u0wjx.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7chbtxj31c00u0n0x.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb7o6pzj31c00u00wj.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utargvguj31c00u0whm.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut94def3j31c00u0ad6.jpg\"},{\"imageFileLength\":\"234KB\",\"imageSize\":\"1920x1200\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005UYuA2gy1fvzhwuy9vgj31hc0xcago.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:13:39'); INSERT INTO `sys_oper_log` VALUES (3816, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:13:45'); INSERT INTO `sys_oper_log` VALUES (3817, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:13:46'); INSERT INTO `sys_oper_log` VALUES (3818, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:13:47'); INSERT INTO `sys_oper_log` VALUES (3819, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484121977901498369', '127.0.0.1', '', '1484121977901498369', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:14:20'); INSERT INTO `sys_oper_log` VALUES (3820, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:33:21'); INSERT INTO `sys_oper_log` VALUES (3821, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642676925000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 19:33:24'); INSERT INTO `sys_oper_log` VALUES (3822, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:33:24'); INSERT INTO `sys_oper_log` VALUES (3823, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642676925000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 19:33:32'); INSERT INTO `sys_oper_log` VALUES (3824, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:33:34'); INSERT INTO `sys_oper_log` VALUES (3825, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8t87rfj31c00u0td3.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97hf1xj31c00u0q8b.jpg\"},{\"imageFileLength\":\"204KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvztol3j31c00u0tmh.jpg\"},{\"imageFileLength\":\"246KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utc0rr7gj31c00u0ah9.jpg\"},{\"imageFileLength\":\"222KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usffr0v7j31hc0u0dli.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4phsk2j31c00u0jwn.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8p58anj31c00u0adp.jpg\"},{\"imageFileLength\":\"209KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8srpftj31c00u0gro.jpg\"},{\"imageFileLength\":\"251KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqsx8k0j31c00u0wtn.jpg\"},{\"imageFileLength\":\"256KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqffq7doj31hc0u0aib.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:33:37'); INSERT INTO `sys_oper_log` VALUES (3826, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484126965570682881', '127.0.0.1', '', '1484126965570682881', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:33:41'); INSERT INTO `sys_oper_log` VALUES (3827, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbcwvylj31c00u0jy1.jpg\"},{\"imageFileLength\":\"167KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9b1zy9j31c00u0gqd.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1urso46l9j31c00u0k4o.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9gym0yj31c00u0jwp.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbdkjeaj31c00u0441.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut45hq65j31c00u0gq2.jpg\"},{\"imageFileLength\":\"312KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urazhfy8j31hc0u0gtw.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51zh8ij31c00u0af9.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8y6c4lj31c00u0gp8.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5cuj78j31c00u0dld.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:33:45'); INSERT INTO `sys_oper_log` VALUES (3828, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484127002975485954', '127.0.0.1', '', '1484127002975485954', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:33:49'); INSERT INTO `sys_oper_log` VALUES (3829, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642678440000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 19:59:53'); INSERT INTO `sys_oper_log` VALUES (3830, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urav2glwj31c00u043f.jpg\"},{\"imageFileLength\":\"384KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbf76cpj31c00u07fn.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicph7kzj31920u0tci.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utau2zv2j31c00u0wir.jpg\"},{\"imageFileLength\":\"84KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utan6elgj31hc0u0gni.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfgnbq2j31c00u0436.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usewkhv3j31c00u0q6b.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq1h5pmxj31hc0u0n0k.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uranifgkj31hc0u078y.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8pevqkj31c00u0gom.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 19:59:57'); INSERT INTO `sys_oper_log` VALUES (3831, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"176KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbfnqnkj31hc0u07b2.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfffcxgj31c00u0djb.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut53tjgnj31c00u0wi4.jpg\"},{\"imageFileLength\":\"332KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg02o6sj31c00u0ai2.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urapzgtkj31c00u0q8e.jpg\"},{\"imageFileLength\":\"218KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp55dbcj31c00u0k1h.jpg\"},{\"imageFileLength\":\"273KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dtigysvj31c00u0gu5.jpg\"},{\"imageFileLength\":\"315KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ew9x3lcj31c00u0nou.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb21419j31c00u079m.jpg\"},{\"imageFileLength\":\"218KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfsaffmj31hc0u0n44.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:00:47'); INSERT INTO `sys_oper_log` VALUES (3832, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"250KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpj44r3j31c00u0n6o.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gytemb1j31c00u0q69.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb9c65bj31hc0u0wiu.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq591rcyj31c00u0439.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut466y67j31hc0u0dk0.jpg\"},{\"imageFileLength\":\"126KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utags0xqj31hc0u0whm.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpp0tlsj31hc0u0wp8.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfdlb9oj31c00u0aer.jpg\"},{\"imageFileLength\":\"218KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfsaffmj31hc0u0n44.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut80ho65j31c00u0zmt.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:00:54'); INSERT INTO `sys_oper_log` VALUES (3833, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"205KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfeeg85j31hc0u0gqu.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursw8cwhj31c00u0qfe.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8nby71j31c00u0ae8.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1urso46l9j31c00u0k4o.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicoymuqj31920u00wn.jpg\"},{\"imageFileLength\":\"215KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursidbzxj31c00u0gyo.jpg\"},{\"imageFileLength\":\"312KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursb485nj31c00u015l.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8omfdnj31c00u0aei.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut8e1nsfj318g0p0gp4.jpg\"},{\"imageFileLength\":\"98KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1e4o35j31hc0u0wgp.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:01:13'); INSERT INTO `sys_oper_log` VALUES (3834, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb8m46aj31c00u0adw.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7uhr5j31c00u0n1z.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut56udo0j31ao0t6goo.jpg\"},{\"imageFileLength\":\"229KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicphy7bj31920u0q92.jpg\"},{\"imageFileLength\":\"199KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8ta69gj31c00u0n2q.jpg\"},{\"imageFileLength\":\"204KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfzb54mj31c00u011p.jpg\"},{\"imageFileLength\":\"277KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb9y0dnj31c00u010u.jpg\"},{\"imageFileLength\":\"251KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5rfje6j31900u0gx7.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8omfdnj31c00u0aei.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7v9jb3j31hc0u042i.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:01:22'); INSERT INTO `sys_oper_log` VALUES (3835, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642678440000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 20:01:41'); INSERT INTO `sys_oper_log` VALUES (3836, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"179KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7qckabj31hc0u0dke.jpg\"},{\"imageFileLength\":\"201KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursoisjaj31c00u0amw.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usez2y0uj31c00u0gqj.jpg\"},{\"imageFileLength\":\"282KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbf0jw1j31c00u0jzy.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb7o6pzj31c00u00wj.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us94p391j31c00u042e.jpg\"},{\"imageFileLength\":\"250KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gt2b91mj31c00u0ne6.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs7h6c7j31hc0u0k4g.jpg\"},{\"imageFileLength\":\"218KB\",\"imageSize\":\"1911x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq50cmm3j31h30u0ag1.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut80ho65j31c00u0zmt.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:01:42'); INSERT INTO `sys_oper_log` VALUES (3837, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9eivqkj31c00u0n11.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ur9xns6uj31c00u041s.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut51bpngj31c00u0tcv.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut56udo0j31ao0t6goo.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpc8blcj31c00u0tj8.jpg\"},{\"imageFileLength\":\"397KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gt6behzj31hc0u0e7t.jpg\"},{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7lz70aj31c00u00wh.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaktz2bj31c00u043b.jpg\"},{\"imageFileLength\":\"368KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfinirqj31c00u07dd.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useo90o9j31c00u0q5y.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:02:38'); INSERT INTO `sys_oper_log` VALUES (3838, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"204KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvztol3j31c00u0tmh.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq57zes9j31c00u0n2s.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut57djmfj31c00u0juh.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usegcrvpj31c00u0q66.jpg\"},{\"imageFileLength\":\"121KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utav4pt7j31hc0u041i.jpg\"},{\"imageFileLength\":\"245KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfxqu7wj31hc0u0q98.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us94p391j31c00u042e.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gr2uq02j31c00u0x42.jpg\"},{\"imageFileLength\":\"220KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut58mw6tj31hc0u0wkc.jpg\"},{\"imageFileLength\":\"373KB\",\"imageSize\":\"1500x1001\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5q2p7tj315o0rtwri.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:02:40'); INSERT INTO `sys_oper_log` VALUES (3839, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642678440000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 20:02:44'); INSERT INTO `sys_oper_log` VALUES (3840, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv7np7gj31c00u04cv.jpg\"},{\"imageFileLength\":\"101KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraslm2pj31c00u078k.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uqezevj6j31c00u0456.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfhtbqnj31hc0u0107.jpg\"},{\"imageFileLength\":\"288KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbfmetaj31hc0u0wm6.jpg\"},{\"imageFileLength\":\"248KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursuf1mej31hc0u0amn.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usecnpn0j31c00u042b.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ndnsej31c00u0whs.jpg\"},{\"imageFileLength\":\"194KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfi6ibrj31c00u0wku.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqeytc34j318g0p0aga.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:02:45'); INSERT INTO `sys_oper_log` VALUES (3841, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"187KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv01zduj31c00u0dux.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfx9yh2j31c00u0tgc.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9gym0yj31c00u0jwp.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8ymyozj31c00u00wn.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useu7tuzj31c00u0gpk.jpg\"},{\"imageFileLength\":\"89KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utad0g9zj31c00u0ac8.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpjkyn6j31c00u0k2c.jpg\"},{\"imageFileLength\":\"279KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbbn94wj31hc0u0qad.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs5o85cj31hc0u0wro.jpg\"},{\"imageFileLength\":\"98KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1e4o35j31hc0u0wgp.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:03:08'); INSERT INTO `sys_oper_log` VALUES (3842, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"318KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28du6autnj31c00u0e81.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb5viegj31c00u0q6e.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1280x800\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uq1m5arwj30zk0m8dik.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gytemb1j31c00u0q69.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utarx2wcj31c00u0tbw.jpg\"},{\"imageFileLength\":\"177KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urazlo5nj31c00u0tdq.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut5jmu4pj31c00u0n04.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7chbtxj31c00u0n0x.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urplr8jvj31hc0u0498.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8lxrsyj31c00u0jv2.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:03:22'); INSERT INTO `sys_oper_log` VALUES (3843, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484134452524957697', '127.0.0.1', '', '1484134452524957697', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:03:28'); INSERT INTO `sys_oper_log` VALUES (3844, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 19:34:00\"}}', 0, '', '2022-01-20 20:03:29'); INSERT INTO `sys_oper_log` VALUES (3845, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642678440000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 20:03:30'); INSERT INTO `sys_oper_log` VALUES (3846, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursv4ie9j31c00u0qfh.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq52iirlj31hc0u0gr9.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4vvax7j31hc0u0jvu.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us923zsoj31c00u0tch.jpg\"},{\"imageFileLength\":\"258KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urw0z3jkj31hc0u0ao6.jpg\"},{\"imageFileLength\":\"207KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp4vlhij31c00u0k15.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utazjweqj31c00u0q78.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useo90o9j31c00u0q5y.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utadr6u7j31c00u0gqp.jpg\"},{\"imageFileLength\":\"224KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urw0jv9hj31c00u0k5q.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:03:32'); INSERT INTO `sys_oper_log` VALUES (3847, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642678440000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 20:03:55'); INSERT INTO `sys_oper_log` VALUES (3848, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7uhr5j31c00u0n1z.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dirhamjj31c00u0h23.jpg\"},{\"imageFileLength\":\"402KB\",\"imageSize\":\"1729x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5tm2y4j31c10u0kba.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1urss82otj31c00u0n9o.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpjkyn6j31c00u0k2c.jpg\"},{\"imageFileLength\":\"368KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfinirqj31c00u07dd.jpg\"},{\"imageFileLength\":\"156KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1g8rgyj31c00u0jv9.jpg\"},{\"imageFileLength\":\"251KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8r8l1ij31c00u010s.jpg\"},{\"imageFileLength\":\"251KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqsx8k0j31c00u0wtn.jpg\"},{\"imageFileLength\":\"303KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbd2httj31c00u0wnr.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:03:56'); INSERT INTO `sys_oper_log` VALUES (3849, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642678440000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 20:04:03'); INSERT INTO `sys_oper_log` VALUES (3850, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb8m46aj31c00u0adw.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uset9sq7j31hc0u0td6.jpg\"},{\"imageFileLength\":\"201KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us93mjojj31c00u079s.jpg\"},{\"imageFileLength\":\"177KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7p6gh0j31c00u0gqk.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4vvax7j31hc0u0jvu.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb6xcl8j31c00u0dkf.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqumw0rj31c00u0e31.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs5o85cj31hc0u0wro.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrn2bj1j31c00u0qi6.jpg\"},{\"imageFileLength\":\"302KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvc7ld4j31c00u0du2.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:04:04'); INSERT INTO `sys_oper_log` VALUES (3851, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642678440000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 20:04:10'); INSERT INTO `sys_oper_log` VALUES (3852, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"141KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4koypdj31hc0u0ae5.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq59gh4cj31c00u079v.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us92bcdqj31c00u0dke.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrkzc7yj31hc0u0dv0.jpg\"},{\"imageFileLength\":\"260KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28f20ls2ij31c00u0kfw.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbg77cj31c00u0ad5.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbkntusj31c00u0793.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpk4ecfj31c00u0qe1.jpg\"},{\"imageFileLength\":\"256KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8s9tpaj31c00u0wm8.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv9ywrqj31hc0u0tnd.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:04:11'); INSERT INTO `sys_oper_log` VALUES (3853, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:04:19'); INSERT INTO `sys_oper_log` VALUES (3854, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"114KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usep8j45j31c00u077a.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7xe5kaj31c00u0gpf.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4phsk2j31c00u0jwn.jpg\"},{\"imageFileLength\":\"82KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utadybr1j31c00u0mz2.jpg\"},{\"imageFileLength\":\"101KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4o01k5j31c00u0td1.jpg\"},{\"imageFileLength\":\"604KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbb68fyj31hc0u0khf.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utabkr0fj31c00u0tbz.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utargvguj31c00u0whm.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfdzy5uj31c00u077f.jpg\"},{\"imageFileLength\":\"105KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1uq1gy6hgj31ao0t6wha.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:04:20'); INSERT INTO `sys_oper_log` VALUES (3855, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"264KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfvcgx6j31hc0u0110.jpg\"},{\"imageFileLength\":\"191KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usey2x2ej31hc0u0797.jpg\"},{\"imageFileLength\":\"263KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvr8lsij31hc0u0h03.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4phsk2j31c00u0jwn.jpg\"},{\"imageFileLength\":\"245KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfxqu7wj31hc0u0q98.jpg\"},{\"imageFileLength\":\"303KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbd2httj31c00u0wnr.jpg\"},{\"imageFileLength\":\"252KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvi6tevj31hc0u0h0l.jpg\"},{\"imageFileLength\":\"239KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8h5wupj31hc0u0gry.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq58noj7j31c00u0tdi.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv1y0ngj31c00u0wsl.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:04:28'); INSERT INTO `sys_oper_log` VALUES (3856, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642678440000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 20:06:30'); INSERT INTO `sys_oper_log` VALUES (3857, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"128KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9dmbsdj31c00u041w.jpg\"},{\"imageFileLength\":\"177KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7p6gh0j31c00u0gqk.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utae4cnkj31c00u0jvk.jpg\"},{\"imageFileLength\":\"260KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfai3htj31c00u0qf2.jpg\"},{\"imageFileLength\":\"222KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbvu03j31c00u0tf3.jpg\"},{\"imageFileLength\":\"604KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbb68fyj31hc0u0khf.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fkgb2j31c00u0jvf.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfckp37j31c00u041k.jpg\"},{\"imageFileLength\":\"289KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfz30rmj31hc0u0tgn.jpg\"},{\"imageFileLength\":\"221KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvymtcnj31c00u0qhq.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:31'); INSERT INTO `sys_oper_log` VALUES (3858, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:36'); INSERT INTO `sys_oper_log` VALUES (3859, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:37'); INSERT INTO `sys_oper_log` VALUES (3860, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:38'); INSERT INTO `sys_oper_log` VALUES (3861, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utahht5zj31c00u0jv8.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uragg10fj31c00u0dks.jpg\"},{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7lz70aj31c00u00wh.jpg\"},{\"imageFileLength\":\"94KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utajswd4j31c00u040r.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8rgjxbj31c00u0af7.jpg\"},{\"imageFileLength\":\"540KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ij0kdj31hc0u017i.jpg\"},{\"imageFileLength\":\"239KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urseh85lj31c00u0wrq.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp9w1ioj31hc0u049u.jpg\"},{\"imageFileLength\":\"285KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gtpjgqzj31c00u01kx.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fat03j31hc0u00wc.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:39'); INSERT INTO `sys_oper_log` VALUES (3862, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"107KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbd3jklj31c00u041b.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf2h076j31c00u0adg.jpg\"},{\"imageFileLength\":\"229KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicphy7bj31920u0q92.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usesjxyhj31hc0u0afi.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us93kanwj31c00u0juy.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfttmz1j31c00u044r.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8y6c4lj31c00u0gp8.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8pevqkj31c00u0gom.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf1o9lkj31c00u041p.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf0u6xtj31c00u0tbx.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:41'); INSERT INTO `sys_oper_log` VALUES (3863, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usezkigyj31c00u0wk2.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8vgjjhj31hc0u0jwd.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqevtepzj31400p00z1.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utaqvhbwj31c00u077r.jpg\"},{\"imageFileLength\":\"374KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf1krf1j31hc0u048i.jpg\"},{\"imageFileLength\":\"191KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf2u87vj31c00u0q8i.jpg\"},{\"imageFileLength\":\"278KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursh0sxhj31c00u0qef.jpg\"},{\"imageFileLength\":\"207KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp4vlhij31c00u0k15.jpg\"},{\"imageFileLength\":\"361KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbe4hjaj31c00u0qdm.jpg\"},{\"imageFileLength\":\"195KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8oxyttj31hc0u0jwh.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:41'); INSERT INTO `sys_oper_log` VALUES (3864, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"141KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4koypdj31hc0u0ae5.jpg\"},{\"imageFileLength\":\"233KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrmg30dj31c00u0apb.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urphxe4gj31c00u0gvs.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8ymyozj31c00u00wn.jpg\"},{\"imageFileLength\":\"281KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28f28idddj31c00u04ne.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq1hdzg6j31400p0tbv.jpg\"},{\"imageFileLength\":\"161KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7y6nxrj31c00u078s.jpg\"},{\"imageFileLength\":\"264KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfvzse3j31hc0u0n4d.jpg\"},{\"imageFileLength\":\"194KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfi6ibrj31c00u0wku.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4x4g1qj31c00u0adz.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:43'); INSERT INTO `sys_oper_log` VALUES (3865, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"171KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8m163dj31hc0u042w.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utahht5zj31c00u0jv8.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursgvyadj31c00u0gxb.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf34db7j31c00u0aj7.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfffcxgj31c00u0djb.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut5jmu4pj31c00u0n04.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq54ygf8j31c00u0q8i.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28evp7c8mj31c00u0qar.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ur9x7ie1j31c00u00vu.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf9tbuxj31c00u0jvo.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:46'); INSERT INTO `sys_oper_log` VALUES (3866, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ur9xns6uj31c00u041s.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urazbikvj31c00u00ww.jpg\"},{\"imageFileLength\":\"101KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraslm2pj31c00u078k.jpg\"},{\"imageFileLength\":\"156KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5qtbtsj31900u0qgt.jpg\"},{\"imageFileLength\":\"248KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursuf1mej31hc0u0amn.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8q1glpj31hc0u078u.jpg\"},{\"imageFileLength\":\"194KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfi6ibrj31c00u0wku.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useydtpxj31c00u0415.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf0u6xtj31c00u0tbx.jpg\"},{\"imageFileLength\":\"106KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usfmxuqqj31c00u0418.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:48'); INSERT INTO `sys_oper_log` VALUES (3867, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrl6vysj31c00u0k6p.jpg\"},{\"imageFileLength\":\"167KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaytucmj31hc0u0jvq.jpg\"},{\"imageFileLength\":\"264KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpdo7pij31c00u0dr7.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraw1lgaj31hc0u0dkn.jpg\"},{\"imageFileLength\":\"195KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfll9cwj31hc0u00ze.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uq54z5n0j31c00u00yi.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gsugaloj31c00u079v.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54s22pj31c00u0tcv.jpg\"},{\"imageFileLength\":\"336KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ersrcv1j31c00u01kx.jpg\"},{\"imageFileLength\":\"255KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us95dlj8j31hc0u0tfe.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:53'); INSERT INTO `sys_oper_log` VALUES (3868, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8pbackj31c00u0gqn.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut51bpngj31c00u0tcv.jpg\"},{\"imageFileLength\":\"200KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut5bysmnj31c00u0q8u.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut87u15kj31hc0u0gpd.jpg\"},{\"imageFileLength\":\"384KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8l33k7j31c00u07gb.jpg\"},{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut472oezj31c00u0420.jpg\"},{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dyh77afj31c00u0195.jpg\"},{\"imageFileLength\":\"105KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpael2oj31c00u0qec.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7rksv4j31hc0u0dje.jpg\"},{\"imageFileLength\":\"236KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfam9yjj318g0p0gsk.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:54'); INSERT INTO `sys_oper_log` VALUES (3869, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"198KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq585n50j31c00u0gqh.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfx9yh2j31c00u0tgc.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gytemb1j31c00u0q69.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usegcrvpj31c00u0q66.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4s3o0jj31hc0u042d.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28domz88jj31c00u04ef.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb7a5atj31c00u0gqd.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf148q8j31c00u0jwf.jpg\"},{\"imageFileLength\":\"98KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1e4o35j31hc0u0wgp.jpg\"},{\"imageFileLength\":\"92KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1uq1bd02rj31c00u0abx.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:56'); INSERT INTO `sys_oper_log` VALUES (3870, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"217KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5abdxmj31hc0u0grd.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf34db7j31c00u0aj7.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jskzyvifj31900u00xo.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1us9l1oo5j31hc0u00yx.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbex3o5j31c00u042s.jpg\"},{\"imageFileLength\":\"368KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfinirqj31c00u07dd.jpg\"},{\"imageFileLength\":\"204KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraqnhwij31c00u0wkn.jpg\"},{\"imageFileLength\":\"239KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urseh85lj31c00u0wrq.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs5o85cj31hc0u0wro.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8tv9kpj31c00u0ae6.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:06:58'); INSERT INTO `sys_oper_log` VALUES (3871, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484135359811633154', '127.0.0.1', '', '1484135359811633154', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:07:03'); INSERT INTO `sys_oper_log` VALUES (3872, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:07:45'); INSERT INTO `sys_oper_log` VALUES (3873, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1642678440000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 20:09:28'); INSERT INTO `sys_oper_log` VALUES (3874, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 19:34:00\"}}', 0, '', '2022-01-20 20:09:28'); INSERT INTO `sys_oper_log` VALUES (3875, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642680742539,\"humidity\":\"77\",\"id\":1484136719571439618,\"province\":\"江西\",\"reporttime\":1642680241000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 20:12:22'); INSERT INTO `sys_oper_log` VALUES (3876, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:12:27'); INSERT INTO `sys_oper_log` VALUES (3877, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:12:59'); INSERT INTO `sys_oper_log` VALUES (3878, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:13:00'); INSERT INTO `sys_oper_log` VALUES (3879, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:13:00'); INSERT INTO `sys_oper_log` VALUES (3880, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005-01-20\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:13:01'); INSERT INTO `sys_oper_log` VALUES (3881, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:14:50'); INSERT INTO `sys_oper_log` VALUES (3882, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:16:19'); INSERT INTO `sys_oper_log` VALUES (3883, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"200KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5fbwuxj31hc0u0q94.jpg\"},{\"imageFileLength\":\"114KB\",\"imageSize\":\"1623x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb0gettj31930u0dl5.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvb91ayj31hc0u016f.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dhswt4bj31c00u0jwf.jpg\"},{\"imageFileLength\":\"225KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvjd7mlj31c00u0dux.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpjkyn6j31c00u0k2c.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8hrah4j31c00u0tdo.jpg\"},{\"imageFileLength\":\"254KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbffnc1j31c00u0dni.jpg\"},{\"imageFileLength\":\"231KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urt0w74oj31hc0u0n9o.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7p0lzj31c00u00wc.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:26:05'); INSERT INTO `sys_oper_log` VALUES (3884, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"95KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbao9jqj31c00u0wgv.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uqezevj6j31c00u0456.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpbwzsmj31c00u0ajx.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraiq3u6j31c00u078n.jpg\"},{\"imageFileLength\":\"233KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us94cx15j31c00u0wld.jpg\"},{\"imageFileLength\":\"385KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5mbsqpj31hc0u04aw.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf148q8j31c00u0jwf.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utavpcuaj31c00u0jun.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8mlz56j31c00u0gpn.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs7h6c7j31hc0u0k4g.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:26:23'); INSERT INTO `sys_oper_log` VALUES (3885, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:26:34'); INSERT INTO `sys_oper_log` VALUES (3886, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:26:43'); INSERT INTO `sys_oper_log` VALUES (3887, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:26:48'); INSERT INTO `sys_oper_log` VALUES (3888, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484140353508032513', '127.0.0.1', '', '1484140353508032513', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:27:07'); INSERT INTO `sys_oper_log` VALUES (3889, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642680241000,\"temperature\":\"10\",\"weather\":\"霾\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 20:27:10'); INSERT INTO `sys_oper_log` VALUES (3890, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-20 20:04:01\"}}', 0, '', '2022-01-20 20:27:10'); INSERT INTO `sys_oper_log` VALUES (3891, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":52}}', 0, '', '2022-01-20 20:27:23'); INSERT INTO `sys_oper_log` VALUES (3892, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:28:25'); INSERT INTO `sys_oper_log` VALUES (3893, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:15'); INSERT INTO `sys_oper_log` VALUES (3894, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:21'); INSERT INTO `sys_oper_log` VALUES (3895, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:22'); INSERT INTO `sys_oper_log` VALUES (3896, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:24'); INSERT INTO `sys_oper_log` VALUES (3897, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:25'); INSERT INTO `sys_oper_log` VALUES (3898, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"179KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq533wecj31hc0u0gqu.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut7i5mrij31c00u0q7a.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gysd0vsj31c00u0adl.jpg\"},{\"imageFileLength\":\"252KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54p98dj31c00u0460.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut45hq65j31c00u0gq2.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dobb94cj31hc0u0n21.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaukhhbj31hc0u041p.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf8c6eaj31c00u0dju.jpg\"},{\"imageFileLength\":\"89KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta271j9j31c00u0ac8.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf35qmtj31c00u0jw9.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:27'); INSERT INTO `sys_oper_log` VALUES (3899, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"171KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8m163dj31hc0u042w.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us96gdgnj31c00u0n1m.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8cj4s3j31c00u078g.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut87u15kj31hc0u0gpd.jpg\"},{\"imageFileLength\":\"374KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf1krf1j31hc0u048i.jpg\"},{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7lz70aj31c00u00wh.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8t8elwj31c00u0djw.jpg\"},{\"imageFileLength\":\"228KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54aepmj31hc0u00yq.jpg\"},{\"imageFileLength\":\"8KB\",\"imageSize\":\"480x360\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5snjdnj31cp0u0wxf.jpg\"},{\"imageFileLength\":\"115KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4e7looj31c00u0n07.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:41'); INSERT INTO `sys_oper_log` VALUES (3900, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfgnbq2j31c00u0436.jpg\"},{\"imageFileLength\":\"226KB\",\"imageSize\":\"1920x1200\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005zWjpngy1fuvgj17oy3j31hc0xc7aa.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8lx9paj31c00u0adx.jpg\"},{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dyh77afj31c00u0195.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8qnmk0j31c00u0q7v.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uiclaax9j31900u077u.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursjwe4pj31c00u0gyy.jpg\"},{\"imageFileLength\":\"264KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gt3hibqj31c00u0dr7.jpg\"},{\"imageFileLength\":\"111KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4b9nl0j31c00u0whb.jpg\"},{\"imageFileLength\":\"8KB\",\"imageSize\":\"480x360\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5snjdnj31cp0u0wxf.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:48'); INSERT INTO `sys_oper_log` VALUES (3901, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb9c65bj31hc0u0wiu.jpg\"},{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28eod61v0j31c00u0kjl.jpg\"},{\"imageFileLength\":\"346KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8hz13wj31hc0u0aj9.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpc8blcj31c00u0tj8.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8x295yj31hc0u0wjx.jpg\"},{\"imageFileLength\":\"239KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfmpndjj31c00u0aix.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs57olvj31c00u04ad.jpg\"},{\"imageFileLength\":\"98KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1e4o35j31hc0u0wgp.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut50wnxdj31c00u0n1n.jpg\"},{\"imageFileLength\":\"236KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfam9yjj318g0p0gsk.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:50'); INSERT INTO `sys_oper_log` VALUES (3902, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"153KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8kwyuoj31hc0u0n10.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut546u7uj31c00u00xw.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq59gh4cj31c00u079v.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utaqvhbwj31c00u077r.jpg\"},{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useoqv5lj31c00u077w.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8ymyozj31c00u00wn.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut466y67j31hc0u0dk0.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utba3wyhj31hc0u0tbb.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urou6a37j31c00u0dpf.jpg\"},{\"imageFileLength\":\"108KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut85lksaj31c00u00vl.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:54'); INSERT INTO `sys_oper_log` VALUES (3903, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrl6vysj31c00u0k6p.jpg\"},{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbcwvylj31c00u0jy1.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpb4kkvj31hc0u0gvx.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursv4ie9j31c00u0qfh.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfx9yh2j31c00u0tgc.jpg\"},{\"imageFileLength\":\"305KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28di4vu5nj31hc0u0x44.jpg\"},{\"imageFileLength\":\"161KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urauh6r6j31c00u00xa.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursn3l8wj31c00u0zw9.jpg\"},{\"imageFileLength\":\"227KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfty0dij31hc0u0454.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb357ylj31c00u0tdg.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:29:57'); INSERT INTO `sys_oper_log` VALUES (3904, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"210KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us99ihw4j31hc0u00y8.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usetu4x5j31c00u0afr.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8kjyjnj31c00u0djs.jpg\"},{\"imageFileLength\":\"107KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7l1j88j31c00u0mzv.jpg\"},{\"imageFileLength\":\"332KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg02o6sj31c00u0ai2.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf8isetj31c00u00wz.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utaqvhbwj31c00u077r.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbe6pxuj31hc0u0gpe.jpg\"},{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useoqv5lj31c00u077w.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicpcv3uj31900u0436.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 20:30:01'); INSERT INTO `sys_oper_log` VALUES (3905, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, '', '2022-01-20 20:30:14'); INSERT INTO `sys_oper_log` VALUES (3906, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一定要为自己憧憬的那些事物努力一下,哪怕这力量微不足道,哪怕岁月迢迢。\",\"createTime\":1642681836495,\"id\":1484141307972268034,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-20 20:30:36'); INSERT INTO `sys_oper_log` VALUES (3907, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Some people choose to see the ugliness in this world. The disarray. I choose to see the beauty.\",\"dataId\":4061,\"date\":1615219200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3c323d57036d925b0d0c4da3dc211136.png\",\"note\":\"一些人选择去看见这个世界的丑陋,混乱,我选择去发现美好。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c0ac03f0c2ab71b31bf40b6afc6ed827.mp3\"}}', 0, '', '2022-01-20 20:30:36'); INSERT INTO `sys_oper_log` VALUES (3908, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"Some people choose to see the ugliness in this world. The disarray. I choose to see the beauty.\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":38,\"errorCode\":0,\"transResult\":[{\"dst\":\"有些人选择去看到这个世界的丑陋。\",\"src\":\"Some people choose to see the ugliness in this world. \"},{\"dst\":\"的混乱。\",\"src\":\"The disarray. \"},{\"dst\":\"我选择看美女。\",\"src\":\"I choose to see the beauty.\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-01-20 20:31:01'); INSERT INTO `sys_oper_log` VALUES (3909, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"Some people choose to see the ugliness in this world. The disarray. I choose to see the beauty.\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"有些人选择看到这个世界的丑陋。混乱。我选择看美丽。\",\"src\":\"Some people choose to see the ugliness in this world. The disarray. I choose to see the beauty.\"}]}}', 0, '', '2022-01-20 20:31:14'); INSERT INTO `sys_oper_log` VALUES (3910, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"Some people choose to see the ugliness in this world. The disarray. I choose to see the beauty.\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"有些人选择看到这个世界的丑陋。混乱。我选择看美丽。\",\"src\":\"Some people choose to see the ugliness in this world. The disarray. I choose to see the beauty.\"}]}}', 0, '', '2022-01-20 20:31:42'); INSERT INTO `sys_oper_log` VALUES (3911, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":1}', 0, '', '2022-01-20 20:34:12'); INSERT INTO `sys_oper_log` VALUES (3912, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb8m46aj31c00u0adw.jpg\"},{\"imageFileLength\":\"170KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut5art55j31c00u0438.jpg\"},{\"imageFileLength\":\"248KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraykqqpj31c00u0tgk.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uragg10fj31c00u0dks.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1use61ca6j31c00u0n0a.jpg\"},{\"imageFileLength\":\"156KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbz1wsj31c00u078f.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut55000kj31hc0u0tc4.jpg\"},{\"imageFileLength\":\"228KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54aepmj31hc0u00yq.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dbqm8c1j31hc0u0ae5.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicpcv3uj31900u0436.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:16:22'); INSERT INTO `sys_oper_log` VALUES (3913, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642684598636,\"humidity\":\"77\",\"id\":1484152893197758466,\"province\":\"江西\",\"reporttime\":1642684113000,\"temperature\":\"9\",\"weather\":\"霾\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-20 21:16:38'); INSERT INTO `sys_oper_log` VALUES (3914, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"205KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfeeg85j31hc0u0gqu.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvb91ayj31hc0u016f.jpg\"},{\"imageFileLength\":\"154KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us988ve4j31c00u0q72.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfa1vowj31c00u042n.jpg\"},{\"imageFileLength\":\"264KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpdo7pij31c00u0dr7.jpg\"},{\"imageFileLength\":\"161KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7y6nxrj31c00u078s.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfgkb91j31c00u0tbw.jpg\"},{\"imageFileLength\":\"269KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqgpompj31hc0u0dv2.jpg\"},{\"imageFileLength\":\"285KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urrw79tij31c00u014j.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8htavxj31c00u0q7g.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:16:39'); INSERT INTO `sys_oper_log` VALUES (3915, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月20日\",\"holidayName\":\"大寒\",\"lunarDate\":\"2021年12月18日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月十五\"},{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年02月04日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:16:41'); INSERT INTO `sys_oper_log` VALUES (3916, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9a3cs3j31c00u0q6m.jpg\"},{\"imageFileLength\":\"128KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaf2qztj31hc0u077i.jpg\"},{\"imageFileLength\":\"305KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28di4vu5nj31hc0u0x44.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4usbnfj31ao0t6tcz.jpg\"},{\"imageFileLength\":\"179KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7qckabj31hc0u0dke.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8libuaj31c00u0af0.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4wdzd1j318g0p0n1d.jpg\"},{\"imageFileLength\":\"540KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ij0kdj31hc0u017i.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpf5v0gj31c00u0wnz.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5015kpj31hc0u0q8p.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:16:50'); INSERT INTO `sys_oper_log` VALUES (3917, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:16:58'); INSERT INTO `sys_oper_log` VALUES (3918, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:01'); INSERT INTO `sys_oper_log` VALUES (3919, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:01'); INSERT INTO `sys_oper_log` VALUES (3920, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:02'); INSERT INTO `sys_oper_log` VALUES (3921, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:02'); INSERT INTO `sys_oper_log` VALUES (3922, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:02'); INSERT INTO `sys_oper_log` VALUES (3923, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:04'); INSERT INTO `sys_oper_log` VALUES (3924, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:05'); INSERT INTO `sys_oper_log` VALUES (3925, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:05'); INSERT INTO `sys_oper_log` VALUES (3926, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:06'); INSERT INTO `sys_oper_log` VALUES (3927, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:06'); INSERT INTO `sys_oper_log` VALUES (3928, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:07'); INSERT INTO `sys_oper_log` VALUES (3929, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:08'); INSERT INTO `sys_oper_log` VALUES (3930, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:09'); INSERT INTO `sys_oper_log` VALUES (3931, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:10'); INSERT INTO `sys_oper_log` VALUES (3932, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:10'); INSERT INTO `sys_oper_log` VALUES (3933, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:11'); INSERT INTO `sys_oper_log` VALUES (3934, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:12'); INSERT INTO `sys_oper_log` VALUES (3935, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:13'); INSERT INTO `sys_oper_log` VALUES (3936, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:14'); INSERT INTO `sys_oper_log` VALUES (3937, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:16'); INSERT INTO `sys_oper_log` VALUES (3938, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:18'); INSERT INTO `sys_oper_log` VALUES (3939, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:22'); INSERT INTO `sys_oper_log` VALUES (3940, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:25'); INSERT INTO `sys_oper_log` VALUES (3941, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:27'); INSERT INTO `sys_oper_log` VALUES (3942, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:28'); INSERT INTO `sys_oper_log` VALUES (3943, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:28'); INSERT INTO `sys_oper_log` VALUES (3944, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:29'); INSERT INTO `sys_oper_log` VALUES (3945, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:30'); INSERT INTO `sys_oper_log` VALUES (3946, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:31'); INSERT INTO `sys_oper_log` VALUES (3947, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484153113394495490', '127.0.0.1', '', '1484153113394495490', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:17:34'); INSERT INTO `sys_oper_log` VALUES (3948, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":4}', 0, '', '2022-01-20 21:17:40'); INSERT INTO `sys_oper_log` VALUES (3949, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:19:21'); INSERT INTO `sys_oper_log` VALUES (3950, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:19:22'); INSERT INTO `sys_oper_log` VALUES (3951, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:19:22'); INSERT INTO `sys_oper_log` VALUES (3952, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:19:22'); INSERT INTO `sys_oper_log` VALUES (3953, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:19:23'); INSERT INTO `sys_oper_log` VALUES (3954, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:19:23'); INSERT INTO `sys_oper_log` VALUES (3955, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:19:23'); INSERT INTO `sys_oper_log` VALUES (3956, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:19:26'); INSERT INTO `sys_oper_log` VALUES (3957, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:19:27'); INSERT INTO `sys_oper_log` VALUES (3958, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:19:28'); INSERT INTO `sys_oper_log` VALUES (3959, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2014年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/1207/20161207103637203.jpg\",\"title\":\"世界著名的意大利指挥大师克劳迪奥·阿巴多去世\",\"year\":\"2014\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208041306575.jpg\",\"title\":\"92岁才开始写诗的日本知名诗人柴田丰逝世\",\"year\":\"2013\"},{\"date\":\"2013年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1208/20151208040734449.jpg\",\"title\":\"中国话剧演员于是之在北京辞世\",\"year\":\"2013\"},{\"date\":\"2009年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/DA221237169.jpg\",\"title\":\"美国第44任总统奥巴马宣誓就职\",\"year\":\"2009\"},{\"date\":\"2005年01月20日\",\"day\":\"20\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201202/13/7E173850754.jpg\",\"title\":\"乔治·沃克·布什正式宣誓就职美国总统\",\"year\":\"2005\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:20:38'); INSERT INTO `sys_oper_log` VALUES (3960, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"年纪越大越会明白,少年时曾说过的话,不管多么情真意切,最后也终流于天真,但是有什么关系呢,那不代表它们就是谎言。我是真心希望,如你所言,在我之后,你再没有不能失去的东西。而我再爱上的人,也无一人像你一分。只愿你平安喜乐,愿我们今生,天涯永不再相见。\",\"createTime\":1642684896671,\"id\":1484154143301677057,\"source\":\"空心 \",\"type\":2}}', 0, '', '2022-01-20 21:21:36'); INSERT INTO `sys_oper_log` VALUES (3961, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Never let your persistence and passion turn into stubbornness and ignorance.\",\"createTime\":1642684896688,\"dataId\":3966,\"date\":1607011200000,\"id\":1484154143377174529,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/1323abdded83ad84deb74432074d5159.png\",\"note\":\"永远不要让你的坚持和激情变成固执和无知。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/9c7f92d7ce36b23310c54b4b2f638e7e.mp3\"}}', 0, '', '2022-01-20 21:21:36'); INSERT INTO `sys_oper_log` VALUES (3962, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642684901266,\"en\":\"A money lender serves you in the present tense, lends you in the conditional mood, keeps you in the subjuctive,and ruins you in the future.\",\"id\":1484154162574503937,\"zh\":\"放债的人为你服务时用现在时态,借钱给你时用条件语气,使你常处于虚拟语气之中,并于将来时态中毁掉你.\"}}', 0, '', '2022-01-20 21:21:41'); INSERT INTO `sys_oper_log` VALUES (3963, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"A money lender serves you in the present tense, lends you in the conditional mood, keeps you in the subjuctive,and ruins you in the future.\",\"zh\":\"放债的人为你服务时用现在时态,借钱给你时用条件语气,使你常处于虚拟语气之中,并于将来时态中毁掉你.\"}}', 0, '', '2022-01-20 21:21:44'); INSERT INTO `sys_oper_log` VALUES (3964, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"A money lender serves you in the present tense, lends you in the conditional mood, keeps you in the subjuctive,and ruins you in the future.\",\"zh\":\"放债的人为你服务时用现在时态,借钱给你时用条件语气,使你常处于虚拟语气之中,并于将来时态中毁掉你.\"}}', 0, '', '2022-01-20 21:21:47'); INSERT INTO `sys_oper_log` VALUES (3965, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484153901021872130', '127.0.0.1', '', '1484153901021872130', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-20 21:21:51'); INSERT INTO `sys_oper_log` VALUES (3966, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取IP信息异常!!', '2022-01-21 08:47:00'); INSERT INTO `sys_oper_log` VALUES (3967, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:47:22'); INSERT INTO `sys_oper_log` VALUES (3968, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:47:25'); INSERT INTO `sys_oper_log` VALUES (3969, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 08:38:38\"}}', 0, '', '2022-01-21 08:47:25'); INSERT INTO `sys_oper_log` VALUES (3970, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":240,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:47:33'); INSERT INTO `sys_oper_log` VALUES (3971, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8zjmi3j31c00u0jve.jpg\"},{\"imageFileLength\":\"402KB\",\"imageSize\":\"1729x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5tm2y4j31c10u0kba.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf3l3uoj31c00u0gpy.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9kgu7aj31c00u0422.jpg\"},{\"imageFileLength\":\"121KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utav4pt7j31hc0u041i.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraowajij31c00u0gr7.jpg\"},{\"imageFileLength\":\"227KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfvmxwkj31hc0u0ahu.jpg\"},{\"imageFileLength\":\"184KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv5vnyyj31c00u0wsh.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb64mpjj31hc0u0q6s.jpg\"},{\"imageFileLength\":\"203KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb0kxphj31hc0u0afd.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:48:56'); INSERT INTO `sys_oper_log` VALUES (3972, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:48:58'); INSERT INTO `sys_oper_log` VALUES (3973, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2016年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/0229/20160229015706114.jpg\",\"title\":\"青海门源发生6.4级地震\",\"year\":\"2016\"},{\"date\":\"2014年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209092914219.png\",\"title\":\"中国遭到DNS入侵\",\"year\":\"2014\"},{\"date\":\"2012年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114756694.jpg\",\"title\":\"著名政治学家、北大资深教授赵宝煦先生逝世\",\"year\":\"2012\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114418616.jpg\",\"title\":\"前任香港财政司司长郭伯伟逝世\",\"year\":\"2006\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209113852793.jpg\",\"title\":\"医生及政治家、英国第二位华人贵族曾秋坤逝世\",\"year\":\"2006\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:49:09'); INSERT INTO `sys_oper_log` VALUES (3974, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2016年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/0229/20160229015706114.jpg\",\"title\":\"青海门源发生6.4级地震\",\"year\":\"2016\"},{\"date\":\"2014年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209092914219.png\",\"title\":\"中国遭到DNS入侵\",\"year\":\"2014\"},{\"date\":\"2012年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114756694.jpg\",\"title\":\"著名政治学家、北大资深教授赵宝煦先生逝世\",\"year\":\"2012\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114418616.jpg\",\"title\":\"前任香港财政司司长郭伯伟逝世\",\"year\":\"2006\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209113852793.jpg\",\"title\":\"医生及政治家、英国第二位华人贵族曾秋坤逝世\",\"year\":\"2006\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:49:11'); INSERT INTO `sys_oper_log` VALUES (3975, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:49:43'); INSERT INTO `sys_oper_log` VALUES (3976, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 08:38:38\"}}', 0, '', '2022-01-21 08:49:43'); INSERT INTO `sys_oper_log` VALUES (3977, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2016年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/0229/20160229015706114.jpg\",\"title\":\"青海门源发生6.4级地震\",\"year\":\"2016\"},{\"date\":\"2014年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209092914219.png\",\"title\":\"中国遭到DNS入侵\",\"year\":\"2014\"},{\"date\":\"2012年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114756694.jpg\",\"title\":\"著名政治学家、北大资深教授赵宝煦先生逝世\",\"year\":\"2012\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114418616.jpg\",\"title\":\"前任香港财政司司长郭伯伟逝世\",\"year\":\"2006\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209113852793.jpg\",\"title\":\"医生及政治家、英国第二位华人贵族曾秋坤逝世\",\"year\":\"2006\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:51:50'); INSERT INTO `sys_oper_log` VALUES (3978, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"138KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut813nahj31hc0u0whx.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8ck9c2j31c00u0gqi.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8f02wsj31c00u041r.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvnm4w0j31c00u0dtb.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1675x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt4w9fimj31aj0u0q8f.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usffbel6j31c00u0gpz.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut7y18ixj31hc0u0dkg.jpg\"},{\"imageFileLength\":\"231KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvg4qluj31hc0u0tmk.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs5o85cj31hc0u0wro.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fat03j31hc0u00wc.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:52:10'); INSERT INTO `sys_oper_log` VALUES (3979, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2016年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/0229/20160229015706114.jpg\",\"title\":\"青海门源发生6.4级地震\",\"year\":\"2016\"},{\"date\":\"2014年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209092914219.png\",\"title\":\"中国遭到DNS入侵\",\"year\":\"2014\"},{\"date\":\"2012年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114756694.jpg\",\"title\":\"著名政治学家、北大资深教授赵宝煦先生逝世\",\"year\":\"2012\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114418616.jpg\",\"title\":\"前任香港财政司司长郭伯伟逝世\",\"year\":\"2006\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209113852793.jpg\",\"title\":\"医生及政治家、英国第二位华人贵族曾秋坤逝世\",\"year\":\"2006\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:52:12'); INSERT INTO `sys_oper_log` VALUES (3980, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:52:15'); INSERT INTO `sys_oper_log` VALUES (3981, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2016年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/0229/20160229015706114.jpg\",\"title\":\"青海门源发生6.4级地震\",\"year\":\"2016\"},{\"date\":\"2014年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209092914219.png\",\"title\":\"中国遭到DNS入侵\",\"year\":\"2014\"},{\"date\":\"2012年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114756694.jpg\",\"title\":\"著名政治学家、北大资深教授赵宝煦先生逝世\",\"year\":\"2012\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114418616.jpg\",\"title\":\"前任香港财政司司长郭伯伟逝世\",\"year\":\"2006\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209113852793.jpg\",\"title\":\"医生及政治家、英国第二位华人贵族曾秋坤逝世\",\"year\":\"2006\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:52:15'); INSERT INTO `sys_oper_log` VALUES (3982, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:52:48'); INSERT INTO `sys_oper_log` VALUES (3983, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usex7w98j31c00u0jxx.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usetu4x5j31c00u0afr.jpg\"},{\"imageFileLength\":\"92KB\",\"imageSize\":\"1619x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt57k626j318z0u0gr5.jpg\"},{\"imageFileLength\":\"110KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useh0avrj31c00u0ju9.jpg\"},{\"imageFileLength\":\"177KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7p6gh0j31c00u0gqk.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28do79103j31hc0u00wc.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqeytc34j318g0p0aga.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicpcv3uj31900u0436.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us91jz1rj31c00u078h.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useqnx8ej31c00u0jv3.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:52:49'); INSERT INTO `sys_oper_log` VALUES (3984, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2016年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2016/0229/20160229015706114.jpg\",\"title\":\"青海门源发生6.4级地震\",\"year\":\"2016\"},{\"date\":\"2014年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209092914219.png\",\"title\":\"中国遭到DNS入侵\",\"year\":\"2014\"},{\"date\":\"2012年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114756694.jpg\",\"title\":\"著名政治学家、北大资深教授赵宝煦先生逝世\",\"year\":\"2012\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209114418616.jpg\",\"title\":\"前任香港财政司司长郭伯伟逝世\",\"year\":\"2006\"},{\"date\":\"2006年01月21日\",\"day\":\"21\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1209/20151209113852793.jpg\",\"title\":\"医生及政治家、英国第二位华人贵族曾秋坤逝世\",\"year\":\"2006\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:52:51'); INSERT INTO `sys_oper_log` VALUES (3985, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:53:36'); INSERT INTO `sys_oper_log` VALUES (3986, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:53:50'); INSERT INTO `sys_oper_log` VALUES (3987, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:53:59'); INSERT INTO `sys_oper_log` VALUES (3988, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usficrdgj31c00u0adq.jpg\"},{\"imageFileLength\":\"205KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfeeg85j31hc0u0gqu.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfen2ghj31c00u07bj.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28domz88jj31c00u04ef.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqo7722j31c00u07kc.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utazsu0hj31c00u0n0v.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq1h5pmxj31hc0u0n0k.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8rh3w3j31c00u0aez.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs7r5gcj31hc0u0wqx.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52ydnbj31c00u0juh.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:54:08'); INSERT INTO `sys_oper_log` VALUES (3989, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:55:20'); INSERT INTO `sys_oper_log` VALUES (3990, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '', 1, '', '2022-01-21 08:55:23'); INSERT INTO `sys_oper_log` VALUES (3991, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:25'); INSERT INTO `sys_oper_log` VALUES (3992, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"210KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us99ihw4j31hc0u00y8.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utayepyqj31c00u0whp.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpffz14j31c00u0tk0.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrkzc7yj31hc0u0dv0.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf3l3uoj31c00u0gpy.jpg\"},{\"imageFileLength\":\"208KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9byeb4j31c00u044k.jpg\"},{\"imageFileLength\":\"250KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9crowdj31c00u0jyp.jpg\"},{\"imageFileLength\":\"243KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfcwvcoj31c00u0dnk.jpg\"},{\"imageFileLength\":\"222KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfdszpaj31c00u0n4f.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbp57tj31c00u0421.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:27'); INSERT INTO `sys_oper_log` VALUES (3993, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:28'); INSERT INTO `sys_oper_log` VALUES (3994, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:29'); INSERT INTO `sys_oper_log` VALUES (3995, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:55:31'); INSERT INTO `sys_oper_log` VALUES (3996, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:32'); INSERT INTO `sys_oper_log` VALUES (3997, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:33'); INSERT INTO `sys_oper_log` VALUES (3998, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:33'); INSERT INTO `sys_oper_log` VALUES (3999, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:34'); INSERT INTO `sys_oper_log` VALUES (4000, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:35'); INSERT INTO `sys_oper_log` VALUES (4001, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:37'); INSERT INTO `sys_oper_log` VALUES (4002, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:38'); INSERT INTO `sys_oper_log` VALUES (4003, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:55:55'); INSERT INTO `sys_oper_log` VALUES (4004, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:55:56'); INSERT INTO `sys_oper_log` VALUES (4005, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"218KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursh5e59j31c00u0ana.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq585n50j31c00u0gqh.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1619x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5tsahaj318z0u0k5k.jpg\"},{\"imageFileLength\":\"225KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urve2h2aj31hc0u0nam.jpg\"},{\"imageFileLength\":\"221KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4hwnwwj31c00u0tfa.jpg\"},{\"imageFileLength\":\"252KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqedp3dqj31c00u044i.jpg\"},{\"imageFileLength\":\"110KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaqvjhdj31c00u0mzy.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqeytc34j318g0p0aga.jpg\"},{\"imageFileLength\":\"195KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8oxyttj31hc0u0jwh.jpg\"},{\"imageFileLength\":\"302KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvc7ld4j31c00u0du2.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:56:05'); INSERT INTO `sys_oper_log` VALUES (4006, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:56:34'); INSERT INTO `sys_oper_log` VALUES (4007, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '', 1, '获取历史上的今天api调用异常!!!', '2022-01-21 08:56:38'); INSERT INTO `sys_oper_log` VALUES (4008, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:57:01'); INSERT INTO `sys_oper_log` VALUES (4009, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"269KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrmupypj31hc0u0dv2.jpg\"},{\"imageFileLength\":\"103KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursmd6bcj31c00u0n8r.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8f02wsj31c00u041r.jpg\"},{\"imageFileLength\":\"299KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1usrcl3tpj31hc0u0ap6.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbg77cj31c00u0ad5.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9b9rbqj31c00u0jve.jpg\"},{\"imageFileLength\":\"208KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5gw775j31hc0u0tek.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utargvguj31c00u0whm.jpg\"},{\"imageFileLength\":\"115KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8s31xgj31c00u0diy.jpg\"},{\"imageFileLength\":\"106KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usfmxuqqj31c00u0418.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:57:06'); INSERT INTO `sys_oper_log` VALUES (4010, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:57:08'); INSERT INTO `sys_oper_log` VALUES (4011, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642726042586,\"humidity\":\"88\",\"id\":1484326721774874625,\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:57:22'); INSERT INTO `sys_oper_log` VALUES (4012, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:57:47'); INSERT INTO `sys_oper_log` VALUES (4013, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:58:17'); INSERT INTO `sys_oper_log` VALUES (4014, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:58:17'); INSERT INTO `sys_oper_log` VALUES (4015, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:58:21'); INSERT INTO `sys_oper_log` VALUES (4016, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:58:30'); INSERT INTO `sys_oper_log` VALUES (4017, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:58:50'); INSERT INTO `sys_oper_log` VALUES (4018, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 08:58:53'); INSERT INTO `sys_oper_log` VALUES (4019, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:59:17'); INSERT INTO `sys_oper_log` VALUES (4020, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '', 1, '获取历史上的今天api调用异常!!!', '2022-01-21 08:59:20'); INSERT INTO `sys_oper_log` VALUES (4021, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 08:59:23'); INSERT INTO `sys_oper_log` VALUES (4022, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642725518000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:00:20'); INSERT INTO `sys_oper_log` VALUES (4023, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7gexv4j31c00u0gpw.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf34db7j31c00u0aj7.jpg\"},{\"imageFileLength\":\"92KB\",\"imageSize\":\"1619x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt57k626j318z0u0gr5.jpg\"},{\"imageFileLength\":\"110KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useh0avrj31c00u0ju9.jpg\"},{\"imageFileLength\":\"314KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5iiy7gj31hc0u04aa.jpg\"},{\"imageFileLength\":\"126KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usezfn6xj31c00u0tbx.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utazffypj31hc0u041d.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ur9x7ie1j31c00u00vu.jpg\"},{\"imageFileLength\":\"200KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urax3fb4j31c00u00yk.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51d7zdj31hc0u078o.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 09:00:39'); INSERT INTO `sys_oper_log` VALUES (4024, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 09:00:40'); INSERT INTO `sys_oper_log` VALUES (4025, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 09:08:46\"}}', 0, '', '2022-01-21 09:30:14'); INSERT INTO `sys_oper_log` VALUES (4026, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:30:14'); INSERT INTO `sys_oper_log` VALUES (4027, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":26}', 0, '', '2022-01-21 09:31:44'); INSERT INTO `sys_oper_log` VALUES (4028, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"带我出門 用老派的方式約我 在我拒絕你两次之後 第三次我會點頭\",\"createTime\":1642728726418,\"id\":1484337978531835905,\"source\":\"最甜情歌 (女生版) \",\"type\":2}}', 0, '', '2022-01-21 09:32:06'); INSERT INTO `sys_oper_log` VALUES (4029, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The world may be full of cheating, however we never lack friends with a warm heart.\",\"createTime\":1642728726519,\"dataId\":3983,\"date\":1608480000000,\"id\":1484337978997403649,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e349cbb726aba95945e223d812e47d13.png\",\"note\":\"有时候世界虽然是假的,但并不缺少真心对待我们的人。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2f5f3b3156aafe98ff928dee326b7bc8.mp3\"}}', 0, '', '2022-01-21 09:32:06'); INSERT INTO `sys_oper_log` VALUES (4030, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我只顾喜欢,却忘了不合适。\",\"createTime\":1642728754122,\"id\":1484338094781165570,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-21 09:32:34'); INSERT INTO `sys_oper_log` VALUES (4031, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"再强的敌人在最后一集的主角面前也是渣渣。\",\"createTime\":1642728760431,\"id\":1484338121180114946,\"source\":\"無い\",\"type\":5}}', 0, '', '2022-01-21 09:32:40'); INSERT INTO `sys_oper_log` VALUES (4032, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 09:08:46\"}}', 0, '', '2022-01-21 09:32:59'); INSERT INTO `sys_oper_log` VALUES (4033, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:32:59'); INSERT INTO `sys_oper_log` VALUES (4034, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:33:30'); INSERT INTO `sys_oper_log` VALUES (4035, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut546u7uj31c00u00xw.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursyki98j31c00u0qg0.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1guensj31c00u0adl.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utarx2wcj31c00u0tbw.jpg\"},{\"imageFileLength\":\"106KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uq1ht1kaj31400p0ju9.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8s8ffpj31c00u0n1u.jpg\"},{\"imageFileLength\":\"200KB\",\"imageSize\":\"1600x1000\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4x8t2vj318g0rs79f.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utalnup2j31ao0t677k.jpg\"},{\"imageFileLength\":\"106KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usfmxuqqj31c00u0418.jpg\"},{\"imageFileLength\":\"101KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8v42bsj31c00u0q5g.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 09:33:32'); INSERT INTO `sys_oper_log` VALUES (4036, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 09:33:33'); INSERT INTO `sys_oper_log` VALUES (4037, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 09:08:46\"}}', 0, '', '2022-01-21 09:33:36'); INSERT INTO `sys_oper_log` VALUES (4038, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:33:36'); INSERT INTO `sys_oper_log` VALUES (4039, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Live as if you were to die tomorrow. Learn as if you were to live forever.\",\"createTime\":1642728823190,\"dataId\":3703,\"date\":1584288000000,\"id\":1484338384443994114,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/3c808e665959c15d64c3a3631d3a7c14.png\",\"note\":\"如同明日将死那样生活,如同永远不死那样求知。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/06552da0375e6cb87b841792810a528e.mp3\"}}', 0, '', '2022-01-21 09:33:43'); INSERT INTO `sys_oper_log` VALUES (4040, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"洗衣粉是谋杀爱情的凶手 最后闪闪发亮的只有厨房\",\"createTime\":1642728824216,\"id\":1484338388764127233,\"source\":\"他不懂\",\"type\":2}}', 0, '', '2022-01-21 09:33:44'); INSERT INTO `sys_oper_log` VALUES (4041, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:33:49'); INSERT INTO `sys_oper_log` VALUES (4042, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 09:08:46\"}}', 0, '', '2022-01-21 09:33:57'); INSERT INTO `sys_oper_log` VALUES (4043, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:33:58'); INSERT INTO `sys_oper_log` VALUES (4044, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你羡慕的生活背后 都有你吃不了的苦。\",\"createTime\":1642728864576,\"id\":1484338558000099329,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-21 09:34:24'); INSERT INTO `sys_oper_log` VALUES (4045, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You played out your happiness on a piano that was not infinite. I learned to live that way. \",\"createTime\":1642728864671,\"dataId\":3415,\"date\":1559923200000,\"id\":1484338558398558210,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-08.jpg\",\"note\":\"在有限的钢琴上,我自得其乐,我过惯那样的日子了。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-08-day.mp3\"}}', 0, '', '2022-01-21 09:34:24'); INSERT INTO `sys_oper_log` VALUES (4046, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:35:36'); INSERT INTO `sys_oper_log` VALUES (4047, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:35:57'); INSERT INTO `sys_oper_log` VALUES (4048, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:36:09'); INSERT INTO `sys_oper_log` VALUES (4049, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:40:01'); INSERT INTO `sys_oper_log` VALUES (4050, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642727326000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:40:13'); INSERT INTO `sys_oper_log` VALUES (4051, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:40:41'); INSERT INTO `sys_oper_log` VALUES (4052, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:41:26'); INSERT INTO `sys_oper_log` VALUES (4053, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 09:41:27'); INSERT INTO `sys_oper_log` VALUES (4054, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:44:05'); INSERT INTO `sys_oper_log` VALUES (4055, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:44:09'); INSERT INTO `sys_oper_log` VALUES (4056, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/5656', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 09:44:11'); INSERT INTO `sys_oper_log` VALUES (4057, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360311198811110022', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗区\",\"birthday\":\"1988年11月11日\",\"idCardNum\":\"360311198811110022\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 09:44:25'); INSERT INTO `sys_oper_log` VALUES (4058, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360311198811110022', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗区\",\"birthday\":\"1988年11月11日\",\"idCardNum\":\"360311198811110022\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 09:46:07'); INSERT INTO `sys_oper_log` VALUES (4059, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:46:11'); INSERT INTO `sys_oper_log` VALUES (4060, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/1', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 09:46:23'); INSERT INTO `sys_oper_log` VALUES (4061, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:48:13'); INSERT INTO `sys_oper_log` VALUES (4062, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 09:48:15'); INSERT INTO `sys_oper_log` VALUES (4063, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 09:48:23'); INSERT INTO `sys_oper_log` VALUES (4064, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:48:56'); INSERT INTO `sys_oper_log` VALUES (4065, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 09:48:57'); INSERT INTO `sys_oper_log` VALUES (4066, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:52:55'); INSERT INTO `sys_oper_log` VALUES (4067, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:54:54'); INSERT INTO `sys_oper_log` VALUES (4068, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:56:36'); INSERT INTO `sys_oper_log` VALUES (4069, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 09:58:52'); INSERT INTO `sys_oper_log` VALUES (4070, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:00:00'); INSERT INTO `sys_oper_log` VALUES (4071, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:01:03'); INSERT INTO `sys_oper_log` VALUES (4072, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:01:25'); INSERT INTO `sys_oper_log` VALUES (4073, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:01:30'); INSERT INTO `sys_oper_log` VALUES (4074, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 09:33:53\"}}', 0, '', '2022-01-21 10:01:31'); INSERT INTO `sys_oper_log` VALUES (4075, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/1', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:02:25'); INSERT INTO `sys_oper_log` VALUES (4076, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:03:26'); INSERT INTO `sys_oper_log` VALUES (4077, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:03:35'); INSERT INTO `sys_oper_log` VALUES (4078, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '', 1, '获取历史上的今天api调用异常!!!', '2022-01-21 10:04:49'); INSERT INTO `sys_oper_log` VALUES (4079, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:10:23'); INSERT INTO `sys_oper_log` VALUES (4080, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:10:24'); INSERT INTO `sys_oper_log` VALUES (4081, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:11:07'); INSERT INTO `sys_oper_log` VALUES (4082, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642728833000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:11:32'); INSERT INTO `sys_oper_log` VALUES (4083, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:13:33'); INSERT INTO `sys_oper_log` VALUES (4084, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:13:33'); INSERT INTO `sys_oper_log` VALUES (4085, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:14:03'); INSERT INTO `sys_oper_log` VALUES (4086, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:14:05'); INSERT INTO `sys_oper_log` VALUES (4087, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:14:58'); INSERT INTO `sys_oper_log` VALUES (4088, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:15:11'); INSERT INTO `sys_oper_log` VALUES (4089, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:15:12'); INSERT INTO `sys_oper_log` VALUES (4090, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:15:20'); INSERT INTO `sys_oper_log` VALUES (4091, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:15:26'); INSERT INTO `sys_oper_log` VALUES (4092, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:16:02'); INSERT INTO `sys_oper_log` VALUES (4093, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:16:05'); INSERT INTO `sys_oper_log` VALUES (4094, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:16:10'); INSERT INTO `sys_oper_log` VALUES (4095, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:16:12'); INSERT INTO `sys_oper_log` VALUES (4096, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:16:14'); INSERT INTO `sys_oper_log` VALUES (4097, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/undefined', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:16:15'); INSERT INTO `sys_oper_log` VALUES (4098, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:16:51'); INSERT INTO `sys_oper_log` VALUES (4099, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:17:22'); INSERT INTO `sys_oper_log` VALUES (4100, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/3603122199705231101', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:17:24'); INSERT INTO `sys_oper_log` VALUES (4101, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:17:31'); INSERT INTO `sys_oper_log` VALUES (4102, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/3603122199705230011', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:17:41'); INSERT INTO `sys_oper_log` VALUES (4103, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/3603122199705230011', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:17:47'); INSERT INTO `sys_oper_log` VALUES (4104, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:18:14'); INSERT INTO `sys_oper_log` VALUES (4105, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:18:41'); INSERT INTO `sys_oper_log` VALUES (4106, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 10:04:02\"}}', 0, '', '2022-01-21 10:18:42'); INSERT INTO `sys_oper_log` VALUES (4107, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/xxx', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:18:59'); INSERT INTO `sys_oper_log` VALUES (4108, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/xxx', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 10:19:04'); INSERT INTO `sys_oper_log` VALUES (4109, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:19:07'); INSERT INTO `sys_oper_log` VALUES (4110, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:20:19'); INSERT INTO `sys_oper_log` VALUES (4111, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:22:17'); INSERT INTO `sys_oper_log` VALUES (4112, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642731213572,\"humidity\":\"82\",\"id\":1484348410453749762,\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:23:10'); INSERT INTO `sys_oper_log` VALUES (4113, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:23:19'); INSERT INTO `sys_oper_log` VALUES (4114, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:23:30'); INSERT INTO `sys_oper_log` VALUES (4115, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:23:31'); INSERT INTO `sys_oper_log` VALUES (4116, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:24:42'); INSERT INTO `sys_oper_log` VALUES (4117, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:24:44'); INSERT INTO `sys_oper_log` VALUES (4118, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:25:01'); INSERT INTO `sys_oper_log` VALUES (4119, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:25:02'); INSERT INTO `sys_oper_log` VALUES (4120, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:25:53'); INSERT INTO `sys_oper_log` VALUES (4121, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:25:55'); INSERT INTO `sys_oper_log` VALUES (4122, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:26:03'); INSERT INTO `sys_oper_log` VALUES (4123, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:28:28'); INSERT INTO `sys_oper_log` VALUES (4124, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:28:31'); INSERT INTO `sys_oper_log` VALUES (4125, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:31:04'); INSERT INTO `sys_oper_log` VALUES (4126, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:31:12'); INSERT INTO `sys_oper_log` VALUES (4127, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:32:19'); INSERT INTO `sys_oper_log` VALUES (4128, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:32:20'); INSERT INTO `sys_oper_log` VALUES (4129, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:32:22'); INSERT INTO `sys_oper_log` VALUES (4130, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:32:22'); INSERT INTO `sys_oper_log` VALUES (4131, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:32:26'); INSERT INTO `sys_oper_log` VALUES (4132, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:32:27'); INSERT INTO `sys_oper_log` VALUES (4133, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:34:03'); INSERT INTO `sys_oper_log` VALUES (4134, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:34:57'); INSERT INTO `sys_oper_log` VALUES (4135, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:35:01'); INSERT INTO `sys_oper_log` VALUES (4136, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:36:25'); INSERT INTO `sys_oper_log` VALUES (4137, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:36:29'); INSERT INTO `sys_oper_log` VALUES (4138, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:36:30'); INSERT INTO `sys_oper_log` VALUES (4139, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:37:45'); INSERT INTO `sys_oper_log` VALUES (4140, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:37:46'); INSERT INTO `sys_oper_log` VALUES (4141, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:37:50'); INSERT INTO `sys_oper_log` VALUES (4142, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:37:51'); INSERT INTO `sys_oper_log` VALUES (4143, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:38:27'); INSERT INTO `sys_oper_log` VALUES (4144, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:38:29'); INSERT INTO `sys_oper_log` VALUES (4145, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:38:30'); INSERT INTO `sys_oper_log` VALUES (4146, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fp94dj31c00u0q69.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8nby71j31c00u0ae8.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utarx2wcj31c00u0tbw.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpbwzsmj31c00u0ajx.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ilsmij31c00u0wjt.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpi43izj31c00u0qda.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9sgg8zj31c00u0n2l.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us96931dj31c00u0n1l.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urou6a37j31c00u0dpf.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraknfx1j31c00u0gqd.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:38:57'); INSERT INTO `sys_oper_log` VALUES (4147, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:38:59'); INSERT INTO `sys_oper_log` VALUES (4148, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:39:00'); INSERT INTO `sys_oper_log` VALUES (4149, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642730642000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 10:39:03'); INSERT INTO `sys_oper_log` VALUES (4150, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 10:38:44\"}}', 0, '', '2022-01-21 10:39:04'); INSERT INTO `sys_oper_log` VALUES (4151, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199705230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1997年05月23日\",\"idCardNum\":\"360312199705230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:41:45'); INSERT INTO `sys_oper_log` VALUES (4152, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199905230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1999年05月23日\",\"idCardNum\":\"360312199905230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:41:54'); INSERT INTO `sys_oper_log` VALUES (4153, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199904230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1999年04月23日\",\"idCardNum\":\"360312199904230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:42:39'); INSERT INTO `sys_oper_log` VALUES (4154, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199904230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1999年04月23日\",\"idCardNum\":\"360312199904230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:42:42'); INSERT INTO `sys_oper_log` VALUES (4155, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199904230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1999年04月23日\",\"idCardNum\":\"360312199904230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:42:43'); INSERT INTO `sys_oper_log` VALUES (4156, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199904230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1999年04月23日\",\"idCardNum\":\"360312199904230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:42:44'); INSERT INTO `sys_oper_log` VALUES (4157, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199904230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1999年04月23日\",\"idCardNum\":\"360312199904230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:42:45'); INSERT INTO `sys_oper_log` VALUES (4158, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199904230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1999年04月23日\",\"idCardNum\":\"360312199904230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:42:47'); INSERT INTO `sys_oper_log` VALUES (4159, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199904230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1999年04月23日\",\"idCardNum\":\"360312199904230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:42:49'); INSERT INTO `sys_oper_log` VALUES (4160, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199904230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1999年04月23日\",\"idCardNum\":\"360312199904230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:42:49'); INSERT INTO `sys_oper_log` VALUES (4161, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312199909230011', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1999年09月23日\",\"idCardNum\":\"360312199909230011\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 10:42:56'); INSERT INTO `sys_oper_log` VALUES (4162, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642736198876,\"humidity\":\"83\",\"id\":1484369320304898049,\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:36:38'); INSERT INTO `sys_oper_log` VALUES (4163, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642736198876,\"humidity\":\"83\",\"id\":1484369320304898049,\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:38:00'); INSERT INTO `sys_oper_log` VALUES (4164, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642736198876,\"humidity\":\"83\",\"id\":1484369320304898049,\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:44:03'); INSERT INTO `sys_oper_log` VALUES (4165, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'test', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642736198876,\"humidity\":\"83\",\"id\":1484369320304898049,\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:45:00'); INSERT INTO `sys_oper_log` VALUES (4166, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'test', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642736198876,\"humidity\":\"83\",\"id\":1484369320304898049,\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:45:10'); INSERT INTO `sys_oper_log` VALUES (4167, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'test', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 11:33:59\"}}', 0, '', '2022-01-21 11:45:10'); INSERT INTO `sys_oper_log` VALUES (4168, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'test', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 11:33:59\"}}', 0, '', '2022-01-21 11:45:16'); INSERT INTO `sys_oper_log` VALUES (4169, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'test', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642736198876,\"humidity\":\"83\",\"id\":1484369320304898049,\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:45:16'); INSERT INTO `sys_oper_log` VALUES (4170, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'test', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 11:33:59\"}}', 0, '', '2022-01-21 11:45:17'); INSERT INTO `sys_oper_log` VALUES (4171, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'test', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642736198876,\"humidity\":\"83\",\"id\":1484369320304898049,\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:45:17'); INSERT INTO `sys_oper_log` VALUES (4172, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642736198876,\"humidity\":\"83\",\"id\":1484369320304898049,\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:45:35'); INSERT INTO `sys_oper_log` VALUES (4173, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 11:33:59\"}}', 0, '', '2022-01-21 11:46:31'); INSERT INTO `sys_oper_log` VALUES (4174, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642736198876,\"humidity\":\"83\",\"id\":1484369320304898049,\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:46:31'); INSERT INTO `sys_oper_log` VALUES (4175, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 11:33:59\"}}', 0, '', '2022-01-21 11:46:47'); INSERT INTO `sys_oper_log` VALUES (4176, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:46:47'); INSERT INTO `sys_oper_log` VALUES (4177, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:47:03'); INSERT INTO `sys_oper_log` VALUES (4178, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:53:00'); INSERT INTO `sys_oper_log` VALUES (4179, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:58:50'); INSERT INTO `sys_oper_log` VALUES (4180, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 11:59:34'); INSERT INTO `sys_oper_log` VALUES (4181, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/1', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 11:59:57'); INSERT INTO `sys_oper_log` VALUES (4182, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/11', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 12:00:04'); INSERT INTO `sys_oper_log` VALUES (4183, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/11', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 12:00:11'); INSERT INTO `sys_oper_log` VALUES (4184, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 12:01:30'); INSERT INTO `sys_oper_log` VALUES (4185, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 12:02:53'); INSERT INTO `sys_oper_log` VALUES (4186, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360322199910102222', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗县\",\"birthday\":\"1999年10月10日\",\"idCardNum\":\"360322199910102222\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 12:03:11'); INSERT INTO `sys_oper_log` VALUES (4187, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36032219991010222', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 12:03:18'); INSERT INTO `sys_oper_log` VALUES (4188, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36032219991010222', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 12:03:22'); INSERT INTO `sys_oper_log` VALUES (4189, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36032219991010222', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 12:03:58'); INSERT INTO `sys_oper_log` VALUES (4190, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36032219991010222', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 12:03:59'); INSERT INTO `sys_oper_log` VALUES (4191, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36032219991010222', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 12:04:00'); INSERT INTO `sys_oper_log` VALUES (4192, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36032219991010222', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 12:04:02'); INSERT INTO `sys_oper_log` VALUES (4193, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642736039000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 12:04:10'); INSERT INTO `sys_oper_log` VALUES (4194, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36032219991010222', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 12:04:10'); INSERT INTO `sys_oper_log` VALUES (4195, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360322199910102225', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗县\",\"birthday\":\"1999年10月10日\",\"idCardNum\":\"360322199910102225\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 12:04:13'); INSERT INTO `sys_oper_log` VALUES (4196, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/36032219991010222', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 12:04:14'); INSERT INTO `sys_oper_log` VALUES (4197, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642741718000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:34:06'); INSERT INTO `sys_oper_log` VALUES (4198, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642741718000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:35:10'); INSERT INTO `sys_oper_log` VALUES (4199, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/124', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 13:35:14'); INSERT INTO `sys_oper_log` VALUES (4200, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642741718000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:36:06'); INSERT INTO `sys_oper_log` VALUES (4201, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/35', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 13:36:10'); INSERT INTO `sys_oper_log` VALUES (4202, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/35235', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 13:36:14'); INSERT INTO `sys_oper_log` VALUES (4203, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/35235235', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 13:36:21'); INSERT INTO `sys_oper_log` VALUES (4204, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642741718000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:38:07'); INSERT INTO `sys_oper_log` VALUES (4205, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/214', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 13:38:17'); INSERT INTO `sys_oper_log` VALUES (4206, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642741718000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:40:02'); INSERT INTO `sys_oper_log` VALUES (4207, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/wr', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-21 13:40:03'); INSERT INTO `sys_oper_log` VALUES (4208, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/23423', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-21 13:40:06'); INSERT INTO `sys_oper_log` VALUES (4209, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/325', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-21 13:40:50'); INSERT INTO `sys_oper_log` VALUES (4210, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/325', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-21 13:40:52'); INSERT INTO `sys_oper_log` VALUES (4211, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642741718000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:41:10'); INSERT INTO `sys_oper_log` VALUES (4212, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642741718000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:42:55'); INSERT INTO `sys_oper_log` VALUES (4213, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642741718000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:43:27'); INSERT INTO `sys_oper_log` VALUES (4214, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642743250000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:45:15'); INSERT INTO `sys_oper_log` VALUES (4215, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642743250000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:46:13'); INSERT INTO `sys_oper_log` VALUES (4216, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/214', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 13:46:15'); INSERT INTO `sys_oper_log` VALUES (4217, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/2424', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 13:46:23'); INSERT INTO `sys_oper_log` VALUES (4218, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/13241515', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 13:48:08'); INSERT INTO `sys_oper_log` VALUES (4219, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642743250000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:50:59'); INSERT INTO `sys_oper_log` VALUES (4220, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/11122', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-21 13:51:44'); INSERT INTO `sys_oper_log` VALUES (4221, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642743250000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:53:17'); INSERT INTO `sys_oper_log` VALUES (4222, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 13:53:23'); INSERT INTO `sys_oper_log` VALUES (4223, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642743250000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 13:58:42'); INSERT INTO `sys_oper_log` VALUES (4224, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/3', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-21 13:59:32'); INSERT INTO `sys_oper_log` VALUES (4225, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 13:59:41'); INSERT INTO `sys_oper_log` VALUES (4226, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642743250000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:00:45'); INSERT INTO `sys_oper_log` VALUES (4227, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:00:53'); INSERT INTO `sys_oper_log` VALUES (4228, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:01:07'); INSERT INTO `sys_oper_log` VALUES (4229, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:01:10'); INSERT INTO `sys_oper_log` VALUES (4230, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642743250000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:02:27'); INSERT INTO `sys_oper_log` VALUES (4231, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:02:31'); INSERT INTO `sys_oper_log` VALUES (4232, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:02:35'); INSERT INTO `sys_oper_log` VALUES (4233, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:03:08'); INSERT INTO `sys_oper_log` VALUES (4234, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:03:09'); INSERT INTO `sys_oper_log` VALUES (4235, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:03:10'); INSERT INTO `sys_oper_log` VALUES (4236, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642743250000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:03:14'); INSERT INTO `sys_oper_log` VALUES (4237, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:03:15'); INSERT INTO `sys_oper_log` VALUES (4238, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:03:27'); INSERT INTO `sys_oper_log` VALUES (4239, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:03:38'); INSERT INTO `sys_oper_log` VALUES (4240, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:03:45'); INSERT INTO `sys_oper_log` VALUES (4241, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:03:48'); INSERT INTO `sys_oper_log` VALUES (4242, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:03:56'); INSERT INTO `sys_oper_log` VALUES (4243, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:03:58'); INSERT INTO `sys_oper_log` VALUES (4244, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642743250000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:04:05'); INSERT INTO `sys_oper_log` VALUES (4245, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:04:06'); INSERT INTO `sys_oper_log` VALUES (4246, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:05:17'); INSERT INTO `sys_oper_log` VALUES (4247, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:05:17'); INSERT INTO `sys_oper_log` VALUES (4248, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642743250000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:05:20'); INSERT INTO `sys_oper_log` VALUES (4249, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:05:21'); INSERT INTO `sys_oper_log` VALUES (4250, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/7676', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 14:05:27'); INSERT INTO `sys_oper_log` VALUES (4251, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的手机号码!!!\"}', 0, '', '2022-01-21 14:05:42'); INSERT INTO `sys_oper_log` VALUES (4252, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642745383061,\"humidity\":\"78\",\"id\":1484407841577168898,\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:09:43'); INSERT INTO `sys_oper_log` VALUES (4253, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642745383061,\"humidity\":\"78\",\"id\":1484407841577168898,\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:10:28'); INSERT INTO `sys_oper_log` VALUES (4254, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:10:40'); INSERT INTO `sys_oper_log` VALUES (4255, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642745383061,\"humidity\":\"78\",\"id\":1484407841577168898,\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:11:58'); INSERT INTO `sys_oper_log` VALUES (4256, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 14:04:00\"}}', 0, '', '2022-01-21 14:11:58'); INSERT INTO `sys_oper_log` VALUES (4257, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484408410815492098', '127.0.0.1', '', '1484408410815492098', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:12:08'); INSERT INTO `sys_oper_log` VALUES (4258, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642745383061,\"humidity\":\"78\",\"id\":1484407841577168898,\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:12:12'); INSERT INTO `sys_oper_log` VALUES (4259, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 14:04:00\"}}', 0, '', '2022-01-21 14:12:12'); INSERT INTO `sys_oper_log` VALUES (4260, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642745383061,\"humidity\":\"78\",\"id\":1484407841577168898,\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:14:52'); INSERT INTO `sys_oper_log` VALUES (4261, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642745383061,\"humidity\":\"78\",\"id\":1484407841577168898,\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:15:18'); INSERT INTO `sys_oper_log` VALUES (4262, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642745383061,\"humidity\":\"78\",\"id\":1484407841577168898,\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:19:42'); INSERT INTO `sys_oper_log` VALUES (4263, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:20:53'); INSERT INTO `sys_oper_log` VALUES (4264, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607982414', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607982414\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:23:01'); INSERT INTO `sys_oper_log` VALUES (4265, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607982414', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607982414\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:23:03'); INSERT INTO `sys_oper_log` VALUES (4266, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607982414', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607982414\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:23:05'); INSERT INTO `sys_oper_log` VALUES (4267, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607982414', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607982414\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:23:06'); INSERT INTO `sys_oper_log` VALUES (4268, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17507885214', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"广西联通\",\"mobile\":\"17507885214\",\"province\":\"广西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:23:21'); INSERT INTO `sys_oper_log` VALUES (4269, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:26:32'); INSERT INTO `sys_oper_log` VALUES (4270, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:27:00'); INSERT INTO `sys_oper_log` VALUES (4271, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urat0fc2j31c00u07a3.jpg\"},{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbcwvylj31c00u0jy1.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utag2k78j31c00u00vn.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut552qkqj31c00u0djz.jpg\"},{\"imageFileLength\":\"224KB\",\"imageSize\":\"1920x1200\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005UYuA2gy1fvzhwudggdj31hc0xc44r.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8p58anj31c00u0adp.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dn9klx3j31c00u0nfv.jpg\"},{\"imageFileLength\":\"303KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbd2httj31c00u0wnr.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ndnsej31c00u0whs.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicji4rwj31900u041a.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:28:39'); INSERT INTO `sys_oper_log` VALUES (4272, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:28:55'); INSERT INTO `sys_oper_log` VALUES (4273, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:29:07'); INSERT INTO `sys_oper_log` VALUES (4274, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:29:09'); INSERT INTO `sys_oper_log` VALUES (4275, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:29:10'); INSERT INTO `sys_oper_log` VALUES (4276, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:29:56'); INSERT INTO `sys_oper_log` VALUES (4277, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:30:20'); INSERT INTO `sys_oper_log` VALUES (4278, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:30:22'); INSERT INTO `sys_oper_log` VALUES (4279, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:31:10'); INSERT INTO `sys_oper_log` VALUES (4280, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:31:13'); INSERT INTO `sys_oper_log` VALUES (4281, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:31:13'); INSERT INTO `sys_oper_log` VALUES (4282, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:31:38'); INSERT INTO `sys_oper_log` VALUES (4283, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:31:39'); INSERT INTO `sys_oper_log` VALUES (4284, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:31:40'); INSERT INTO `sys_oper_log` VALUES (4285, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut46lgwnj31hc0u0tcs.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ewal4x5j31ao0t67oa.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpb4kkvj31hc0u0gvx.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb9c65bj31hc0u0wiu.jpg\"},{\"imageFileLength\":\"232KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfomxtdj31c00u0wlw.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dn9klx3j31c00u0nfv.jpg\"},{\"imageFileLength\":\"361KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvgebfhj31c00u0k68.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8hrah4j31c00u0tdo.jpg\"},{\"imageFileLength\":\"111KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4b9nl0j31c00u0whb.jpg\"},{\"imageFileLength\":\"312KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urphzevej31hc0u0dpo.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:32:41'); INSERT INTO `sys_oper_log` VALUES (4286, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:34:04'); INSERT INTO `sys_oper_log` VALUES (4287, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607993928', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西联通\",\"mobile\":\"17607993928\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:34:13'); INSERT INTO `sys_oper_log` VALUES (4288, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484414009032732674', '127.0.0.1', '', '1484414009032732674', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:34:24'); INSERT INTO `sys_oper_log` VALUES (4289, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"84KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbotb5j31c00u040h.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utag2k78j31c00u00vn.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut5j4lz1j31hc0u0q60.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useo13n1j31c00u0td0.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dobb94cj31hc0u0n21.jpg\"},{\"imageFileLength\":\"89KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utad0g9zj31c00u0ac8.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1609x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5pff00j318p0u0k2r.jpg\"},{\"imageFileLength\":\"128KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utav9sb0j31c00u0adg.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut824a31j31hc0u0td9.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf0u6xtj31c00u0tbx.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:36:01'); INSERT INTO `sys_oper_log` VALUES (4290, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:36:05'); INSERT INTO `sys_oper_log` VALUES (4291, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:38:14'); INSERT INTO `sys_oper_log` VALUES (4292, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:39:25'); INSERT INTO `sys_oper_log` VALUES (4293, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/17607882541', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"广西联通\",\"mobile\":\"17607882541\",\"province\":\"广西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:39:33'); INSERT INTO `sys_oper_log` VALUES (4294, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642745040000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:40:51'); INSERT INTO `sys_oper_log` VALUES (4295, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16545881452', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"16545881452\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:40:57'); INSERT INTO `sys_oper_log` VALUES (4296, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:43:24'); INSERT INTO `sys_oper_log` VALUES (4297, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:43:29'); INSERT INTO `sys_oper_log` VALUES (4298, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:43:32'); INSERT INTO `sys_oper_log` VALUES (4299, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:43:34'); INSERT INTO `sys_oper_log` VALUES (4300, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:43:36'); INSERT INTO `sys_oper_log` VALUES (4301, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:44:26'); INSERT INTO `sys_oper_log` VALUES (4302, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:46:41'); INSERT INTO `sys_oper_log` VALUES (4303, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:46:43'); INSERT INTO `sys_oper_log` VALUES (4304, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:46:48'); INSERT INTO `sys_oper_log` VALUES (4305, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:47:28'); INSERT INTO `sys_oper_log` VALUES (4306, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:47:54'); INSERT INTO `sys_oper_log` VALUES (4307, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:48:01'); INSERT INTO `sys_oper_log` VALUES (4308, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:48:23'); INSERT INTO `sys_oper_log` VALUES (4309, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/14725844121', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"四川移动\",\"mobile\":\"14725844121\",\"province\":\"四川\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:48:25'); INSERT INTO `sys_oper_log` VALUES (4310, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365124199910102222', '127.0.0.1', '', '', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:49:46'); INSERT INTO `sys_oper_log` VALUES (4311, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:50:06'); INSERT INTO `sys_oper_log` VALUES (4312, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365124199910102222', '127.0.0.1', '', '', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 14:50:07'); INSERT INTO `sys_oper_log` VALUES (4313, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365124199910102222', '127.0.0.1', '', '', '', 1, '', '2022-01-21 14:54:10'); INSERT INTO `sys_oper_log` VALUES (4314, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 14:54:11'); INSERT INTO `sys_oper_log` VALUES (4315, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:04:54'); INSERT INTO `sys_oper_log` VALUES (4316, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365124199910102222', '127.0.0.1', '', '', '', 1, '获取的汉语字典数据为空', '2022-01-21 15:05:00'); INSERT INTO `sys_oper_log` VALUES (4317, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:06:24'); INSERT INTO `sys_oper_log` VALUES (4318, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:06:43'); INSERT INTO `sys_oper_log` VALUES (4319, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:07:30'); INSERT INTO `sys_oper_log` VALUES (4320, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"84KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbotb5j31c00u040h.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jskzyvifj31900u00xo.jpg\"},{\"imageFileLength\":\"243KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq52w8htj31c00u0teg.jpg\"},{\"imageFileLength\":\"413KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28eoce78ej31c00u07wh.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usexuhffj31c00u00vx.jpg\"},{\"imageFileLength\":\"222KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbvu03j31c00u0tf3.jpg\"},{\"imageFileLength\":\"98KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8i43qxj31c00u076t.jpg\"},{\"imageFileLength\":\"184KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv5vnyyj31c00u0wsh.jpg\"},{\"imageFileLength\":\"218KB\",\"imageSize\":\"1911x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq50cmm3j31h30u0ag1.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8pevqkj31c00u0gom.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:07:31'); INSERT INTO `sys_oper_log` VALUES (4321, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:07:34'); INSERT INTO `sys_oper_log` VALUES (4322, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utayepyqj31c00u0whp.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9buu8aj31c00u0wjk.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utag2k78j31c00u00vn.jpg\"},{\"imageFileLength\":\"278KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfb10i6j31c00u0agr.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfwk7g6j31c00u0qar.jpg\"},{\"imageFileLength\":\"209KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8srpftj31c00u0gro.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraowajij31c00u0gr7.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usevh49wj31c00u0juh.jpg\"},{\"imageFileLength\":\"227KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf9l8x9j31c00u0tfo.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbdmvl8j31hc0u0jv6.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:07:58'); INSERT INTO `sys_oper_log` VALUES (4323, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:07:59'); INSERT INTO `sys_oper_log` VALUES (4324, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"114KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urav6mnjj31c00u0q81.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf3y6cxj31c00u0acq.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp9v9noj31c00u048r.jpg\"},{\"imageFileLength\":\"299KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1usrcl3tpj31hc0u0ap6.jpg\"},{\"imageFileLength\":\"81KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utagolwbj31c00u0jt9.jpg\"},{\"imageFileLength\":\"269KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urav4aa9j31hc0u0n47.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq53f8g1j31c00u079q.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8o099oj31hc0u0wj5.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fy8xuovj31c00u0qe1.jpg\"},{\"imageFileLength\":\"373KB\",\"imageSize\":\"1500x1001\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5q2p7tj315o0rtwri.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:09:15'); INSERT INTO `sys_oper_log` VALUES (4325, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:09:19'); INSERT INTO `sys_oper_log` VALUES (4326, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484422834653655042', '127.0.0.1', '', '1484422834653655042', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:09:46'); INSERT INTO `sys_oper_log` VALUES (4327, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:09:49'); INSERT INTO `sys_oper_log` VALUES (4328, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 15:08:32\"}}', 0, '', '2022-01-21 15:09:50'); INSERT INTO `sys_oper_log` VALUES (4329, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/5', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 15:09:56'); INSERT INTO `sys_oper_log` VALUES (4330, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/5', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的身份证号!!!\"}', 0, '', '2022-01-21 15:10:06'); INSERT INTO `sys_oper_log` VALUES (4331, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:10:40'); INSERT INTO `sys_oper_log` VALUES (4332, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:10:41'); INSERT INTO `sys_oper_log` VALUES (4333, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:10:47'); INSERT INTO `sys_oper_log` VALUES (4334, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:10:49'); INSERT INTO `sys_oper_log` VALUES (4335, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1642747129000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:12:07'); INSERT INTO `sys_oper_log` VALUES (4336, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:12:23'); INSERT INTO `sys_oper_log` VALUES (4337, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:12:28'); INSERT INTO `sys_oper_log` VALUES (4338, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:13:00'); INSERT INTO `sys_oper_log` VALUES (4339, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:14:19'); INSERT INTO `sys_oper_log` VALUES (4340, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:15:35'); INSERT INTO `sys_oper_log` VALUES (4341, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:15:42'); INSERT INTO `sys_oper_log` VALUES (4342, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:15:46'); INSERT INTO `sys_oper_log` VALUES (4343, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:15:48'); INSERT INTO `sys_oper_log` VALUES (4344, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:15:50'); INSERT INTO `sys_oper_log` VALUES (4345, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:15:51'); INSERT INTO `sys_oper_log` VALUES (4346, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:15:52'); INSERT INTO `sys_oper_log` VALUES (4347, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:16:13'); INSERT INTO `sys_oper_log` VALUES (4348, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642749377628,\"humidity\":\"77\",\"id\":1484424596005527553,\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:16:17'); INSERT INTO `sys_oper_log` VALUES (4349, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:16:18'); INSERT INTO `sys_oper_log` VALUES (4350, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:16:20'); INSERT INTO `sys_oper_log` VALUES (4351, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:16:22'); INSERT INTO `sys_oper_log` VALUES (4352, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:16:23'); INSERT INTO `sys_oper_log` VALUES (4353, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365417195512122014', '127.0.0.1', '', '', '', 1, '获取的身份证数据为空', '2022-01-21 15:16:40'); INSERT INTO `sys_oper_log` VALUES (4354, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365417195512122014', '127.0.0.1', '', '', '', 1, '获取的身份证数据为空', '2022-01-21 15:17:03'); INSERT INTO `sys_oper_log` VALUES (4355, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365417195512122014', '127.0.0.1', '', '', '', 1, '获取的身份证数据为空', '2022-01-21 15:17:04'); INSERT INTO `sys_oper_log` VALUES (4356, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365417195512122014', '127.0.0.1', '', '', '', 1, '获取的身份证数据为空', '2022-01-21 15:17:06'); INSERT INTO `sys_oper_log` VALUES (4357, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365417195512122014', '127.0.0.1', '', '', '', 1, '获取的身份证数据为空', '2022-01-21 15:17:07'); INSERT INTO `sys_oper_log` VALUES (4358, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365417195512122014', '127.0.0.1', '', '', '', 1, '获取的身份证数据为空', '2022-01-21 15:17:09'); INSERT INTO `sys_oper_log` VALUES (4359, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/16752144125', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"未找到,请重试\",\"mobile\":\"16752144125\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:17:12'); INSERT INTO `sys_oper_log` VALUES (4360, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365417195512122014', '127.0.0.1', '', '', '', 1, '获取的身份证数据为空', '2022-01-21 15:17:16'); INSERT INTO `sys_oper_log` VALUES (4361, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365417195512122014', '127.0.0.1', '', '', '', 1, '获取的身份证数据为空', '2022-01-21 15:17:24'); INSERT INTO `sys_oper_log` VALUES (4362, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642749377628,\"humidity\":\"77\",\"id\":1484424596005527553,\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:17:29'); INSERT INTO `sys_oper_log` VALUES (4363, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365417195512122014', '127.0.0.1', '', '', '', 1, '获取的身份证数据为空', '2022-01-21 15:17:31'); INSERT INTO `sys_oper_log` VALUES (4364, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642749377628,\"humidity\":\"77\",\"id\":1484424596005527553,\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:17:34'); INSERT INTO `sys_oper_log` VALUES (4365, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/365417195512122014', '127.0.0.1', '', '', '', 1, '获取的身份证数据为空', '2022-01-21 15:17:35'); INSERT INTO `sys_oper_log` VALUES (4366, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:17:48'); INSERT INTO `sys_oper_log` VALUES (4367, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642749377628,\"humidity\":\"77\",\"id\":1484424596005527553,\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:17:55'); INSERT INTO `sys_oper_log` VALUES (4368, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:18:00'); INSERT INTO `sys_oper_log` VALUES (4369, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1use61ca6j31c00u0n0a.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utav4yu7j31c00u0whs.jpg\"},{\"imageFileLength\":\"242KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqed1ogbj31c00u07aa.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uravfb8jj31c00u0n1h.jpg\"},{\"imageFileLength\":\"191KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf2u87vj31c00u0q8i.jpg\"},{\"imageFileLength\":\"352KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52pdb5j31hc0u047z.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utalqw5ij31c00u0aec.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaukhhbj31hc0u041p.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvq1b5kj31c00u017a.jpg\"},{\"imageFileLength\":\"281KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fvot25tj31c00u04ne.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:18:02'); INSERT INTO `sys_oper_log` VALUES (4370, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 15:08:32\"}}', 0, '', '2022-01-21 15:19:24'); INSERT INTO `sys_oper_log` VALUES (4371, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642749377628,\"humidity\":\"77\",\"id\":1484424596005527553,\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:19:24'); INSERT INTO `sys_oper_log` VALUES (4372, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642749377628,\"humidity\":\"77\",\"id\":1484424596005527553,\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:21:44'); INSERT INTO `sys_oper_log` VALUES (4373, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642749377628,\"humidity\":\"77\",\"id\":1484424596005527553,\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:22:34'); INSERT INTO `sys_oper_log` VALUES (4374, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360312188810284111', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市芦溪区\",\"birthday\":\"1888年10月28日\",\"idCardNum\":\"360312188810284111\",\"sex\":\"男\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:22:55'); INSERT INTO `sys_oper_log` VALUES (4375, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642749377628,\"humidity\":\"77\",\"id\":1484424596005527553,\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:23:20'); INSERT INTO `sys_oper_log` VALUES (4376, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:26:30'); INSERT INTO `sys_oper_log` VALUES (4377, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484427165645828098', '127.0.0.1', '', '1484427165645828098', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:26:33'); INSERT INTO `sys_oper_log` VALUES (4378, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:28:03'); INSERT INTO `sys_oper_log` VALUES (4379, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:28:05'); INSERT INTO `sys_oper_log` VALUES (4380, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:31:02'); INSERT INTO `sys_oper_log` VALUES (4381, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:31:04'); INSERT INTO `sys_oper_log` VALUES (4382, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:31:54'); INSERT INTO `sys_oper_log` VALUES (4383, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:31:58'); INSERT INTO `sys_oper_log` VALUES (4384, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:31:59'); INSERT INTO `sys_oper_log` VALUES (4385, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:32:59'); INSERT INTO `sys_oper_log` VALUES (4386, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:33:02'); INSERT INTO `sys_oper_log` VALUES (4387, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/af', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:33:03'); INSERT INTO `sys_oper_log` VALUES (4388, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E6%B1%9F%E8%A5%BF', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省\",\"humidity\":\"77%\",\"reporttime\":1642748902000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:33:10'); INSERT INTO `sys_oper_log` VALUES (4389, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:35:45'); INSERT INTO `sys_oper_log` VALUES (4390, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1642748912000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:35:56'); INSERT INTO `sys_oper_log` VALUES (4391, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642750606752,\"humidity\":\"78\",\"id\":1484429751321042946,\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:36:46'); INSERT INTO `sys_oper_log` VALUES (4392, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%BE%AE%E8%BD%AF', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:36:51'); INSERT INTO `sys_oper_log` VALUES (4393, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/rw', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:37:00'); INSERT INTO `sys_oper_log` VALUES (4394, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E6%B1%9F%E8%A5%BF', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省\",\"humidity\":\"78%\",\"reporttime\":1642750437000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:37:29'); INSERT INTO `sys_oper_log` VALUES (4395, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E6%B1%9F%E8%A5%BF', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省\",\"humidity\":\"78%\",\"reporttime\":1642750437000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:37:51'); INSERT INTO `sys_oper_log` VALUES (4396, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E6%B1%9F%E8%A5%BF', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省\",\"humidity\":\"78%\",\"reporttime\":1642750437000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:37:52'); INSERT INTO `sys_oper_log` VALUES (4397, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:38:14'); INSERT INTO `sys_oper_log` VALUES (4398, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:39:37'); INSERT INTO `sys_oper_log` VALUES (4399, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:39:38'); INSERT INTO `sys_oper_log` VALUES (4400, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:39:38'); INSERT INTO `sys_oper_log` VALUES (4401, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:39:38'); INSERT INTO `sys_oper_log` VALUES (4402, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642750606752,\"humidity\":\"78\",\"id\":1484429751321042946,\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:39:41'); INSERT INTO `sys_oper_log` VALUES (4403, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:39:42'); INSERT INTO `sys_oper_log` VALUES (4404, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642750606752,\"humidity\":\"78\",\"id\":1484429751321042946,\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:41:38'); INSERT INTO `sys_oper_log` VALUES (4405, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:41:40'); INSERT INTO `sys_oper_log` VALUES (4406, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:41:48'); INSERT INTO `sys_oper_log` VALUES (4407, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:42:34'); INSERT INTO `sys_oper_log` VALUES (4408, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:49:17'); INSERT INTO `sys_oper_log` VALUES (4409, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%A5%BF%E5%AE%89', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"吉林省 辽源市 西安区\",\"humidity\":\"47%\",\"reporttime\":1642750256000,\"temp\":\"-13℃\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:49:27'); INSERT INTO `sys_oper_log` VALUES (4410, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%A5%BF%E5%AE%89', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"吉林省 辽源市 西安区\",\"humidity\":\"47%\",\"reporttime\":1642750256000,\"temp\":\"-13℃\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:50:05'); INSERT INTO `sys_oper_log` VALUES (4411, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%A5%BF%E5%AE%89', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"吉林省 辽源市 西安区\",\"humidity\":\"47%\",\"reporttime\":1642750256000,\"temp\":\"-13℃\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:50:07'); INSERT INTO `sys_oper_log` VALUES (4412, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%A5%BF%E5%AE%89', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"吉林省 辽源市 西安区\",\"humidity\":\"47%\",\"reporttime\":1642750256000,\"temp\":\"-13℃\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:50:10'); INSERT INTO `sys_oper_log` VALUES (4413, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%A5%BF%E5%AE%89', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"吉林省 辽源市 西安区\",\"humidity\":\"47%\",\"reporttime\":1642750256000,\"temp\":\"-13℃\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:50:11'); INSERT INTO `sys_oper_log` VALUES (4414, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%A5%BF%E5%AE%89', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"吉林省 辽源市 西安区\",\"humidity\":\"47%\",\"reporttime\":1642750256000,\"temp\":\"-13℃\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:50:12'); INSERT INTO `sys_oper_log` VALUES (4415, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%A5%BF%E5%AE%89', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"吉林省 辽源市 西安区\",\"humidity\":\"47%\",\"reporttime\":1642750256000,\"temp\":\"-13℃\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:50:12'); INSERT INTO `sys_oper_log` VALUES (4416, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:50:15'); INSERT INTO `sys_oper_log` VALUES (4417, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%A5%BF%E5%AE%89', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"吉林省 辽源市 西安区\",\"humidity\":\"47%\",\"reporttime\":1642750256000,\"temp\":\"-13℃\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:50:16'); INSERT INTO `sys_oper_log` VALUES (4418, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:51:04'); INSERT INTO `sys_oper_log` VALUES (4419, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8C%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"北京市\",\"humidity\":\"59%\",\"reporttime\":1642750513000,\"temp\":\"-1℃\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:51:12'); INSERT INTO `sys_oper_log` VALUES (4420, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%83%8C%E6%99%AF', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:52:34'); INSERT INTO `sys_oper_log` VALUES (4421, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%83%8C%E6%99%AF', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:53:18'); INSERT INTO `sys_oper_log` VALUES (4422, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%83%8C%E6%99%AF', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:53:18'); INSERT INTO `sys_oper_log` VALUES (4423, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%83%8C%E6%99%AF', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:53:20'); INSERT INTO `sys_oper_log` VALUES (4424, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%83%8C%E6%99%AF', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:53:21'); INSERT INTO `sys_oper_log` VALUES (4425, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:53:24'); INSERT INTO `sys_oper_log` VALUES (4426, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%95%8A', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:53:25'); INSERT INTO `sys_oper_log` VALUES (4427, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%95%8A', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:53:26'); INSERT INTO `sys_oper_log` VALUES (4428, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%95%8A', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:53:27'); INSERT INTO `sys_oper_log` VALUES (4429, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:53:33'); INSERT INTO `sys_oper_log` VALUES (4430, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/a', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:53:54'); INSERT INTO `sys_oper_log` VALUES (4431, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:53:56'); INSERT INTO `sys_oper_log` VALUES (4432, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/a', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:53:57'); INSERT INTO `sys_oper_log` VALUES (4433, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/a', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:54:18'); INSERT INTO `sys_oper_log` VALUES (4434, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/a', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:54:19'); INSERT INTO `sys_oper_log` VALUES (4435, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/nanc', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:54:50'); INSERT INTO `sys_oper_log` VALUES (4436, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:54:52'); INSERT INTO `sys_oper_log` VALUES (4437, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%95%8A', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:54:59'); INSERT INTO `sys_oper_log` VALUES (4438, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%95%8A', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:55:01'); INSERT INTO `sys_oper_log` VALUES (4439, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:55:07'); INSERT INTO `sys_oper_log` VALUES (4440, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:56:33'); INSERT INTO `sys_oper_log` VALUES (4441, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:56:36'); INSERT INTO `sys_oper_log` VALUES (4442, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:56:38'); INSERT INTO `sys_oper_log` VALUES (4443, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:56:39'); INSERT INTO `sys_oper_log` VALUES (4444, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:56:41'); INSERT INTO `sys_oper_log` VALUES (4445, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:56:43'); INSERT INTO `sys_oper_log` VALUES (4446, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"78%\",\"reporttime\":1642750442000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:56:45'); INSERT INTO `sys_oper_log` VALUES (4447, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%83%8C%E6%99%AF', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 15:56:54'); INSERT INTO `sys_oper_log` VALUES (4448, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人世间的感情不过两种,一种是相濡以沫却厌倦到老,一种是相忘江湖却怀念到哭。\",\"createTime\":1642751873230,\"id\":1484435063323172866,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-21 15:57:53'); INSERT INTO `sys_oper_log` VALUES (4449, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It is curious that physical courage should be so common in the world and moral courage so rare.\",\"createTime\":1642751873270,\"dataId\":3487,\"date\":1565971200000,\"id\":1484435063453196289,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-17.jpg\",\"note\":\"非常奇怪的是,这世上匹夫之勇非常常见,而道德上的勇气几乎没有。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-17-day.mp3\"}}', 0, '', '2022-01-21 15:57:53'); INSERT INTO `sys_oper_log` VALUES (4450, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":127,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:58:28'); INSERT INTO `sys_oper_log` VALUES (4451, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 15:34:02\"}}', 0, '', '2022-01-21 15:58:33'); INSERT INTO `sys_oper_log` VALUES (4452, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:58:33'); INSERT INTO `sys_oper_log` VALUES (4453, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484435233028861953', '127.0.0.1', '', '1484435233028861953', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:58:37'); INSERT INTO `sys_oper_log` VALUES (4454, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":30}', 0, '', '2022-01-21 15:58:52'); INSERT INTO `sys_oper_log` VALUES (4455, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 15:34:02\"}}', 0, '', '2022-01-21 15:59:26'); INSERT INTO `sys_oper_log` VALUES (4456, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 15:59:27'); INSERT INTO `sys_oper_log` VALUES (4457, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%90%8D%E4%B9%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 萍乡市\",\"humidity\":\"83%\",\"reporttime\":1642750439000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"4级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:59:40'); INSERT INTO `sys_oper_log` VALUES (4458, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%90%8D%E4%B9%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 萍乡市\",\"humidity\":\"83%\",\"reporttime\":1642750439000,\"temp\":\"10℃\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"4级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 15:59:40'); INSERT INTO `sys_oper_log` VALUES (4459, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%8A%A6%E6%BA%AA', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 萍乡市 芦溪县\",\"humidity\":\"97%\",\"reporttime\":1642750439000,\"temp\":\"9℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:00:00'); INSERT INTO `sys_oper_log` VALUES (4460, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%B9%BF%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"广东省 广州市\",\"humidity\":\"49%\",\"reporttime\":1642750239000,\"temp\":\"22℃\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:00:04'); INSERT INTO `sys_oper_log` VALUES (4461, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"92KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1f7oblj31hc0u0772.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf0h9wnj31ao0t6tdp.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5binc6j31c00u0grb.jpg\"},{\"imageFileLength\":\"202KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urairdt2j31c00u044e.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq53f8g1j31c00u079q.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq59yi2qj31hc0u00ya.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfdzy5uj31c00u077f.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf1kjp7j31c00u0agk.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7cn9dj31c00u0q8h.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut3xa5dkj31hc0u0acv.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:00:30'); INSERT INTO `sys_oper_log` VALUES (4462, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:00:32'); INSERT INTO `sys_oper_log` VALUES (4463, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:07:03'); INSERT INTO `sys_oper_log` VALUES (4464, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1642750442000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:08:40'); INSERT INTO `sys_oper_log` VALUES (4465, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:08:44'); INSERT INTO `sys_oper_log` VALUES (4466, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:08:45'); INSERT INTO `sys_oper_log` VALUES (4467, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:08:45'); INSERT INTO `sys_oper_log` VALUES (4468, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:08:48'); INSERT INTO `sys_oper_log` VALUES (4469, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:08:49'); INSERT INTO `sys_oper_log` VALUES (4470, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:09:40'); INSERT INTO `sys_oper_log` VALUES (4471, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642752726455,\"humidity\":\"80\",\"id\":1484438641991376897,\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:12:06'); INSERT INTO `sys_oper_log` VALUES (4472, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:12:18'); INSERT INTO `sys_oper_log` VALUES (4473, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%95%8A', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:12:51'); INSERT INTO `sys_oper_log` VALUES (4474, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/undefined', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:12:53'); INSERT INTO `sys_oper_log` VALUES (4475, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642752726455,\"humidity\":\"80\",\"id\":1484438641991376897,\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:12:59'); INSERT INTO `sys_oper_log` VALUES (4476, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%95%8A', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:13:02'); INSERT INTO `sys_oper_log` VALUES (4477, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%95%8A', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-21 16:13:04'); INSERT INTO `sys_oper_log` VALUES (4478, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E6%9D%AD%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"浙江省 杭州市\",\"cityCode\":\"330100\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"10℃\",\"dayweather\":\"阴\",\"nighttemp\":\"5℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨-中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"8℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:03:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:13:15'); INSERT INTO `sys_oper_log` VALUES (4479, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642752726455,\"humidity\":\"80\",\"id\":1484438641991376897,\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:13:27'); INSERT INTO `sys_oper_log` VALUES (4480, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-01-21 16:13:29'); INSERT INTO `sys_oper_log` VALUES (4481, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642752726455,\"humidity\":\"80\",\"id\":1484438641991376897,\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:13:32'); INSERT INTO `sys_oper_log` VALUES (4482, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 16:04:05\"}}', 0, '', '2022-01-21 16:13:32'); INSERT INTO `sys_oper_log` VALUES (4483, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E6%9D%AD%E5%B7%9E', '127.0.0.1', '', '', '', 1, '', '2022-01-21 16:14:36'); INSERT INTO `sys_oper_log` VALUES (4484, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642752726455,\"humidity\":\"80\",\"id\":1484438641991376897,\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:14:39'); INSERT INTO `sys_oper_log` VALUES (4485, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:14:45'); INSERT INTO `sys_oper_log` VALUES (4486, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:15:10'); INSERT INTO `sys_oper_log` VALUES (4487, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:15:12'); INSERT INTO `sys_oper_log` VALUES (4488, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"humidity\":\"67%\",\"reporttime\":1642752133000,\"temp\":\"8℃\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:15:20'); INSERT INTO `sys_oper_log` VALUES (4489, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:15:32'); INSERT INTO `sys_oper_log` VALUES (4490, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642752726455,\"humidity\":\"80\",\"id\":1484438641991376897,\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:15:36'); INSERT INTO `sys_oper_log` VALUES (4491, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:15:38'); INSERT INTO `sys_oper_log` VALUES (4492, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:16:06'); INSERT INTO `sys_oper_log` VALUES (4493, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:16:08'); INSERT INTO `sys_oper_log` VALUES (4494, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:17:38'); INSERT INTO `sys_oper_log` VALUES (4495, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:17:39'); INSERT INTO `sys_oper_log` VALUES (4496, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:17:40'); INSERT INTO `sys_oper_log` VALUES (4497, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:17:40'); INSERT INTO `sys_oper_log` VALUES (4498, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:17:41'); INSERT INTO `sys_oper_log` VALUES (4499, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:17:41'); INSERT INTO `sys_oper_log` VALUES (4500, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:17:41'); INSERT INTO `sys_oper_log` VALUES (4501, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:17:41'); INSERT INTO `sys_oper_log` VALUES (4502, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642752726455,\"humidity\":\"80\",\"id\":1484438641991376897,\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:17:44'); INSERT INTO `sys_oper_log` VALUES (4503, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:17:45'); INSERT INTO `sys_oper_log` VALUES (4504, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"5\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"6\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"7\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"1\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:18:32'); INSERT INTO `sys_oper_log` VALUES (4505, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 16:04:05\"}}', 0, '', '2022-01-21 16:32:19'); INSERT INTO `sys_oper_log` VALUES (4506, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:32:20'); INSERT INTO `sys_oper_log` VALUES (4507, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '', 1, '', '2022-01-21 16:32:26'); INSERT INTO `sys_oper_log` VALUES (4508, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '', 1, '', '2022-01-21 16:33:03'); INSERT INTO `sys_oper_log` VALUES (4509, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:02:13\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:33:28'); INSERT INTO `sys_oper_log` VALUES (4510, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:34:35\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:35:04'); INSERT INTO `sys_oper_log` VALUES (4511, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:34:35\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:35:07'); INSERT INTO `sys_oper_log` VALUES (4512, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 16:04:05\"}}', 0, '', '2022-01-21 16:35:53'); INSERT INTO `sys_oper_log` VALUES (4513, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:35:53'); INSERT INTO `sys_oper_log` VALUES (4514, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484444432735555585', '127.0.0.1', '', '1484444432735555585', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:35:56'); INSERT INTO `sys_oper_log` VALUES (4515, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:36:24'); INSERT INTO `sys_oper_log` VALUES (4516, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:36:25'); INSERT INTO `sys_oper_log` VALUES (4517, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:34:35\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:37:01'); INSERT INTO `sys_oper_log` VALUES (4518, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:34:35\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:39:04'); INSERT INTO `sys_oper_log` VALUES (4519, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:34:35\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:39:07'); INSERT INTO `sys_oper_log` VALUES (4520, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:34:35\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:39:08'); INSERT INTO `sys_oper_log` VALUES (4521, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:39:10'); INSERT INTO `sys_oper_log` VALUES (4522, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:34:35\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:39:13'); INSERT INTO `sys_oper_log` VALUES (4523, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8A%9C%E6%B9%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"安徽省 芜湖市\",\"cityCode\":\"340200\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"3℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:34:35\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:40:43'); INSERT INTO `sys_oper_log` VALUES (4524, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1642752245000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:41:38'); INSERT INTO `sys_oper_log` VALUES (4525, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"cityCode\":\"320100\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"8℃\",\"dayweather\":\"阴\",\"nighttemp\":\"2℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"8℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"6℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:01\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:41:46'); INSERT INTO `sys_oper_log` VALUES (4526, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"cityCode\":\"320100\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"8℃\",\"dayweather\":\"阴\",\"nighttemp\":\"2℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"8℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"6℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:01\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:43:02'); INSERT INTO `sys_oper_log` VALUES (4527, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"cityCode\":\"320100\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"8℃\",\"dayweather\":\"阴\",\"nighttemp\":\"2℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"8℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"6℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:01\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:43:03'); INSERT INTO `sys_oper_log` VALUES (4528, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:43:06'); INSERT INTO `sys_oper_log` VALUES (4529, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"cityCode\":\"320100\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"8℃\",\"dayweather\":\"阴\",\"nighttemp\":\"2℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"8℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"6℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:01\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:43:07'); INSERT INTO `sys_oper_log` VALUES (4530, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:45:32'); INSERT INTO `sys_oper_log` VALUES (4531, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '', 1, '', '2022-01-21 16:45:33'); INSERT INTO `sys_oper_log` VALUES (4532, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"cityCode\":\"320100\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"8℃\",\"dayweather\":\"阴\",\"nighttemp\":\"2℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"8℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"6℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:01\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:45:34'); INSERT INTO `sys_oper_log` VALUES (4533, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"cityCode\":\"320100\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"8℃\",\"dayweather\":\"阴\",\"nighttemp\":\"2℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"8℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"6℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:01\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:45:36'); INSERT INTO `sys_oper_log` VALUES (4534, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:46:11'); INSERT INTO `sys_oper_log` VALUES (4535, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 16:38:42\"}}', 0, '', '2022-01-21 16:46:12'); INSERT INTO `sys_oper_log` VALUES (4536, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"cityCode\":\"320100\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"8℃\",\"dayweather\":\"阴\",\"nighttemp\":\"2℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"8℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"6℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:01\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:46:45'); INSERT INTO `sys_oper_log` VALUES (4537, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:46:47'); INSERT INTO `sys_oper_log` VALUES (4538, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"cityCode\":\"320100\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"8℃\",\"dayweather\":\"阴\",\"nighttemp\":\"2℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"8℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"6℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:01\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:46:49'); INSERT INTO `sys_oper_log` VALUES (4539, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:47:48'); INSERT INTO `sys_oper_log` VALUES (4540, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"cityCode\":\"320100\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"8℃\",\"dayweather\":\"阴\",\"nighttemp\":\"2℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"8℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"6℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:01\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:47:49'); INSERT INTO `sys_oper_log` VALUES (4541, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:48:16'); INSERT INTO `sys_oper_log` VALUES (4542, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%B5%A3%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 赣州市\",\"cityCode\":\"360700\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"19℃\",\"dayweather\":\"阴\",\"nighttemp\":\"11℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"18℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"12℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"15℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"11℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"14℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"10℃\",\"nightweather\":\"阴\"}],\"reportTime\":\"2022-01-21 16:38:32\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:48:24'); INSERT INTO `sys_oper_log` VALUES (4543, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:49:22'); INSERT INTO `sys_oper_log` VALUES (4544, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%B5%A3%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 赣州市\",\"cityCode\":\"360700\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"19℃\",\"dayweather\":\"阴\",\"nighttemp\":\"11℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"18℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"12℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"15℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"11℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"14℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"10℃\",\"nightweather\":\"阴\"}],\"reportTime\":\"2022-01-21 16:38:32\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:49:30'); INSERT INTO `sys_oper_log` VALUES (4545, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:50:49'); INSERT INTO `sys_oper_log` VALUES (4546, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:50:50'); INSERT INTO `sys_oper_log` VALUES (4547, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:50:51'); INSERT INTO `sys_oper_log` VALUES (4548, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:50:52'); INSERT INTO `sys_oper_log` VALUES (4549, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:51:20'); INSERT INTO `sys_oper_log` VALUES (4550, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:51:20'); INSERT INTO `sys_oper_log` VALUES (4551, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:51:22'); INSERT INTO `sys_oper_log` VALUES (4552, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:51:24'); INSERT INTO `sys_oper_log` VALUES (4553, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:51:25'); INSERT INTO `sys_oper_log` VALUES (4554, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:51:26'); INSERT INTO `sys_oper_log` VALUES (4555, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:51:28'); INSERT INTO `sys_oper_log` VALUES (4556, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:51:29'); INSERT INTO `sys_oper_log` VALUES (4557, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E8%8B%8F%E5%B7%9E', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 苏州市\",\"cityCode\":\"320500\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"10℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"11℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"11℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 16:36:14\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:51:30'); INSERT INTO `sys_oper_log` VALUES (4558, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 16:38:42\"}}', 0, '', '2022-01-21 16:51:37'); INSERT INTO `sys_oper_log` VALUES (4559, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:51:37'); INSERT INTO `sys_oper_log` VALUES (4560, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:52:03'); INSERT INTO `sys_oper_log` VALUES (4561, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:54:41'); INSERT INTO `sys_oper_log` VALUES (4562, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:54:42'); INSERT INTO `sys_oper_log` VALUES (4563, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 16:38:42\"}}', 0, '', '2022-01-21 16:54:42'); INSERT INTO `sys_oper_log` VALUES (4564, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 16:38:42\"}}', 0, '', '2022-01-21 16:54:59'); INSERT INTO `sys_oper_log` VALUES (4565, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 16:54:59'); INSERT INTO `sys_oper_log` VALUES (4566, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484449358249349121', '127.0.0.1', '', '1484449358249349121', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 16:59:59'); INSERT INTO `sys_oper_log` VALUES (4567, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"guide\",\"orderNum\":\"7\",\"menuName\":\"数据统计\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"statistics\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 17:04:20'); INSERT INTO `sys_oper_log` VALUES (4568, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 17:04:31'); INSERT INTO `sys_oper_log` VALUES (4569, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"phone\",\"orderNum\":\"1\",\"menuName\":\"API统计\",\"params\":{},\"parentId\":2062,\"isCache\":\"0\",\"path\":\"apistatistics\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 17:05:17'); INSERT INTO `sys_oper_log` VALUES (4570, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 17:07:21'); INSERT INTO `sys_oper_log` VALUES (4571, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 17:07:21'); INSERT INTO `sys_oper_log` VALUES (4572, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1642754322000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 17:15:59'); INSERT INTO `sys_oper_log` VALUES (4573, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642763324000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 19:31:06'); INSERT INTO `sys_oper_log` VALUES (4574, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"154KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs4rfo9j31c00u0qfe.jpg\"},{\"imageFileLength\":\"233KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrmg30dj31c00u0apb.jpg\"},{\"imageFileLength\":\"107KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbg18xfj31c00u0ju7.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut814ofkj31c00u0q7l.jpg\"},{\"imageFileLength\":\"228KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fyl4snyj31c00u0nnm.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpmegcoj31hc0u012b.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut5cnvpgj31ao0t6jvk.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usepep67j31c00u0n0m.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf1kjp7j31c00u0agk.jpg\"},{\"imageFileLength\":\"188KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqedvqzrj31c00u0dlv.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:31:55'); INSERT INTO `sys_oper_log` VALUES (4575, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf3l3uoj31c00u0gpy.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4h9aefj31c00u00xp.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut5jmu4pj31c00u0n04.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfy195jj31c00u0qc4.jpg\"},{\"imageFileLength\":\"289KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfz30rmj31hc0u0tgn.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaxc36qj31hc0u00yy.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq1h5pmxj31hc0u0n0k.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf8c6eaj31c00u0dju.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8xn6smj31c00u042j.jpg\"},{\"imageFileLength\":\"302KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvc7ld4j31c00u0du2.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:00'); INSERT INTO `sys_oper_log` VALUES (4576, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"269KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrmupypj31hc0u0dv2.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uragg10fj31c00u0dks.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbaftwfj31c00u0aej.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ian5pj31c00u0gob.jpg\"},{\"imageFileLength\":\"273KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvka0b2j31hc0u0aol.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbpqsuwj31c00u0juy.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut814ofkj31c00u0q7l.jpg\"},{\"imageFileLength\":\"199KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8ta69gj31c00u0n2q.jpg\"},{\"imageFileLength\":\"204KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraqnhwij31c00u0wkn.jpg\"},{\"imageFileLength\":\"194KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfi6ibrj31c00u0wku.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:03'); INSERT INTO `sys_oper_log` VALUES (4577, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fy1n9nrj31c00u0195.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq52hzbxj31hc0u0wjz.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut45hq65j31c00u0gq2.jpg\"},{\"imageFileLength\":\"233KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us94cx15j31c00u0wld.jpg\"},{\"imageFileLength\":\"279KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbbn94wj31hc0u0qad.jpg\"},{\"imageFileLength\":\"202KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1urss2bllj31c00u0qgd.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8rh3w3j31c00u0aez.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7v9jb3j31hc0u042i.jpg\"},{\"imageFileLength\":\"259KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq50qn0oj31c00u0wkc.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4v5ldjj31c00u077q.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:06'); INSERT INTO `sys_oper_log` VALUES (4578, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9a3cs3j31c00u0q6m.jpg\"},{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51pm69j31c00u0gqo.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfffcxgj31c00u0djb.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursxq4wxj31c00u0wrm.jpg\"},{\"imageFileLength\":\"314KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfkv7bdj31c00u010e.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq5651puj31hc0u0794.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbb7k9kj31c00u0n1d.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utba3wyhj31hc0u0tbb.jpg\"},{\"imageFileLength\":\"187KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq5286obj31hc0u00y6.jpg\"},{\"imageFileLength\":\"247KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpgdmexj31c00u0n7j.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:08'); INSERT INTO `sys_oper_log` VALUES (4579, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"172KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4zmxu5j31hc0u0n1l.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursebu37j31c00u0zxm.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut8dk6kqj31c00u0q6l.jpg\"},{\"imageFileLength\":\"82KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utadybr1j31c00u0mz2.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbcm1f8j31c00u0dke.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uravfb8jj31c00u0n1h.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7chbtxj31c00u0n0x.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq53f8g1j31c00u079q.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51d7zdj31hc0u078o.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv4fe6lj31hc0u0k5s.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:09'); INSERT INTO `sys_oper_log` VALUES (4580, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:12'); INSERT INTO `sys_oper_log` VALUES (4581, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"240KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8fsmh2j31hc0u0wkv.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut56mw3sj31c00u078e.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb830fgj31c00u0td5.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ian5pj31c00u0gob.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fp94dj31c00u0q69.jpg\"},{\"imageFileLength\":\"248KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf3thnqj31c00u0ahe.jpg\"},{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28eod61v0j31c00u0kjl.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usess1ehj31hc0u0ae2.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpq3zjwj31c00u0tj9.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut80ho65j31c00u0zmt.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:14'); INSERT INTO `sys_oper_log` VALUES (4582, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1urspa4abj31c00u0gx7.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq54emp8j31c00u0teg.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4zmxu5j31hc0u0n1l.jpg\"},{\"imageFileLength\":\"201KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursoisjaj31c00u0amw.jpg\"},{\"imageFileLength\":\"221KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4hwnwwj31c00u0tfa.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut7y18ixj31hc0u0dkg.jpg\"},{\"imageFileLength\":\"187KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq5286obj31hc0u00y6.jpg\"},{\"imageFileLength\":\"110KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbaovv6j31hc0u07b3.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utalnup2j31ao0t677k.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb21419j31c00u079m.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:16'); INSERT INTO `sys_oper_log` VALUES (4583, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut5bsok7j31c00u042h.jpg\"},{\"imageFileLength\":\"278KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfb10i6j31c00u0agr.jpg\"},{\"imageFileLength\":\"154KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us988ve4j31c00u0q72.jpg\"},{\"imageFileLength\":\"106KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uq1ht1kaj31400p0ju9.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usehiodij31c00u0422.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq53f8g1j31c00u079q.jpg\"},{\"imageFileLength\":\"257KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfco5r3j31hc0u0gtd.jpg\"},{\"imageFileLength\":\"184KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv5vnyyj31c00u0wsh.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqeytc34j318g0p0aga.jpg\"},{\"imageFileLength\":\"236KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfam9yjj318g0p0gsk.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:21'); INSERT INTO `sys_oper_log` VALUES (4584, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"276KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg02zqsj31c00u07av.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usezkigyj31c00u0wk2.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utag2k78j31c00u00vn.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4scwo6j31hc0u0djj.jpg\"},{\"imageFileLength\":\"266KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5fyxeyj31hc0u0ak5.jpg\"},{\"imageFileLength\":\"244KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpkxrtpj31c00u0wpc.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbb7k9kj31c00u0n1d.jpg\"},{\"imageFileLength\":\"161KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7y6nxrj31c00u078s.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut7y18ixj31hc0u0dkg.jpg\"},{\"imageFileLength\":\"220KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut58mw6tj31hc0u0wkc.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:22'); INSERT INTO `sys_oper_log` VALUES (4585, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursvoilij31c00u0wrk.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut57cjouj31hc0u0gpr.jpg\"},{\"imageFileLength\":\"257KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbdc0frj31c00u0gtp.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8zpl50j31c00u0wj2.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ural2vxij31c00u0tdq.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8libuaj31c00u0af0.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq54ygf8j31c00u0q8i.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us93kanwj31c00u0juy.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utazjweqj31c00u0q78.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv1y0ngj31c00u0wsl.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:25'); INSERT INTO `sys_oper_log` VALUES (4586, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"269KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfp2yt1j31ao0t6wmz.jpg\"},{\"imageFileLength\":\"278KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfb10i6j31c00u0agr.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbg77cj31c00u0ad5.jpg\"},{\"imageFileLength\":\"8KB\",\"imageSize\":\"480x360\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbmw46wj31hc0u077n.jpg\"},{\"imageFileLength\":\"208KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9byeb4j31c00u044k.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4vvax7j31hc0u0jvu.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut58vj0jj31c00u0afm.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utazsu0hj31c00u0n0v.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb64mpjj31hc0u0q6s.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut86vpjaj31c00u0juj.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:27'); INSERT INTO `sys_oper_log` VALUES (4587, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8oli6tj31c00u0jv4.jpg\"},{\"imageFileLength\":\"188KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dmg2ukaj31hc0u0wv8.jpg\"},{\"imageFileLength\":\"197KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8qpbh3j31hc0u043l.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb1kchmj31hc0u0tdp.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut58vj0jj31c00u0afm.jpg\"},{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useoqv5lj31c00u077w.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uico4dxpj31920u078g.jpg\"},{\"imageFileLength\":\"245KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfxqu7wj31hc0u0q98.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb6xcl8j31c00u0dkf.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7p0lzj31c00u00wc.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:32:31'); INSERT INTO `sys_oper_log` VALUES (4588, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"153KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8kwyuoj31hc0u0n10.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt54sfi9j318g0p0jxo.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gysd0vsj31c00u0adl.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uran8f2dj31c00u00yi.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usehiodij31c00u0422.jpg\"},{\"imageFileLength\":\"262KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqeyfe17j31c00u0tf4.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaoant2j31c00u0q5z.jpg\"},{\"imageFileLength\":\"197KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbcg63yj31hc0u0wlz.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97cwznj31c00u0dk4.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8y6e79j31c00u0q89.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:33:02'); INSERT INTO `sys_oper_log` VALUES (4589, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642763324000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 19:33:14'); INSERT INTO `sys_oper_log` VALUES (4590, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642763324000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 19:33:17'); INSERT INTO `sys_oper_log` VALUES (4591, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 19:08:44\"}}', 0, '', '2022-01-21 19:33:17'); INSERT INTO `sys_oper_log` VALUES (4592, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484489272163266562', '127.0.0.1', '', '1484489272163266562', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:33:21'); INSERT INTO `sys_oper_log` VALUES (4593, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 19:08:44\"}}', 0, '', '2022-01-21 19:37:29'); INSERT INTO `sys_oper_log` VALUES (4594, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1642763324000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 19:37:29'); INSERT INTO `sys_oper_log` VALUES (4595, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"194KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq57wne3j31400p0wk2.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1280x800\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uq1m5arwj30zk0m8dik.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8y1s22j31c00u0n18.jpg\"},{\"imageFileLength\":\"244KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpkxrtpj31c00u0wpc.jpg\"},{\"imageFileLength\":\"285KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urrw79tij31c00u014j.jpg\"},{\"imageFileLength\":\"164KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5apj4kj31hc0u079e.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb7dvthj31c00u0n1f.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7n6k47j31hc0u07a4.jpg\"},{\"imageFileLength\":\"254KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbffnc1j31c00u0dni.jpg\"},{\"imageFileLength\":\"231KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf6pafsj31c00u0gs7.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 19:37:46'); INSERT INTO `sys_oper_log` VALUES (4596, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1urspa4abj31c00u0gx7.jpg\"},{\"imageFileLength\":\"103KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursmd6bcj31c00u0n8r.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq59gh4cj31c00u079v.jpg\"},{\"imageFileLength\":\"248KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf3thnqj31c00u0ahe.jpg\"},{\"imageFileLength\":\"167KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaytucmj31hc0u0jvq.jpg\"},{\"imageFileLength\":\"197KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8qpbh3j31hc0u043l.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpmegcoj31hc0u012b.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1609x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5pff00j318p0u0k2r.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utazsu0hj31c00u0n0v.jpg\"},{\"imageFileLength\":\"92KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1uq1bd02rj31c00u0abx.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 20:22:02'); INSERT INTO `sys_oper_log` VALUES (4597, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urat0fc2j31c00u07a3.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8s0279j31c00u0gpl.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7cjduoj31c00u0n1h.jpg\"},{\"imageFileLength\":\"305KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28di4vu5nj31hc0u0x44.jpg\"},{\"imageFileLength\":\"413KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28eoce78ej31c00u07wh.jpg\"},{\"imageFileLength\":\"128KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ura7ecfij31c00u0tc9.jpg\"},{\"imageFileLength\":\"108KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utaz82r4j31c00u0dio.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uico4dxpj31920u078g.jpg\"},{\"imageFileLength\":\"255KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1userltpdj31hc0u0458.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4fbql0j31hc0u0juo.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 20:22:12'); INSERT INTO `sys_oper_log` VALUES (4598, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":66}', 0, '', '2022-01-21 22:03:48'); INSERT INTO `sys_oper_log` VALUES (4599, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642775924000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 22:41:20'); INSERT INTO `sys_oper_log` VALUES (4600, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":4}', 0, '', '2022-01-21 22:41:36'); INSERT INTO `sys_oper_log` VALUES (4601, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生下来的时候都只有一半,为了找到另一半而在人世间行走。有的人幸运,很快就找到了。而有人却要找一辈子。\",\"createTime\":1642776114479,\"id\":1484536738464116737,\"source\":\"玻璃樽\",\"type\":3}}', 0, '', '2022-01-21 22:41:54'); INSERT INTO `sys_oper_log` VALUES (4602, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Don\'t be pushed around by the fears in your mind.\",\"createTime\":1642776114492,\"dataId\":4215,\"date\":1628524800000,\"id\":1484536738527031298,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/15de87643af35faa0ef01fc91aec1194.png\",\"note\":\"不要被你内心的恐惧所左右。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/f370e2429a596df0f722f95d15180587.mp3\"}}', 0, '', '2022-01-21 22:41:54'); INSERT INTO `sys_oper_log` VALUES (4603, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":52}}', 0, '', '2022-01-21 22:42:03'); INSERT INTO `sys_oper_log` VALUES (4604, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 22:38:44\"}}', 0, '', '2022-01-21 22:42:09'); INSERT INTO `sys_oper_log` VALUES (4605, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642775924000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 22:42:09'); INSERT INTO `sys_oper_log` VALUES (4606, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642775924000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 22:42:15'); INSERT INTO `sys_oper_log` VALUES (4607, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 22:42:23'); INSERT INTO `sys_oper_log` VALUES (4608, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfdway0j31c00u010k.jpg\"},{\"imageFileLength\":\"270KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uragmso0j31c00u07cd.jpg\"},{\"imageFileLength\":\"107KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7l1j88j31c00u0mzv.jpg\"},{\"imageFileLength\":\"332KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg02o6sj31c00u0ai2.jpg\"},{\"imageFileLength\":\"179KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7qckabj31hc0u0dke.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uico4dxpj31920u078g.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8dowqqj31c00u00zl.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8omfdnj31c00u0aei.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4x4g1qj31c00u0adz.jpg\"},{\"imageFileLength\":\"231KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8v2ap1j31c00u0wlw.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 22:42:26'); INSERT INTO `sys_oper_log` VALUES (4609, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484536801726787585', '127.0.0.1', '', '1484536801726787585', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-21 22:46:57'); INSERT INTO `sys_oper_log` VALUES (4610, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 22:38:44\"}}', 0, '', '2022-01-21 22:46:58'); INSERT INTO `sys_oper_log` VALUES (4611, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642775924000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 22:46:58'); INSERT INTO `sys_oper_log` VALUES (4612, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"99KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta3b1hrj31c00u0wgz.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp8hvzwj31c00u0ajz.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbck4nqj31c00u0n1d.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7chbtxj31c00u0n0x.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51zh8ij31c00u0af9.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4zop69j31c00u077t.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8rgjxbj31c00u0af7.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usecnpn0j31c00u042b.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb7wmnmj31c00u00vy.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf35qmtj31c00u0jw9.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 22:47:03'); INSERT INTO `sys_oper_log` VALUES (4613, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 22:47:07'); INSERT INTO `sys_oper_log` VALUES (4614, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642775924000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 22:47:12'); INSERT INTO `sys_oper_log` VALUES (4615, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 22:47:13'); INSERT INTO `sys_oper_log` VALUES (4616, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E6%A1%82%E6%9E%97', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"广西壮族自治区 桂林市\",\"cityCode\":\"450300\",\"forecasts\":[{\"date\":\"2022-01-21\",\"dayOfWeek\":\"周五\",\"daytemp\":\"13℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"11℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"13℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"8℃\",\"nightweather\":\"中雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-21 22:36:35\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-21 22:47:23'); INSERT INTO `sys_oper_log` VALUES (4617, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":3,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-21 22:54:48'); INSERT INTO `sys_oper_log` VALUES (4618, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642777969491,\"humidity\":\"88\",\"id\":1484544518986117122,\"province\":\"江西\",\"reporttime\":1642777719000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 23:12:49'); INSERT INTO `sys_oper_log` VALUES (4619, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 23:08:39\"}}', 0, '', '2022-01-21 23:12:49'); INSERT INTO `sys_oper_log` VALUES (4620, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 23:08:39\"}}', 0, '', '2022-01-21 23:12:53'); INSERT INTO `sys_oper_log` VALUES (4621, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642777969491,\"humidity\":\"88\",\"id\":1484544518986117122,\"province\":\"江西\",\"reporttime\":1642777719000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 23:12:53'); INSERT INTO `sys_oper_log` VALUES (4622, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642777969491,\"humidity\":\"88\",\"id\":1484544518986117122,\"province\":\"江西\",\"reporttime\":1642777719000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 23:21:21'); INSERT INTO `sys_oper_log` VALUES (4623, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642777719000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 23:23:25'); INSERT INTO `sys_oper_log` VALUES (4624, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642777719000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 23:23:40'); INSERT INTO `sys_oper_log` VALUES (4625, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The closer you think you are, the less you\'ll actually see.\",\"createTime\":1642778798006,\"dataId\":4116,\"date\":1619971200000,\"id\":1484547993983758337,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/503840debe11de4c168b427608d729b9.png\",\"note\":\"离得越近,其实看见的越少。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/3330239592afb517b37a30238518063a.mp3\"}}', 0, '', '2022-01-21 23:26:38'); INSERT INTO `sys_oper_log` VALUES (4626, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“真正想给你的从来都不会问你要不要”\",\"createTime\":1642778798008,\"id\":1484547994059255809,\"source\":\"你的答案\",\"type\":2}}', 0, '', '2022-01-21 23:26:38'); INSERT INTO `sys_oper_log` VALUES (4627, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642777719000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 23:31:48'); INSERT INTO `sys_oper_log` VALUES (4628, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642777719000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 23:32:34'); INSERT INTO `sys_oper_log` VALUES (4629, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642777719000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-21 23:33:13'); INSERT INTO `sys_oper_log` VALUES (4630, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642779236418,\"humidity\":\"88\",\"id\":1484549832879878146,\"province\":\"江西\",\"reporttime\":1642779230000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-21 23:33:56'); INSERT INTO `sys_oper_log` VALUES (4631, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642779236418,\"humidity\":\"88\",\"id\":1484549832879878146,\"province\":\"江西\",\"reporttime\":1642779230000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-21 23:34:49'); INSERT INTO `sys_oper_log` VALUES (4632, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642779236418,\"humidity\":\"88\",\"id\":1484549832879878146,\"province\":\"江西\",\"reporttime\":1642779230000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-21 23:36:33'); INSERT INTO `sys_oper_log` VALUES (4633, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642779236418,\"humidity\":\"88\",\"id\":1484549832879878146,\"province\":\"江西\",\"reporttime\":1642779230000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-21 23:37:25'); INSERT INTO `sys_oper_log` VALUES (4634, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-21\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-21 23:33:50\"}}', 0, '', '2022-01-21 23:37:25'); INSERT INTO `sys_oper_log` VALUES (4635, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"请求是否成功\",\"remark\":\"请求是否成功\",\"params\":{},\"dictType\":\"request_status\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 23:38:09'); INSERT INTO `sys_oper_log` VALUES (4636, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"成功\",\"params\":{},\"dictType\":\"request_status\",\"dictLabel\":\"success\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 23:38:38'); INSERT INTO `sys_oper_log` VALUES (4637, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"失败\",\"params\":{},\"dictType\":\"request_status\",\"dictLabel\":\"error\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 23:38:52'); INSERT INTO `sys_oper_log` VALUES (4638, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Books are the bees which carry the quickening pollen from one to another mind.\",\"createTime\":1642779563175,\"dataId\":3986,\"date\":1608739200000,\"id\":1484551203398070273,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/286fbae28368fa4fac3f2fe1f742e9ed.png\",\"note\":\"书籍是蜜蜂,将花粉从一个头脑传到另一个头脑。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/52174c507fc2a50a84e0eb8db28d099d.mp3\"}}', 0, '', '2022-01-21 23:39:23'); INSERT INTO `sys_oper_log` VALUES (4639, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生活不论好坏, 每一-天都是限量版。\",\"createTime\":1642779563184,\"id\":1484551203419041793,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-21 23:39:23'); INSERT INTO `sys_oper_log` VALUES (4640, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642779236418,\"humidity\":\"88\",\"id\":1484549832879878146,\"province\":\"江西\",\"reporttime\":1642779230000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-21 23:42:05'); INSERT INTO `sys_oper_log` VALUES (4641, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"成功\",\"params\":{},\"dictType\":\"request_status\",\"dictLabel\":\"成功\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1642779518000,\"dictCode\":115,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 23:42:34'); INSERT INTO `sys_oper_log` VALUES (4642, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"失败\",\"params\":{},\"dictType\":\"request_status\",\"dictLabel\":\"失败\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1642779532000,\"dictCode\":116,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 23:42:39'); INSERT INTO `sys_oper_log` VALUES (4643, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642779236418,\"humidity\":\"88\",\"id\":1484549832879878146,\"province\":\"江西\",\"reporttime\":1642779230000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-21 23:42:42'); INSERT INTO `sys_oper_log` VALUES (4644, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"请求方法\",\"remark\":\"请求方法\",\"params\":{},\"dictType\":\"request_method\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 23:43:35'); INSERT INTO `sys_oper_log` VALUES (4645, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"Put\",\"listClass\":\"default\",\"dictSort\":0,\"params\":{},\"dictType\":\"request_method\",\"dictLabel\":\"PUT\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 23:44:18'); INSERT INTO `sys_oper_log` VALUES (4646, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642779230000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-21 23:44:23'); INSERT INTO `sys_oper_log` VALUES (4647, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"Post\",\"listClass\":\"default\",\"dictSort\":0,\"params\":{},\"dictType\":\"request_method\",\"dictLabel\":\"POST\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 23:44:40'); INSERT INTO `sys_oper_log` VALUES (4648, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"Get\",\"listClass\":\"default\",\"dictSort\":0,\"params\":{},\"dictType\":\"request_method\",\"dictLabel\":\"GET\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 23:44:49'); INSERT INTO `sys_oper_log` VALUES (4649, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"Delete\",\"listClass\":\"default\",\"dictSort\":0,\"params\":{},\"dictType\":\"request_method\",\"dictLabel\":\"DELETE\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-21 23:45:00'); INSERT INTO `sys_oper_log` VALUES (4650, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642779230000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-21 23:46:17'); INSERT INTO `sys_oper_log` VALUES (4651, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1642779230000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-21 23:47:34'); INSERT INTO `sys_oper_log` VALUES (4652, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"斯为泰山而不骄,汝为流水而不躁。\",\"createTime\":1642780059537,\"id\":1484553285236666370,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-21 23:47:39'); INSERT INTO `sys_oper_log` VALUES (4653, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If I was going somewhere, I was running.\",\"createTime\":1642780059754,\"dataId\":4378,\"date\":1642608000000,\"id\":1484553286159413249,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/ae196ab75764bbd2637e3a00a12ab1e4.jpg\",\"note\":\"如果我要去哪里,我就跑着去。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/bd45d6745908591b8ab3c8f737ecc59b.mp3\"}}', 0, '', '2022-01-21 23:47:39'); INSERT INTO `sys_oper_log` VALUES (4654, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642781790859,\"humidity\":\"87\",\"id\":1484560546977759234,\"province\":\"江西\",\"reporttime\":1642781038000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 00:16:31'); INSERT INTO `sys_oper_log` VALUES (4655, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642781790859,\"humidity\":\"87\",\"id\":1484560546977759235,\"province\":\"江西\",\"reporttime\":1642781038000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 00:16:31'); INSERT INTO `sys_oper_log` VALUES (4656, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642781790859,\"humidity\":\"87\",\"id\":1484560546977759234,\"province\":\"江西\",\"reporttime\":1642781038000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 00:16:31'); INSERT INTO `sys_oper_log` VALUES (4657, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642783117000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 00:46:07'); INSERT INTO `sys_oper_log` VALUES (4658, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642783117000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 00:46:26'); INSERT INTO `sys_oper_log` VALUES (4659, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642783117000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 00:46:35'); INSERT INTO `sys_oper_log` VALUES (4660, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1642783117000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 00:48:12'); INSERT INTO `sys_oper_log` VALUES (4661, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"187KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq58ertbj31hc0u079n.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utak9vl7j31hc0u0n09.jpg\"},{\"imageFileLength\":\"268KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dqd9xwoj31c00u01a1.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urapzgtkj31c00u0q8e.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta2mk43j31c00u0acq.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut83ter0j31c00u043q.jpg\"},{\"imageFileLength\":\"352KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52pdb5j31hc0u047z.jpg\"},{\"imageFileLength\":\"231KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvg4qluj31hc0u0tmk.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usess1ehj31hc0u0ae2.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbnbkacj31c00u0gq0.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-22 00:52:43'); INSERT INTO `sys_oper_log` VALUES (4662, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":100,\"msg\":\"操作成功\"}', 0, '', '2022-01-22 00:53:03'); INSERT INTO `sys_oper_log` VALUES (4663, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642820485627,\"humidity\":\"96\",\"id\":1484722844597878786,\"province\":\"江西\",\"reporttime\":1642819119000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 11:01:25'); INSERT INTO `sys_oper_log` VALUES (4664, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/11 * * * ? \",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1642821060000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-22 11:03:16'); INSERT INTO `sys_oper_log` VALUES (4665, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642820485627,\"humidity\":\"96\",\"id\":1484722844597878786,\"province\":\"江西\",\"reporttime\":1642819119000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 11:04:55'); INSERT INTO `sys_oper_log` VALUES (4666, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-22 10:38:39\"}}', 0, '', '2022-01-22 11:04:56'); INSERT INTO `sys_oper_log` VALUES (4667, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-22 10:38:39\"}}', 0, '', '2022-01-22 11:05:00'); INSERT INTO `sys_oper_log` VALUES (4668, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642820485627,\"humidity\":\"96\",\"id\":1484722844597878786,\"province\":\"江西\",\"reporttime\":1642819119000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 11:05:00'); INSERT INTO `sys_oper_log` VALUES (4669, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你爱,或者不爱我,爱就在那里,不增不减。\",\"createTime\":1642820717763,\"id\":1484723818242637825,\"source\":\"非诚勿扰2\",\"type\":3}}', 0, '', '2022-01-22 11:05:17'); INSERT INTO `sys_oper_log` VALUES (4670, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Why are you trying so hard to fit in when you were born to stand out?\",\"createTime\":1642820717768,\"dataId\":4177,\"date\":1625328000000,\"id\":1484723818242637826,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/c765e18fcfcd35e1d870cbff1a75eebc.png\",\"note\":\"你生来就是要引人注目的,为什么还要如此努力地融入?\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/10d7fe7921ce590016a85e51c8e667ae.mp3\"}}', 0, '', '2022-01-22 11:05:17'); INSERT INTO `sys_oper_log` VALUES (4671, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642820485627,\"humidity\":\"96\",\"id\":1484722844597878786,\"province\":\"江西\",\"reporttime\":1642819119000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 11:06:28'); INSERT INTO `sys_oper_log` VALUES (4672, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-22 11:34:13\"}}', 0, '', '2022-01-22 11:37:18'); INSERT INTO `sys_oper_log` VALUES (4673, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642822638540,\"humidity\":\"96\",\"id\":1484731874544320514,\"province\":\"江西\",\"reporttime\":1642822453000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 11:37:18'); INSERT INTO `sys_oper_log` VALUES (4674, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"小龙:师叔,这是我第一次来香港, \\n我一定会好好把握住这个机会,大展拳脚,努力开创一番事业, \\n以免辜负爹这么多年来对我的养育之恩! \\n师叔:你有什么计划吗? \\n小龙:有! \\n首先我要在香港码头吃一串鱼丸, \\n然后再喝一杯冰水! \\n隔壁阿强教了我一首诗,他说在香港会背就可以免费换一个汉堡饱吃! \\n我好像记得是: \\n非常厉害巨无霸, \\n茄汁薯条汉堡饱, \\n吉士\",\"createTime\":1642822705319,\"id\":1484732154648330242,\"source\":\"龙的传人\",\"type\":3}}', 0, '', '2022-01-22 11:38:25'); INSERT INTO `sys_oper_log` VALUES (4675, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Don\'t moon away the Mid-Autumn Festival.\",\"createTime\":1642822705350,\"dataId\":4256,\"date\":1632067200000,\"id\":1484732154778353666,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/ab711b1d4ec4f7b0365e3298f875a1f8.png\",\"note\":\"找点事儿做吧,不要虚度了中秋佳节。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/1825a3550d11be7e5ede0f9055d73ab5.mp3\"}}', 0, '', '2022-01-22 11:38:25'); INSERT INTO `sys_oper_log` VALUES (4676, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642822717214,\"en\":\"At this time of the year farmers begin to plow their fields.\",\"id\":1484732204535382018,\"zh\":\" 每年这个时候,农民们开始犁地。\"}}', 0, '', '2022-01-22 11:38:37'); INSERT INTO `sys_oper_log` VALUES (4677, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"At this time of the year farmers begin to plow their fields.\",\"zh\":\" 每年这个时候,农民们开始犁地。\"}}', 0, '', '2022-01-22 11:38:39'); INSERT INTO `sys_oper_log` VALUES (4678, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"At this time of the year farmers begin to plow their fields.\",\"zh\":\" 每年这个时候,农民们开始犁地。\"}}', 0, '', '2022-01-22 11:38:43'); INSERT INTO `sys_oper_log` VALUES (4679, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":38}', 0, '', '2022-01-22 11:39:27'); INSERT INTO `sys_oper_log` VALUES (4680, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642822638540,\"humidity\":\"96\",\"id\":1484731874544320514,\"province\":\"江西\",\"reporttime\":1642822453000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 11:40:18'); INSERT INTO `sys_oper_log` VALUES (4681, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8ixyrlj31c00u00wl.jpg\"},{\"imageFileLength\":\"332KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg02o6sj31c00u0ai2.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8sz4e2j31c00u042v.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8cj4s3j31c00u078g.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urphvzg6j31c00u0k26.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbpqsuwj31c00u0juy.jpg\"},{\"imageFileLength\":\"106KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uq1ht1kaj31400p0ju9.jpg\"},{\"imageFileLength\":\"268KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5neiiej31hc0u0ds0.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8lxrsyj31c00u0jv2.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7bm9tj31c00u0q8t.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-22 11:40:31'); INSERT INTO `sys_oper_log` VALUES (4682, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":2,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":3,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":9,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":10,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":12,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-22 11:40:37'); INSERT INTO `sys_oper_log` VALUES (4683, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/15952144123', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江苏移动\",\"mobile\":\"15952144123\",\"province\":\"江苏\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-22 11:40:56'); INSERT INTO `sys_oper_log` VALUES (4684, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E4%B9%9D%E6%B1%9F', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 九江市\",\"humidity\":\"100%\",\"reporttime\":1642822456000,\"temp\":\"7℃\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-22 11:41:12'); INSERT INTO `sys_oper_log` VALUES (4685, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E4%B9%9D%E6%B1%9F', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 九江市\",\"cityCode\":\"360400\",\"forecasts\":[{\"date\":\"2022-01-22\",\"dayOfWeek\":\"周六\",\"daytemp\":\"7℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"7℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"7℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"7℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-22 11:34:16\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-22 11:41:27'); INSERT INTO `sys_oper_log` VALUES (4686, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642822638540,\"humidity\":\"96\",\"id\":1484731874544320514,\"province\":\"江西\",\"reporttime\":1642822453000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 11:44:14'); INSERT INTO `sys_oper_log` VALUES (4687, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-22 11:34:13\"}}', 0, '', '2022-01-22 11:44:17'); INSERT INTO `sys_oper_log` VALUES (4688, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642822638540,\"humidity\":\"96\",\"id\":1484731874544320514,\"province\":\"江西\",\"reporttime\":1642822453000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 11:44:17'); INSERT INTO `sys_oper_log` VALUES (4689, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"97\",\"province\":\"江西\",\"reporttime\":1642862328000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-22 22:57:49'); INSERT INTO `sys_oper_log` VALUES (4690, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-22\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-22 22:38:48\"}}', 0, '', '2022-01-22 22:57:49'); INSERT INTO `sys_oper_log` VALUES (4691, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1484903130434555907', '127.0.0.1', '', '1484903130434555907', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-22 22:57:55'); INSERT INTO `sys_oper_log` VALUES (4692, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1642937637000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-01-23 19:52:25'); INSERT INTO `sys_oper_log` VALUES (4693, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人的一生多少有点作为,对人民有点贡献,大凡都是靠挤出来的。一个如果常年不觉得挤,反而觉得有的是时间,松松垮垮,他将事无成,虚度年华,浪费了生命。\",\"createTime\":1642938756993,\"id\":1485218910623698945,\"source\":\"谢觉哉\",\"type\":4}}', 0, '', '2022-01-23 19:52:37'); INSERT INTO `sys_oper_log` VALUES (4694, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"No victory comes without a price.\",\"createTime\":1642938757013,\"dataId\":4341,\"date\":1639411200000,\"id\":1485218910711779330,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d29672dafb7fbbdf25c07625571e5222.png\",\"note\":\"凡是成功就要付出代价。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/74b7bd40e32faedae680ca9560b9f7b1.mp3\"}}', 0, '', '2022-01-23 19:52:37'); INSERT INTO `sys_oper_log` VALUES (4695, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"人的一生多少有点作为,对人民有点贡献,大凡都是靠挤出来的。一个如果常年不觉得挤,反而觉得有的是时间,松松垮垮,他将事无成,虚度年华,浪费了生命。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":60,\"errorCode\":0,\"transResult\":[{\"dst\":\"Human life a little as, contribution to the people a little bit, mostly is by extrusion.\",\"src\":\"人的一生多少有点作为,对人民有点贡献,大凡都是靠挤出来的。\"},{\"dst\":\"A if you don\'t feel crowded all the year round, but feel that you have plenty of time, a loose, he will accomplish anything, idle away one\'s time, wasted life.\",\"src\":\"一个如果常年不觉得挤,反而觉得有的是时间,松松垮垮,他将事无成,虚度年华,浪费了生命。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-23 19:52:47'); INSERT INTO `sys_oper_log` VALUES (4696, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"Human life a little as, contribution to the people a little bit, mostly is by extrusion. \",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":55,\"errorCode\":0,\"transResult\":[{\"dst\":\"人类生活一点,贡献一点的人,大多是通过挤压。\",\"src\":\"Human life a little as, contribution to the people a little bit, mostly is by extrusion.\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-01-23 19:53:11'); INSERT INTO `sys_oper_log` VALUES (4697, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":236,\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:53:37'); INSERT INTO `sys_oper_log` VALUES (4698, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1642937637000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-01-23 19:55:09'); INSERT INTO `sys_oper_log` VALUES (4699, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-23\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-01-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-23 19:33:57\"}}', 0, '', '2022-01-23 19:55:09'); INSERT INTO `sys_oper_log` VALUES (4700, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1urspa4abj31c00u0gx7.jpg\"},{\"imageFileLength\":\"179KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq533wecj31hc0u0gqu.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb9c65bj31hc0u0wiu.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut5jmu4pj31c00u0n04.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb1kchmj31hc0u0tdp.jpg\"},{\"imageFileLength\":\"287KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpbf59xj31c00u0dpf.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5aplckj31c00u0wkf.jpg\"},{\"imageFileLength\":\"262KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfwounlj31hc0u07cp.jpg\"},{\"imageFileLength\":\"218KB\",\"imageSize\":\"1911x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq50cmm3j31h30u0ag1.jpg\"},{\"imageFileLength\":\"231KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8v2ap1j31c00u0wlw.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:15'); INSERT INTO `sys_oper_log` VALUES (4701, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":1,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":2,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":3,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":8,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":9,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:35'); INSERT INTO `sys_oper_log` VALUES (4702, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:48'); INSERT INTO `sys_oper_log` VALUES (4703, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:51'); INSERT INTO `sys_oper_log` VALUES (4704, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:52'); INSERT INTO `sys_oper_log` VALUES (4705, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:52'); INSERT INTO `sys_oper_log` VALUES (4706, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:52'); INSERT INTO `sys_oper_log` VALUES (4707, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:52'); INSERT INTO `sys_oper_log` VALUES (4708, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:53'); INSERT INTO `sys_oper_log` VALUES (4709, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:53'); INSERT INTO `sys_oper_log` VALUES (4710, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:54'); INSERT INTO `sys_oper_log` VALUES (4711, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:56'); INSERT INTO `sys_oper_log` VALUES (4712, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%AE%9C%E6%98%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 宜春市\",\"cityCode\":\"360900\",\"forecasts\":[{\"date\":\"2022-01-23\",\"dayOfWeek\":\"周日\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"10℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-23 19:33:59\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-23 19:55:57'); INSERT INTO `sys_oper_log` VALUES (4713, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1642938999076,\"en\":\"History tells us that modesty leads to success and conceit, to failure.\",\"id\":1485219925993394178,\"zh\":\"历史告诫我们,谦逊使人成功,骄傲使人失败.\"}}', 0, '', '2022-01-23 19:56:39'); INSERT INTO `sys_oper_log` VALUES (4714, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"History tells us that modesty leads to success and conceit, to failure.\",\"zh\":\"历史告诫我们,谦逊使人成功,骄傲使人失败.\"}}', 0, '', '2022-01-23 19:56:41'); INSERT INTO `sys_oper_log` VALUES (4715, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642985675175,\"humidity\":\"84\",\"id\":1485415699777220609,\"province\":\"江西\",\"reporttime\":1642984712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 08:54:35'); INSERT INTO `sys_oper_log` VALUES (4716, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You must never be fearful about what you are doing when it is right.\",\"dataId\":3580,\"date\":1573920000000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-17.jpg\",\"note\":\"做事绝不要感到害怕,如果它是对的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-17-day.mp3\"}}', 0, '', '2022-01-24 09:23:52'); INSERT INTO `sys_oper_log` VALUES (4717, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"面对不幸,了解朋友。\",\"createTime\":1642987433016,\"id\":1485423072700952578,\"source\":\"赫尔德\",\"type\":4}}', 0, '', '2022-01-24 09:23:53'); INSERT INTO `sys_oper_log` VALUES (4718, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"谦固美名,过谦者,宜防其诈。\",\"createTime\":1642987501542,\"id\":1485423360119853058,\"source\":\"朱熹\",\"type\":4}}', 0, '', '2022-01-24 09:25:01'); INSERT INTO `sys_oper_log` VALUES (4719, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取IP信息异常!!', '2022-01-24 09:25:26'); INSERT INTO `sys_oper_log` VALUES (4720, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-24 09:25:27'); INSERT INTO `sys_oper_log` VALUES (4721, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你愿意做我的太阳吗?那么请与我,保持92955886公里。\",\"createTime\":1641634321000,\"id\":1479747709860274195,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-24 09:25:27'); INSERT INTO `sys_oper_log` VALUES (4722, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不吃的苹果被人抢了、我还是难过了.\",\"createTime\":1641727326000,\"id\":1480137801238011909,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-24 09:25:37'); INSERT INTO `sys_oper_log` VALUES (4723, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果人生是一部电影,那你就是,中间弹出来的广告。\",\"createTime\":1641644761000,\"id\":1479791498440171534,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-24 09:25:40'); INSERT INTO `sys_oper_log` VALUES (4724, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一勺勺积累的东西,不要用桶倒出去。\",\"createTime\":1641576241000,\"id\":1479504104679792642,\"source\":\"(哈萨克族)谚语\",\"type\":4}}', 0, '', '2022-01-24 09:25:41'); INSERT INTO `sys_oper_log` VALUES (4725, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天没有你没关系,反正明天也不会有。\",\"createTime\":1641879211000,\"id\":1480774853010300944,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-24 09:27:07'); INSERT INTO `sys_oper_log` VALUES (4726, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 09:45:51'); INSERT INTO `sys_oper_log` VALUES (4727, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 09:33:58\"}}', 0, '', '2022-01-24 09:45:53'); INSERT INTO `sys_oper_log` VALUES (4728, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 09:45:53'); INSERT INTO `sys_oper_log` VALUES (4729, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The more you like yourself, the less you are like anyone else, which makes you unique. \",\"dataId\":3674,\"date\":1582214400000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/989161761a0eb45a1fe106acd46bbed5.png\",\"note\":\"你越喜欢你自己,你就越不像其他人,而这会使你变得独特。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/c217dc31ed32ffb5757b11a485d554ab.mp3\"}}', 0, '', '2022-01-24 09:46:16'); INSERT INTO `sys_oper_log` VALUES (4730, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"听歌,不是为了欣赏音乐,只是不让自己乱想。\",\"createTime\":1642988777035,\"id\":1485428709866524674,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-24 09:46:17'); INSERT INTO `sys_oper_log` VALUES (4731, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 09:50:09'); INSERT INTO `sys_oper_log` VALUES (4732, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 09:53:17'); INSERT INTO `sys_oper_log` VALUES (4733, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 09:53:23'); INSERT INTO `sys_oper_log` VALUES (4734, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 09:53:35'); INSERT INTO `sys_oper_log` VALUES (4735, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 09:55:43'); INSERT INTO `sys_oper_log` VALUES (4736, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:00:56'); INSERT INTO `sys_oper_log` VALUES (4737, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:03:01'); INSERT INTO `sys_oper_log` VALUES (4738, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:03:46'); INSERT INTO `sys_oper_log` VALUES (4739, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:04:20'); INSERT INTO `sys_oper_log` VALUES (4740, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:05:37'); INSERT INTO `sys_oper_log` VALUES (4741, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:07:20'); INSERT INTO `sys_oper_log` VALUES (4742, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:07:50'); INSERT INTO `sys_oper_log` VALUES (4743, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:08:18'); INSERT INTO `sys_oper_log` VALUES (4744, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:08:33'); INSERT INTO `sys_oper_log` VALUES (4745, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:08:53'); INSERT INTO `sys_oper_log` VALUES (4746, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:09:47'); INSERT INTO `sys_oper_log` VALUES (4747, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:10:00'); INSERT INTO `sys_oper_log` VALUES (4748, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:10:14'); INSERT INTO `sys_oper_log` VALUES (4749, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:10:23'); INSERT INTO `sys_oper_log` VALUES (4750, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:10:31'); INSERT INTO `sys_oper_log` VALUES (4751, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642988038000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:10:43'); INSERT INTO `sys_oper_log` VALUES (4752, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:12:09'); INSERT INTO `sys_oper_log` VALUES (4753, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:12:24'); INSERT INTO `sys_oper_log` VALUES (4754, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:15:10'); INSERT INTO `sys_oper_log` VALUES (4755, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:15:27'); INSERT INTO `sys_oper_log` VALUES (4756, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:15:44'); INSERT INTO `sys_oper_log` VALUES (4757, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:16:15'); INSERT INTO `sys_oper_log` VALUES (4758, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:16:38'); INSERT INTO `sys_oper_log` VALUES (4759, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:18:20'); INSERT INTO `sys_oper_log` VALUES (4760, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:19:01'); INSERT INTO `sys_oper_log` VALUES (4761, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:19:12'); INSERT INTO `sys_oper_log` VALUES (4762, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:19:50'); INSERT INTO `sys_oper_log` VALUES (4763, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:20:23'); INSERT INTO `sys_oper_log` VALUES (4764, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642990329326,\"humidity\":\"82\",\"id\":1485435220663652353,\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:21:17'); INSERT INTO `sys_oper_log` VALUES (4765, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:24:54'); INSERT INTO `sys_oper_log` VALUES (4766, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:25:31'); INSERT INTO `sys_oper_log` VALUES (4767, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:27:33'); INSERT INTO `sys_oper_log` VALUES (4768, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:29:24'); INSERT INTO `sys_oper_log` VALUES (4769, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:33:38'); INSERT INTO `sys_oper_log` VALUES (4770, '获取历史热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.getHistoryTopSearchByDate()', 'GET', 1, 'admin', '', '/topsearch/getHistoryTopSearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"douyinList\":[],\"baiduList\":[],\"wechatList\":[],\"allnetworkList\":[],\"weiboList\":[]}}', 0, '', '2022-01-24 10:33:45'); INSERT INTO `sys_oper_log` VALUES (4771, '获取历史热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.getHistoryTopSearchByDate()', 'GET', 1, 'admin', '', '/topsearch/getHistoryTopSearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"douyinList\":[],\"baiduList\":[],\"wechatList\":[],\"allnetworkList\":[],\"weiboList\":[]}}', 0, '', '2022-01-24 10:33:50'); INSERT INTO `sys_oper_log` VALUES (4772, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1642989841000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:35:52'); INSERT INTO `sys_oper_log` VALUES (4773, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642991922000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:51:25'); INSERT INTO `sys_oper_log` VALUES (4774, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642991922000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:51:28'); INSERT INTO `sys_oper_log` VALUES (4775, '获取历史热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.getHistoryTopSearchByDate()', 'GET', 1, 'admin', '', '/topsearch/getHistoryTopSearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"douyinList\":[],\"baiduList\":[],\"wechatList\":[],\"allnetworkList\":[],\"weiboList\":[]}}', 0, '', '2022-01-24 10:51:36'); INSERT INTO `sys_oper_log` VALUES (4776, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642991922000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 10:54:52'); INSERT INTO `sys_oper_log` VALUES (4777, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E9%A6%99%E8%95%89', '127.0.0.1', '', '', '', 1, '', '2022-01-24 10:55:03'); INSERT INTO `sys_oper_log` VALUES (4778, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%8B%B9%E6%9E%9C', '127.0.0.1', '', '', '', 1, '', '2022-01-24 10:57:37'); INSERT INTO `sys_oper_log` VALUES (4779, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%9A%AE%E9%9E%8B', '127.0.0.1', '', '', '', 1, '', '2022-01-24 10:58:01'); INSERT INTO `sys_oper_log` VALUES (4780, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%9A%AE%E9%9E%8B', '127.0.0.1', '', '', '', 1, '获取的垃圾分类数据为空', '2022-01-24 11:00:17'); INSERT INTO `sys_oper_log` VALUES (4781, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"143KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicph7kzj31920u0tci.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1ep5icj31hc0u00vc.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52253bj31c00u0jui.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utanqnghj31c00u041y.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaktz2bj31c00u043b.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaxc36qj31hc0u00yy.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4zniloj31hc0u0whs.jpg\"},{\"imageFileLength\":\"197KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut96p0orj31c00u00yv.jpg\"},{\"imageFileLength\":\"215KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursidbzxj31c00u0gyo.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqeytc34j318g0p0aga.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:03:03'); INSERT INTO `sys_oper_log` VALUES (4782, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E9%A6%99%E8%95%89', '127.0.0.1', '', '', '', 1, '获取的垃圾分类数据为空', '2022-01-24 11:03:10'); INSERT INTO `sys_oper_log` VALUES (4783, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E9%A6%99%E8%95%89', '127.0.0.1', '', '', '', 1, '获取的垃圾分类数据为空', '2022-01-24 11:04:01'); INSERT INTO `sys_oper_log` VALUES (4784, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642991922000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:04:04'); INSERT INTO `sys_oper_log` VALUES (4785, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '', 1, '获取的垃圾分类数据为空', '2022-01-24 11:04:13'); INSERT INTO `sys_oper_log` VALUES (4786, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642991922000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:04:59'); INSERT INTO `sys_oper_log` VALUES (4787, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '', 1, 'syntax error, expect {, actual [, fieldName recommendList, pos 1, line 1, column 2[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]', '2022-01-24 11:05:03'); INSERT INTO `sys_oper_log` VALUES (4788, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%9A%AE%E9%9E%8B', '127.0.0.1', '', '', '', 1, 'syntax error, expect {, actual [, fieldName recommendList, pos 1, line 1, column 2[{\"goodsName\":\"皮鞋\",\"goodsType\":\"可回收垃圾\"},{\"goodsName\":\"旧皮鞋\",\"goodsType\":\"可回收垃圾\"}]', '2022-01-24 11:07:35'); INSERT INTO `sys_oper_log` VALUES (4789, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%9A%AE%E9%9E%8B', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"皮鞋\",\"goodsType\":\"可回收垃圾\"},\"recommendList\":[{\"goodsName\":\"皮鞋\",\"goodsType\":\"可回收垃圾\"},{\"goodsName\":\"旧皮鞋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:09:07'); INSERT INTO `sys_oper_log` VALUES (4790, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:09:14'); INSERT INTO `sys_oper_log` VALUES (4791, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E4%BA%91%E5%8D%97', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"云南省\",\"cityCode\":\"530000\",\"forecasts\":[{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"14℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"晴\"}],\"reportTime\":\"2022-01-24 11:08:43\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:09:55'); INSERT INTO `sys_oper_log` VALUES (4792, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E6%A1%82%E6%9E%97', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"广西壮族自治区 桂林市\",\"humidity\":\"76%\",\"reporttime\":1642993582000,\"temp\":\"7℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:09:59'); INSERT INTO `sys_oper_log` VALUES (4793, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/18907044521', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西电信\",\"mobile\":\"18907044521\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:10:06'); INSERT INTO `sys_oper_log` VALUES (4794, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/18907044521', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西电信\",\"mobile\":\"18907044521\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:10:20'); INSERT INTO `sys_oper_log` VALUES (4795, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E4%BA%91%E5%8D%97', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"云南省\",\"cityCode\":\"530000\",\"forecasts\":[{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"14℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"晴\"}],\"reportTime\":\"2022-01-24 11:08:43\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:10:21'); INSERT INTO `sys_oper_log` VALUES (4796, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E4%BA%91%E5%8D%97', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"云南省\",\"cityCode\":\"530000\",\"forecasts\":[{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"14℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"晴\"}],\"reportTime\":\"2022-01-24 11:08:43\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:10:26'); INSERT INTO `sys_oper_log` VALUES (4797, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E6%A1%82%E6%9E%97', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"广西壮族自治区 桂林市\",\"humidity\":\"76%\",\"reporttime\":1642993582000,\"temp\":\"7℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:11:23'); INSERT INTO `sys_oper_log` VALUES (4798, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E4%BA%91%E5%8D%97', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"云南省\",\"cityCode\":\"530000\",\"forecasts\":[{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"5℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"15℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"16℃\",\"dayweather\":\"多云\",\"nighttemp\":\"6℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"14℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"7℃\",\"nightweather\":\"晴\"}],\"reportTime\":\"2022-01-24 11:08:43\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:11:24'); INSERT INTO `sys_oper_log` VALUES (4799, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/18907044521', '127.0.0.1', '', '', '', 1, '获取的手机归属地数据为空', '2022-01-24 11:11:24'); INSERT INTO `sys_oper_log` VALUES (4800, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/18907044521', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"江西电信\",\"mobile\":\"18907044521\",\"province\":\"江西\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:11:28'); INSERT INTO `sys_oper_log` VALUES (4801, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:12:10'); INSERT INTO `sys_oper_log` VALUES (4802, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:12:21'); INSERT INTO `sys_oper_log` VALUES (4803, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:14:17'); INSERT INTO `sys_oper_log` VALUES (4804, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:14:18'); INSERT INTO `sys_oper_log` VALUES (4805, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642994060335,\"humidity\":\"83\",\"id\":1485450869662203905,\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:14:20'); INSERT INTO `sys_oper_log` VALUES (4806, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:14:25'); INSERT INTO `sys_oper_log` VALUES (4807, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642994060335,\"humidity\":\"83\",\"id\":1485450869662203905,\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:15:26'); INSERT INTO `sys_oper_log` VALUES (4808, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:15:32'); INSERT INTO `sys_oper_log` VALUES (4809, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:16:33'); INSERT INTO `sys_oper_log` VALUES (4810, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:16:36'); INSERT INTO `sys_oper_log` VALUES (4811, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642994060335,\"humidity\":\"83\",\"id\":1485450869662203905,\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:16:39'); INSERT INTO `sys_oper_log` VALUES (4812, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:16:40'); INSERT INTO `sys_oper_log` VALUES (4813, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:18:22'); INSERT INTO `sys_oper_log` VALUES (4814, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642994060335,\"humidity\":\"83\",\"id\":1485450869662203905,\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:18:25'); INSERT INTO `sys_oper_log` VALUES (4815, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642994060335,\"humidity\":\"83\",\"id\":1485450869662203905,\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:19:08'); INSERT INTO `sys_oper_log` VALUES (4816, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642994060335,\"humidity\":\"83\",\"id\":1485450869662203905,\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:19:19'); INSERT INTO `sys_oper_log` VALUES (4817, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642994060335,\"humidity\":\"83\",\"id\":1485450869662203905,\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:20:14'); INSERT INTO `sys_oper_log` VALUES (4818, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:20:23'); INSERT INTO `sys_oper_log` VALUES (4819, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642994060335,\"humidity\":\"83\",\"id\":1485450869662203905,\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:20:47'); INSERT INTO `sys_oper_log` VALUES (4820, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642994060335,\"humidity\":\"83\",\"id\":1485450869662203905,\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:22:27'); INSERT INTO `sys_oper_log` VALUES (4821, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E5%95%8A', '127.0.0.1', '', '', '', 1, '未搜索到相关物品垃圾分类信息,该关键词已上报,感谢您的使用', '2022-01-24 11:22:30'); INSERT INTO `sys_oper_log` VALUES (4822, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:22:41'); INSERT INTO `sys_oper_log` VALUES (4823, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:22:43'); INSERT INTO `sys_oper_log` VALUES (4824, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:23:07'); INSERT INTO `sys_oper_log` VALUES (4825, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642994060335,\"humidity\":\"83\",\"id\":1485450869662203905,\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:23:09'); INSERT INTO `sys_oper_log` VALUES (4826, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:23:10'); INSERT INTO `sys_oper_log` VALUES (4827, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:25:10'); INSERT INTO `sys_oper_log` VALUES (4828, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:25:12'); INSERT INTO `sys_oper_log` VALUES (4829, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:25:40'); INSERT INTO `sys_oper_log` VALUES (4830, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:26:43'); INSERT INTO `sys_oper_log` VALUES (4831, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:26:46'); INSERT INTO `sys_oper_log` VALUES (4832, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:27:00'); INSERT INTO `sys_oper_log` VALUES (4833, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:27:04'); INSERT INTO `sys_oper_log` VALUES (4834, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:28:01'); INSERT INTO `sys_oper_log` VALUES (4835, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:28:03'); INSERT INTO `sys_oper_log` VALUES (4836, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:30:14'); INSERT INTO `sys_oper_log` VALUES (4837, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:30:20'); INSERT INTO `sys_oper_log` VALUES (4838, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:31:15'); INSERT INTO `sys_oper_log` VALUES (4839, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:31:19'); INSERT INTO `sys_oper_log` VALUES (4840, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:32:01'); INSERT INTO `sys_oper_log` VALUES (4841, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:32:06'); INSERT INTO `sys_oper_log` VALUES (4842, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:32:13'); INSERT INTO `sys_oper_log` VALUES (4843, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:32:16'); INSERT INTO `sys_oper_log` VALUES (4844, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:32:36'); INSERT INTO `sys_oper_log` VALUES (4845, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:32:38'); INSERT INTO `sys_oper_log` VALUES (4846, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:32:39'); INSERT INTO `sys_oper_log` VALUES (4847, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1642993712000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:33:25'); INSERT INTO `sys_oper_log` VALUES (4848, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:33:31'); INSERT INTO `sys_oper_log` VALUES (4849, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:38:13'); INSERT INTO `sys_oper_log` VALUES (4850, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:39:21'); INSERT INTO `sys_oper_log` VALUES (4851, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642995566617,\"humidity\":\"84\",\"id\":1485457187458433025,\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:39:26'); INSERT INTO `sys_oper_log` VALUES (4852, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:39:29'); INSERT INTO `sys_oper_log` VALUES (4853, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642995566617,\"humidity\":\"84\",\"id\":1485457187458433025,\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:41:20'); INSERT INTO `sys_oper_log` VALUES (4854, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:41:23'); INSERT INTO `sys_oper_log` VALUES (4855, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:41:41'); INSERT INTO `sys_oper_log` VALUES (4856, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642995566617,\"humidity\":\"84\",\"id\":1485457187458433025,\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:42:10'); INSERT INTO `sys_oper_log` VALUES (4857, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:42:13'); INSERT INTO `sys_oper_log` VALUES (4858, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642995566617,\"humidity\":\"84\",\"id\":1485457187458433025,\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:43:40'); INSERT INTO `sys_oper_log` VALUES (4859, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:43:44'); INSERT INTO `sys_oper_log` VALUES (4860, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:43:57'); INSERT INTO `sys_oper_log` VALUES (4861, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:44:38'); INSERT INTO `sys_oper_log` VALUES (4862, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642995566617,\"humidity\":\"84\",\"id\":1485457187458433025,\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:45:35'); INSERT INTO `sys_oper_log` VALUES (4863, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:45:41'); INSERT INTO `sys_oper_log` VALUES (4864, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%93%9C%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"瓜皮\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"冬瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"黄瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"木瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"南瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"丝瓜皮\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:45:55'); INSERT INTO `sys_oper_log` VALUES (4865, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%93%9C%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"瓜皮\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"冬瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"黄瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"木瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"南瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"丝瓜皮\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:46:21'); INSERT INTO `sys_oper_log` VALUES (4866, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642995566617,\"humidity\":\"84\",\"id\":1485457187458433025,\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:46:25'); INSERT INTO `sys_oper_log` VALUES (4867, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%93%9C%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"瓜皮\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"冬瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"黄瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"木瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"南瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"丝瓜皮\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:46:31'); INSERT INTO `sys_oper_log` VALUES (4868, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:46:40'); INSERT INTO `sys_oper_log` VALUES (4869, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642995566617,\"humidity\":\"84\",\"id\":1485457187458433025,\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:47:34'); INSERT INTO `sys_oper_log` VALUES (4870, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%9B%87%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"蛇皮袋\",\"goodsType\":\"可回收垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:47:39'); INSERT INTO `sys_oper_log` VALUES (4871, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%93%9C%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"瓜皮\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"冬瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"黄瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"木瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"南瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"丝瓜皮\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:47:43'); INSERT INTO `sys_oper_log` VALUES (4872, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%93%9C%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"瓜皮\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"冬瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"黄瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"木瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"南瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"丝瓜皮\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:47:51'); INSERT INTO `sys_oper_log` VALUES (4873, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%93%9C%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"瓜皮\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"冬瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"黄瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"木瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"南瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"丝瓜皮\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:47:51'); INSERT INTO `sys_oper_log` VALUES (4874, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%93%9C%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"瓜皮\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"冬瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"黄瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"木瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"南瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"丝瓜皮\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:47:51'); INSERT INTO `sys_oper_log` VALUES (4875, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E7%93%9C%E7%9A%AE', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"瓜皮\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"冬瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"黄瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"木瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"南瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"丝瓜皮\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:48:08'); INSERT INTO `sys_oper_log` VALUES (4876, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E4%B8%8B%E4%B8%8A', '127.0.0.1', '', '', '', 1, '未搜索到相关物品垃圾分类信息,该关键词已上报,感谢您的使用', '2022-01-24 11:48:22'); INSERT INTO `sys_oper_log` VALUES (4877, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E4%B8%8B%E4%B8%8A', '127.0.0.1', '', '', '', 1, '未搜索到相关物品垃圾分类信息,该关键词已上报,感谢您的使用', '2022-01-24 11:48:30'); INSERT INTO `sys_oper_log` VALUES (4878, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1642995566617,\"humidity\":\"84\",\"id\":1485457187458433025,\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:48:39'); INSERT INTO `sys_oper_log` VALUES (4879, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":1,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":2,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":7,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":10,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:48:56'); INSERT INTO `sys_oper_log` VALUES (4880, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E5%9B%BE%E7%89%87', '127.0.0.1', '', '', '', 1, '未搜索到相关物品垃圾分类信息,该关键词已上报,感谢您的使用', '2022-01-24 11:49:03'); INSERT INTO `sys_oper_log` VALUES (4881, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%BA%A2%E6%9F%BF', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西红柿\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西红柿\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:49:11'); INSERT INTO `sys_oper_log` VALUES (4882, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:50:00'); INSERT INTO `sys_oper_log` VALUES (4883, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:50:03'); INSERT INTO `sys_oper_log` VALUES (4884, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:50:19'); INSERT INTO `sys_oper_log` VALUES (4885, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '', 1, '获取的垃圾分类数据为空', '2022-01-24 11:50:40'); INSERT INTO `sys_oper_log` VALUES (4886, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A5%BF%E7%93%9C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"西瓜\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"西瓜皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着西瓜籽的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"西瓜籽\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"西瓜子\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:50:43'); INSERT INTO `sys_oper_log` VALUES (4887, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":1,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":2,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":7,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":10,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:50:50'); INSERT INTO `sys_oper_log` VALUES (4888, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:51:34'); INSERT INTO `sys_oper_log` VALUES (4889, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":1,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":2,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":7,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":10,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:51:34'); INSERT INTO `sys_oper_log` VALUES (4890, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8oli6tj31c00u0jv4.jpg\"},{\"imageFileLength\":\"274KB\",\"imageSize\":\"1920x1200\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005UYuA2gy1fvzhwrgq86j31hc0xctgc.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbe1l55j31c00u0jug.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5dsewlj31900u0wq1.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq591rcyj31c00u0439.jpg\"},{\"imageFileLength\":\"221KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfn55d7j31c00u0wlj.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut852qbxj31c00u042o.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf8c6eaj31c00u0dju.jpg\"},{\"imageFileLength\":\"179KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq57eacxj31c00u0446.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvvt75jj31c00u017h.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:51:39'); INSERT INTO `sys_oper_log` VALUES (4891, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:53:03'); INSERT INTO `sys_oper_log` VALUES (4892, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360322188710230101', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗县\",\"birthday\":\"1887年10月23日\",\"idCardNum\":\"360322188710230101\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:20'); INSERT INTO `sys_oper_log` VALUES (4893, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360322188710230101', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗县\",\"birthday\":\"1887年10月23日\",\"idCardNum\":\"360322188710230101\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:23'); INSERT INTO `sys_oper_log` VALUES (4894, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360322188710230101', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗县\",\"birthday\":\"1887年10月23日\",\"idCardNum\":\"360322188710230101\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:24'); INSERT INTO `sys_oper_log` VALUES (4895, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360322188710230101', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗县\",\"birthday\":\"1887年10月23日\",\"idCardNum\":\"360322188710230101\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:25'); INSERT INTO `sys_oper_log` VALUES (4896, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360322188710230101', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗县\",\"birthday\":\"1887年10月23日\",\"idCardNum\":\"360322188710230101\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:25'); INSERT INTO `sys_oper_log` VALUES (4897, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360322188710230101', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗县\",\"birthday\":\"1887年10月23日\",\"idCardNum\":\"360322188710230101\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:25'); INSERT INTO `sys_oper_log` VALUES (4898, '获取身份证信息', 0, 'com.xjs.apitools.controller.ApiToolsController.getIdcardQueryApiData()', 'GET', 1, 'admin', '', '/apitools/idcardquery/360322188710230101', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省萍乡市上栗县\",\"birthday\":\"1887年10月23日\",\"idCardNum\":\"360322188710230101\",\"sex\":\"女\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:26'); INSERT INTO `sys_oper_log` VALUES (4899, '获取手机归属地', 0, 'com.xjs.apitools.controller.ApiToolsController.getMobileBelongApiData()', 'GET', 1, 'admin', '', '/apitools/mobilebelong/15912411474', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"carrier\":\"云南移动\",\"mobile\":\"15912411474\",\"province\":\"云南\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:36'); INSERT INTO `sys_oper_log` VALUES (4900, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"84%\",\"reporttime\":1642995237000,\"temp\":\"7℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:49'); INSERT INTO `sys_oper_log` VALUES (4901, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"cityCode\":\"360100\",\"forecasts\":[{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"6℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-24 11:33:57\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:52'); INSERT INTO `sys_oper_log` VALUES (4902, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"cityCode\":\"360100\",\"forecasts\":[{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"6℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-24 11:33:57\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:54'); INSERT INTO `sys_oper_log` VALUES (4903, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"humidity\":\"84%\",\"reporttime\":1642995237000,\"temp\":\"7℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:55'); INSERT INTO `sys_oper_log` VALUES (4904, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E6%98%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江西省 南昌市\",\"cityCode\":\"360100\",\"forecasts\":[{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"9℃\",\"dayweather\":\"阴\",\"nighttemp\":\"6℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"6℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-24 11:33:57\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:53:56'); INSERT INTO `sys_oper_log` VALUES (4905, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:54:43'); INSERT INTO `sys_oper_log` VALUES (4906, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E4%B8%8A%E6%B5%B7', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"上海市\",\"humidity\":\"81%\",\"reporttime\":1642995104000,\"temp\":\"7℃\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:54:49'); INSERT INTO `sys_oper_log` VALUES (4907, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E4%B8%8A%E6%B5%B7', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"上海市\",\"cityCode\":\"310000\",\"forecasts\":[{\"date\":\"2022-01-24\",\"dayOfWeek\":\"周一\",\"daytemp\":\"8℃\",\"dayweather\":\"阴\",\"nighttemp\":\"4℃\",\"nightweather\":\"阴\"},{\"date\":\"2022-01-25\",\"dayOfWeek\":\"周二\",\"daytemp\":\"8℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"7℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"5℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"7℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"4℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-24 11:31:44\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:54:52'); INSERT INTO `sys_oper_log` VALUES (4908, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:57:25'); INSERT INTO `sys_oper_log` VALUES (4909, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E5%A5%BD', '127.0.0.1', '', '', '', 1, '未搜索到相关物品垃圾分类信息,该关键词已上报,感谢您的使用', '2022-01-24 11:57:40'); INSERT INTO `sys_oper_log` VALUES (4910, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1485461774835884034', '127.0.0.1', '', '1485461774835884034', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-24 11:58:58'); INSERT INTO `sys_oper_log` VALUES (4911, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1642995237000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 11:59:43'); INSERT INTO `sys_oper_log` VALUES (4912, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 11:33:57\"}}', 0, '', '2022-01-24 11:59:47'); INSERT INTO `sys_oper_log` VALUES (4913, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1643002435000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 13:34:48'); INSERT INTO `sys_oper_log` VALUES (4914, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%83%A1%E6%A1%83', '127.0.0.1', '', '', '', 1, '未搜索到相关物品垃圾分类信息,该关键词已上报,感谢您的使用', '2022-01-24 13:34:58'); INSERT INTO `sys_oper_log` VALUES (4915, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E6%A1%83%E5%AD%90', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"桃子\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"桃子皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"桃子核\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 13:35:02'); INSERT INTO `sys_oper_log` VALUES (4916, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E8%A1%A3%E6%9C%8D', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"衣服\",\"goodsType\":\"可回收垃圾\"},\"recommendList\":[{\"goodsName\":\"旧衣服\",\"goodsType\":\"可回收物\"},{\"goodsName\":\"衣服标签\",\"goodsType\":\"干垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 13:35:09'); INSERT INTO `sys_oper_log` VALUES (4917, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1643002435000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 13:40:50'); INSERT INTO `sys_oper_log` VALUES (4918, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1643002435000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 13:43:24'); INSERT INTO `sys_oper_log` VALUES (4919, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E5%95%8A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"啊\",\"originContent\":\"啊\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 13:43:32'); INSERT INTO `sys_oper_log` VALUES (4920, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E6%88%91%E8%A6%81%E8%A2%AB%E4%BD%A0%E7%AC%91%E6%AD%BB%E4%BA%86%E5%91%80', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"我要被你笑死了呀\",\"originContent\":\"我要被你笑死了呀\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 13:43:50'); INSERT INTO `sys_oper_log` VALUES (4921, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E5%95%8A%E5%93%88%E5%93%88%E5%93%88%E5%93%88', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"啊哈哈哈哈\",\"originContent\":\"啊哈哈哈哈\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 13:44:00'); INSERT INTO `sys_oper_log` VALUES (4922, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E8%B0%A2%E5%93%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"謝哥\",\"originContent\":\"谢哥\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 13:44:08'); INSERT INTO `sys_oper_log` VALUES (4923, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1643002435000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 13:45:57'); INSERT INTO `sys_oper_log` VALUES (4924, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E8%B0%A2%E5%93%A5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"謝哥\",\"originContent\":\"谢哥\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 13:46:01'); INSERT INTO `sys_oper_log` VALUES (4925, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E6%88%91%E6%98%AF%E4%BD%A0%E5%A4%A7%E8%B7%8C', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"我是你大跌\",\"originContent\":\"我是你大跌\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 13:46:18'); INSERT INTO `sys_oper_log` VALUES (4926, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生得意须尽欢,胡吃海喝需尽兴。\",\"createTime\":1643003229865,\"id\":1485489329462755330,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-24 13:47:09'); INSERT INTO `sys_oper_log` VALUES (4927, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Some people dream of success, while other people get up and make it happen.\",\"dataId\":4949,\"date\":1597680000000,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/d7f6eb46af6d66e03695c06cf6fdb546.31f9bda7a46f25daf78ede2efcda76e5.jpeg\",\"note\":\"有些人只是梦想去成功,而其他人却起身让梦想成真。\",\"source\":\"Wayne Huizenga\",\"tts\":\"\"}}', 0, '', '2022-01-24 13:47:09'); INSERT INTO `sys_oper_log` VALUES (4928, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从前你对我有多热情,现在就有多失望。\",\"createTime\":1643003232407,\"id\":1485489340095315969,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-24 13:47:12'); INSERT INTO `sys_oper_log` VALUES (4929, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"因为无法再见面,所以要笑着说再见。\",\"createTime\":1643003237294,\"id\":1485489360651599873,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-01-24 13:47:17'); INSERT INTO `sys_oper_log` VALUES (4930, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"什么叫洞房?这是个有关生理的问题。首先男女双方都处于一个非常兴奋的状态,双方经过一阵前奏之后,男方就会将他的那一根......那一根啊?那一根裤腰带松开!然后呢他会再将新娘的那一块.......那一块什么?那一块红头盖掀开!然后他们就.......就怎么样了?......就开始入洞房!\",\"createTime\":1643003238246,\"id\":1485489364590051330,\"source\":\"整人专家\",\"type\":3}}', 0, '', '2022-01-24 13:47:18'); INSERT INTO `sys_oper_log` VALUES (4931, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"聪明的人依靠自己的工作,愚蠢的人依靠自己的希望。\",\"createTime\":1643003269886,\"id\":1485489497314607106,\"source\":\"佚名\",\"type\":4}}', 0, '', '2022-01-24 13:47:49'); INSERT INTO `sys_oper_log` VALUES (4932, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Only through pain can you achieve your greatness.\",\"createTime\":1643003269888,\"dataId\":4185,\"date\":1625932800000,\"id\":1485489497314607107,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d210e3590128c30334d65b3c2044d213.png\",\"note\":\"唯有痛苦能使你伟大。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a28470360748f1f42639fb38b7c7f724.mp3\"}}', 0, '', '2022-01-24 13:47:49'); INSERT INTO `sys_oper_log` VALUES (4933, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1643002435000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 13:48:14'); INSERT INTO `sys_oper_log` VALUES (4934, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E8%81%AA%E6%98%8E%E7%9A%84%E4%BA%BA%E4%BE%9D%E9%9D%A0%E8%87%AA%E5%B7%B1%E7%9A%84%E5%B7%A5%E4%BD%9C%EF%BC%8C%E6%84%9A%E8%A0%A2%E7%9A%84%E4%BA%BA%E4%BE%9D%E9%9D%A0%E8%87%AA%E5%B7%B1%E7%9A%84%E5%B8%8C%E6%9C%9B%E3%80%82', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"聰明的人依靠自己的工作,愚蠢的人依靠自己的希望。\",\"originContent\":\"聪明的人依靠自己的工作,愚蠢的人依靠自己的希望。\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 13:48:15'); INSERT INTO `sys_oper_log` VALUES (4935, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1643002435000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 13:48:30'); INSERT INTO `sys_oper_log` VALUES (4936, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 13:33:55\"}}', 0, '', '2022-01-24 13:48:55'); INSERT INTO `sys_oper_log` VALUES (4937, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1643002435000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 13:48:55'); INSERT INTO `sys_oper_log` VALUES (4938, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1643002435000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 13:58:53'); INSERT INTO `sys_oper_log` VALUES (4939, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"啊 \\n\\n (形声。从口,阿声。本义叹词) 表示惊叹或赞颂。如啊!多么美丽的夜色;啊!祖国,我为您歌唱\\n\\n 啊á叹词。在句首,〈表〉疑问或反问~,这是什么?~,你想干什么?\\n\\n 啊ǎ叹词。在句首,〈表〉疑惑~,这东西质量可靠吗?\\n\\n 啊ɑ助词。\\n\\n ①在句尾,〈表〉惊奇、赞叹等语气,常因前面字音的不同,而有各种变音。也可用别的字来表示快来~(呀)!你们好~(哇)!大家加油干~(哪)!\\n\\n ②用于列举事项之后米~、菜~、肉~,丰富极了。\\n\\n 啊à叹词。〈表〉应允、领悟或惊叹~,好吧,照你说的办!~,知道了!~,大鱼上钩了!\\n\\n 啊ā叹词。在句首,〈表〉赞叹或惊奇~,太好了!~,太阳出来了!\\n\\n 啊a 1.助词。用在句末表示感叹的语气。 2.助词。用在句末表示肯定﹑辩解﹑催促﹑嘱咐等语气。 3.助词。用在句末表示疑问的语气。 4.助词。用在句中表示停顿。\\n\\n 5.助词。用在列举的事项之后。\",\"pinyin\":\"ā\",\"radicals\":\"口\",\"strokes\":\"10\",\"traditional\":\"啊\",\"word\":\"啊\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 13:58:56'); INSERT INTO `sys_oper_log` VALUES (4940, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A%E5%95%8A', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 13:59:01'); INSERT INTO `sys_oper_log` VALUES (4941, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1643002435000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 13:59:37'); INSERT INTO `sys_oper_log` VALUES (4942, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1643002435000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 14:00:09'); INSERT INTO `sys_oper_log` VALUES (4943, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"啊 \\n\\n (形声。从口,阿声。本义叹词) 表示惊叹或赞颂。如啊!多么美丽的夜色;啊!祖国,我为您歌唱\\n\\n 啊á叹词。在句首,〈表〉疑问或反问~,这是什么?~,你想干什么?\\n\\n 啊ǎ叹词。在句首,〈表〉疑惑~,这东西质量可靠吗?\\n\\n 啊ɑ助词。\\n\\n ①在句尾,〈表〉惊奇、赞叹等语气,常因前面字音的不同,而有各种变音。也可用别的字来表示快来~(呀)!你们好~(哇)!大家加油干~(哪)!\\n\\n ②用于列举事项之后米~、菜~、肉~,丰富极了。\\n\\n 啊à叹词。〈表〉应允、领悟或惊叹~,好吧,照你说的办!~,知道了!~,大鱼上钩了!\\n\\n 啊ā叹词。在句首,〈表〉赞叹或惊奇~,太好了!~,太阳出来了!\\n\\n 啊a 1.助词。用在句末表示感叹的语气。 2.助词。用在句末表示肯定﹑辩解﹑催促﹑嘱咐等语气。 3.助词。用在句末表示疑问的语气。 4.助词。用在句中表示停顿。\\n\\n 5.助词。用在列举的事项之后。\",\"pinyin\":\"ā\",\"radicals\":\"口\",\"strokes\":\"10\",\"traditional\":\"啊\",\"word\":\"啊\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:00:11'); INSERT INTO `sys_oper_log` VALUES (4944, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%B8%85', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"帅 \\n\\n (形声)\\n\\n 同本义 \\n\\n 无感我帨兮。--《诗·野有死麕》\\n\\n 毋施衿结帨。--《仪礼·士昏礼》\\n\\n 左佩纷帨。又,女子设帨于门右。--《礼记·内则》\\n\\n 军队中的主将、统帅 \\n\\n 帅刘良佐拥骑至城下,呼曰吾与阎雅故,为我语阎君,欲相见。”--清·邵长蘅《阎典史传》\\n\\n 予自度不得脱,则直前诟虏帅失信,数吕师孟叔侄为逆。--宋·文天祥《指南录·后序》\\n\\n 又如挂帅;帅甸(甸地的统帅\\n\\n 帅(帥)shuài\\n\\n ⒈军队中最高级的指挥者元~。统~。\\n\\n ⒉(也可写作\\\"率\\\")主将将~之书。〈古〉又称地方的长官县~。\\n\\n ⒊(也可写作\\\"率\\\")带领,率领~领。~众出征。\",\"pinyin\":\"shuài\",\"radicals\":\"巾\",\"strokes\":\"5\",\"traditional\":\"帥\",\"word\":\"帅\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:05:15'); INSERT INTO `sys_oper_log` VALUES (4945, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%B8%85%E5%95%8A', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:05:17'); INSERT INTO `sys_oper_log` VALUES (4946, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%B8%85%E5%95%8A%E5%95%8A', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:05:20'); INSERT INTO `sys_oper_log` VALUES (4947, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%B8%85%E5%95%8A%E5%95%8A', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:05:28'); INSERT INTO `sys_oper_log` VALUES (4948, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%B8%85%E5%95%8A%E5%95%8A%E5%95%8A%E5%95%8A', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:05:52'); INSERT INTO `sys_oper_log` VALUES (4949, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"啊 \\n\\n (形声。从口,阿声。本义叹词) 表示惊叹或赞颂。如啊!多么美丽的夜色;啊!祖国,我为您歌唱\\n\\n 啊á叹词。在句首,〈表〉疑问或反问~,这是什么?~,你想干什么?\\n\\n 啊ǎ叹词。在句首,〈表〉疑惑~,这东西质量可靠吗?\\n\\n 啊ɑ助词。\\n\\n ①在句尾,〈表〉惊奇、赞叹等语气,常因前面字音的不同,而有各种变音。也可用别的字来表示快来~(呀)!你们好~(哇)!大家加油干~(哪)!\\n\\n ②用于列举事项之后米~、菜~、肉~,丰富极了。\\n\\n 啊à叹词。〈表〉应允、领悟或惊叹~,好吧,照你说的办!~,知道了!~,大鱼上钩了!\\n\\n 啊ā叹词。在句首,〈表〉赞叹或惊奇~,太好了!~,太阳出来了!\\n\\n 啊a 1.助词。用在句末表示感叹的语气。 2.助词。用在句末表示肯定﹑辩解﹑催促﹑嘱咐等语气。 3.助词。用在句末表示疑问的语气。 4.助词。用在句中表示停顿。\\n\\n 5.助词。用在列举的事项之后。\",\"pinyin\":\"ā\",\"radicals\":\"口\",\"strokes\":\"10\",\"traditional\":\"啊\",\"word\":\"啊\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:06:07'); INSERT INTO `sys_oper_log` VALUES (4950, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A%E5%95%8A', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:06:11'); INSERT INTO `sys_oper_log` VALUES (4951, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A%E5%95%8A%E5%95%8A', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:06:13'); INSERT INTO `sys_oper_log` VALUES (4952, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A%E5%95%8A%E5%95%8A%E5%95%8A', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:06:19'); INSERT INTO `sys_oper_log` VALUES (4953, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/x', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:06:32'); INSERT INTO `sys_oper_log` VALUES (4954, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/xx', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:06:32'); INSERT INTO `sys_oper_log` VALUES (4955, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/xxx', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:06:34'); INSERT INTO `sys_oper_log` VALUES (4956, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/a', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:06:35'); INSERT INTO `sys_oper_log` VALUES (4957, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/a%20x', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:06:36'); INSERT INTO `sys_oper_log` VALUES (4958, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643004576878,\"humidity\":\"80\",\"id\":1485494979219603457,\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:09:36'); INSERT INTO `sys_oper_log` VALUES (4959, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%B8%85', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"帅 \\n\\n (形声)\\n\\n 同本义 \\n\\n 无感我帨兮。--《诗·野有死麕》\\n\\n 毋施衿结帨。--《仪礼·士昏礼》\\n\\n 左佩纷帨。又,女子设帨于门右。--《礼记·内则》\\n\\n 军队中的主将、统帅 \\n\\n 帅刘良佐拥骑至城下,呼曰吾与阎雅故,为我语阎君,欲相见。”--清·邵长蘅《阎典史传》\\n\\n 予自度不得脱,则直前诟虏帅失信,数吕师孟叔侄为逆。--宋·文天祥《指南录·后序》\\n\\n 又如挂帅;帅甸(甸地的统帅\\n\\n 帅(帥)shuài\\n\\n ⒈军队中最高级的指挥者元~。统~。\\n\\n ⒉(也可写作\\\"率\\\")主将将~之书。〈古〉又称地方的长官县~。\\n\\n ⒊(也可写作\\\"率\\\")带领,率领~领。~众出征。\",\"pinyin\":\"shuài\",\"radicals\":\"巾\",\"strokes\":\"5\",\"traditional\":\"帥\",\"word\":\"帅\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:09:41'); INSERT INTO `sys_oper_log` VALUES (4960, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%B8%85%E5%95%8A', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:09:43'); INSERT INTO `sys_oper_log` VALUES (4961, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"啊 \\n\\n (形声。从口,阿声。本义叹词) 表示惊叹或赞颂。如啊!多么美丽的夜色;啊!祖国,我为您歌唱\\n\\n 啊á叹词。在句首,〈表〉疑问或反问~,这是什么?~,你想干什么?\\n\\n 啊ǎ叹词。在句首,〈表〉疑惑~,这东西质量可靠吗?\\n\\n 啊ɑ助词。\\n\\n ①在句尾,〈表〉惊奇、赞叹等语气,常因前面字音的不同,而有各种变音。也可用别的字来表示快来~(呀)!你们好~(哇)!大家加油干~(哪)!\\n\\n ②用于列举事项之后米~、菜~、肉~,丰富极了。\\n\\n 啊à叹词。〈表〉应允、领悟或惊叹~,好吧,照你说的办!~,知道了!~,大鱼上钩了!\\n\\n 啊ā叹词。在句首,〈表〉赞叹或惊奇~,太好了!~,太阳出来了!\\n\\n 啊a 1.助词。用在句末表示感叹的语气。 2.助词。用在句末表示肯定﹑辩解﹑催促﹑嘱咐等语气。 3.助词。用在句末表示疑问的语气。 4.助词。用在句中表示停顿。\\n\\n 5.助词。用在列举的事项之后。\",\"pinyin\":\"ā\",\"radicals\":\"口\",\"strokes\":\"10\",\"traditional\":\"啊\",\"word\":\"啊\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:09:55'); INSERT INTO `sys_oper_log` VALUES (4962, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643004576878,\"humidity\":\"80\",\"id\":1485494979219603457,\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:09:57'); INSERT INTO `sys_oper_log` VALUES (4963, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"啊 \\n\\n (形声。从口,阿声。本义叹词) 表示惊叹或赞颂。如啊!多么美丽的夜色;啊!祖国,我为您歌唱\\n\\n 啊á叹词。在句首,〈表〉疑问或反问~,这是什么?~,你想干什么?\\n\\n 啊ǎ叹词。在句首,〈表〉疑惑~,这东西质量可靠吗?\\n\\n 啊ɑ助词。\\n\\n ①在句尾,〈表〉惊奇、赞叹等语气,常因前面字音的不同,而有各种变音。也可用别的字来表示快来~(呀)!你们好~(哇)!大家加油干~(哪)!\\n\\n ②用于列举事项之后米~、菜~、肉~,丰富极了。\\n\\n 啊à叹词。〈表〉应允、领悟或惊叹~,好吧,照你说的办!~,知道了!~,大鱼上钩了!\\n\\n 啊ā叹词。在句首,〈表〉赞叹或惊奇~,太好了!~,太阳出来了!\\n\\n 啊a 1.助词。用在句末表示感叹的语气。 2.助词。用在句末表示肯定﹑辩解﹑催促﹑嘱咐等语气。 3.助词。用在句末表示疑问的语气。 4.助词。用在句中表示停顿。\\n\\n 5.助词。用在列举的事项之后。\",\"pinyin\":\"ā\",\"radicals\":\"口\",\"strokes\":\"10\",\"traditional\":\"啊\",\"word\":\"啊\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:10:04'); INSERT INTO `sys_oper_log` VALUES (4964, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/a', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入单个中文!!!\"}', 0, '', '2022-01-24 14:10:11'); INSERT INTO `sys_oper_log` VALUES (4965, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"啊 \\n\\n (形声。从口,阿声。本义叹词) 表示惊叹或赞颂。如啊!多么美丽的夜色;啊!祖国,我为您歌唱\\n\\n 啊á叹词。在句首,〈表〉疑问或反问~,这是什么?~,你想干什么?\\n\\n 啊ǎ叹词。在句首,〈表〉疑惑~,这东西质量可靠吗?\\n\\n 啊ɑ助词。\\n\\n ①在句尾,〈表〉惊奇、赞叹等语气,常因前面字音的不同,而有各种变音。也可用别的字来表示快来~(呀)!你们好~(哇)!大家加油干~(哪)!\\n\\n ②用于列举事项之后米~、菜~、肉~,丰富极了。\\n\\n 啊à叹词。〈表〉应允、领悟或惊叹~,好吧,照你说的办!~,知道了!~,大鱼上钩了!\\n\\n 啊ā叹词。在句首,〈表〉赞叹或惊奇~,太好了!~,太阳出来了!\\n\\n 啊a 1.助词。用在句末表示感叹的语气。 2.助词。用在句末表示肯定﹑辩解﹑催促﹑嘱咐等语气。 3.助词。用在句末表示疑问的语气。 4.助词。用在句中表示停顿。\\n\\n 5.助词。用在列举的事项之后。\",\"pinyin\":\"ā\",\"radicals\":\"口\",\"strokes\":\"10\",\"traditional\":\"啊\",\"word\":\"啊\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:11:14'); INSERT INTO `sys_oper_log` VALUES (4966, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643004576878,\"humidity\":\"80\",\"id\":1485494979219603457,\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:12:47'); INSERT INTO `sys_oper_log` VALUES (4967, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%95%8A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"啊 \\n\\n (形声。从口,阿声。本义叹词) 表示惊叹或赞颂。如啊!多么美丽的夜色;啊!祖国,我为您歌唱\\n\\n 啊á叹词。在句首,〈表〉疑问或反问~,这是什么?~,你想干什么?\\n\\n 啊ǎ叹词。在句首,〈表〉疑惑~,这东西质量可靠吗?\\n\\n 啊ɑ助词。\\n\\n ①在句尾,〈表〉惊奇、赞叹等语气,常因前面字音的不同,而有各种变音。也可用别的字来表示快来~(呀)!你们好~(哇)!大家加油干~(哪)!\\n\\n ②用于列举事项之后米~、菜~、肉~,丰富极了。\\n\\n 啊à叹词。〈表〉应允、领悟或惊叹~,好吧,照你说的办!~,知道了!~,大鱼上钩了!\\n\\n 啊ā叹词。在句首,〈表〉赞叹或惊奇~,太好了!~,太阳出来了!\\n\\n 啊a 1.助词。用在句末表示感叹的语气。 2.助词。用在句末表示肯定﹑辩解﹑催促﹑嘱咐等语气。 3.助词。用在句末表示疑问的语气。 4.助词。用在句中表示停顿。\\n\\n 5.助词。用在列举的事项之后。\",\"pinyin\":\"ā\",\"radicals\":\"口\",\"strokes\":\"10\",\"traditional\":\"啊\",\"word\":\"啊\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:12:49'); INSERT INTO `sys_oper_log` VALUES (4968, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643004576878,\"humidity\":\"80\",\"id\":1485494979219603457,\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:14:51'); INSERT INTO `sys_oper_log` VALUES (4969, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%93%A6', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"explanation\":\"哦 \\n\\n 吟咏 \\n\\n 日哦招隐诗,月诵归田赋。--宋·梅尧臣《招隐堂寄题乐郎中》\\n\\n 又如哦吟(吟咏,吟诗)\\n\\n 哦 \\n\\n 用以表示喜悦、惊异或强烈的感情 \\n\\n 哦〈叹〉\\n\\n 表示疑问、惊奇等 \\n\\n 哦!你就是来霞士。--《儒林外史》\\n\\n 如哦!会有这样的人?\\n\\n 哦 〈叹〉\\n\\n 表示提醒 \\n\\n 表示承诺、答应 \\n\\n 哦呵\\n\\n \\n\\n 哦呵!来了这么多人\\n\\n 哦呀\\n\\n \\n\\n 哦呀!又杀人了!\\n\\n 哦唷\\n\\n \\n\\n 哦唷,这么多\\n\\n 哦 é吟哦;低声地唱。又见ó;ò。\\n\\n 哦ó叹词。〈表〉疑问、惊讶等~,做错了吗?~,好险呀!\\n\\n 哦ò叹词。〈表〉领会,醒悟~,知道了!\",\"pinyin\":\"ò\",\"radicals\":\"口\",\"strokes\":\"10\",\"traditional\":\"哦\",\"word\":\"哦\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:14:57'); INSERT INTO `sys_oper_log` VALUES (4970, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643004576878,\"humidity\":\"80\",\"id\":1485494979219603457,\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:15:15'); INSERT INTO `sys_oper_log` VALUES (4971, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%97%AF', '127.0.0.1', '', '', '', 1, '获取的汉语字典数据为空', '2022-01-24 14:15:18'); INSERT INTO `sys_oper_log` VALUES (4972, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%97%AF', '127.0.0.1', '', '', '', 1, '获取的汉语字典数据为空', '2022-01-24 14:15:21'); INSERT INTO `sys_oper_log` VALUES (4973, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%97%AF', '127.0.0.1', '', '', '', 1, '获取的汉语字典数据为空', '2022-01-24 14:15:22'); INSERT INTO `sys_oper_log` VALUES (4974, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%97%AF', '127.0.0.1', '', '', '', 1, '获取的汉语字典数据为空', '2022-01-24 14:15:24'); INSERT INTO `sys_oper_log` VALUES (4975, '获取汉语字典', 0, 'com.xjs.apitools.controller.ApiToolsController.getChineseDictApiData()', 'GET', 1, 'admin', '', '/apitools/chinesedict/%E5%97%AF', '127.0.0.1', '', '', '', 1, '未查询到相关内容', '2022-01-24 14:17:02'); INSERT INTO `sys_oper_log` VALUES (4976, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643004576878,\"humidity\":\"80\",\"id\":1485494979219603457,\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:17:29'); INSERT INTO `sys_oper_log` VALUES (4977, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:19:39'); INSERT INTO `sys_oper_log` VALUES (4978, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 14:03:54\"}}', 0, '', '2022-01-24 14:19:40'); INSERT INTO `sys_oper_log` VALUES (4979, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E5%95%8A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"啊\",\"originContent\":\"啊\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:19:47'); INSERT INTO `sys_oper_log` VALUES (4980, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E5%95%8A', '127.0.0.1', '', '', '', 1, '未搜索到相关物品垃圾分类信息,该关键词已上报,感谢您的使用', '2022-01-24 14:19:51'); INSERT INTO `sys_oper_log` VALUES (4981, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:21:02'); INSERT INTO `sys_oper_log` VALUES (4982, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:21:26'); INSERT INTO `sys_oper_log` VALUES (4983, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E5%95%8A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"啊\",\"originContent\":\"啊\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:21:40'); INSERT INTO `sys_oper_log` VALUES (4984, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:22:16'); INSERT INTO `sys_oper_log` VALUES (4985, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/1', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入中文!!!\"}', 0, '', '2022-01-24 14:22:18'); INSERT INTO `sys_oper_log` VALUES (4986, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/1', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入中文!!!\"}', 0, '', '2022-01-24 14:22:20'); INSERT INTO `sys_oper_log` VALUES (4987, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/1', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入中文!!!\"}', 0, '', '2022-01-24 14:22:22'); INSERT INTO `sys_oper_log` VALUES (4988, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:30:10'); INSERT INTO `sys_oper_log` VALUES (4989, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:30:31'); INSERT INTO `sys_oper_log` VALUES (4990, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 14:03:54\"}}', 0, '', '2022-01-24 14:30:32'); INSERT INTO `sys_oper_log` VALUES (4991, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643004234000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:37:14'); INSERT INTO `sys_oper_log` VALUES (4992, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"南昌市\",\"cityId\":\"360100\",\"desc\":\"江西省南昌市 电信\",\"ip\":\"220.175.71.8\",\"isp\":\"电信\",\"province\":\"江西省\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:37:19'); INSERT INTO `sys_oper_log` VALUES (4993, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/1', '127.0.0.1', '', '', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:39:12'); INSERT INTO `sys_oper_log` VALUES (4994, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.1\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:40:25'); INSERT INTO `sys_oper_log` VALUES (4995, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.1\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:40:43'); INSERT INTO `sys_oper_log` VALUES (4996, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/1', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的IP地址\"}', 0, '', '2022-01-24 14:43:35'); INSERT INTO `sys_oper_log` VALUES (4997, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/1', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入正确的IP地址\"}', 0, '', '2022-01-24 14:43:37'); INSERT INTO `sys_oper_log` VALUES (4998, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.1\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:43:57'); INSERT INTO `sys_oper_log` VALUES (4999, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1643006319000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:45:24'); INSERT INTO `sys_oper_log` VALUES (5000, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.1\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:45:36'); INSERT INTO `sys_oper_log` VALUES (5001, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.1\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:46:18'); INSERT INTO `sys_oper_log` VALUES (5002, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.1\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:48:13'); INSERT INTO `sys_oper_log` VALUES (5003, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1643006319000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:48:16'); INSERT INTO `sys_oper_log` VALUES (5004, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.1\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:48:19'); INSERT INTO `sys_oper_log` VALUES (5005, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/220.175.71.8', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"南昌市\",\"cityId\":\"360100\",\"desc\":\"江西省南昌市 电信\",\"ip\":\"220.175.71.8\",\"isp\":\"电信\",\"province\":\"江西省\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:48:34'); INSERT INTO `sys_oper_log` VALUES (5006, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/220.175.71.8', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"南昌市\",\"cityId\":\"360100\",\"desc\":\"江西省南昌市 电信\",\"ip\":\"220.175.71.8\",\"isp\":\"电信\",\"province\":\"江西省\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:49:17'); INSERT INTO `sys_oper_log` VALUES (5007, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1643006319000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:49:21'); INSERT INTO `sys_oper_log` VALUES (5008, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/220.175.71.8', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"南昌市\",\"cityId\":\"360100\",\"desc\":\"江西省南昌市 电信\",\"ip\":\"220.175.71.8\",\"isp\":\"电信\",\"province\":\"江西省\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:49:22'); INSERT INTO `sys_oper_log` VALUES (5009, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1643006319000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:50:19'); INSERT INTO `sys_oper_log` VALUES (5010, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1643006319000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:51:49'); INSERT INTO `sys_oper_log` VALUES (5011, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1643006319000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:52:04'); INSERT INTO `sys_oper_log` VALUES (5012, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 14:38:39\"}}', 0, '', '2022-01-24 14:52:05'); INSERT INTO `sys_oper_log` VALUES (5013, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1643006319000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 14:52:48'); INSERT INTO `sys_oper_log` VALUES (5014, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":1,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":2,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":7,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":10,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-24 14:53:14'); INSERT INTO `sys_oper_log` VALUES (5015, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1485515969962156033', '127.0.0.1', '', '1485515969962156033', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-24 15:40:00'); INSERT INTO `sys_oper_log` VALUES (5016, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 15:33:54\"}}', 0, '', '2022-01-24 15:40:01'); INSERT INTO `sys_oper_log` VALUES (5017, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1643009634000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 15:40:02'); INSERT INTO `sys_oper_log` VALUES (5018, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 15:33:54\"}}', 0, '', '2022-01-24 15:40:04'); INSERT INTO `sys_oper_log` VALUES (5019, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1643009634000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 15:40:04'); INSERT INTO `sys_oper_log` VALUES (5020, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1485517734161915906', '127.0.0.1', '', '1485517734161915906', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-24 15:40:05'); INSERT INTO `sys_oper_log` VALUES (5021, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1643009634000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 15:40:07'); INSERT INTO `sys_oper_log` VALUES (5022, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 15:33:54\"}}', 0, '', '2022-01-24 15:40:07'); INSERT INTO `sys_oper_log` VALUES (5023, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-24 15:41:23'); INSERT INTO `sys_oper_log` VALUES (5024, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"What we do for ourselves dies with us. What we do for others, that’s beyond us.\",\"createTime\":1643010136670,\"dataId\":4099,\"date\":1618502400000,\"id\":1485518298723569666,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/f1bd7b4553dcffdf76781403e92c057b.png\",\"note\":\"我们为自己做的事,会随我们化归尘土。为他人做的事,才能超越生死。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/1c6c389151c120aca2180780ce6815e3.mp3\"}}', 0, '', '2022-01-24 15:42:16'); INSERT INTO `sys_oper_log` VALUES (5025, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"第二个步骤是『偷天换日』,魔术师会把这个平常的东西偷换成别的,你想要找出其中的秘诀,但你绝对找不到\",\"createTime\":1643010137610,\"id\":1485518302649438210,\"source\":\"顶尖对决\",\"type\":3}}', 0, '', '2022-01-24 15:42:17'); INSERT INTO `sys_oper_log` VALUES (5026, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1643010164883,\"en\":\"What is it like there?\",\"id\":1485518417053274113,\"zh\":\"那儿怎么样?\"}}', 0, '', '2022-01-24 15:42:44'); INSERT INTO `sys_oper_log` VALUES (5027, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"What is it like there?\",\"zh\":\"那儿怎么样?\"}}', 0, '', '2022-01-24 15:42:49'); INSERT INTO `sys_oper_log` VALUES (5028, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"What is it like there?\",\"zh\":\"那儿怎么样?\"}}', 0, '', '2022-01-24 15:43:06'); INSERT INTO `sys_oper_log` VALUES (5029, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"What is it like there?\",\"zh\":\"那儿怎么样?\"}}', 0, '', '2022-01-24 15:43:09'); INSERT INTO `sys_oper_log` VALUES (5030, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643015606312,\"humidity\":\"80\",\"id\":1485541240060694530,\"province\":\"江西\",\"reporttime\":1643015310000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 17:13:26'); INSERT INTO `sys_oper_log` VALUES (5031, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:13:45'); INSERT INTO `sys_oper_log` VALUES (5032, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:14:07'); INSERT INTO `sys_oper_log` VALUES (5033, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:15:05'); INSERT INTO `sys_oper_log` VALUES (5034, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:16:43'); INSERT INTO `sys_oper_log` VALUES (5035, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:16:53'); INSERT INTO `sys_oper_log` VALUES (5036, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:19:28'); INSERT INTO `sys_oper_log` VALUES (5037, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:20:32'); INSERT INTO `sys_oper_log` VALUES (5038, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:21:36'); INSERT INTO `sys_oper_log` VALUES (5039, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:23:58'); INSERT INTO `sys_oper_log` VALUES (5040, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:24:43'); INSERT INTO `sys_oper_log` VALUES (5041, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:24:54'); INSERT INTO `sys_oper_log` VALUES (5042, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:25:13'); INSERT INTO `sys_oper_log` VALUES (5043, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:25:38'); INSERT INTO `sys_oper_log` VALUES (5044, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 17:26:13'); INSERT INTO `sys_oper_log` VALUES (5045, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"ftp/4efb81ef-7335-49cb-bfbc-64b6b643001c.blob\",\"code\":200}', 0, NULL, '2022-01-24 17:27:33'); INSERT INTO `sys_oper_log` VALUES (5046, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"ftp/0a7527bb-fa8e-4a7e-9572-0af43d3588c3.blob\",\"code\":200}', 0, NULL, '2022-01-24 17:28:38'); INSERT INTO `sys_oper_log` VALUES (5047, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"ftp/31f4d36f-2a58-4544-96e0-cec2234a52ca.blob\",\"code\":200}', 0, NULL, '2022-01-24 17:29:25'); INSERT INTO `sys_oper_log` VALUES (5048, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 18:38:37\"}}', 0, '', '2022-01-24 18:55:22'); INSERT INTO `sys_oper_log` VALUES (5049, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643021722373,\"humidity\":\"84\",\"id\":1485566892661497858,\"province\":\"江西\",\"reporttime\":1643020717000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 18:55:22'); INSERT INTO `sys_oper_log` VALUES (5050, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:00:21'); INSERT INTO `sys_oper_log` VALUES (5051, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:02:31'); INSERT INTO `sys_oper_log` VALUES (5052, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:02:58'); INSERT INTO `sys_oper_log` VALUES (5053, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:06:00'); INSERT INTO `sys_oper_log` VALUES (5054, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:06:38'); INSERT INTO `sys_oper_log` VALUES (5055, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:07:13'); INSERT INTO `sys_oper_log` VALUES (5056, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:07:48'); INSERT INTO `sys_oper_log` VALUES (5057, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:08:19'); INSERT INTO `sys_oper_log` VALUES (5058, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:08:46'); INSERT INTO `sys_oper_log` VALUES (5059, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:09:26'); INSERT INTO `sys_oper_log` VALUES (5060, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:11:00'); INSERT INTO `sys_oper_log` VALUES (5061, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:11:07'); INSERT INTO `sys_oper_log` VALUES (5062, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:11:11'); INSERT INTO `sys_oper_log` VALUES (5063, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:11:34'); INSERT INTO `sys_oper_log` VALUES (5064, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:12:21'); INSERT INTO `sys_oper_log` VALUES (5065, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:17:52'); INSERT INTO `sys_oper_log` VALUES (5066, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:19:08'); INSERT INTO `sys_oper_log` VALUES (5067, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:22:45'); INSERT INTO `sys_oper_log` VALUES (5068, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:25:58'); INSERT INTO `sys_oper_log` VALUES (5069, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:26:42'); INSERT INTO `sys_oper_log` VALUES (5070, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:31:31'); INSERT INTO `sys_oper_log` VALUES (5071, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1643022522000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 19:31:45'); INSERT INTO `sys_oper_log` VALUES (5072, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"ftp/44caeef0-0938-400d-b89f-727159f90bf6.blob\",\"code\":200}', 0, NULL, '2022-01-24 19:32:07'); INSERT INTO `sys_oper_log` VALUES (5073, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:32:36'); INSERT INTO `sys_oper_log` VALUES (5074, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-24 19:34:29'); INSERT INTO `sys_oper_log` VALUES (5075, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"ftp/9b18b15f-413c-4370-a733-215dd414eadf.jpeg\",\"code\":200}', 0, NULL, '2022-01-24 19:36:23'); INSERT INTO `sys_oper_log` VALUES (5076, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"http://127.0.0.1:9300/statics/2022/01/24/572282bf-47cf-4c38-be1d-23315ea8b1bf.jpeg\",\"code\":200}', 0, NULL, '2022-01-24 19:39:53'); INSERT INTO `sys_oper_log` VALUES (5077, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1643022522000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 19:39:55'); INSERT INTO `sys_oper_log` VALUES (5078, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1643022522000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 19:39:56'); INSERT INTO `sys_oper_log` VALUES (5079, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1643022522000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 19:39:57'); INSERT INTO `sys_oper_log` VALUES (5080, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1643022522000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 19:40:13'); INSERT INTO `sys_oper_log` VALUES (5081, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1643022522000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 19:40:14'); INSERT INTO `sys_oper_log` VALUES (5082, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1643022522000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 19:40:19'); INSERT INTO `sys_oper_log` VALUES (5083, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"http://127.0.0.1:9300/statics/2022/01/24/b2af145e-6f7c-4fed-9701-1351d0207930.jpeg\",\"code\":200}', 0, NULL, '2022-01-24 19:41:57'); INSERT INTO `sys_oper_log` VALUES (5084, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:42:09'); INSERT INTO `sys_oper_log` VALUES (5085, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:50:58'); INSERT INTO `sys_oper_log` VALUES (5086, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:51:30'); INSERT INTO `sys_oper_log` VALUES (5087, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:51:31'); INSERT INTO `sys_oper_log` VALUES (5088, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:51:53'); INSERT INTO `sys_oper_log` VALUES (5089, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:51:54'); INSERT INTO `sys_oper_log` VALUES (5090, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:52:11'); INSERT INTO `sys_oper_log` VALUES (5091, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:52:12'); INSERT INTO `sys_oper_log` VALUES (5092, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:52:13'); INSERT INTO `sys_oper_log` VALUES (5093, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:52:33'); INSERT INTO `sys_oper_log` VALUES (5094, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:52:36'); INSERT INTO `sys_oper_log` VALUES (5095, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 19:57:35'); INSERT INTO `sys_oper_log` VALUES (5096, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"http://127.0.0.1:9300E:\\\\Ftp/8adbe0df-92a8-4c4a-bf29-afaa4b00e2cc.jpeg\",\"code\":200}', 0, NULL, '2022-01-24 19:57:45'); INSERT INTO `sys_oper_log` VALUES (5097, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 20:00:46'); INSERT INTO `sys_oper_log` VALUES (5098, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"http://127.0.0.1:9300/ftp/20223d0a3ddf-1f09-4156-9c10-2b32955be00c.jpeg\",\"code\":200}', 0, NULL, '2022-01-24 20:00:51'); INSERT INTO `sys_oper_log` VALUES (5099, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"http://127.0.0.1:9300/ftp/2022/976136c5-ca84-4477-ba55-bfe96dead71f.jpeg\",\"code\":200}', 0, NULL, '2022-01-24 20:01:14'); INSERT INTO `sys_oper_log` VALUES (5100, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 20:01:21'); INSERT INTO `sys_oper_log` VALUES (5101, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643024032000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-24 20:01:44'); INSERT INTO `sys_oper_log` VALUES (5102, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643026115770,\"humidity\":\"88\",\"id\":1485585319933431810,\"province\":\"江西\",\"reporttime\":1643025833000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 20:08:35'); INSERT INTO `sys_oper_log` VALUES (5103, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643026115770,\"humidity\":\"88\",\"id\":1485585319933431810,\"province\":\"江西\",\"reporttime\":1643025833000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 20:08:37'); INSERT INTO `sys_oper_log` VALUES (5104, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643026115770,\"humidity\":\"88\",\"id\":1485585319933431810,\"province\":\"江西\",\"reporttime\":1643025833000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 20:09:54'); INSERT INTO `sys_oper_log` VALUES (5105, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643026115770,\"humidity\":\"88\",\"id\":1485585319933431810,\"province\":\"江西\",\"reporttime\":1643025833000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 20:09:57'); INSERT INTO `sys_oper_log` VALUES (5106, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"http://127.0.0.1:9300/ftp/2022/9a08f6fc-7d88-46a1-9bfa-0c748f93105a.jpeg\",\"code\":200}', 0, NULL, '2022-01-24 20:10:04'); INSERT INTO `sys_oper_log` VALUES (5107, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1485585927834914817', '127.0.0.1', '', '1485585927834914817', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-24 20:13:47'); INSERT INTO `sys_oper_log` VALUES (5108, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/10.10.10.1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网IP\",\"ip\":\"10.10.10.1\",\"isp\":\"局域网IP\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-24 20:14:01'); INSERT INTO `sys_oper_log` VALUES (5109, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":21}', 0, '', '2022-01-24 20:15:03'); INSERT INTO `sys_oper_log` VALUES (5110, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"那些消逝了的岁月,仿佛隔着一块,积着灰尘的玻璃,看得到,抓不着,他一直在怀念着过去的一切,如果他能冲破,那块积着灰尘的玻璃,他会走回早已消逝的岁月\",\"createTime\":1643026569490,\"id\":1485587222922711042,\"source\":\"花样年华\",\"type\":3}}', 0, '', '2022-01-24 20:16:09'); INSERT INTO `sys_oper_log` VALUES (5111, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Nothing is more dangerous than discontinued labor.\",\"createTime\":1643026569501,\"dataId\":3540,\"date\":1570550400000,\"id\":1485587222989819906,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-09.jpg\",\"note\":\"没有什么比半途而废更危险。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-09-day.mp3\"}}', 0, '', '2022-01-24 20:16:09'); INSERT INTO `sys_oper_log` VALUES (5112, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":232,\"msg\":\"操作成功\"}', 0, '', '2022-01-24 20:18:21'); INSERT INTO `sys_oper_log` VALUES (5113, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-24 20:03:53\"}}', 0, '', '2022-01-24 20:18:26'); INSERT INTO `sys_oper_log` VALUES (5114, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643026115770,\"humidity\":\"88\",\"id\":1485585319933431810,\"province\":\"江西\",\"reporttime\":1643025833000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 20:18:26'); INSERT INTO `sys_oper_log` VALUES (5115, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1485587795852087297', '127.0.0.1', '', '1485587795852087297', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-24 20:18:34'); INSERT INTO `sys_oper_log` VALUES (5116, 'api预警', 3, 'com.xjs.controller.ApiWarningController.clearAll()', 'DELETE', 1, 'admin', '', '/apiwarning/all', '127.0.0.1', '', '', '{\"code\":200,\"data\":9727,\"msg\":\"操作成功\"}', 0, '', '2022-01-24 20:18:45'); INSERT INTO `sys_oper_log` VALUES (5117, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1643025833000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-24 20:19:32'); INSERT INTO `sys_oper_log` VALUES (5118, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643070795958,\"humidity\":\"83\",\"id\":1485772722222133250,\"province\":\"江西\",\"reporttime\":1643069041000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 08:33:16'); INSERT INTO `sys_oper_log` VALUES (5119, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"http://127.0.0.1:9300/ftp/2022/32004551-0578-43bc-be9f-227e986bb847.jpeg\",\"code\":200}', 0, NULL, '2022-01-25 08:33:49'); INSERT INTO `sys_oper_log` VALUES (5120, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The most exhausting thing in life is being insincere.\",\"dataId\":4303,\"date\":1636128000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/8337f86bd17720eb48c75162f2263679.png\",\"note\":\"生活中最使人筋疲力尽的事是弄虚作假。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2863e7a077064a06516756d49115ae86.mp3\"}}', 0, '', '2022-01-25 08:49:06'); INSERT INTO `sys_oper_log` VALUES (5121, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“浪漫”是一袭美丽的晚礼服,但你不能一天到晚都穿着它\",\"createTime\":1643071747799,\"id\":1485776714494898178,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-25 08:49:07'); INSERT INTO `sys_oper_log` VALUES (5122, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643080357438,\"humidity\":\"86\",\"id\":1485812825967554562,\"province\":\"江西\",\"reporttime\":1643080113000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 11:12:37'); INSERT INTO `sys_oper_log` VALUES (5123, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-25 11:13:07'); INSERT INTO `sys_oper_log` VALUES (5124, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643080357438,\"humidity\":\"86\",\"id\":1485812825967554562,\"province\":\"江西\",\"reporttime\":1643080113000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 11:14:01'); INSERT INTO `sys_oper_log` VALUES (5125, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-01-25 11:14:54'); INSERT INTO `sys_oper_log` VALUES (5126, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643080357438,\"humidity\":\"86\",\"id\":1485812825967554562,\"province\":\"江西\",\"reporttime\":1643080113000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 11:16:09'); INSERT INTO `sys_oper_log` VALUES (5127, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022/01/25/11:16:14-1015-blob\",\"code\":200}', 0, NULL, '2022-01-25 11:16:15'); INSERT INTO `sys_oper_log` VALUES (5128, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643080357438,\"humidity\":\"86\",\"id\":1485812825967554562,\"province\":\"江西\",\"reporttime\":1643080113000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 11:16:22'); INSERT INTO `sys_oper_log` VALUES (5129, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022/01/2022-01-25 11:20:29-6558.jpeg\",\"code\":200}', 0, NULL, '2022-01-25 11:20:31'); INSERT INTO `sys_oper_log` VALUES (5130, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643080357438,\"humidity\":\"86\",\"id\":1485812825967554562,\"province\":\"江西\",\"reporttime\":1643080113000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 11:20:38'); INSERT INTO `sys_oper_log` VALUES (5131, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643080357438,\"humidity\":\"86\",\"id\":1485812825967554562,\"province\":\"江西\",\"reporttime\":1643080113000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 11:22:06'); INSERT INTO `sys_oper_log` VALUES (5132, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643080357438,\"humidity\":\"86\",\"id\":1485812825967554562,\"province\":\"江西\",\"reporttime\":1643080113000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 11:22:08'); INSERT INTO `sys_oper_log` VALUES (5133, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643080357438,\"humidity\":\"86\",\"id\":1485812825967554562,\"province\":\"江西\",\"reporttime\":1643080113000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 11:22:14'); INSERT INTO `sys_oper_log` VALUES (5134, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1643080113000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 11:23:16'); INSERT INTO `sys_oper_log` VALUES (5135, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-01/2022-01-25 11:23:20-4267.jpeg\",\"code\":200}', 0, NULL, '2022-01-25 11:23:20'); INSERT INTO `sys_oper_log` VALUES (5136, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1643080113000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 11:24:20'); INSERT INTO `sys_oper_log` VALUES (5137, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643081632000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-01-25 11:47:41'); INSERT INTO `sys_oper_log` VALUES (5138, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"室友总说我听的曲风很奇怪我只是爱民谣喜摇滚,后来中国好声音的南山南一夜之间火了,她们说她们喜欢上了民谣却依旧说着我听歌很奇怪。\",\"createTime\":1643082464014,\"id\":1485821661587697665,\"source\":\"光\",\"type\":2}}', 0, '', '2022-01-25 11:47:44'); INSERT INTO `sys_oper_log` VALUES (5139, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Failure will never overtake me if my determination to succeed is strong enough.\",\"createTime\":1643082464023,\"dataId\":3668,\"date\":1581523200000,\"id\":1485821661587697666,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/43bb382d563d4980aa73bbd582f267a8.png\",\"note\":\"只要我成功的决心足够强,失败就永远不会打倒我。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/63190e4c1e290f09594c6a53f2628191.mp3\"}}', 0, '', '2022-01-25 11:47:44'); INSERT INTO `sys_oper_log` VALUES (5140, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1643081632000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-01-25 11:48:07'); INSERT INTO `sys_oper_log` VALUES (5141, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-25 11:33:52\"}}', 0, '', '2022-01-25 11:48:07'); INSERT INTO `sys_oper_log` VALUES (5142, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1643083459000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 12:31:06'); INSERT INTO `sys_oper_log` VALUES (5143, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-25 12:04:19\"}}', 0, '', '2022-01-25 12:31:07'); INSERT INTO `sys_oper_log` VALUES (5144, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1643083459000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 12:31:07'); INSERT INTO `sys_oper_log` VALUES (5145, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-01-25 13:56:46'); INSERT INTO `sys_oper_log` VALUES (5146, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-25 13:33:53\"}}', 0, '', '2022-01-25 13:56:49'); INSERT INTO `sys_oper_log` VALUES (5147, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-25 13:33:53\"}}', 0, '', '2022-01-25 13:56:51'); INSERT INTO `sys_oper_log` VALUES (5148, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-01-25 13:56:51'); INSERT INTO `sys_oper_log` VALUES (5149, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1643088833000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 13:56:52'); INSERT INTO `sys_oper_log` VALUES (5150, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-25 13:33:53\"}}', 0, '', '2022-01-25 13:56:52'); INSERT INTO `sys_oper_log` VALUES (5151, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1643088833000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 13:56:52'); INSERT INTO `sys_oper_log` VALUES (5152, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1643088833000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 13:56:53'); INSERT INTO `sys_oper_log` VALUES (5153, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1643088833000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 13:56:55'); INSERT INTO `sys_oper_log` VALUES (5154, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1643092721000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 14:48:26'); INSERT INTO `sys_oper_log` VALUES (5155, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Let the year ahead be the one where all your dreams come true.\",\"createTime\":1643093311094,\"dataId\":3626,\"date\":1577808000000,\"id\":1485867157534535681,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2020-01-01.jpg\",\"note\":\"让未来的一年成为你梦想成真的地方。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/318a49a5c1afb91482170afbda4e5c44.mp3\"}}', 0, '', '2022-01-25 14:48:31'); INSERT INTO `sys_oper_log` VALUES (5156, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果我拥有如同小狗一样的尾巴的话,肯定会高兴得遮掩不住地摇来摇去吧。\",\"createTime\":1643093311847,\"id\":1485867160688652290,\"source\":\"Akechi\",\"type\":5}}', 0, '', '2022-01-25 14:48:31'); INSERT INTO `sys_oper_log` VALUES (5157, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"phone\",\"orderNum\":\"1\",\"menuName\":\"API统计\",\"params\":{},\"parentId\":2062,\"isCache\":\"0\",\"path\":\"apistatistics\",\"children\":[],\"createTime\":1642755917000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2063,\"menuType\":\"C\",\"perms\":\"statistics:apistatistics:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:49:55'); INSERT INTO `sys_oper_log` VALUES (5158, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1643092721000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 14:50:53'); INSERT INTO `sys_oper_log` VALUES (5159, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1643092721000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 14:51:36'); INSERT INTO `sys_oper_log` VALUES (5160, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"phone\",\"orderNum\":\"1\",\"menuName\":\"API统计\",\"params\":{},\"parentId\":2062,\"isCache\":\"0\",\"path\":\"apistatistics\",\"component\":\"business/statistics/apistatistics/index\",\"children\":[],\"createTime\":1642755917000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2063,\"menuType\":\"C\",\"perms\":\"statistics:apistatistics:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:52:08'); INSERT INTO `sys_oper_log` VALUES (5161, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"MM图片\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:beautypicture\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:53:02'); INSERT INTO `sys_oper_log` VALUES (5162, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"2\",\"menuName\":\"历史今天\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:historytoday\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:53:39'); INSERT INTO `sys_oper_log` VALUES (5163, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"3\",\"menuName\":\"身份证查询\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:idcardquery\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:54:06'); INSERT INTO `sys_oper_log` VALUES (5164, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"3\",\"menuName\":\"手机归属地\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:mobilebelong\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:54:38'); INSERT INTO `sys_oper_log` VALUES (5165, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"3\",\"menuName\":\"实时天气\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:nowweather\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:55:01'); INSERT INTO `sys_oper_log` VALUES (5166, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"4\",\"menuName\":\"预报天气\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:forecastweather\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:55:21'); INSERT INTO `sys_oper_log` VALUES (5167, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"3\",\"menuName\":\"垃圾分类\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:garbagesorting\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:55:40'); INSERT INTO `sys_oper_log` VALUES (5168, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"5\",\"menuName\":\"简繁转换\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:simplecomplex\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:55:58'); INSERT INTO `sys_oper_log` VALUES (5169, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"4\",\"menuName\":\"汉语字典\",\"params\":{},\"parentId\":2058,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:chinesedict\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:56:22'); INSERT INTO `sys_oper_log` VALUES (5170, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"#\",\"orderNum\":\"4\",\"menuName\":\"汉语字典\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"path\":\"\",\"children\":[],\"createTime\":1643093782000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2072,\"menuType\":\"F\",\"perms\":\"open:apitools:chinesedict\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:56:38'); INSERT INTO `sys_oper_log` VALUES (5171, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"4\",\"menuName\":\"IP信息\",\"params\":{},\"parentId\":2059,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"open:apitools:ipinfo\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 14:56:59'); INSERT INTO `sys_oper_log` VALUES (5172, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1643092721000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 14:57:20'); INSERT INTO `sys_oper_log` VALUES (5173, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1643092721000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:02:53'); INSERT INTO `sys_oper_log` VALUES (5174, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1643092721000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:04:02'); INSERT INTO `sys_oper_log` VALUES (5175, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1643092721000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:04:15'); INSERT INTO `sys_oper_log` VALUES (5176, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1643092721000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:09:44'); INSERT INTO `sys_oper_log` VALUES (5177, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1643092721000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:10:18'); INSERT INTO `sys_oper_log` VALUES (5178, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:22:14'); INSERT INTO `sys_oper_log` VALUES (5179, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:23:18'); INSERT INTO `sys_oper_log` VALUES (5180, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:24:12'); INSERT INTO `sys_oper_log` VALUES (5181, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:24:27'); INSERT INTO `sys_oper_log` VALUES (5182, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:25:03'); INSERT INTO `sys_oper_log` VALUES (5183, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:25:42'); INSERT INTO `sys_oper_log` VALUES (5184, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:26:23'); INSERT INTO `sys_oper_log` VALUES (5185, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:26:48'); INSERT INTO `sys_oper_log` VALUES (5186, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:28:15'); INSERT INTO `sys_oper_log` VALUES (5187, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:29:30'); INSERT INTO `sys_oper_log` VALUES (5188, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:30:35'); INSERT INTO `sys_oper_log` VALUES (5189, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:31:16'); INSERT INTO `sys_oper_log` VALUES (5190, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643094513000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:31:32'); INSERT INTO `sys_oper_log` VALUES (5191, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643096047345,\"humidity\":\"91\",\"id\":1485878634173603842,\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:34:07'); INSERT INTO `sys_oper_log` VALUES (5192, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643096047345,\"humidity\":\"91\",\"id\":1485878634173603842,\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:34:35'); INSERT INTO `sys_oper_log` VALUES (5193, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643096047345,\"humidity\":\"91\",\"id\":1485878634173603842,\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:34:39'); INSERT INTO `sys_oper_log` VALUES (5194, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643096047345,\"humidity\":\"91\",\"id\":1485878634173603842,\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:35:49'); INSERT INTO `sys_oper_log` VALUES (5195, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643096047345,\"humidity\":\"91\",\"id\":1485878634173603842,\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:37:28'); INSERT INTO `sys_oper_log` VALUES (5196, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643096047345,\"humidity\":\"91\",\"id\":1485878634173603842,\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:39:33'); INSERT INTO `sys_oper_log` VALUES (5197, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643096047345,\"humidity\":\"91\",\"id\":1485878634173603842,\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:42:13'); INSERT INTO `sys_oper_log` VALUES (5198, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:45:11'); INSERT INTO `sys_oper_log` VALUES (5199, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:49:55'); INSERT INTO `sys_oper_log` VALUES (5200, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:50:11'); INSERT INTO `sys_oper_log` VALUES (5201, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:50:20'); INSERT INTO `sys_oper_log` VALUES (5202, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:51:56'); INSERT INTO `sys_oper_log` VALUES (5203, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:53:20'); INSERT INTO `sys_oper_log` VALUES (5204, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:59:08'); INSERT INTO `sys_oper_log` VALUES (5205, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:59:45'); INSERT INTO `sys_oper_log` VALUES (5206, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 15:59:52'); INSERT INTO `sys_oper_log` VALUES (5207, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643096034000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:03:32'); INSERT INTO `sys_oper_log` VALUES (5208, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:20:20'); INSERT INTO `sys_oper_log` VALUES (5209, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:21:08'); INSERT INTO `sys_oper_log` VALUES (5210, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:21:23'); INSERT INTO `sys_oper_log` VALUES (5211, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:22:27'); INSERT INTO `sys_oper_log` VALUES (5212, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:24:22'); INSERT INTO `sys_oper_log` VALUES (5213, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:24:26'); INSERT INTO `sys_oper_log` VALUES (5214, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:25:56'); INSERT INTO `sys_oper_log` VALUES (5215, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:26:12'); INSERT INTO `sys_oper_log` VALUES (5216, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:28:20'); INSERT INTO `sys_oper_log` VALUES (5217, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:28:30'); INSERT INTO `sys_oper_log` VALUES (5218, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:29:00'); INSERT INTO `sys_oper_log` VALUES (5219, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:29:17'); INSERT INTO `sys_oper_log` VALUES (5220, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:29:30'); INSERT INTO `sys_oper_log` VALUES (5221, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:30:56'); INSERT INTO `sys_oper_log` VALUES (5222, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:31:06'); INSERT INTO `sys_oper_log` VALUES (5223, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:31:27'); INSERT INTO `sys_oper_log` VALUES (5224, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:32:11'); INSERT INTO `sys_oper_log` VALUES (5225, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:32:14'); INSERT INTO `sys_oper_log` VALUES (5226, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:32:16'); INSERT INTO `sys_oper_log` VALUES (5227, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:32:53'); INSERT INTO `sys_oper_log` VALUES (5228, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月25日\",\"holidayName\":\"小年\",\"lunarDate\":\"2021年12月23日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 冬月二十\"},{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":1,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":6,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":7,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":9,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":9,\"returnDate\":\"辛丑牛年 腊月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-25 16:36:12'); INSERT INTO `sys_oper_log` VALUES (5229, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97hf1xj31c00u0q8b.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb3zt19j31c00u0dkx.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51egvxj31c00u0td6.jpg\"},{\"imageFileLength\":\"107KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52h3f5j31c00u0ju3.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4h9aefj31c00u00xp.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utaqvhbwj31c00u077r.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fkgb2j31c00u0jvf.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut5g6j3ij31c00u042b.jpg\"},{\"imageFileLength\":\"203KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb0kxphj31hc0u0afd.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfdlb9oj31c00u0aer.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-25 16:36:13'); INSERT INTO `sys_oper_log` VALUES (5230, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:36:37'); INSERT INTO `sys_oper_log` VALUES (5231, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人间万物正在日益完善。如瑞典火柴,小歌剧,火车头,代普莱牌葡萄酒,人与人的关系等。\",\"createTime\":1643099836672,\"id\":1485894527775580162,\"source\":\"契诃夫\",\"type\":4}}', 0, '', '2022-01-25 16:37:16'); INSERT INTO `sys_oper_log` VALUES (5232, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You can nearly always enjoy something, if you make up your mind firmly that you will. \",\"dataId\":4000,\"date\":1609948800000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/867184af0b0f88167767411f557bc5c6.png\",\"note\":\"只要你下决心去做某件事,总能从中找到乐趣。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0307d58ac88ae3374f769c254142fbd7.mp3\"}}', 0, '', '2022-01-25 16:37:16'); INSERT INTO `sys_oper_log` VALUES (5233, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"B榜终于磨进前十啦!!!! 后知后觉美国人[大哭]\",\"createTime\":1643099838421,\"id\":1485894535144972290,\"source\":\"Sweet but Psycho\",\"type\":2}}', 0, '', '2022-01-25 16:37:18'); INSERT INTO `sys_oper_log` VALUES (5234, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1643099843085,\"en\":\"Easy and success are fellows.\",\"id\":1485894554707206146,\"zh\":\"从容与成功是伙伴。\"}}', 0, '', '2022-01-25 16:37:23'); INSERT INTO `sys_oper_log` VALUES (5235, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Easy and success are fellows.\",\"zh\":\"从容与成功是伙伴。\"}}', 0, '', '2022-01-25 16:37:24'); INSERT INTO `sys_oper_log` VALUES (5236, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Easy and success are fellows.\",\"zh\":\"从容与成功是伙伴。\"}}', 0, '', '2022-01-25 16:37:26'); INSERT INTO `sys_oper_log` VALUES (5237, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:37:29'); INSERT INTO `sys_oper_log` VALUES (5238, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"size\",\"orderNum\":\"2\",\"menuName\":\"天气统计\",\"params\":{},\"parentId\":2062,\"isCache\":\"0\",\"path\":\"weather\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 16:39:00'); INSERT INTO `sys_oper_log` VALUES (5239, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"size\",\"orderNum\":\"2\",\"menuName\":\"天气统计\",\"params\":{},\"parentId\":2062,\"isCache\":\"0\",\"path\":\"weather\",\"component\":\"business/statistics/weatherstatistics/index\",\"children\":[],\"createTime\":1643099940000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2074,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 16:39:23'); INSERT INTO `sys_oper_log` VALUES (5240, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:40:20'); INSERT INTO `sys_oper_log` VALUES (5241, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"size\",\"orderNum\":\"2\",\"menuName\":\"天气统计\",\"params\":{},\"parentId\":2062,\"isCache\":\"0\",\"path\":\"weather\",\"component\":\"business/statistics/weatherstatistics/index\",\"children\":[],\"createTime\":1643099940000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2074,\"menuType\":\"C\",\"perms\":\"statistics:weatherstatistics:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 16:40:49'); INSERT INTO `sys_oper_log` VALUES (5242, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:40:52'); INSERT INTO `sys_oper_log` VALUES (5243, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643097844000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 16:40:54'); INSERT INTO `sys_oper_log` VALUES (5244, '定时任务', 1, 'com.ruoyi.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"API预警每天调用次数初始化任务\",\"concurrent\":\"1\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"10 0 0 * * ? \",\"jobId\":102,\"createBy\":\"admin\",\"nextValidTime\":1643126410000,\"invokeTarget\":\"x\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 16:58:17'); INSERT INTO `sys_oper_log` VALUES (5245, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"API预警每天调用次数初始化任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"10 0 0 * * ? \",\"jobId\":102,\"createBy\":\"admin\",\"nextValidTime\":1643126410000,\"createTime\":1643101097000,\"updateBy\":\"admin\",\"invokeTarget\":\"WarningTask.handleRecordDate\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 16:58:50'); INSERT INTO `sys_oper_log` VALUES (5246, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 16:59:02'); INSERT INTO `sys_oper_log` VALUES (5247, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 16:59:59'); INSERT INTO `sys_oper_log` VALUES (5248, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 17:00:57'); INSERT INTO `sys_oper_log` VALUES (5249, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 17:10:16'); INSERT INTO `sys_oper_log` VALUES (5250, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 17:12:33'); INSERT INTO `sys_oper_log` VALUES (5251, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1643101709000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 17:21:42'); INSERT INTO `sys_oper_log` VALUES (5252, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1643101709000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 17:22:11'); INSERT INTO `sys_oper_log` VALUES (5253, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 17:22:34'); INSERT INTO `sys_oper_log` VALUES (5254, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 17:24:12'); INSERT INTO `sys_oper_log` VALUES (5255, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1643101709000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 17:25:37'); INSERT INTO `sys_oper_log` VALUES (5256, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 17:25:43'); INSERT INTO `sys_oper_log` VALUES (5257, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 17:27:15'); INSERT INTO `sys_oper_log` VALUES (5258, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643104506707,\"humidity\":\"94\",\"id\":1485914115337248769,\"province\":\"江西\",\"reporttime\":1643103244000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 17:55:06'); INSERT INTO `sys_oper_log` VALUES (5259, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 17:55:11'); INSERT INTO `sys_oper_log` VALUES (5260, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643104506707,\"humidity\":\"94\",\"id\":1485914115337248769,\"province\":\"江西\",\"reporttime\":1643103244000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 17:57:34'); INSERT INTO `sys_oper_log` VALUES (5261, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 17:59:57'); INSERT INTO `sys_oper_log` VALUES (5262, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643104506707,\"humidity\":\"94\",\"id\":1485914115337248769,\"province\":\"江西\",\"reporttime\":1643103244000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 18:01:52'); INSERT INTO `sys_oper_log` VALUES (5263, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:02:59'); INSERT INTO `sys_oper_log` VALUES (5264, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:04:43'); INSERT INTO `sys_oper_log` VALUES (5265, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:06:02'); INSERT INTO `sys_oper_log` VALUES (5266, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:08:02'); INSERT INTO `sys_oper_log` VALUES (5267, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643105420089,\"humidity\":\"94\",\"id\":1485917946322247681,\"province\":\"江西\",\"reporttime\":1643105041000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 18:10:20'); INSERT INTO `sys_oper_log` VALUES (5268, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:12:04'); INSERT INTO `sys_oper_log` VALUES (5269, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:13:37'); INSERT INTO `sys_oper_log` VALUES (5270, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643105420089,\"humidity\":\"94\",\"id\":1485917946322247681,\"province\":\"江西\",\"reporttime\":1643105041000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 18:13:38'); INSERT INTO `sys_oper_log` VALUES (5271, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-25 18:04:01\"}}', 0, '', '2022-01-25 18:13:38'); INSERT INTO `sys_oper_log` VALUES (5272, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:14:29'); INSERT INTO `sys_oper_log` VALUES (5273, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:16:43'); INSERT INTO `sys_oper_log` VALUES (5274, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:18:27'); INSERT INTO `sys_oper_log` VALUES (5275, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:20:30'); INSERT INTO `sys_oper_log` VALUES (5276, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:22:48'); INSERT INTO `sys_oper_log` VALUES (5277, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:26:05'); INSERT INTO `sys_oper_log` VALUES (5278, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643105041000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 18:27:24'); INSERT INTO `sys_oper_log` VALUES (5279, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643105041000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 18:27:38'); INSERT INTO `sys_oper_log` VALUES (5280, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643105041000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 18:28:42'); INSERT INTO `sys_oper_log` VALUES (5281, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:28:56'); INSERT INTO `sys_oper_log` VALUES (5282, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:31:34'); INSERT INTO `sys_oper_log` VALUES (5283, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:39:56'); INSERT INTO `sys_oper_log` VALUES (5284, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 18:40:30'); INSERT INTO `sys_oper_log` VALUES (5285, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:10:23'); INSERT INTO `sys_oper_log` VALUES (5286, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:11:31'); INSERT INTO `sys_oper_log` VALUES (5287, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:14:13'); INSERT INTO `sys_oper_log` VALUES (5288, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:17:09'); INSERT INTO `sys_oper_log` VALUES (5289, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:21:38'); INSERT INTO `sys_oper_log` VALUES (5290, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:25:21'); INSERT INTO `sys_oper_log` VALUES (5291, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"昨天在静吧 碰到了前任 也恰巧听到这首歌 他喝酒了 大声唱了几句 我看着他 然后走出静吧 拿出手机发了个信息 见个面吧 嗯 我们聊了很多 牵手 拥抱 从分手第一次见 问他之前为什么不见 他说怕见面控制不了和好 其实……我想说 一直心里有你 哪怕不在一起 。\",\"createTime\":1643110032605,\"id\":1485937292645994497,\"source\":\"可不可以\",\"type\":2}}', 0, '', '2022-01-25 19:27:12'); INSERT INTO `sys_oper_log` VALUES (5292, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Where did the time go?\",\"dataId\":4358,\"date\":1640880000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/8b0fca812b4998553b5ac72dcf33b2d9.png\",\"note\":\"时间都到哪去了?\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/290c48da9e6c9e605068b8921cf1c807.mp3\"}}', 0, '', '2022-01-25 19:27:12'); INSERT INTO `sys_oper_log` VALUES (5293, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"余生那么长,忠于自己活得还像自己。\",\"createTime\":1643110047685,\"id\":1485937355891904514,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-25 19:27:27'); INSERT INTO `sys_oper_log` VALUES (5294, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这么多年我一直以为是我赢了,其实不是,我一生最美好的时光没有和自己最爱的人在一起。\",\"createTime\":1643110135548,\"id\":1485937724420132865,\"source\":\"东邪西毒\",\"type\":3}}', 0, '', '2022-01-25 19:28:55'); INSERT INTO `sys_oper_log` VALUES (5295, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果不是真的喜欢 谁又愿意当舔狗呢[心碎]\",\"createTime\":1643110195776,\"id\":1485937977034674178,\"source\":\"有名无份\",\"type\":2}}', 0, '', '2022-01-25 19:29:55'); INSERT INTO `sys_oper_log` VALUES (5296, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"For what it\'s worth, it\'s never too late.\",\"createTime\":1643110195959,\"dataId\":3925,\"date\":1603468800000,\"id\":1485937977785454594,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/bc9e42ef075bb7c3d612919c2d816bdc.png\",\"note\":\"只要是有意义的事,再晚去做都是有意义的。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/dabd9eda30846ae5113c7a796a73ffff.mp3\"}}', 0, '', '2022-01-25 19:29:55'); INSERT INTO `sys_oper_log` VALUES (5297, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:30:02'); INSERT INTO `sys_oper_log` VALUES (5298, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:31:25'); INSERT INTO `sys_oper_log` VALUES (5299, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:39:05'); INSERT INTO `sys_oper_log` VALUES (5300, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643110435000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 19:43:23'); INSERT INTO `sys_oper_log` VALUES (5301, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:43:30'); INSERT INTO `sys_oper_log` VALUES (5302, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案RPC调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/10 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1643111400000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:45:08'); INSERT INTO `sys_oper_log` VALUES (5303, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 19:47:16'); INSERT INTO `sys_oper_log` VALUES (5304, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"选择生活,选择工作,选择职业,选择家庭。选择一个他妈的大电视。选择洗衣机,汽车,激光唱机,自动开罐机,选择健康,选择卡路里,低糖。选择固定利率房贷。选择起点,选择朋友,选择运动服和皮箱,选择一套他妈的三件式西装...选择DIY,在星期天早上,他妈的搞不清楚自己是谁。选择在沙发上看无聊透顶的节目,往口里塞垃圾食物。选择腐朽而死,只剩下由你精子造出取代你的自私小\",\"createTime\":1643111483444,\"id\":1485943377872171010,\"source\":\"猜火车(Trainspotting)\",\"type\":3}}', 0, '', '2022-01-25 19:51:23'); INSERT INTO `sys_oper_log` VALUES (5305, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It\'s not so important who starts the game,but who finishes it.\",\"createTime\":1643111483450,\"dataId\":3691,\"date\":1583251200000,\"id\":1485943377935085570,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/f35e4367ebfe485601c54af96e3aac75.png\",\"note\":\"谁开局并不重要,重要的是谁完成了比赛。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f1ffdc4a3b31c8b533acca7f9f2970ce.mp3\"}}', 0, '', '2022-01-25 19:51:23'); INSERT INTO `sys_oper_log` VALUES (5306, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真理比太阳还亮,比箭还直。\",\"createTime\":1643111496307,\"id\":1485943431806726146,\"source\":\"网络收集\",\"type\":4}}', 0, '', '2022-01-25 19:51:36'); INSERT INTO `sys_oper_log` VALUES (5307, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.5\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-25 19:57:01'); INSERT INTO `sys_oper_log` VALUES (5308, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.5\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-25 19:58:57'); INSERT INTO `sys_oper_log` VALUES (5309, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.5\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-25 20:02:19'); INSERT INTO `sys_oper_log` VALUES (5310, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.5\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-25 20:02:34'); INSERT INTO `sys_oper_log` VALUES (5311, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.5\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-25 20:03:04'); INSERT INTO `sys_oper_log` VALUES (5312, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.5\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-25 20:03:33'); INSERT INTO `sys_oper_log` VALUES (5313, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.5\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-25 20:03:59'); INSERT INTO `sys_oper_log` VALUES (5314, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.5\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-25 20:04:04'); INSERT INTO `sys_oper_log` VALUES (5315, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-25 20:05:10'); INSERT INTO `sys_oper_log` VALUES (5316, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643112426121,\"humidity\":\"95\",\"id\":1485947331754471426,\"province\":\"江西\",\"reporttime\":1643112239000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 20:07:06'); INSERT INTO `sys_oper_log` VALUES (5317, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643112426121,\"humidity\":\"95\",\"id\":1485947331754471426,\"province\":\"江西\",\"reporttime\":1643112239000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-25 20:07:50'); INSERT INTO `sys_oper_log` VALUES (5318, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-25\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-25 20:03:59\"}}', 0, '', '2022-01-25 20:07:50'); INSERT INTO `sys_oper_log` VALUES (5319, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643157404675,\"humidity\":\"97\",\"id\":1486135985510232066,\"province\":\"江西\",\"reporttime\":1643155432000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 08:36:44'); INSERT INTO `sys_oper_log` VALUES (5320, '定时任务', 1, 'com.ruoyi.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"热搜榜定时任务\",\"concurrent\":\"1\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/11 * * * ? \",\"jobId\":103,\"createBy\":\"admin\",\"nextValidTime\":1643158800000,\"invokeTarget\":\"TopSearchTask.getTopSearch()\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-26 08:57:51'); INSERT INTO `sys_oper_log` VALUES (5321, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"热搜榜定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/11 * * * ? \",\"jobId\":103,\"createBy\":\"admin\",\"nextValidTime\":1643158800000,\"createTime\":1643158671000,\"updateBy\":\"admin\",\"invokeTarget\":\"TopSearchTask.getTopSearch\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-26 08:57:58'); INSERT INTO `sys_oper_log` VALUES (5322, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":103,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-26 08:58:01'); INSERT INTO `sys_oper_log` VALUES (5323, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":103,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-26 09:01:54'); INSERT INTO `sys_oper_log` VALUES (5324, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"热搜榜定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/20 * 1/1 * ?\",\"jobId\":103,\"createBy\":\"admin\",\"nextValidTime\":1643160000000,\"createTime\":1643158671000,\"updateBy\":\"admin\",\"invokeTarget\":\"TopSearchTask.getTopSearch\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-26 09:06:53'); INSERT INTO `sys_oper_log` VALUES (5325, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643157522000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:08:09'); INSERT INTO `sys_oper_log` VALUES (5326, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"2\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 08:38:42\"}}', 0, '', '2022-01-26 09:08:09'); INSERT INTO `sys_oper_log` VALUES (5327, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/10 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1643160600000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-26 09:22:07'); INSERT INTO `sys_oper_log` VALUES (5328, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"热搜榜定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/10 * * * ?\",\"jobId\":103,\"createBy\":\"admin\",\"nextValidTime\":1643160600000,\"createTime\":1643158671000,\"updateBy\":\"admin\",\"invokeTarget\":\"TopSearchTask.getTopSearch\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-26 09:22:27'); INSERT INTO `sys_oper_log` VALUES (5329, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643159331000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:27:20'); INSERT INTO `sys_oper_log` VALUES (5330, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643159331000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:27:21'); INSERT INTO `sys_oper_log` VALUES (5331, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643159331000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:27:22'); INSERT INTO `sys_oper_log` VALUES (5332, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643159331000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:27:28'); INSERT INTO `sys_oper_log` VALUES (5333, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643159331000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:28:32'); INSERT INTO `sys_oper_log` VALUES (5334, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643159331000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:29:34'); INSERT INTO `sys_oper_log` VALUES (5335, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643161042497,\"humidity\":\"96\",\"id\":1486151243599577089,\"province\":\"江西\",\"reporttime\":1643160832000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:37:22'); INSERT INTO `sys_oper_log` VALUES (5336, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 09:33:52\"}}', 0, '', '2022-01-26 09:37:22'); INSERT INTO `sys_oper_log` VALUES (5337, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 09:33:52\"}}', 0, '', '2022-01-26 09:37:35'); INSERT INTO `sys_oper_log` VALUES (5338, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643161042497,\"humidity\":\"96\",\"id\":1486151243599577089,\"province\":\"江西\",\"reporttime\":1643160832000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:37:36'); INSERT INTO `sys_oper_log` VALUES (5339, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 09:33:52\"}}', 0, '', '2022-01-26 09:37:39'); INSERT INTO `sys_oper_log` VALUES (5340, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643161042497,\"humidity\":\"96\",\"id\":1486151243599577089,\"province\":\"江西\",\"reporttime\":1643160832000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:37:39'); INSERT INTO `sys_oper_log` VALUES (5341, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 09:33:52\"}}', 0, '', '2022-01-26 09:42:21'); INSERT INTO `sys_oper_log` VALUES (5342, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643161042497,\"humidity\":\"96\",\"id\":1486151243599577089,\"province\":\"江西\",\"reporttime\":1643160832000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:42:21'); INSERT INTO `sys_oper_log` VALUES (5343, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"201KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us93mjojj31c00u079s.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8zpl50j31c00u0wj2.jpg\"},{\"imageFileLength\":\"183KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8a82thj31c00u00xu.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ural2vxij31c00u0tdq.jpg\"},{\"imageFileLength\":\"202KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urairdt2j31c00u044e.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq58w3m4j31c00u0440.jpg\"},{\"imageFileLength\":\"207KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp4vlhij31c00u0k15.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut4ncue0j31hc0u0tbs.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut86vpjaj31c00u0juj.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf4bzk1j31c00u0q7h.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 09:42:27'); INSERT INTO `sys_oper_log` VALUES (5344, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2015年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1211/20151211102933928.jpg\",\"title\":\"国家一级演员、表演艺术家梁音在北京去世\",\"year\":\"2015\"},{\"date\":\"2009年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1210/20151210041137600.jpg\",\"title\":\"冰岛总理盖尔·哈尔德宣布辞职\",\"year\":\"2009\"},{\"date\":\"2008年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201001/23/0702819548.jpg\",\"title\":\"中国著名外交家章含之病逝,终年73岁\",\"year\":\"2008\"},{\"date\":\"2003年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"台湾客机首次合法在中国大陆降落\",\"year\":\"2003\"},{\"date\":\"2001年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"印度遭遇50年来最大地震死亡两万多人\",\"year\":\"2001\"},{\"date\":\"2000年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"运载火箭“长征三号甲”将“中星—22号”卫星发射升空\",\"year\":\"2000\"},{\"date\":\"1999年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/26/3618115947.jpg\",\"title\":\"约旦阿卜杜拉王储继承王位\",\"year\":\"1999\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 09:42:30'); INSERT INTO `sys_oper_log` VALUES (5345, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":5,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":8,\"returnDate\":\"辛丑牛年 腊月初二\"},{\"date\":\"2022年02月07日\",\"holidayName\":\"国际声援南非日\",\"lunarDate\":\"2022年01月07日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月07日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 09:42:38'); INSERT INTO `sys_oper_log` VALUES (5346, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E5%90%96', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"吖\",\"originContent\":\"吖\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-26 09:42:59'); INSERT INTO `sys_oper_log` VALUES (5347, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '', 1, '获取的实时天气数据为空', '2022-01-26 09:43:11'); INSERT INTO `sys_oper_log` VALUES (5348, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"humidity\":\"64%\",\"reporttime\":1643160753000,\"temp\":\"5℃\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-26 09:43:13'); INSERT INTO `sys_oper_log` VALUES (5349, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"humidity\":\"64%\",\"reporttime\":1643160753000,\"temp\":\"5℃\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-26 09:43:19'); INSERT INTO `sys_oper_log` VALUES (5350, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%8D%97%E4%BA%AC', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"江苏省 南京市\",\"cityCode\":\"320100\",\"forecasts\":[{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"5℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"1℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"5℃\",\"dayweather\":\"中雨\",\"nighttemp\":\"0℃\",\"nightweather\":\"雨夹雪\"},{\"date\":\"2022-01-28\",\"dayOfWeek\":\"周五\",\"daytemp\":\"2℃\",\"dayweather\":\"暴雪\",\"nighttemp\":\"0℃\",\"nightweather\":\"小雪\"},{\"date\":\"2022-01-29\",\"dayOfWeek\":\"周六\",\"daytemp\":\"1℃\",\"dayweather\":\"小雪\",\"nighttemp\":\"-1℃\",\"nightweather\":\"小雪\"}],\"reportTime\":\"2022-01-26 09:32:33\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-26 09:43:24'); INSERT INTO `sys_oper_log` VALUES (5351, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 09:33:52\"}}', 0, '', '2022-01-26 09:44:08'); INSERT INTO `sys_oper_log` VALUES (5352, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643161042497,\"humidity\":\"96\",\"id\":1486151243599577089,\"province\":\"江西\",\"reporttime\":1643160832000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 09:44:08'); INSERT INTO `sys_oper_log` VALUES (5353, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643164587592,\"humidity\":\"96\",\"id\":1486166112822542338,\"province\":\"江西\",\"reporttime\":1643162630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:36:27'); INSERT INTO `sys_oper_log` VALUES (5354, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643164587592,\"humidity\":\"96\",\"id\":1486166112822542338,\"province\":\"江西\",\"reporttime\":1643162630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:36:31'); INSERT INTO `sys_oper_log` VALUES (5355, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643164587592,\"humidity\":\"96\",\"id\":1486166112822542338,\"province\":\"江西\",\"reporttime\":1643162630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:41:22'); INSERT INTO `sys_oper_log` VALUES (5356, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643164587592,\"humidity\":\"96\",\"id\":1486166112822542338,\"province\":\"江西\",\"reporttime\":1643162630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:42:19'); INSERT INTO `sys_oper_log` VALUES (5357, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643164587592,\"humidity\":\"96\",\"id\":1486166112822542338,\"province\":\"江西\",\"reporttime\":1643162630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:42:57'); INSERT INTO `sys_oper_log` VALUES (5358, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643164587592,\"humidity\":\"96\",\"id\":1486166112822542338,\"province\":\"江西\",\"reporttime\":1643162630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:43:40'); INSERT INTO `sys_oper_log` VALUES (5359, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643164587592,\"humidity\":\"96\",\"id\":1486166112822542338,\"province\":\"江西\",\"reporttime\":1643162630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:44:06'); INSERT INTO `sys_oper_log` VALUES (5360, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643164587592,\"humidity\":\"96\",\"id\":1486166112822542338,\"province\":\"江西\",\"reporttime\":1643162630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:45:12'); INSERT INTO `sys_oper_log` VALUES (5361, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643164728000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:48:42'); INSERT INTO `sys_oper_log` VALUES (5362, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643164728000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:49:55'); INSERT INTO `sys_oper_log` VALUES (5363, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643164728000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:52:13'); INSERT INTO `sys_oper_log` VALUES (5364, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643164728000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 10:52:31'); INSERT INTO `sys_oper_log` VALUES (5365, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643164728000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:01:23'); INSERT INTO `sys_oper_log` VALUES (5366, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643164728000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:02:49'); INSERT INTO `sys_oper_log` VALUES (5367, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643164728000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:03:19'); INSERT INTO `sys_oper_log` VALUES (5368, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643164728000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:03:47'); INSERT INTO `sys_oper_log` VALUES (5369, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643164728000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:04:35'); INSERT INTO `sys_oper_log` VALUES (5370, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643164728000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:10:29'); INSERT INTO `sys_oper_log` VALUES (5371, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643166698263,\"humidity\":\"96\",\"id\":1486174965618360322,\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:11:38'); INSERT INTO `sys_oper_log` VALUES (5372, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643166698263,\"humidity\":\"96\",\"id\":1486174965618360322,\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:16:00'); INSERT INTO `sys_oper_log` VALUES (5373, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:23:54'); INSERT INTO `sys_oper_log` VALUES (5374, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:24:30'); INSERT INTO `sys_oper_log` VALUES (5375, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:24:38'); INSERT INTO `sys_oper_log` VALUES (5376, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:24:46'); INSERT INTO `sys_oper_log` VALUES (5377, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:24:53'); INSERT INTO `sys_oper_log` VALUES (5378, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:25:01'); INSERT INTO `sys_oper_log` VALUES (5379, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:26:17'); INSERT INTO `sys_oper_log` VALUES (5380, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:28:07'); INSERT INTO `sys_oper_log` VALUES (5381, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643166512000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:29:16'); INSERT INTO `sys_oper_log` VALUES (5382, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643168034000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:44:39'); INSERT INTO `sys_oper_log` VALUES (5383, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 11:33:54\"}}', 0, '', '2022-01-26 11:44:39'); INSERT INTO `sys_oper_log` VALUES (5384, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643168034000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 11:51:05'); INSERT INTO `sys_oper_log` VALUES (5385, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"An aim in life is the only fortune worth finding.\",\"dataId\":4935,\"date\":1596643200000,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/f58a058d6a91c3a9cd8f80adaf68cd6e.3b89602f0ad9b149645c13975d49e12e.jpeg\",\"note\":\"生活的目标,是唯一值得我们去寻找的财富。\",\"source\":\"Robert Louis Stevenson\",\"tts\":\"\"}}', 0, '', '2022-01-26 11:54:36'); INSERT INTO `sys_oper_log` VALUES (5386, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你是不是曾几何时觉得空虚寂寞觉得冷啊....\",\"createTime\":1643169277162,\"id\":1486185782329917441,\"source\":\"齐天大圣东游记\",\"type\":3}}', 0, '', '2022-01-26 11:54:37'); INSERT INTO `sys_oper_log` VALUES (5387, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"将来\",\"top\":2,\"createTime\":1643169292890,\"englishWord\":\"future\",\"isCollect\":1,\"id\":1486185848293789698,\"sort\":0,\"content\":\"future\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-26 11:54:52'); INSERT INTO `sys_oper_log` VALUES (5388, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1643169297723,\"en\":\"Delays are dangerous.\",\"id\":1486185868543836162,\"zh\":\"因循出危险.\"}}', 0, '', '2022-01-26 11:54:57'); INSERT INTO `sys_oper_log` VALUES (5389, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"97\",\"province\":\"江西\",\"reporttime\":1643173711000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 13:23:43'); INSERT INTO `sys_oper_log` VALUES (5390, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"97\",\"province\":\"江西\",\"reporttime\":1643173711000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 13:23:45'); INSERT INTO `sys_oper_log` VALUES (5391, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 13:08:32\"}}', 0, '', '2022-01-26 13:23:46'); INSERT INTO `sys_oper_log` VALUES (5392, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 13:08:32\"}}', 0, '', '2022-01-26 13:25:18'); INSERT INTO `sys_oper_log` VALUES (5393, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"97\",\"province\":\"江西\",\"reporttime\":1643173711000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 13:25:18'); INSERT INTO `sys_oper_log` VALUES (5394, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643175642030,\"humidity\":\"96\",\"id\":1486212478521290755,\"province\":\"江西\",\"reporttime\":1643175229000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 13:40:42'); INSERT INTO `sys_oper_log` VALUES (5395, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643175642030,\"humidity\":\"96\",\"id\":1486212478521290754,\"province\":\"江西\",\"reporttime\":1643175229000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 13:40:42'); INSERT INTO `sys_oper_log` VALUES (5396, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643175642030,\"humidity\":\"96\",\"id\":1486212478521290755,\"province\":\"江西\",\"reporttime\":1643175229000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 13:41:31'); INSERT INTO `sys_oper_log` VALUES (5397, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643175642030,\"humidity\":\"96\",\"id\":1486212478521290755,\"province\":\"江西\",\"reporttime\":1643175229000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 13:42:06'); INSERT INTO `sys_oper_log` VALUES (5398, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 13:33:49\"}}', 0, '', '2022-01-26 13:42:10'); INSERT INTO `sys_oper_log` VALUES (5399, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, 'Index 0 out of bounds for length 0', '2022-01-26 14:14:33'); INSERT INTO `sys_oper_log` VALUES (5400, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, 'Index 0 out of bounds for length 0', '2022-01-26 14:14:43'); INSERT INTO `sys_oper_log` VALUES (5401, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, 'Index 0 out of bounds for length 0', '2022-01-26 14:14:49'); INSERT INTO `sys_oper_log` VALUES (5402, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, 'Index 0 out of bounds for length 0', '2022-01-26 14:14:49'); INSERT INTO `sys_oper_log` VALUES (5403, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:16:11'); INSERT INTO `sys_oper_log` VALUES (5404, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:17:08'); INSERT INTO `sys_oper_log` VALUES (5405, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:19:59'); INSERT INTO `sys_oper_log` VALUES (5406, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:21:31'); INSERT INTO `sys_oper_log` VALUES (5407, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:23:01'); INSERT INTO `sys_oper_log` VALUES (5408, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:24:40'); INSERT INTO `sys_oper_log` VALUES (5409, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:24:42'); INSERT INTO `sys_oper_log` VALUES (5410, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:24:44'); INSERT INTO `sys_oper_log` VALUES (5411, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:24:46'); INSERT INTO `sys_oper_log` VALUES (5412, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:24:48'); INSERT INTO `sys_oper_log` VALUES (5413, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643177771937,\"humidity\":\"96\",\"id\":1486221411994537986,\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:24:50'); INSERT INTO `sys_oper_log` VALUES (5414, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:31:35'); INSERT INTO `sys_oper_log` VALUES (5415, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:34:09'); INSERT INTO `sys_oper_log` VALUES (5416, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:34:11'); INSERT INTO `sys_oper_log` VALUES (5417, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:34:12'); INSERT INTO `sys_oper_log` VALUES (5418, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:34:17'); INSERT INTO `sys_oper_log` VALUES (5419, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:34:19'); INSERT INTO `sys_oper_log` VALUES (5420, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:34:20'); INSERT INTO `sys_oper_log` VALUES (5421, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:34:22'); INSERT INTO `sys_oper_log` VALUES (5422, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:34:24'); INSERT INTO `sys_oper_log` VALUES (5423, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:34:51'); INSERT INTO `sys_oper_log` VALUES (5424, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:34:57'); INSERT INTO `sys_oper_log` VALUES (5425, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643177027000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:35:44'); INSERT INTO `sys_oper_log` VALUES (5426, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 14:03:47\"}}', 0, '', '2022-01-26 14:35:46'); INSERT INTO `sys_oper_log` VALUES (5427, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":5,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":8,\"returnDate\":\"辛丑牛年 腊月初二\"},{\"date\":\"2022年02月07日\",\"holidayName\":\"国际声援南非日\",\"lunarDate\":\"2022年01月07日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月07日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 14:36:46'); INSERT INTO `sys_oper_log` VALUES (5428, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2015年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1211/20151211102933928.jpg\",\"title\":\"国家一级演员、表演艺术家梁音在北京去世\",\"year\":\"2015\"},{\"date\":\"2009年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1210/20151210041137600.jpg\",\"title\":\"冰岛总理盖尔·哈尔德宣布辞职\",\"year\":\"2009\"},{\"date\":\"2008年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201001/23/0702819548.jpg\",\"title\":\"中国著名外交家章含之病逝,终年73岁\",\"year\":\"2008\"},{\"date\":\"2003年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"台湾客机首次合法在中国大陆降落\",\"year\":\"2003\"},{\"date\":\"2001年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"印度遭遇50年来最大地震死亡两万多人\",\"year\":\"2001\"},{\"date\":\"2000年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"运载火箭“长征三号甲”将“中星—22号”卫星发射升空\",\"year\":\"2000\"},{\"date\":\"1999年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/26/3618115947.jpg\",\"title\":\"约旦阿卜杜拉王储继承王位\",\"year\":\"1999\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 14:36:49'); INSERT INTO `sys_oper_log` VALUES (5429, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/192.168.1.5', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"192.168.1.5\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-26 14:36:58'); INSERT INTO `sys_oper_log` VALUES (5430, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-26 14:37:04'); INSERT INTO `sys_oper_log` VALUES (5431, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生一世,总有些片断当时看着无关紧要,而事实上却牵动了大局。\",\"createTime\":1643179044728,\"id\":1486226750441754626,\"source\":\"萨克雷\",\"type\":4}}', 0, '', '2022-01-26 14:37:24'); INSERT INTO `sys_oper_log` VALUES (5432, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Love is what you\'ve been through with somebody.\",\"createTime\":1643179044778,\"dataId\":4921,\"date\":1598284800000,\"id\":1486226750643081218,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/b68568be2c723c267b8cbed5cb5b88d8.677c2aeed994033846effe71e1b46265.jpeg\",\"note\":\"爱,就是你和某个人一起经历的一切。\",\"source\":\"James Thurber\",\"tts\":\"\"}}', 0, '', '2022-01-26 14:37:24'); INSERT INTO `sys_oper_log` VALUES (5433, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If it is important to you, you will find a way.\",\"createTime\":1643179225502,\"dataId\":4263,\"date\":1632672000000,\"id\":1486227508671254529,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/6c5ea1dbc87f505a389d4c8007cf3f0c.png\",\"note\":\"如果你认为重要,你就会想对策。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a493492469e53cb5d0a1acab0ed77cfb.mp3\"}}', 0, '', '2022-01-26 14:40:25'); INSERT INTO `sys_oper_log` VALUES (5434, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有人问,分离的时候,到底是离开的那个人比较痛苦,还是留下来的那个人比较痛苦?应该说,爱的最深的那个人比较痛苦。\",\"createTime\":1643179225564,\"id\":1486227508931301378,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-01-26 14:40:25'); INSERT INTO `sys_oper_log` VALUES (5435, '参数管理', 3, 'com.ruoyi.system.controller.SysConfigController.remove()', 'DELETE', 1, 'admin', NULL, '/config/2', '127.0.0.1', '', NULL, NULL, 1, '内置参数【sys.user.initPassword】不能删除 ', '2022-01-26 14:48:16'); INSERT INTO `sys_oper_log` VALUES (5436, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643179120000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:49:54'); INSERT INTO `sys_oper_log` VALUES (5437, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643179120000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:49:58'); INSERT INTO `sys_oper_log` VALUES (5438, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643179120000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:53:05'); INSERT INTO `sys_oper_log` VALUES (5439, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643179120000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:53:16'); INSERT INTO `sys_oper_log` VALUES (5440, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 14:38:40\"}}', 0, '', '2022-01-26 14:53:16'); INSERT INTO `sys_oper_log` VALUES (5441, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1486230743779782657', '127.0.0.1', '', '1486230743779782657', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-26 14:53:19'); INSERT INTO `sys_oper_log` VALUES (5442, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643179120000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:53:51'); INSERT INTO `sys_oper_log` VALUES (5443, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643179120000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 14:56:21'); INSERT INTO `sys_oper_log` VALUES (5444, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643180911000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:20:07'); INSERT INTO `sys_oper_log` VALUES (5445, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643180911000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:20:25'); INSERT INTO `sys_oper_log` VALUES (5446, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643180911000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:21:15'); INSERT INTO `sys_oper_log` VALUES (5447, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643180911000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:21:37'); INSERT INTO `sys_oper_log` VALUES (5448, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643180911000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:21:55'); INSERT INTO `sys_oper_log` VALUES (5449, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643180911000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:22:20'); INSERT INTO `sys_oper_log` VALUES (5450, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643180911000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:23:02'); INSERT INTO `sys_oper_log` VALUES (5451, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643180911000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:25:22'); INSERT INTO `sys_oper_log` VALUES (5452, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643180911000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:25:33'); INSERT INTO `sys_oper_log` VALUES (5453, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643180911000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:25:46'); INSERT INTO `sys_oper_log` VALUES (5454, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:34:54'); INSERT INTO `sys_oper_log` VALUES (5455, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:35:00'); INSERT INTO `sys_oper_log` VALUES (5456, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:36:03'); INSERT INTO `sys_oper_log` VALUES (5457, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:36:06'); INSERT INTO `sys_oper_log` VALUES (5458, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:36:09'); INSERT INTO `sys_oper_log` VALUES (5459, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:36:12'); INSERT INTO `sys_oper_log` VALUES (5460, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:36:14'); INSERT INTO `sys_oper_log` VALUES (5461, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:36:16'); INSERT INTO `sys_oper_log` VALUES (5462, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:37:08'); INSERT INTO `sys_oper_log` VALUES (5463, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:39:04'); INSERT INTO `sys_oper_log` VALUES (5464, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:40:27'); INSERT INTO `sys_oper_log` VALUES (5465, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:40:55'); INSERT INTO `sys_oper_log` VALUES (5466, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:42:07'); INSERT INTO `sys_oper_log` VALUES (5467, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:42:20'); INSERT INTO `sys_oper_log` VALUES (5468, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:42:28'); INSERT INTO `sys_oper_log` VALUES (5469, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:42:34'); INSERT INTO `sys_oper_log` VALUES (5470, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:44:23'); INSERT INTO `sys_oper_log` VALUES (5471, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643182494739,\"humidity\":\"96\",\"id\":1486241220866052097,\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:44:47'); INSERT INTO `sys_oper_log` VALUES (5472, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-01-26 15:48:11'); INSERT INTO `sys_oper_log` VALUES (5473, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:52:57'); INSERT INTO `sys_oper_log` VALUES (5474, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:53:00'); INSERT INTO `sys_oper_log` VALUES (5475, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:53:14'); INSERT INTO `sys_oper_log` VALUES (5476, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:54:41'); INSERT INTO `sys_oper_log` VALUES (5477, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:55:53'); INSERT INTO `sys_oper_log` VALUES (5478, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:56:31'); INSERT INTO `sys_oper_log` VALUES (5479, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:56:40'); INSERT INTO `sys_oper_log` VALUES (5480, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:56:48'); INSERT INTO `sys_oper_log` VALUES (5481, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:57:49'); INSERT INTO `sys_oper_log` VALUES (5482, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:58:08'); INSERT INTO `sys_oper_log` VALUES (5483, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:58:32'); INSERT INTO `sys_oper_log` VALUES (5484, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:59:01'); INSERT INTO `sys_oper_log` VALUES (5485, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 15:59:20'); INSERT INTO `sys_oper_log` VALUES (5486, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643182440000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:02:43'); INSERT INTO `sys_oper_log` VALUES (5487, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643184298680,\"humidity\":\"96\",\"id\":1486248787101061122,\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:04:58'); INSERT INTO `sys_oper_log` VALUES (5488, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643184298680,\"humidity\":\"96\",\"id\":1486248787101061122,\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:05:54'); INSERT INTO `sys_oper_log` VALUES (5489, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643184298680,\"humidity\":\"96\",\"id\":1486248787101061122,\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:06:46'); INSERT INTO `sys_oper_log` VALUES (5490, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643184298680,\"humidity\":\"96\",\"id\":1486248787101061122,\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:09:19'); INSERT INTO `sys_oper_log` VALUES (5491, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643184298680,\"humidity\":\"96\",\"id\":1486248787101061122,\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:13:18'); INSERT INTO `sys_oper_log` VALUES (5492, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643184298680,\"humidity\":\"96\",\"id\":1486248787101061122,\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:13:20'); INSERT INTO `sys_oper_log` VALUES (5493, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643184298680,\"humidity\":\"96\",\"id\":1486248787101061122,\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:13:52'); INSERT INTO `sys_oper_log` VALUES (5494, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643184298680,\"humidity\":\"96\",\"id\":1486248787101061122,\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:14:00'); INSERT INTO `sys_oper_log` VALUES (5495, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643184298680,\"humidity\":\"96\",\"id\":1486248787101061122,\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:14:14'); INSERT INTO `sys_oper_log` VALUES (5496, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:15:44'); INSERT INTO `sys_oper_log` VALUES (5497, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:15:54'); INSERT INTO `sys_oper_log` VALUES (5498, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:16:07'); INSERT INTO `sys_oper_log` VALUES (5499, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:16:18'); INSERT INTO `sys_oper_log` VALUES (5500, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:16:34'); INSERT INTO `sys_oper_log` VALUES (5501, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:18:28'); INSERT INTO `sys_oper_log` VALUES (5502, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:20:07'); INSERT INTO `sys_oper_log` VALUES (5503, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:20:25'); INSERT INTO `sys_oper_log` VALUES (5504, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:20:31'); INSERT INTO `sys_oper_log` VALUES (5505, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:20:46'); INSERT INTO `sys_oper_log` VALUES (5506, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:21:38'); INSERT INTO `sys_oper_log` VALUES (5507, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:21:56'); INSERT INTO `sys_oper_log` VALUES (5508, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:23:06'); INSERT INTO `sys_oper_log` VALUES (5509, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:23:18'); INSERT INTO `sys_oper_log` VALUES (5510, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:23:43'); INSERT INTO `sys_oper_log` VALUES (5511, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:24:10'); INSERT INTO `sys_oper_log` VALUES (5512, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:24:35'); INSERT INTO `sys_oper_log` VALUES (5513, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:24:39'); INSERT INTO `sys_oper_log` VALUES (5514, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:24:50'); INSERT INTO `sys_oper_log` VALUES (5515, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:25:54'); INSERT INTO `sys_oper_log` VALUES (5516, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:26:06'); INSERT INTO `sys_oper_log` VALUES (5517, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:32:08'); INSERT INTO `sys_oper_log` VALUES (5518, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:32:44'); INSERT INTO `sys_oper_log` VALUES (5519, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:33:14'); INSERT INTO `sys_oper_log` VALUES (5520, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:33:30'); INSERT INTO `sys_oper_log` VALUES (5521, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:34:05'); INSERT INTO `sys_oper_log` VALUES (5522, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1643184224000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:34:18'); INSERT INTO `sys_oper_log` VALUES (5523, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643186348436,\"humidity\":\"95\",\"id\":1486257384426016770,\"province\":\"江西\",\"reporttime\":1643186328000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:39:08'); INSERT INTO `sys_oper_log` VALUES (5524, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643186348436,\"humidity\":\"95\",\"id\":1486257384426016770,\"province\":\"江西\",\"reporttime\":1643186328000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:40:57'); INSERT INTO `sys_oper_log` VALUES (5525, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643186348436,\"humidity\":\"95\",\"id\":1486257384426016770,\"province\":\"江西\",\"reporttime\":1643186328000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:41:05'); INSERT INTO `sys_oper_log` VALUES (5526, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643186348436,\"humidity\":\"95\",\"id\":1486257384426016770,\"province\":\"江西\",\"reporttime\":1643186328000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:43:12'); INSERT INTO `sys_oper_log` VALUES (5527, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 16:38:48\"}}', 0, '', '2022-01-26 16:43:28'); INSERT INTO `sys_oper_log` VALUES (5528, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643186348436,\"humidity\":\"95\",\"id\":1486257384426016770,\"province\":\"江西\",\"reporttime\":1643186328000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 16:43:28'); INSERT INTO `sys_oper_log` VALUES (5529, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643195121141,\"humidity\":\"95\",\"id\":1486294179832791042,\"province\":\"江西\",\"reporttime\":1643193518000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 19:05:21'); INSERT INTO `sys_oper_log` VALUES (5530, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643195121141,\"humidity\":\"95\",\"id\":1486294179832791042,\"province\":\"江西\",\"reporttime\":1643193518000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 19:05:21'); INSERT INTO `sys_oper_log` VALUES (5531, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643195121141,\"humidity\":\"95\",\"id\":1486294179832791042,\"province\":\"江西\",\"reporttime\":1643193518000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 19:05:57'); INSERT INTO `sys_oper_log` VALUES (5532, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643195121141,\"humidity\":\"95\",\"id\":1486294179832791042,\"province\":\"江西\",\"reporttime\":1643193518000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 19:06:01'); INSERT INTO `sys_oper_log` VALUES (5533, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643195121141,\"humidity\":\"95\",\"id\":1486294179832791042,\"province\":\"江西\",\"reporttime\":1643193518000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 19:06:03'); INSERT INTO `sys_oper_log` VALUES (5534, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 19:49:09'); INSERT INTO `sys_oper_log` VALUES (5535, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 19:33:57\"}}', 0, '', '2022-01-26 19:49:10'); INSERT INTO `sys_oper_log` VALUES (5536, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1486305205756329985', '127.0.0.1', '', '1486305205756329985', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-26 19:49:12'); INSERT INTO `sys_oper_log` VALUES (5537, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"141KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4koypdj31hc0u0ae5.jpg\"},{\"imageFileLength\":\"242KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28emy2fwrj31c00u07aa.jpg\"},{\"imageFileLength\":\"128KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4qtkpyj31c00u0whx.jpg\"},{\"imageFileLength\":\"194KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq57wne3j31400p0wk2.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvu7ogcj31c00u04d7.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq53f8g1j31c00u079q.jpg\"},{\"imageFileLength\":\"315KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ew9x3lcj31c00u0nou.jpg\"},{\"imageFileLength\":\"236KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usesbmakj31hc0u0wkp.jpg\"},{\"imageFileLength\":\"194KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfi6ibrj31c00u0wku.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utalnup2j31ao0t677k.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 19:56:25'); INSERT INTO `sys_oper_log` VALUES (5538, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urapj9xmj31c00u0jwt.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbcx68yj31c00u0dlc.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ian5pj31c00u0gob.jpg\"},{\"imageFileLength\":\"253KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb1xkpij31c00u0jyg.jpg\"},{\"imageFileLength\":\"220KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urajd5d2j31c00u0450.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf8isetj31c00u00wz.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dhswt4bj31c00u0jwf.jpg\"},{\"imageFileLength\":\"346KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8hz13wj31hc0u0aj9.jpg\"},{\"imageFileLength\":\"369KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpd5djpj31hc0u0k21.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut466y67j31hc0u0dk0.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 19:56:44'); INSERT INTO `sys_oper_log` VALUES (5539, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":5,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":8,\"returnDate\":\"辛丑牛年 腊月初二\"},{\"date\":\"2022年02月07日\",\"holidayName\":\"国际声援南非日\",\"lunarDate\":\"2022年01月07日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月07日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 19:57:06'); INSERT INTO `sys_oper_log` VALUES (5540, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月26日\",\"holidayName\":\"国际海关日\",\"lunarDate\":\"2021年12月24日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年01月26日\"},{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":5,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":8,\"returnDate\":\"辛丑牛年 腊月初二\"},{\"date\":\"2022年02月07日\",\"holidayName\":\"国际声援南非日\",\"lunarDate\":\"2022年01月07日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月07日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 19:57:07'); INSERT INTO `sys_oper_log` VALUES (5541, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2015年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1211/20151211102933928.jpg\",\"title\":\"国家一级演员、表演艺术家梁音在北京去世\",\"year\":\"2015\"},{\"date\":\"2009年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1210/20151210041137600.jpg\",\"title\":\"冰岛总理盖尔·哈尔德宣布辞职\",\"year\":\"2009\"},{\"date\":\"2008年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201001/23/0702819548.jpg\",\"title\":\"中国著名外交家章含之病逝,终年73岁\",\"year\":\"2008\"},{\"date\":\"2003年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"台湾客机首次合法在中国大陆降落\",\"year\":\"2003\"},{\"date\":\"2001年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"印度遭遇50年来最大地震死亡两万多人\",\"year\":\"2001\"},{\"date\":\"2000年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"运载火箭“长征三号甲”将“中星—22号”卫星发射升空\",\"year\":\"2000\"},{\"date\":\"1999年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/26/3618115947.jpg\",\"title\":\"约旦阿卜杜拉王储继承王位\",\"year\":\"1999\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 19:57:09'); INSERT INTO `sys_oper_log` VALUES (5542, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54ofotj31c00u042n.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf7pih1j31c00u043s.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursyki98j31c00u0qg0.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us94m8ovj31c00u0wjg.jpg\"},{\"imageFileLength\":\"245KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfxqu7wj31hc0u0q98.jpg\"},{\"imageFileLength\":\"161KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5mimkzj31c00u0jwn.jpg\"},{\"imageFileLength\":\"250KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gt2b91mj31c00u0ne6.jpg\"},{\"imageFileLength\":\"262KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfwounlj31hc0u07cp.jpg\"},{\"imageFileLength\":\"257KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g28dbsi2e0j31hc0u0ai2.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uranifgkj31hc0u078y.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 19:57:10'); INSERT INTO `sys_oper_log` VALUES (5543, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8t87rfj31c00u0td3.jpg\"},{\"imageFileLength\":\"107KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52h3f5j31c00u0ju3.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq52iirlj31hc0u0gr9.jpg\"},{\"imageFileLength\":\"278KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfb10i6j31c00u0agr.jpg\"},{\"imageFileLength\":\"205KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb7i7faj31c00u07a1.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ural2vxij31c00u0tdq.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utapk63zj31hc0u0q5t.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbey4maj31c00u0jvd.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursn3l8wj31c00u0zw9.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut8e1nsfj318g0p0gp4.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 19:57:12'); INSERT INTO `sys_oper_log` VALUES (5544, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"384KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbf76cpj31c00u07fn.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dirhamjj31c00u0h23.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usegcrvpj31c00u0q66.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usewkhv3j31c00u0q6b.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urahmb20j31hc0u0qbh.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf148q8j31c00u0jwf.jpg\"},{\"imageFileLength\":\"184KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv5vnyyj31c00u0wsh.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf9tbuxj31c00u0jvo.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicnvxzij31920u0784.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7ht0ooj31c00u0ady.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 19:57:14'); INSERT INTO `sys_oper_log` VALUES (5545, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:00:03'); INSERT INTO `sys_oper_log` VALUES (5546, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:00:49'); INSERT INTO `sys_oper_log` VALUES (5547, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:01:03'); INSERT INTO `sys_oper_log` VALUES (5548, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:03:15'); INSERT INTO `sys_oper_log` VALUES (5549, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:03:29'); INSERT INTO `sys_oper_log` VALUES (5550, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:04:26'); INSERT INTO `sys_oper_log` VALUES (5551, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:04:34'); INSERT INTO `sys_oper_log` VALUES (5552, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:05:36'); INSERT INTO `sys_oper_log` VALUES (5553, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:06:38'); INSERT INTO `sys_oper_log` VALUES (5554, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:07:10'); INSERT INTO `sys_oper_log` VALUES (5555, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:08:03'); INSERT INTO `sys_oper_log` VALUES (5556, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:08:31'); INSERT INTO `sys_oper_log` VALUES (5557, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643196837000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:09:10'); INSERT INTO `sys_oper_log` VALUES (5558, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643199027198,\"humidity\":\"94\",\"id\":1486310563006513153,\"province\":\"江西\",\"reporttime\":1643198630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:10:27'); INSERT INTO `sys_oper_log` VALUES (5559, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643199027198,\"humidity\":\"94\",\"id\":1486310563006513153,\"province\":\"江西\",\"reporttime\":1643198630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:10:40'); INSERT INTO `sys_oper_log` VALUES (5560, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-26 20:11:35'); INSERT INTO `sys_oper_log` VALUES (5561, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643198630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:33:17'); INSERT INTO `sys_oper_log` VALUES (5562, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 20:03:50\"}}', 0, '', '2022-01-26 20:33:17'); INSERT INTO `sys_oper_log` VALUES (5563, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-26\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-26 20:03:50\"}}', 0, '', '2022-01-26 20:33:23'); INSERT INTO `sys_oper_log` VALUES (5564, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643198630000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:33:23'); INSERT INTO `sys_oper_log` VALUES (5565, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You can\'t let someone else\'s opinion tear you down.\",\"createTime\":1643201645530,\"dataId\":4379,\"date\":1642694400000,\"id\":1486321545065922561,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/53770f78dd26b1c4b559f83d204fd88b.jpg\",\"note\":\"你不能被别人的看法打倒。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/1c48ac3735c4efb3b46ec56cc476ccb3.mp3\"}}', 0, '', '2022-01-26 20:54:05'); INSERT INTO `sys_oper_log` VALUES (5566, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"患了中二病,等于有了一种信仰。\",\"createTime\":1643201645571,\"id\":1486321545267249154,\"source\":\"三酱\",\"type\":5}}', 0, '', '2022-01-26 20:54:05'); INSERT INTO `sys_oper_log` VALUES (5567, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643200720000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:58:13'); INSERT INTO `sys_oper_log` VALUES (5568, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643200720000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:58:22'); INSERT INTO `sys_oper_log` VALUES (5569, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643200720000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:58:31'); INSERT INTO `sys_oper_log` VALUES (5570, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643200720000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:58:37'); INSERT INTO `sys_oper_log` VALUES (5571, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643200720000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-26 20:58:50'); INSERT INTO `sys_oper_log` VALUES (5572, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7j6zb4j31c00u077z.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utayepyqj31c00u0whp.jpg\"},{\"imageFileLength\":\"246KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utc0rr7gj31c00u0ah9.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8y4mifj31c00u0af5.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb9c65bj31hc0u0wiu.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfa1vowj31c00u042n.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpbwzsmj31c00u0ajx.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8s8ffpj31c00u0n1u.jpg\"},{\"imageFileLength\":\"227KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfvmxwkj31hc0u0ahu.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7ht0ooj31c00u0ady.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 22:46:36'); INSERT INTO `sys_oper_log` VALUES (5573, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"279KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfnlcd3j31c00u0tfe.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut485mdzj31ao0t6gox.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq585n50j31c00u0gqh.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut58hmjgj31c00u0acq.jpg\"},{\"imageFileLength\":\"296KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28en64bi8j31hc0u0dot.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us95ab21j31c00u0tda.jpg\"},{\"imageFileLength\":\"184KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv5vnyyj31c00u0wsh.jpg\"},{\"imageFileLength\":\"105KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpael2oj31c00u0qec.jpg\"},{\"imageFileLength\":\"91KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbhr4abj31c00u00uy.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fy8xuovj31c00u0qe1.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 22:46:40'); INSERT INTO `sys_oper_log` VALUES (5574, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utayepyqj31c00u0whp.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8clqmjj31hc0u0te3.jpg\"},{\"imageFileLength\":\"273KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvka0b2j31hc0u0aol.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicplyynj31900u0jv5.jpg\"},{\"imageFileLength\":\"202KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urairdt2j31c00u044e.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8qnmk0j31c00u0q7v.jpg\"},{\"imageFileLength\":\"222KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfdszpaj31c00u0n4f.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8dowqqj31c00u00zl.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useydtpxj31c00u0415.jpg\"},{\"imageFileLength\":\"101KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8v42bsj31c00u0q5g.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 22:46:44'); INSERT INTO `sys_oper_log` VALUES (5575, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usemmapzj31c00u0q63.jpg\"},{\"imageFileLength\":\"203KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfgcexnj31c00u044z.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraiq3u6j31c00u078n.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpc8blcj31c00u0tj8.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb8rs4ej31c00u0q6k.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8hp51fj31c00u0dkx.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfttmz1j31c00u044r.jpg\"},{\"imageFileLength\":\"250KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gt2b91mj31c00u0ne6.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut59xq5yj31c00u0td1.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8xn6smj31c00u042j.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 22:46:47'); INSERT INTO `sys_oper_log` VALUES (5576, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2015年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1211/20151211102933928.jpg\",\"title\":\"国家一级演员、表演艺术家梁音在北京去世\",\"year\":\"2015\"},{\"date\":\"2009年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/uploadfile/2015/1210/20151210041137600.jpg\",\"title\":\"冰岛总理盖尔·哈尔德宣布辞职\",\"year\":\"2009\"},{\"date\":\"2008年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/201001/23/0702819548.jpg\",\"title\":\"中国著名外交家章含之病逝,终年73岁\",\"year\":\"2008\"},{\"date\":\"2003年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"台湾客机首次合法在中国大陆降落\",\"year\":\"2003\"},{\"date\":\"2001年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"印度遭遇50年来最大地震死亡两万多人\",\"year\":\"2001\"},{\"date\":\"2000年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"\",\"title\":\"运载火箭“长征三号甲”将“中星—22号”卫星发射升空\",\"year\":\"2000\"},{\"date\":\"1999年01月26日\",\"day\":\"26\",\"month\":\"1\",\"picUrl\":\"http://www.todayonhistory.com/upic/200401/26/3618115947.jpg\",\"title\":\"约旦阿卜杜拉王储继承王位\",\"year\":\"1999\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-26 22:46:49'); INSERT INTO `sys_oper_log` VALUES (5577, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E4%B8%9C%E4%BA%AC', '127.0.0.1', '', '', '', 1, '未找到对应城市,请检查后重试', '2022-01-26 22:47:06'); INSERT INTO `sys_oper_log` VALUES (5578, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E5%93%88%E5%B0%94%E6%BB%A8', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"黑龙江省 哈尔滨市\",\"cityCode\":\"230100\",\"forecasts\":[{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"-11℃\",\"dayweather\":\"多云\",\"nighttemp\":\"-22℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"-11℃\",\"dayweather\":\"多云\",\"nighttemp\":\"-23℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-28\",\"dayOfWeek\":\"周五\",\"daytemp\":\"-12℃\",\"dayweather\":\"多云\",\"nighttemp\":\"-24℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-29\",\"dayOfWeek\":\"周六\",\"daytemp\":\"-12℃\",\"dayweather\":\"晴\",\"nighttemp\":\"-23℃\",\"nightweather\":\"晴\"}],\"reportTime\":\"2022-01-26 22:31:22\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-26 22:47:13'); INSERT INTO `sys_oper_log` VALUES (5579, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E6%B5%B7%E5%8D%97', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"内蒙古自治区 乌海市 海南区\",\"cityCode\":\"150303\",\"forecasts\":[{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"1℃\",\"dayweather\":\"晴\",\"nighttemp\":\"-14℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"0℃\",\"dayweather\":\"多云\",\"nighttemp\":\"-13℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-28\",\"dayOfWeek\":\"周五\",\"daytemp\":\"1℃\",\"dayweather\":\"晴\",\"nighttemp\":\"-14℃\",\"nightweather\":\"晴\"},{\"date\":\"2022-01-29\",\"dayOfWeek\":\"周六\",\"daytemp\":\"2℃\",\"dayweather\":\"晴\",\"nighttemp\":\"-14℃\",\"nightweather\":\"晴\"}],\"reportTime\":\"2022-01-26 22:31:02\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-26 22:47:21'); INSERT INTO `sys_oper_log` VALUES (5580, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E6%B5%B7%E5%8D%97%E7%9C%81', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"海南省\",\"cityCode\":\"460000\",\"forecasts\":[{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"24℃\",\"dayweather\":\"多云\",\"nighttemp\":\"20℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"24℃\",\"dayweather\":\"多云\",\"nighttemp\":\"20℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-28\",\"dayOfWeek\":\"周五\",\"daytemp\":\"24℃\",\"dayweather\":\"多云\",\"nighttemp\":\"21℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-29\",\"dayOfWeek\":\"周六\",\"daytemp\":\"23℃\",\"dayweather\":\"多云\",\"nighttemp\":\"14℃\",\"nightweather\":\"中雨\"}],\"reportTime\":\"2022-01-26 22:35:46\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-26 22:47:28'); INSERT INTO `sys_oper_log` VALUES (5581, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E4%B8%89%E4%BA%9A', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"海南省 三亚市\",\"cityCode\":\"460200\",\"forecasts\":[{\"date\":\"2022-01-26\",\"dayOfWeek\":\"周三\",\"daytemp\":\"30℃\",\"dayweather\":\"多云\",\"nighttemp\":\"22℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-27\",\"dayOfWeek\":\"周四\",\"daytemp\":\"30℃\",\"dayweather\":\"多云\",\"nighttemp\":\"22℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-28\",\"dayOfWeek\":\"周五\",\"daytemp\":\"30℃\",\"dayweather\":\"多云\",\"nighttemp\":\"22℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-01-29\",\"dayOfWeek\":\"周六\",\"daytemp\":\"30℃\",\"dayweather\":\"多云\",\"nighttemp\":\"21℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-01-26 22:35:48\"},\"msg\":\"操作成功\"}', 0, '', '2022-01-26 22:47:37'); INSERT INTO `sys_oper_log` VALUES (5582, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643246063115,\"humidity\":\"91\",\"id\":1486507845959704578,\"province\":\"江西\",\"reporttime\":1643245728000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 09:14:23'); INSERT INTO `sys_oper_log` VALUES (5583, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643246063115,\"humidity\":\"91\",\"id\":1486507845959704578,\"province\":\"江西\",\"reporttime\":1643245728000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 09:14:57'); INSERT INTO `sys_oper_log` VALUES (5584, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只看一个人的著作,结果是不大好的:你就得不到多方面的优点。必须如蜜蜂一样,采过许多花,这才能酿出蜜来,倘若叮在一处,所得就非常有限,枯燥了。\",\"createTime\":1643246133579,\"id\":1486508141465198593,\"source\":\"鲁迅\",\"type\":4}}', 0, '', '2022-01-27 09:15:33'); INSERT INTO `sys_oper_log` VALUES (5585, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All friendship changes, but for the good ones it will only make it stronger. \",\"createTime\":1643246134584,\"dataId\":4030,\"date\":1612540800000,\"id\":1486508145722417154,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/b31309d244c9dff23e4f7e0658ac7eaa.png\",\"note\":\"所有的友情都会变,但有的改变会让其变得强大。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/42957b7398712b3123565d429dc2178f.mp3\"}}', 0, '', '2022-01-27 09:15:34'); INSERT INTO `sys_oper_log` VALUES (5586, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"我的女朋友像谷歌.\\\" \\\"因为她什么都知道?\\\" \\\"不,她身上有我想找的一切.\\\" \",\"createTime\":1643248949404,\"id\":1486519951933202434,\"source\":\"Mr. Chillman\",\"type\":2}}', 0, '', '2022-01-27 10:02:29'); INSERT INTO `sys_oper_log` VALUES (5587, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The more one judges, the less one loves.\",\"createTime\":1643248949409,\"dataId\":3942,\"date\":1604937600000,\"id\":1486519951933202435,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/8e57765f0fed2d80ec10ac644861f8f7.png\",\"note\":\"一个人评判的愈多,爱的就愈少。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c855f666584113eec1de68b359c465d1.mp3\"}}', 0, '', '2022-01-27 10:02:29'); INSERT INTO `sys_oper_log` VALUES (5588, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我越来越六根清净了,不想喜欢人,不想被人喜欢,所有让人可能会失望的东西都不想去接触,友情也好,爱情也罢,都是矫情的东西,人啊,自己活的精彩才是真的,其他都是假的,不要入戏太深,失望了会很难受。\",\"createTime\":1643248958614,\"id\":1486519990537576449,\"source\":\"爱不爱我\",\"type\":2}}', 0, '', '2022-01-27 10:02:38'); INSERT INTO `sys_oper_log` VALUES (5589, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All you need is the plan, the road map, and the courage to press on to your destination.\",\"dataId\":3994,\"date\":1609430400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/660c1d1daee0c124faaa5e3e5aa34e81.png\",\"note\":\"你所需要的只是计划,路线图,以及朝着目标前进的勇气。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/b61c5114ab9dbf38674e0462503f670e.mp3\"}}', 0, '', '2022-01-27 10:02:38'); INSERT INTO `sys_oper_log` VALUES (5590, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1643247247000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-27 10:02:39'); INSERT INTO `sys_oper_log` VALUES (5591, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1643247247000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-27 10:02:42'); INSERT INTO `sys_oper_log` VALUES (5592, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"泪痕之珠:这代表对我妻子最不舍的思念\",\"createTime\":1643248962285,\"id\":1486520005947449346,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2022-01-27 10:02:42'); INSERT INTO `sys_oper_log` VALUES (5593, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The proletarians have nothing to lose but their chains. They have a world to win. \",\"createTime\":1643248962605,\"dataId\":3749,\"date\":1588262400000,\"id\":1486520007268655105,\"imgurl\":\"https://v-sq.ks3-cn-beijing.ksyun.com/image/0bca0bdacff0b9a14220fcb42acf6794.png\",\"note\":\"无产者在这个革命中失去的只是锁链。他们获得的将是整个世界。\",\"source\":\"新版每日一句\",\"tts\":\"https://v-sq.ks3-cn-beijing.ksyun.com/audio/7688eddc0af63516259e083fcedf7991.mp3\"}}', 0, '', '2022-01-27 10:02:42'); INSERT INTO `sys_oper_log` VALUES (5594, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1643247247000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-01-27 10:02:44'); INSERT INTO `sys_oper_log` VALUES (5595, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"邓紫棋这首歌,除去繁琐多余的高音,留下欢快的旋律,创新以往的唱腔,好想是一个小女生吟唱对爱的渴望和向往,听了居然让我想谈恋爱[大哭]很棒,期望看到她的下一张专辑。\",\"createTime\":1643248964604,\"id\":1486520015686623234,\"source\":\"画 (Live Piano Session II)\",\"type\":2}}', 0, '', '2022-01-27 10:02:44'); INSERT INTO `sys_oper_log` VALUES (5596, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The three foundations of learning: seeing much, suffering much and studying much.\",\"createTime\":1643248964860,\"dataId\":3435,\"date\":1561651200000,\"id\":1486520016764559361,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-28.jpg\",\"note\":\"求学的三个基本条件:多观察,多吃苦,多研究。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-28-day.mp3\"}}', 0, '', '2022-01-27 10:02:44'); INSERT INTO `sys_oper_log` VALUES (5597, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"邓紫棋这首歌,除去繁琐多余的高音,留下欢快的旋律,创新以往的唱腔,好想是一个小女生吟唱对爱的渴望和向往,听了居然让我想谈恋爱[大哭]很棒,期望看到她的下一张专辑。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":79,\"errorCode\":0,\"transResult\":[{\"dst\":\"Deng Zi chess this song, remove cumbersome redundant high, leaving the cheerful melody, innovation of singing, really want to is a little girl sings the longing for love and yearning, heard that make me want to fall in love [crying] great, expect to see her next album.\",\"src\":\"邓紫棋这首歌,除去繁琐多余的高音,留下欢快的旋律,创新以往的唱腔,好想是一个小女生吟唱对爱的渴望和向往,听了居然让我想谈恋爱[大哭]很棒,期望看到她的下一张专辑。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-27 10:02:49'); INSERT INTO `sys_oper_log` VALUES (5598, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"艺术家用谎言揭露真相,政治家用谎言掩盖真相。\",\"createTime\":1643262566963,\"id\":1486577068090220546,\"source\":\"V怪客\",\"type\":3}}', 0, '', '2022-01-27 13:49:27'); INSERT INTO `sys_oper_log` VALUES (5599, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-01-27 13:49:29'); INSERT INTO `sys_oper_log` VALUES (5600, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"幸福就是每天晚上有人送你回家!牵手一起走!\",\"createTime\":1643262571825,\"id\":1486577088512286721,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-01-27 13:49:31'); INSERT INTO `sys_oper_log` VALUES (5601, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"While the world is full of suffering, it is also full of overcoming it.\",\"createTime\":1643262572051,\"dataId\":3692,\"date\":1583337600000,\"id\":1486577089422450690,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/a6a75388fdc594bae470d6bb6d1bba50.png\",\"note\":\"虽然世界充满苦难,但是苦难总是可以战胜的。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/1f63fc5a428e5ba2298c5d4be8d19ecc.mp3\"}}', 0, '', '2022-01-27 13:49:32'); INSERT INTO `sys_oper_log` VALUES (5602, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"福就是每天晚上有人送你回家!牵手一起走!\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":21,\"errorCode\":0,\"transResult\":[{\"dst\":\"Blessed is every night someone take you home!\",\"src\":\"福就是每天晚上有人送你回家!\"},{\"dst\":\"Go hand in hand!\",\"src\":\"牵手一起走!\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-27 13:49:39'); INSERT INTO `sys_oper_log` VALUES (5603, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":53}}', 0, '', '2022-01-27 13:49:47'); INSERT INTO `sys_oper_log` VALUES (5604, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":53}}', 0, '', '2022-01-27 13:49:47'); INSERT INTO `sys_oper_log` VALUES (5605, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"4\",\"daytemp\":\"2\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-01-27 14:03:46\"}}', 0, '', '2022-01-27 14:25:08'); INSERT INTO `sys_oper_log` VALUES (5606, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643263426000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 14:25:08'); INSERT INTO `sys_oper_log` VALUES (5607, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'blog_todo_sort', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-27 15:03:13'); INSERT INTO `sys_oper_log` VALUES (5608, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'blog_todo', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-27 15:16:03'); INSERT INTO `sys_oper_log` VALUES (5609, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'blog_user', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-01-27 15:25:19'); INSERT INTO `sys_oper_log` VALUES (5610, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643268838000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 15:42:00'); INSERT INTO `sys_oper_log` VALUES (5611, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年01月27日\",\"holidayName\":\"国际麻风节\",\"lunarDate\":\"2021年12月25日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年01月27日\"},{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":4,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":7,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":7,\"returnDate\":\"辛丑牛年 腊月初二\"},{\"date\":\"2022年02月07日\",\"holidayName\":\"国际声援南非日\",\"lunarDate\":\"2022年01月07日\",\"lunarHoliday\":false,\"residueDays\":10,\"returnDate\":\"2022年02月07日\"},{\"date\":\"2022年02月10日\",\"holidayName\":\"国际气象节\",\"lunarDate\":\"2022年01月10日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年02月10日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-27 16:04:58'); INSERT INTO `sys_oper_log` VALUES (5612, '全部标记已读', 0, 'com.xjs.controller.ApiWarningController.AllHaveRead()', 'PUT', 1, 'admin', '', '/apiwarning/handleAll', '127.0.0.1', '', '', '{\"code\":200,\"data\":551,\"msg\":\"操作成功\"}', 0, '', '2022-01-27 16:05:19'); INSERT INTO `sys_oper_log` VALUES (5613, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643271031702,\"humidity\":\"93\",\"id\":1486612571762089985,\"province\":\"江西\",\"reporttime\":1643270628000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 16:10:31'); INSERT INTO `sys_oper_log` VALUES (5614, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643271031702,\"humidity\":\"93\",\"id\":1486612571762089985,\"province\":\"江西\",\"reporttime\":1643270628000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 16:12:26'); INSERT INTO `sys_oper_log` VALUES (5615, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1643271031702,\"humidity\":\"93\",\"id\":1486612571762089985,\"province\":\"江西\",\"reporttime\":1643270628000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 16:17:49'); INSERT INTO `sys_oper_log` VALUES (5616, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643270628000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 16:21:08'); INSERT INTO `sys_oper_log` VALUES (5617, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643270628000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 16:24:55'); INSERT INTO `sys_oper_log` VALUES (5618, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643270628000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 16:26:22'); INSERT INTO `sys_oper_log` VALUES (5619, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643270628000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 16:26:31'); INSERT INTO `sys_oper_log` VALUES (5620, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643270628000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 16:26:35'); INSERT INTO `sys_oper_log` VALUES (5621, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":139,\"apiName\":\"ROLL-身份证查询\",\"dayCount\":0,\"apiUrl\":\"https://www.mxnzp.com/api/idcard/search\",\"createTime\":1642662156000,\"limitCount\":3,\"updateTime\":1642996406000,\"id\":1484058761776762881,\"totalCount\":69}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-01-27 16:28:39'); INSERT INTO `sys_oper_log` VALUES (5622, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643297900590,\"humidity\":\"95\",\"id\":1486725268088532994,\"province\":\"江西\",\"reporttime\":1643297641000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 23:38:20'); INSERT INTO `sys_oper_log` VALUES (5623, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643297900590,\"humidity\":\"95\",\"id\":1486725268088532994,\"province\":\"江西\",\"reporttime\":1643297641000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 23:38:22'); INSERT INTO `sys_oper_log` VALUES (5624, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"西北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"≤3\",\"daytemp\":\"2\",\"dayweather\":\"雨夹雪\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"西北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"-1\",\"nightweather\":\"阴\",\"nightwind\":\"西北\",\"week\":\"周日\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-27 23:34:01\"}}', 0, '', '2022-01-27 23:38:22'); INSERT INTO `sys_oper_log` VALUES (5625, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1486725276131639298', '127.0.0.1', '', '1486725276131639298', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-01-27 23:38:53'); INSERT INTO `sys_oper_log` VALUES (5626, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"西北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"≤3\",\"daytemp\":\"2\",\"dayweather\":\"雨夹雪\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"西北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"-1\",\"nightweather\":\"阴\",\"nightwind\":\"西北\",\"week\":\"周日\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-27 23:34:01\"}}', 0, '', '2022-01-27 23:45:33'); INSERT INTO `sys_oper_log` VALUES (5627, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643297900590,\"humidity\":\"95\",\"id\":1486725268088532994,\"province\":\"江西\",\"reporttime\":1643297641000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 23:45:33'); INSERT INTO `sys_oper_log` VALUES (5628, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643297900590,\"humidity\":\"95\",\"id\":1486725268088532994,\"province\":\"江西\",\"reporttime\":1643297641000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 23:45:54'); INSERT INTO `sys_oper_log` VALUES (5629, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"206KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfl4rbrj31hc0u0q9w.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpffz14j31c00u0tk0.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8kjyjnj31c00u0djs.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut548th5j31hc0u0q7h.jpg\"},{\"imageFileLength\":\"384KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8l33k7j31c00u07gb.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utapk63zj31hc0u0q5t.jpg\"},{\"imageFileLength\":\"238KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5axa6fj31c00u0tef.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpfi0xzj31c00u0qdi.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1609x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5pff00j318p0u0k2r.jpg\"},{\"imageFileLength\":\"105KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpael2oj31c00u0qec.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-27 23:46:37'); INSERT INTO `sys_oper_log` VALUES (5630, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643297900590,\"humidity\":\"95\",\"id\":1486725268088532994,\"province\":\"江西\",\"reporttime\":1643297641000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 23:48:10'); INSERT INTO `sys_oper_log` VALUES (5631, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1643297641000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 23:48:41'); INSERT INTO `sys_oper_log` VALUES (5632, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1643297641000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-27 23:48:55'); INSERT INTO `sys_oper_log` VALUES (5633, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Life is like a game of cards. The hand you are dealt is determinism; the way you play it is free will.\",\"createTime\":1643298632293,\"dataId\":4098,\"date\":1618416000000,\"id\":1486728337048092673,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/f18a95995065367c1c283ced82a80fd2.png\",\"note\":\"人生宛如一场牌局,拿到什么牌,那是命中注定,但如何出牌,却操之在己。 \",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/936a1aadd27052e9de366e09e40f5e90.mp3\"}}', 0, '', '2022-01-27 23:50:32'); INSERT INTO `sys_oper_log` VALUES (5634, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"自身不先改变的话,一切都不会改变。\",\"createTime\":1643298632442,\"id\":1486728337643683841,\"source\":\"misora\",\"type\":5}}', 0, '', '2022-01-27 23:50:32'); INSERT INTO `sys_oper_log` VALUES (5635, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-27\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"西北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-01-28\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-01-29\",\"daypower\":\"≤3\",\"daytemp\":\"2\",\"dayweather\":\"雨夹雪\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"西北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"-1\",\"nightweather\":\"阴\",\"nightwind\":\"西北\",\"week\":\"周日\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-28 00:03:47\"}}', 0, '', '2022-01-28 00:05:07'); INSERT INTO `sys_oper_log` VALUES (5636, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643299507795,\"humidity\":\"95\",\"id\":1486732009148661761,\"province\":\"江西\",\"reporttime\":1643299427000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-28 00:05:07'); INSERT INTO `sys_oper_log` VALUES (5637, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"三观不合真的很难做朋友,因为思想经历感官,全都不一样,就像我说大海很漂亮,你却说淹死过很多人。\",\"createTime\":1643299511024,\"id\":1486732022734012418,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-01-28 00:05:11'); INSERT INTO `sys_oper_log` VALUES (5638, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Spring is when you feel like whistling even with a shoe full of slush.\\u000B\",\"dataId\":4103,\"date\":1618848000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/681f6be34e4ca4d8604a3ba86963325e.png\",\"note\":\"所谓春天,就是即使鞋子灌满泥巴,仍然想吹起口哨。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/394d4c0ed5713382909c23a0f61b8fdf.mp3\"}}', 0, '', '2022-01-28 00:05:11'); INSERT INTO `sys_oper_log` VALUES (5639, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:07:00'); INSERT INTO `sys_oper_log` VALUES (5640, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:07:16'); INSERT INTO `sys_oper_log` VALUES (5641, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-29\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-01-31\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-01\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-29 14:03:43\"}}', 0, '', '2022-01-29 14:07:16'); INSERT INTO `sys_oper_log` VALUES (5642, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-29\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-01-31\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-01\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-29 14:03:43\"}}', 0, '', '2022-01-29 14:07:28'); INSERT INTO `sys_oper_log` VALUES (5643, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:07:28'); INSERT INTO `sys_oper_log` VALUES (5644, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-29\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-01-31\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-01\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-29 14:03:43\"}}', 0, '', '2022-01-29 14:08:28'); INSERT INTO `sys_oper_log` VALUES (5645, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:08:28'); INSERT INTO `sys_oper_log` VALUES (5646, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:10:14'); INSERT INTO `sys_oper_log` VALUES (5647, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:10:26'); INSERT INTO `sys_oper_log` VALUES (5648, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:10:59'); INSERT INTO `sys_oper_log` VALUES (5649, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:11:05'); INSERT INTO `sys_oper_log` VALUES (5650, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:11:10'); INSERT INTO `sys_oper_log` VALUES (5651, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:11:14'); INSERT INTO `sys_oper_log` VALUES (5652, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643436420459,\"humidity\":\"93\",\"id\":1487306262495510529,\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:11:20'); INSERT INTO `sys_oper_log` VALUES (5653, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-29 14:11:38'); INSERT INTO `sys_oper_log` VALUES (5654, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-29\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-01-31\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-01\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-29 14:03:43\"}}', 0, '', '2022-01-29 14:17:39'); INSERT INTO `sys_oper_log` VALUES (5655, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:17:39'); INSERT INTO `sys_oper_log` VALUES (5656, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-29\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-01-31\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-01\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-29 14:03:43\"}}', 0, '', '2022-01-29 14:17:41'); INSERT INTO `sys_oper_log` VALUES (5657, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:17:41'); INSERT INTO `sys_oper_log` VALUES (5658, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-29\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-01-31\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-01\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-29 14:03:43\"}}', 0, '', '2022-01-29 14:17:42'); INSERT INTO `sys_oper_log` VALUES (5659, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:17:42'); INSERT INTO `sys_oper_log` VALUES (5660, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-29\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-01-30\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-01-31\",\"daypower\":\"≤3\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-01\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-29 14:03:43\"}}', 0, '', '2022-01-29 14:17:44'); INSERT INTO `sys_oper_log` VALUES (5661, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643436223000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 14:17:45'); INSERT INTO `sys_oper_log` VALUES (5662, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643440101000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 15:29:22'); INSERT INTO `sys_oper_log` VALUES (5663, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7gexv4j31c00u0gpw.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut43siyzj31c00u0n16.jpg\"},{\"imageFileLength\":\"264KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpdo7pij31c00u0dr7.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvasteyj31c00u017k.jpg\"},{\"imageFileLength\":\"167KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8psh6xj31c00u0gqe.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urou6a37j31c00u0dpf.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut94def3j31c00u0ad6.jpg\"},{\"imageFileLength\":\"262KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfwounlj31hc0u07cp.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv4fe6lj31hc0u0k5s.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utamtevtj31hc0u00yd.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-29 15:30:05'); INSERT INTO `sys_oper_log` VALUES (5664, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7uhr5j31c00u0n1z.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb3zt19j31c00u0dkx.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ewal4x5j31ao0t67oa.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uqezevj6j31c00u0456.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usevletzj31c00u0dj9.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97cwznj31c00u0dk4.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb357ylj31c00u0tdg.jpg\"},{\"imageFileLength\":\"179KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq57eacxj31c00u0446.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicpcv3uj31900u0436.jpg\"},{\"imageFileLength\":\"202KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97zs5kj31c00u0n2s.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-29 15:30:08'); INSERT INTO `sys_oper_log` VALUES (5665, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utahht5zj31c00u0jv8.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicp2nk8j31900u0wi0.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut5bsok7j31c00u042h.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urapzgtkj31c00u0q8e.jpg\"},{\"imageFileLength\":\"211KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uray7uqkj31c00u0n3e.jpg\"},{\"imageFileLength\":\"266KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5fyxeyj31hc0u0ak5.jpg\"},{\"imageFileLength\":\"221KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfn55d7j31c00u0wlj.jpg\"},{\"imageFileLength\":\"98KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8i43qxj31c00u076t.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut4ncue0j31hc0u0tbs.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf8c6eaj31c00u0dju.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-29 15:30:09'); INSERT INTO `sys_oper_log` VALUES (5666, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"206KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfl4rbrj31hc0u0q9w.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us96gdgnj31c00u0n1m.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf0h9wnj31ao0t6tdp.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8kjyjnj31c00u0djs.jpg\"},{\"imageFileLength\":\"197KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8qpbh3j31hc0u043l.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs1zsb8j31hc0u0amz.jpg\"},{\"imageFileLength\":\"98KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8i43qxj31c00u076t.jpg\"},{\"imageFileLength\":\"126KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usezfn6xj31c00u0tbx.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4zniloj31hc0u0whs.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5ilfnmj31c00u0435.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-29 15:30:11'); INSERT INTO `sys_oper_log` VALUES (5667, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7uhr5j31c00u0n1z.jpg\"},{\"imageFileLength\":\"95KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbao9jqj31c00u0wgv.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf34db7j31c00u0aj7.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urawrlmtj31c00u0n2a.jpg\"},{\"imageFileLength\":\"315KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ew9x3lcj31c00u0nou.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usepep67j31c00u0n0m.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8y2lfzj31c00u0q7v.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicoymuqj31920u00wn.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt52hal3j31c00u0jxn.jpg\"},{\"imageFileLength\":\"199KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useuoojuj31c00u0afo.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-29 15:30:12'); INSERT INTO `sys_oper_log` VALUES (5668, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9bp7gij31c00u0q89.jpg\"},{\"imageFileLength\":\"177KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursuzxovj31c00u0wqn.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbpqsuwj31c00u0juy.jpg\"},{\"imageFileLength\":\"299KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5qlt09j31hc0u0k2z.jpg\"},{\"imageFileLength\":\"200KB\",\"imageSize\":\"1600x1000\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4x8t2vj318g0rs79f.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb7o6pzj31c00u00wj.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ndnsej31c00u0whs.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut94def3j31c00u0ad6.jpg\"},{\"imageFileLength\":\"227KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf9l8x9j31c00u0tfo.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7rksv4j31hc0u0dje.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-29 15:40:14'); INSERT INTO `sys_oper_log` VALUES (5669, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv9c0agj31c00u0k66.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dirhamjj31c00u0h23.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpb4kkvj31hc0u0gvx.jpg\"},{\"imageFileLength\":\"273KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvka0b2j31hc0u0aol.jpg\"},{\"imageFileLength\":\"197KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfi3lt6j31c00u0447.jpg\"},{\"imageFileLength\":\"164KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28di7j3e1j31c00u0h5s.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5binc6j31c00u0grb.jpg\"},{\"imageFileLength\":\"531KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g28d49ebhej31hc0u0kjl.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvq1b5kj31c00u017a.jpg\"},{\"imageFileLength\":\"126KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useqocucj31c00u0dj6.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-29 15:59:06'); INSERT INTO `sys_oper_log` VALUES (5670, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年02月01日\",\"holidayName\":\"春节\",\"lunarDate\":\"2022年01月01日\",\"lunarHoliday\":true,\"residueDays\":2,\"returnDate\":\"辛丑牛年 冬月廿九\"},{\"date\":\"2022年02月02日\",\"holidayName\":\"世界湿地日\",\"lunarDate\":\"2022年01月02日\",\"lunarHoliday\":false,\"residueDays\":3,\"returnDate\":\"2022年02月02日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"世界抗癌症日\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年02月04日\"},{\"date\":\"2022年02月04日\",\"holidayName\":\"立春\",\"lunarDate\":\"2022年01月04日\",\"lunarHoliday\":true,\"residueDays\":5,\"returnDate\":\"辛丑牛年 腊月初二\"},{\"date\":\"2022年02月07日\",\"holidayName\":\"国际声援南非日\",\"lunarDate\":\"2022年01月07日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年02月07日\"},{\"date\":\"2022年02月10日\",\"holidayName\":\"国际气象节\",\"lunarDate\":\"2022年01月10日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月10日\"},{\"date\":\"2022年02月14日\",\"holidayName\":\"情人节\",\"lunarDate\":\"2022年01月14日\",\"lunarHoliday\":false,\"residueDays\":15,\"returnDate\":\"2022年02月14日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-29 15:59:11'); INSERT INTO `sys_oper_log` VALUES (5671, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643443426000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-29 16:24:47'); INSERT INTO `sys_oper_log` VALUES (5672, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643556830000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-30 23:42:59'); INSERT INTO `sys_oper_log` VALUES (5673, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643556830000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-30 23:43:18'); INSERT INTO `sys_oper_log` VALUES (5674, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-30\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-01-31\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-01\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-30 23:33:50\"}}', 0, '', '2022-01-30 23:43:19'); INSERT INTO `sys_oper_log` VALUES (5675, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"创新是企业的灵魂,是企业持续发展的保证!\",\"createTime\":1643557408383,\"id\":1487813722629206017,\"source\":\"海尔集团\",\"type\":4}}', 0, '', '2022-01-30 23:43:28'); INSERT INTO `sys_oper_log` VALUES (5676, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There are betrayals in war that are childlike compared with our human betrayals during peace.\",\"dataId\":3452,\"date\":1562947200000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-13.jpg\",\"note\":\"战火硝烟中的背叛与我们在太平盛世中的背叛相较而言,就天真单纯得多了!\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-13-day.mp3\"}}', 0, '', '2022-01-30 23:43:28'); INSERT INTO `sys_oper_log` VALUES (5677, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"百分百晴天女孩......莫非是萧敬腾失散多年的妹妹?\",\"createTime\":1643557425923,\"id\":1487813796184715265,\"source\":\"グランドエスケープ (Movie edit)\",\"type\":2}}', 0, '', '2022-01-30 23:43:45'); INSERT INTO `sys_oper_log` VALUES (5678, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有一些人追求永恒的美,他们把无限放到他们的短暂的生命里。另外一些人胸无大志地活着。\",\"createTime\":1643557433070,\"id\":1487813826207543297,\"source\":\"罗曼·罗兰\",\"type\":4}}', 0, '', '2022-01-30 23:43:53'); INSERT INTO `sys_oper_log` VALUES (5679, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"环境愈艰难困苦,就愈需要坚定的毅力和信心,而且,懈怠的害处就愈大。\",\"createTime\":1643557435574,\"id\":1487813836676526081,\"source\":\"列夫·托尔斯泰\",\"type\":4}}', 0, '', '2022-01-30 23:43:55'); INSERT INTO `sys_oper_log` VALUES (5680, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"英:生命中是没有奇迹的,那片滑落在无声世界中的枯叶,也只是一次偶然。文:那你要我相信什么?英:我要你相信,我曾经努力过。\",\"createTime\":1643557440514,\"id\":1487813857404776450,\"source\":\"似水年华\",\"type\":3}}', 0, '', '2022-01-30 23:44:00'); INSERT INTO `sys_oper_log` VALUES (5681, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"比自己,比梦想更重要的东西永远都存在着...\",\"createTime\":1643557442816,\"id\":1487813867060064258,\"source\":\"hccs\",\"type\":5}}', 0, '', '2022-01-30 23:44:02'); INSERT INTO `sys_oper_log` VALUES (5682, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"183KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us92solaj31c00u0aff.jpg\"},{\"imageFileLength\":\"291KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urscddbnj31c00u04ap.jpg\"},{\"imageFileLength\":\"369KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpd5djpj31hc0u0k21.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dobb94cj31hc0u0n21.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utalqw5ij31c00u0aec.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpjkyn6j31c00u0k2c.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfgkb91j31c00u0tbw.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us93kanwj31c00u0juy.jpg\"},{\"imageFileLength\":\"89KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta271j9j31c00u0ac8.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8o099oj31hc0u0wj5.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-30 23:45:01'); INSERT INTO `sys_oper_log` VALUES (5683, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"84KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbotb5j31c00u040h.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq52fw6ij31c00u0jwq.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uico06mcj31920u0q6s.jpg\"},{\"imageFileLength\":\"314KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5iiy7gj31hc0u04aa.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb1kchmj31hc0u0tdp.jpg\"},{\"imageFileLength\":\"252KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54p98dj31c00u0460.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicnc37gj31920u0tcl.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8hp51fj31c00u0dkx.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf148q8j31c00u0jwf.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5cuj78j31c00u0dld.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-30 23:45:09'); INSERT INTO `sys_oper_log` VALUES (5684, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"162KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut57cjouj31hc0u0gpr.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4fzz13j31c00u0gr2.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf0h9wnj31ao0t6tdp.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4phsk2j31c00u0jwn.jpg\"},{\"imageFileLength\":\"205KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb7i7faj31c00u07a1.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8tkdbgj31c00u0djm.jpg\"},{\"imageFileLength\":\"208KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9byeb4j31c00u044k.jpg\"},{\"imageFileLength\":\"262KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqeyfe17j31c00u0tf4.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf6m5dzj31400p00z1.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbdmvl8j31hc0u0jv6.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-30 23:45:11'); INSERT INTO `sys_oper_log` VALUES (5685, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"208KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut844peaj31c00u0wkb.jpg\"},{\"imageFileLength\":\"107KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7l1j88j31c00u0mzv.jpg\"},{\"imageFileLength\":\"114KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7l53aoj31c00u0whj.jpg\"},{\"imageFileLength\":\"287KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpbf59xj31c00u0dpf.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraccr4bj31c00u0jw8.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq5651puj31hc0u0794.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utargvguj31c00u0whm.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gsxa8lvj31c00u0zxm.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8omfdnj31c00u0aei.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4fbql0j31hc0u0juo.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-30 23:45:13'); INSERT INTO `sys_oper_log` VALUES (5686, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"184KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ia31hj31hc0u0wj5.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfc4idvj31hc0u00xg.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urathl1xj31c00u043a.jpg\"},{\"imageFileLength\":\"8KB\",\"imageSize\":\"480x360\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbmw46wj31hc0u077n.jpg\"},{\"imageFileLength\":\"108KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utaz82r4j31c00u0dio.jpg\"},{\"imageFileLength\":\"287KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpbf59xj31c00u0dpf.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useu7tuzj31c00u0gpk.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uq54z5n0j31c00u00yi.jpg\"},{\"imageFileLength\":\"103KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut93an1aj31hc0u0mzj.jpg\"},{\"imageFileLength\":\"92KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1uq1bd02rj31c00u0abx.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-30 23:45:14'); INSERT INTO `sys_oper_log` VALUES (5687, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"264KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfvcgx6j31hc0u0110.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf1701gj31c00u0q8f.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useks5rcj31c00u0gpo.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqd9m82j31c00u0439.jpg\"},{\"imageFileLength\":\"266KB\",\"imageSize\":\"1621x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5r62d6j31910u019g.jpg\"},{\"imageFileLength\":\"154KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us88z2ynj31c00u0gpv.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8p1fz4j31c00u0ae5.jpg\"},{\"imageFileLength\":\"202KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg0dgitj31c00u0grw.jpg\"},{\"imageFileLength\":\"89KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta271j9j31c00u0ac8.jpg\"},{\"imageFileLength\":\"285KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gtpjgqzj31c00u01kx.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-30 23:46:04'); INSERT INTO `sys_oper_log` VALUES (5688, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urat0fc2j31c00u07a3.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54ofotj31c00u042n.jpg\"},{\"imageFileLength\":\"300KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg2lk8sj31hc0u0n63.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ural2vxij31c00u0tdq.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfvqtbzj31c00u0jyl.jpg\"},{\"imageFileLength\":\"266KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5fyxeyj31hc0u0ak5.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utalqw5ij31c00u0aec.jpg\"},{\"imageFileLength\":\"161KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5mimkzj31c00u0jwn.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utalnup2j31ao0t677k.jpg\"},{\"imageFileLength\":\"312KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urphzevej31hc0u0dpo.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-30 23:49:04'); INSERT INTO `sys_oper_log` VALUES (5689, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643556830000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-30 23:50:50'); INSERT INTO `sys_oper_log` VALUES (5690, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utahht5zj31c00u0jv8.jpg\"},{\"imageFileLength\":\"110KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut3zy8jej31c00u0acw.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf0h9wnj31ao0t6tdp.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1guensj31c00u0adl.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbc4jvoj31c00u0wjj.jpg\"},{\"imageFileLength\":\"266KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5fyxeyj31hc0u0ak5.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut48527uj31c00u0wix.jpg\"},{\"imageFileLength\":\"256KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8s9tpaj31c00u0wm8.jpg\"},{\"imageFileLength\":\"236KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usesbmakj31hc0u0wkp.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4fbql0j31hc0u0juo.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-30 23:50:51'); INSERT INTO `sys_oper_log` VALUES (5691, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643556830000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-30 23:51:11'); INSERT INTO `sys_oper_log` VALUES (5692, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"165KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ycin6j31hc0u042q.jpg\"},{\"imageFileLength\":\"233KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrmg30dj31c00u0apb.jpg\"},{\"imageFileLength\":\"251KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursycnckj31hc0u0n9x.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52s4okj31c00u0430.jpg\"},{\"imageFileLength\":\"160KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf59ixvj31900u043d.jpg\"},{\"imageFileLength\":\"312KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urazhfy8j31hc0u0gtw.jpg\"},{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dyh77afj31c00u0195.jpg\"},{\"imageFileLength\":\"160KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb5vyibj31c00u0aeq.jpg\"},{\"imageFileLength\":\"236KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usesbmakj31hc0u0wkp.jpg\"},{\"imageFileLength\":\"336KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ersrcv1j31c00u01kx.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-30 23:51:12'); INSERT INTO `sys_oper_log` VALUES (5693, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1643556830000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-30 23:52:32'); INSERT INTO `sys_oper_log` VALUES (5694, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"193KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ewal4x5j31ao0t67oa.jpg\"},{\"imageFileLength\":\"203KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf51lksj31c00u0ago.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursuyt10j31hc0u04bq.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbe6pxuj31hc0u0gpe.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut548th5j31hc0u0q7h.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvuo4e0j31c00u07j7.jpg\"},{\"imageFileLength\":\"92KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb3skbaj31c00u0mzg.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaxc36qj31hc0u00yy.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useuk4g6j31c00u0tcd.jpg\"},{\"imageFileLength\":\"256KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8s9tpaj31c00u0wm8.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-30 23:52:33'); INSERT INTO `sys_oper_log` VALUES (5695, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1643632718000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 20:53:19'); INSERT INTO `sys_oper_log` VALUES (5696, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1643632718000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 20:53:26'); INSERT INTO `sys_oper_log` VALUES (5697, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-01-31\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-01\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"西\",\"week\":\"周四\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-01-31 20:38:38\"}}', 0, '', '2022-01-31 20:53:26'); INSERT INTO `sys_oper_log` VALUES (5698, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643641870615,\"humidity\":\"92\",\"id\":1488167982923440130,\"province\":\"江西\",\"reporttime\":1643641700000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 23:11:10'); INSERT INTO `sys_oper_log` VALUES (5699, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643641870615,\"humidity\":\"92\",\"id\":1488167982923440130,\"province\":\"江西\",\"reporttime\":1643641700000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 23:11:36'); INSERT INTO `sys_oper_log` VALUES (5700, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643641870615,\"humidity\":\"92\",\"id\":1488167982923440130,\"province\":\"江西\",\"reporttime\":1643641700000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 23:12:04'); INSERT INTO `sys_oper_log` VALUES (5701, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643641870615,\"humidity\":\"92\",\"id\":1488167982923440130,\"province\":\"江西\",\"reporttime\":1643641700000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 23:12:11'); INSERT INTO `sys_oper_log` VALUES (5702, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643641870615,\"humidity\":\"92\",\"id\":1488167982923440130,\"province\":\"江西\",\"reporttime\":1643641700000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 23:12:36'); INSERT INTO `sys_oper_log` VALUES (5703, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643641870615,\"humidity\":\"92\",\"id\":1488167982923440130,\"province\":\"江西\",\"reporttime\":1643641700000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 23:15:19'); INSERT INTO `sys_oper_log` VALUES (5704, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643641870615,\"humidity\":\"92\",\"id\":1488167982923440130,\"province\":\"江西\",\"reporttime\":1643641700000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 23:15:25'); INSERT INTO `sys_oper_log` VALUES (5705, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643641870615,\"humidity\":\"92\",\"id\":1488167982923440130,\"province\":\"江西\",\"reporttime\":1643641700000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 23:15:35'); INSERT INTO `sys_oper_log` VALUES (5706, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643641870615,\"humidity\":\"92\",\"id\":1488167982923440130,\"province\":\"江西\",\"reporttime\":1643641700000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 23:15:58'); INSERT INTO `sys_oper_log` VALUES (5707, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643641870615,\"humidity\":\"92\",\"id\":1488167982923440130,\"province\":\"江西\",\"reporttime\":1643641700000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-01-31 23:16:27'); INSERT INTO `sys_oper_log` VALUES (5708, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"142KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq1hbj37j31ao0t677y.jpg\"},{\"imageFileLength\":\"314KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfkv7bdj31c00u010e.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfvqtbzj31c00u0jyl.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utabkr0fj31c00u0tbz.jpg\"},{\"imageFileLength\":\"232KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpte9j1j31c00u0qe5.jpg\"},{\"imageFileLength\":\"93KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut82jqkhj31c00u00v1.jpg\"},{\"imageFileLength\":\"236KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usesbmakj31hc0u0wkp.jpg\"},{\"imageFileLength\":\"336KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ersrcv1j31c00u01kx.jpg\"},{\"imageFileLength\":\"106KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usfmxuqqj31c00u0418.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fat03j31hc0u00wc.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-01-31 23:17:10'); INSERT INTO `sys_oper_log` VALUES (5709, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"美德有如名香,经燃烧或压抑而其香愈烈:盖幸运最难显露恶德而厄运最能显露美德也。\",\"createTime\":1643642234950,\"id\":1488169511063576578,\"source\":\"培根\",\"type\":4}}', 0, '', '2022-01-31 23:17:14'); INSERT INTO `sys_oper_log` VALUES (5710, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You’re consumed with the world’s perception of you.\",\"createTime\":1643642234993,\"dataId\":3782,\"date\":1591113600000,\"id\":1488169511189405697,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/94a0949756d012dd9fe249af199e5ed5.png\",\"note\":\"你被世界对你的看法所吞噬。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/1a929f11cd2039c4dbc9140ef500db3c.mp3\"}}', 0, '', '2022-01-31 23:17:15'); INSERT INTO `sys_oper_log` VALUES (5711, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"本人携对g姓双子少年的土味情话匆匆赶来 想与你入巷间吃汤面,从去年的纷飞大雪,到今年的梅雨连绵。\",\"createTime\":1643642238633,\"id\":1488169526519586817,\"source\":\"盗将行\",\"type\":2}}', 0, '', '2022-01-31 23:17:18'); INSERT INTO `sys_oper_log` VALUES (5712, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我喜欢三月的风. 六月的雨. 不落的太阳. 和最好的你.\",\"createTime\":1643642240216,\"id\":1488169533121421313,\"source\":\"起风了\",\"type\":2}}', 0, '', '2022-01-31 23:17:20'); INSERT INTO `sys_oper_log` VALUES (5713, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有些事情我不看透,不是我笨,只是我太善良。\",\"createTime\":1643642243530,\"id\":1488169547017150466,\"source\":\"岛音。\",\"type\":5}}', 0, '', '2022-01-31 23:17:23'); INSERT INTO `sys_oper_log` VALUES (5714, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"有些事情我不看透,不是我笨,只是我太善良。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":28,\"errorCode\":0,\"transResult\":[{\"dst\":\"There are some things I don\'t see through, not my stupid, only I am too kind.\",\"src\":\"有些事情我不看透,不是我笨,只是我太善良。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-01-31 23:17:27'); INSERT INTO `sys_oper_log` VALUES (5715, '获取历史热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.getHistoryTopSearchByDate()', 'GET', 1, 'admin', '', '/topsearch/getHistoryTopSearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"douyinList\":[],\"baiduList\":[{\"createTime\":1643299201000,\"digest\":\"\",\"hotnum\":4057464,\"id\":1486730721660911619,\"title\":\"#虎虎生威家宴菜#\",\"trend\":\"新\"}],\"wechatList\":[],\"allnetworkList\":[],\"weiboList\":[{\"createTime\":1643299201000,\"hotnum\":\" 191411\",\"hottag\":\"\",\"hotword\":\"没有人能在家具城打赢成龙\",\"id\":1486730720490700819},{\"createTime\":1643299201000,\"hotnum\":\" 190432\",\"hottag\":\"新\",\"hotword\":\"饭堂除夕夜\",\"id\":1486730720490700820}]}}', 0, '', '2022-01-31 23:19:24'); INSERT INTO `sys_oper_log` VALUES (5716, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-31 23:20:38'); INSERT INTO `sys_oper_log` VALUES (5717, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1643642453876,\"en\":\"What weakness is it that you can never tolerate?---Sycophancy and servile flattery.\",\"id\":1488170429293191170,\"zh\":\"你最不能容忍的缺点是什么?----奴颜婢膝.\"}}', 0, '', '2022-01-31 23:20:53'); INSERT INTO `sys_oper_log` VALUES (5718, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"What weakness is it that you can never tolerate?---Sycophancy and servile flattery.\",\"zh\":\"你最不能容忍的缺点是什么?----奴颜婢膝.\"}}', 0, '', '2022-01-31 23:20:57'); INSERT INTO `sys_oper_log` VALUES (5719, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-31 23:50:36'); INSERT INTO `sys_oper_log` VALUES (5720, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-01-31 23:50:43'); INSERT INTO `sys_oper_log` VALUES (5721, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-02-01 00:22:54'); INSERT INTO `sys_oper_log` VALUES (5722, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1643645031000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-01 00:25:52'); INSERT INTO `sys_oper_log` VALUES (5723, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643702515438,\"humidity\":\"92\",\"id\":1488422345763852290,\"province\":\"江西\",\"reporttime\":1643700820000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-01 16:01:55'); INSERT INTO `sys_oper_log` VALUES (5724, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1643702620000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-01 16:25:15'); INSERT INTO `sys_oper_log` VALUES (5725, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643794916272,\"humidity\":\"93\",\"id\":1488809902951497729,\"province\":\"江西\",\"reporttime\":1643794427000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 17:41:56'); INSERT INTO `sys_oper_log` VALUES (5726, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643794916272,\"humidity\":\"93\",\"id\":1488809902951497729,\"province\":\"江西\",\"reporttime\":1643794427000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 17:42:05'); INSERT INTO `sys_oper_log` VALUES (5727, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I\'m doing better than I ever was.\",\"dataId\":4336,\"date\":1638979200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/497fd8a3f47fa6a7e076c1691cda8ace.png\",\"note\":\"我已今非昔比。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/1e23085748ac20116e4b2088990efb14.mp3\"}}', 0, '', '2022-02-02 17:42:20'); INSERT INTO `sys_oper_log` VALUES (5728, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生命之箭一经射出就永不停止,永远追逐着那逃避它的目标。\",\"createTime\":1643794940885,\"id\":1488810006135570434,\"source\":\"罗曼·罗兰\",\"type\":4}}', 0, '', '2022-02-02 17:42:20'); INSERT INTO `sys_oper_log` VALUES (5729, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643804223747,\"humidity\":\"95\",\"id\":1488848941322731522,\"province\":\"江西\",\"reporttime\":1643803422000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 20:17:03'); INSERT INTO `sys_oper_log` VALUES (5730, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you focus on what you left behind, you will never be able to see what lies ahead. \",\"createTime\":1643804258388,\"dataId\":4205,\"date\":1627660800000,\"id\":1488849086563090434,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3815124d4be854278b3976ac388611e7.png\",\"note\":\"如果你专注于过去,你将永远看不到未来。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a99b1c49bc106f215496008f87aefed5.mp3\"}}', 0, '', '2022-02-02 20:17:38'); INSERT INTO `sys_oper_log` VALUES (5731, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"假如我年少有为…\",\"createTime\":1643804258389,\"id\":1488849086630199297,\"source\":\"年少有为\",\"type\":2}}', 0, '', '2022-02-02 20:17:38'); INSERT INTO `sys_oper_log` VALUES (5732, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"假如我年少有为…\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":12,\"errorCode\":0,\"transResult\":[{\"dst\":\"If I was young and promising...\",\"src\":\"假如我年少有为…\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-02-02 20:17:43'); INSERT INTO `sys_oper_log` VALUES (5733, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"假如我年少有为…\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"If I were young and promising\",\"src\":\"假如我年少有为…\"}]}}', 0, '', '2022-02-02 20:17:46'); INSERT INTO `sys_oper_log` VALUES (5734, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"假如我年少有为…\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"If I were young and promising\",\"src\":\"假如我年少有为…\"}]}}', 0, '', '2022-02-02 20:17:49'); INSERT INTO `sys_oper_log` VALUES (5735, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"假如我年少有为…\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"If I was young and promising...\",\"src\":\"假如我年少有为…\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-02-02 20:17:51'); INSERT INTO `sys_oper_log` VALUES (5736, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"If you focus on what you left behind, you will never be able to see what lies ahead.\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":60,\"errorCode\":0,\"transResult\":[{\"dst\":\"如果你专注于你所留下的,你将永远无法看到前方有什么。\",\"src\":\"If you focus on what you left behind, you will never be able to see what lies ahead.\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-02-02 20:18:03'); INSERT INTO `sys_oper_log` VALUES (5737, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"If you focus on what you left behind, you will never be able to see what lies ahead.\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"en\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"如果你专注于你留下的东西,你将永远看不到未来。\",\"src\":\"If you focus on what you left behind, you will never be able to see what lies ahead.\"}]}}', 0, '', '2022-02-02 20:18:09'); INSERT INTO `sys_oper_log` VALUES (5738, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1643803422000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 20:37:04'); INSERT INTO `sys_oper_log` VALUES (5739, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1643803422000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 20:37:07'); INSERT INTO `sys_oper_log` VALUES (5740, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1643805519000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 20:57:17'); INSERT INTO `sys_oper_log` VALUES (5741, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1643805519000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 20:57:22'); INSERT INTO `sys_oper_log` VALUES (5742, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643807936329,\"humidity\":\"95\",\"id\":1488864513020264450,\"province\":\"江西\",\"reporttime\":1643807305000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 21:18:56'); INSERT INTO `sys_oper_log` VALUES (5743, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643807936329,\"humidity\":\"95\",\"id\":1488864513020264450,\"province\":\"江西\",\"reporttime\":1643807305000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 21:19:18'); INSERT INTO `sys_oper_log` VALUES (5744, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643807936329,\"humidity\":\"95\",\"id\":1488864513020264450,\"province\":\"江西\",\"reporttime\":1643807305000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 21:20:30'); INSERT INTO `sys_oper_log` VALUES (5745, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-02-02 21:43:33'); INSERT INTO `sys_oper_log` VALUES (5746, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643809781181,\"humidity\":\"95\",\"id\":1488872250886193153,\"province\":\"江西\",\"reporttime\":1643808833000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 21:49:41'); INSERT INTO `sys_oper_log` VALUES (5747, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1643812721000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 22:45:02'); INSERT INTO `sys_oper_log` VALUES (5748, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"186KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urve4h82j31hc0u0wsr.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9a3cs3j31c00u0q6m.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28en782onj31c00u0qc4.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbl1qgqj31c00u0jup.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uravfb8jj31c00u0n1h.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usesjxyhj31hc0u0afi.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq1hdzg6j31400p0tbv.jpg\"},{\"imageFileLength\":\"243KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfwwjn3j31c00u0tga.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8omfdnj31c00u0aei.jpg\"},{\"imageFileLength\":\"226KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9aoq8fj31c00u07b7.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-02 22:46:02'); INSERT INTO `sys_oper_log` VALUES (5749, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-02-02 23:14:45'); INSERT INTO `sys_oper_log` VALUES (5750, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:27:54'); INSERT INTO `sys_oper_log` VALUES (5751, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:30:20'); INSERT INTO `sys_oper_log` VALUES (5752, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:30:27'); INSERT INTO `sys_oper_log` VALUES (5753, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:30:47'); INSERT INTO `sys_oper_log` VALUES (5754, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:30:48'); INSERT INTO `sys_oper_log` VALUES (5755, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:30:50'); INSERT INTO `sys_oper_log` VALUES (5756, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:31:41'); INSERT INTO `sys_oper_log` VALUES (5757, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:31:43'); INSERT INTO `sys_oper_log` VALUES (5758, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:31:51'); INSERT INTO `sys_oper_log` VALUES (5759, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:31:51'); INSERT INTO `sys_oper_log` VALUES (5760, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:32:43'); INSERT INTO `sys_oper_log` VALUES (5761, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:32:43'); INSERT INTO `sys_oper_log` VALUES (5762, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:32:50'); INSERT INTO `sys_oper_log` VALUES (5763, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:32:51'); INSERT INTO `sys_oper_log` VALUES (5764, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:32:56'); INSERT INTO `sys_oper_log` VALUES (5765, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:32:56'); INSERT INTO `sys_oper_log` VALUES (5766, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:33:05'); INSERT INTO `sys_oper_log` VALUES (5767, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:05'); INSERT INTO `sys_oper_log` VALUES (5768, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:10'); INSERT INTO `sys_oper_log` VALUES (5769, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:11'); INSERT INTO `sys_oper_log` VALUES (5770, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:11'); INSERT INTO `sys_oper_log` VALUES (5771, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:13'); INSERT INTO `sys_oper_log` VALUES (5772, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:17'); INSERT INTO `sys_oper_log` VALUES (5773, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:20'); INSERT INTO `sys_oper_log` VALUES (5774, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:21'); INSERT INTO `sys_oper_log` VALUES (5775, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:22'); INSERT INTO `sys_oper_log` VALUES (5776, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:22'); INSERT INTO `sys_oper_log` VALUES (5777, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:23'); INSERT INTO `sys_oper_log` VALUES (5778, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:24'); INSERT INTO `sys_oper_log` VALUES (5779, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:24'); INSERT INTO `sys_oper_log` VALUES (5780, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:24'); INSERT INTO `sys_oper_log` VALUES (5781, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:26'); INSERT INTO `sys_oper_log` VALUES (5782, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:26'); INSERT INTO `sys_oper_log` VALUES (5783, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:27'); INSERT INTO `sys_oper_log` VALUES (5784, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:27'); INSERT INTO `sys_oper_log` VALUES (5785, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:27'); INSERT INTO `sys_oper_log` VALUES (5786, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643815673878,\"humidity\":\"95\",\"id\":1488896966661488642,\"province\":\"江西\",\"reporttime\":1643814500000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-02 23:33:51'); INSERT INTO `sys_oper_log` VALUES (5787, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-02\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-02 23:08:20\"}}', 0, '', '2022-02-02 23:33:51'); INSERT INTO `sys_oper_log` VALUES (5788, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-02-06\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-03 19:33:43\"}}', 0, '', '2022-02-03 19:50:20'); INSERT INTO `sys_oper_log` VALUES (5789, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"createTime\":1643889020960,\"humidity\":\"90\",\"id\":1489204606612516866,\"province\":\"江西\",\"reporttime\":1643888023000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-03 19:50:20'); INSERT INTO `sys_oper_log` VALUES (5790, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We are here to add what we can to life, not to get what we can from life.\",\"createTime\":1643889441698,\"dataId\":3954,\"date\":1605974400000,\"id\":1489206371323981825,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3c594b64eb5cd9520b80a3fdc2ff01e9.png\",\"note\":\"我们活着应该尽自己所能给生活创造一些东西,而非一味索取。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e68cb4b265120590dfe54bf1f170d3e0.mp3\"}}', 0, '', '2022-02-03 19:57:21'); INSERT INTO `sys_oper_log` VALUES (5791, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"什么是权利?当一个人犯了罪,法官依法判他死刑。这不叫权利,这叫正义。而当一个人同样犯了罪,皇帝可以判他死刑,也可以不判他死刑,于是赦免了他,这就叫权利!\",\"createTime\":1643889441690,\"id\":1489206371256872962,\"source\":\"辛德勒名单(Schindler\'s list)\",\"type\":3}}', 0, '', '2022-02-03 19:57:21'); INSERT INTO `sys_oper_log` VALUES (5792, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"107KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52h3f5j31c00u0ju3.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4zmxu5j31hc0u0n1l.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1280x800\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uq1m5arwj30zk0m8dik.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb9c65bj31hc0u0wiu.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uico06mcj31920u0q6s.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq53f8g1j31c00u079q.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfgkb91j31c00u0tbw.jpg\"},{\"imageFileLength\":\"270KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqflo7zqj31hc0u0qb8.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gsxa8lvj31c00u0zxm.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fy8xuovj31c00u0qe1.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-03 22:24:23'); INSERT INTO `sys_oper_log` VALUES (5793, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-02-06\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-03 22:03:42\"}}', 0, '', '2022-02-03 22:24:26'); INSERT INTO `sys_oper_log` VALUES (5794, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-02-06\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-03 22:03:42\"}}', 0, '', '2022-02-03 22:24:28'); INSERT INTO `sys_oper_log` VALUES (5795, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"city\":\"萍乡市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1643897022000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-03 22:24:35'); INSERT INTO `sys_oper_log` VALUES (5796, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360300\",\"casts\":[{\"date\":\"2022-02-03\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-02-04\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-05\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-02-06\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"萍乡市\",\"province\":\"江西\",\"reporttime\":\"2022-02-03 22:03:42\"}}', 0, '', '2022-02-03 22:24:35'); INSERT INTO `sys_oper_log` VALUES (5797, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-07\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-08\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-09\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-10\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-07 19:33:59\"}}', 0, '', '2022-02-07 19:59:13'); INSERT INTO `sys_oper_log` VALUES (5798, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644235154069,\"humidity\":\"86\",\"id\":1490656394107105281,\"province\":\"江西\",\"reporttime\":1644233639000,\"temperature\":\"3\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-07 19:59:14'); INSERT INTO `sys_oper_log` VALUES (5799, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你以为躲起来就找不到你了吗?没有用的!象你这样出色的男人,无论在什么地方,都像漆黑中的萤火虫一样,那样的鲜明,那样的出众。你那忧郁的眼神,稀嘘的胡喳子,神乎其神的刀法,和那杯dry martine,都深深地迷住了我。不过,虽然这是这样的出色,但是行有行规,无论怎样你要付清昨晚的过夜费呀,叫女人不用给钱吗?\",\"createTime\":1644238908963,\"id\":1490672143219503106,\"source\":\"零零柒\",\"type\":3}}', 0, '', '2022-02-07 21:01:48'); INSERT INTO `sys_oper_log` VALUES (5800, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Genius is one percent inspiration and ninety-nine percent perspiration.\",\"createTime\":1644238908972,\"dataId\":3434,\"date\":1561564800000,\"id\":1490672143286611970,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-27.jpg\",\"note\":\"天才等于百分之一的灵感加百分之九十九的汗水。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-27-day.mp3\"}}', 0, '', '2022-02-07 21:01:48'); INSERT INTO `sys_oper_log` VALUES (5801, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"你以为躲起来就找不到你了吗?没有用的!象你这样出色的男人,无论在什么地方,都怎样你要付清昨晚的过夜费呀,叫女人不用给钱吗?\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":54,\"errorCode\":0,\"transResult\":[{\"dst\":\"Do you think hide couldn\'t find you?\",\"src\":\"你以为躲起来就找不到你了吗?\"},{\"dst\":\"No use!\",\"src\":\"没有用的!\"},{\"dst\":\"Good man like you, no matter where, how are you to pay the overnight fee, last night call women need not to money?\",\"src\":\"象你这样出色的男人,无论在什么地方,都怎样你要付清昨晚的过夜费呀,叫女人不用给钱吗?\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-02-07 21:01:57'); INSERT INTO `sys_oper_log` VALUES (5802, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I am grateful for what I am and have. My Thanksgiving is perpetual.\",\"createTime\":1644238927594,\"dataId\":3958,\"date\":1606320000000,\"id\":1490672221401329666,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/f6019cd04110e5afdd3c97766a6fc910.png\",\"note\":\"我对自己的现状和所拥有的一切心存感激。对我来说每一天都是感恩节。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/d8964448b06bc5eab35c4888bd452f44.mp3\"}}', 0, '', '2022-02-07 21:02:07'); INSERT INTO `sys_oper_log` VALUES (5803, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个人经过不同程度的锻炼,就获得不同程度的修养、不同程度的效益。好比香料,捣得愈碎,磨得愈细,香得愈浓烈。\",\"createTime\":1644238927600,\"id\":1490672221401329667,\"source\":\"杨绛\",\"type\":1}}', 0, '', '2022-02-07 21:02:07'); INSERT INTO `sys_oper_log` VALUES (5804, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1644238943829,\"en\":\"Law makers should not be law breakers.\",\"id\":1490672289504243713,\"zh\":\"立法者不可违法。\"}}', 0, '', '2022-02-07 21:02:23'); INSERT INTO `sys_oper_log` VALUES (5805, '获取历史热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.getHistoryTopSearchByDate()', 'GET', 1, 'admin', '', '/topsearch/getHistoryTopSearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"douyinList\":[],\"baiduList\":[],\"wechatList\":[],\"allnetworkList\":[],\"weiboList\":[]}}', 0, '', '2022-02-07 21:02:55'); INSERT INTO `sys_oper_log` VALUES (5806, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7gexv4j31c00u0gpw.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq59gh4cj31c00u079v.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpb4kkvj31hc0u0gvx.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpd4zxwj31c00u0tjo.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us94m8ovj31c00u0wjg.jpg\"},{\"imageFileLength\":\"121KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utav4pt7j31hc0u041i.jpg\"},{\"imageFileLength\":\"298KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9lryjpj31ao0t6n4x.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1etslbj31hc0u0gop.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8xn6smj31c00u042j.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7bm9tj31c00u0q8t.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-07 21:03:09'); INSERT INTO `sys_oper_log` VALUES (5807, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-08\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-09\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-10\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-11\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-08 09:33:51\"}}', 0, '', '2022-02-08 09:49:13'); INSERT INTO `sys_oper_log` VALUES (5808, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644284953288,\"humidity\":\"79\",\"id\":1490865267163664386,\"province\":\"江西\",\"reporttime\":1644284031000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-08 09:49:13'); INSERT INTO `sys_oper_log` VALUES (5809, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Will, work and wait are the pyramidal cornerstones for success.\",\"createTime\":1644285181845,\"dataId\":4155,\"date\":1623340800000,\"id\":1490866225801203713,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/7cd5bfea329cf43ed5e408bea15fb4f6.png\",\"note\":\"意志、工作和等待是成功的金字塔的基石。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/437f167fe6dfa68a4d62f7ca3595a88a.mp3\"}}', 0, '', '2022-02-08 09:53:01'); INSERT INTO `sys_oper_log` VALUES (5810, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"谦固美名,过谦者,宜防其诈。\",\"createTime\":1641519240000,\"id\":1479265025247031297,\"source\":\"朱熹\",\"type\":4}}', 0, '', '2022-02-08 09:53:04'); INSERT INTO `sys_oper_log` VALUES (5811, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursgvyadj31c00u0gxb.jpg\"},{\"imageFileLength\":\"349KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uray79mcj31c00u0n7f.jpg\"},{\"imageFileLength\":\"111KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utake5qfj31c00u0q5r.jpg\"},{\"imageFileLength\":\"205KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb7i7faj31c00u07a1.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbacillj31c00u0gri.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gysd0vsj31c00u0adl.jpg\"},{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28eod61v0j31c00u0kjl.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28domz88jj31c00u04ef.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicji4rwj31900u041a.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5015kpj31hc0u0q8p.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-08 09:53:20'); INSERT INTO `sys_oper_log` VALUES (5812, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年02月10日\",\"holidayName\":\"国际气象节\",\"lunarDate\":\"2022年01月10日\",\"lunarHoliday\":false,\"residueDays\":1,\"returnDate\":\"2022年02月10日\"},{\"date\":\"2022年02月14日\",\"holidayName\":\"情人节\",\"lunarDate\":\"2022年01月14日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年02月14日\"},{\"date\":\"2022年02月15日\",\"holidayName\":\"元宵节\",\"lunarDate\":\"2022年01月15日\",\"lunarHoliday\":true,\"residueDays\":6,\"returnDate\":\"辛丑牛年 腊月十三\"},{\"date\":\"2022年02月19日\",\"holidayName\":\"雨水\",\"lunarDate\":\"2022年01月19日\",\"lunarHoliday\":true,\"residueDays\":10,\"returnDate\":\"辛丑牛年 腊月十七\"},{\"date\":\"2022年02月21日\",\"holidayName\":\"国际母语日\",\"lunarDate\":\"2022年01月21日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年02月21日\"},{\"date\":\"2022年02月24日\",\"holidayName\":\"第三世界青年日\",\"lunarDate\":\"2022年01月24日\",\"lunarHoliday\":false,\"residueDays\":15,\"returnDate\":\"2022年02月24日\"},{\"date\":\"2022年02月28日\",\"holidayName\":\"国际罕见病日\",\"lunarDate\":\"2022年01月28日\",\"lunarHoliday\":false,\"residueDays\":19,\"returnDate\":\"2022年02月28日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-08 09:53:23'); INSERT INTO `sys_oper_log` VALUES (5813, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1644291236000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-08 11:42:46'); INSERT INTO `sys_oper_log` VALUES (5814, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-08\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-09\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-10\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-11\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-08 11:33:56\"}}', 0, '', '2022-02-08 11:42:47'); INSERT INTO `sys_oper_log` VALUES (5815, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1644291236000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-08 11:43:34'); INSERT INTO `sys_oper_log` VALUES (5816, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-08\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-09\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-10\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-11\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-08 11:33:56\"}}', 0, '', '2022-02-08 11:43:35'); INSERT INTO `sys_oper_log` VALUES (5817, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从卖气球的人那里,每个孩子牵走一个心愿。\",\"createTime\":1644299106778,\"id\":1490924631190913025,\"source\":\"北岛\",\"type\":1}}', 0, '', '2022-02-08 13:45:06'); INSERT INTO `sys_oper_log` VALUES (5818, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You go halfway around the world chasing something. And the whole time, it\'s in your own backyard.\",\"createTime\":1644299106795,\"dataId\":4050,\"date\":1614268800000,\"id\":1490924631253827585,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/221c7b6876b427f10fdafe129e76e892.png\",\"note\":\"众里寻他千百度,蓦然回首,那“物”却在灯火阑珊处。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6a0b6f5e7c9b035561dbdf379e7c9713.mp3\"}}', 0, '', '2022-02-08 13:45:06'); INSERT INTO `sys_oper_log` VALUES (5819, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"processor\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"处理器\",\"src\":\"processor\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-02-08 13:45:14'); INSERT INTO `sys_oper_log` VALUES (5820, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":53}}', 0, '', '2022-02-08 14:06:46'); INSERT INTO `sys_oper_log` VALUES (5821, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":53}}', 0, '', '2022-02-08 14:06:46'); INSERT INTO `sys_oper_log` VALUES (5822, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-08\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-09\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-10\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-11\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-08 20:38:48\"}}', 0, '', '2022-02-08 20:48:22'); INSERT INTO `sys_oper_log` VALUES (5823, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644324503115,\"humidity\":\"81\",\"id\":1491031151163936769,\"province\":\"江西\",\"reporttime\":1644323928000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-08 20:48:23'); INSERT INTO `sys_oper_log` VALUES (5824, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-09\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-10\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-11\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-12\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-09 08:38:42\"}}', 0, '', '2022-02-09 08:42:01'); INSERT INTO `sys_oper_log` VALUES (5825, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644367321933,\"humidity\":\"95\",\"id\":1491210746300981249,\"province\":\"江西\",\"reporttime\":1644367122000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-09 08:42:01'); INSERT INTO `sys_oper_log` VALUES (5826, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"山中人不信有鱼大如木,海上人不信有木大如鱼。\",\"createTime\":1644367325153,\"id\":1491210759785668609,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-09 08:42:05'); INSERT INTO `sys_oper_log` VALUES (5827, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The best way to predict your future is to create it.\",\"dataId\":4281,\"date\":1634227200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/6f3139b30f126a956caefe60649a01d2.png\",\"note\":\"预测未来的最好方式就是去创造它。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/70151ea101b998a9f10f0fc273fe44a9.mp3\"}}', 0, '', '2022-02-09 08:42:05'); INSERT INTO `sys_oper_log` VALUES (5828, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-12\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-12 22:03:54\"}}', 0, '', '2022-02-12 22:06:45'); INSERT INTO `sys_oper_log` VALUES (5829, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644674806116,\"humidity\":\"89\",\"id\":1492500428442279937,\"province\":\"江西\",\"reporttime\":1644674634000,\"temperature\":\"6\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-12 22:06:46'); INSERT INTO `sys_oper_log` VALUES (5830, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urapj9xmj31c00u0jwt.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbez16tj31c00u077x.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursw8cwhj31c00u0qfe.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursyki98j31c00u0qg0.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb2jxt9j31c00u0dmz.jpg\"},{\"imageFileLength\":\"107KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbg18xfj31c00u0ju7.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usez2y0uj31c00u0gqj.jpg\"},{\"imageFileLength\":\"188KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7tyr6vj31hc0u0dkq.jpg\"},{\"imageFileLength\":\"179KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqcogjoj31hc0u0gqu.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut8e1nsfj318g0p0gp4.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-12 22:07:53'); INSERT INTO `sys_oper_log` VALUES (5831, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut5cthwnj31c00u0q6m.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28do79103j31hc0u00wc.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb1kchmj31hc0u0tdp.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dn9klx3j31c00u0nfv.jpg\"},{\"imageFileLength\":\"385KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5mbsqpj31hc0u04aw.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4zop69j31c00u077t.jpg\"},{\"imageFileLength\":\"315KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ew9x3lcj31c00u0nou.jpg\"},{\"imageFileLength\":\"277KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb9y0dnj31c00u010u.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urszm7fzj31c00u014i.jpg\"},{\"imageFileLength\":\"239KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8h5wupj31hc0u0gry.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-12 22:08:21'); INSERT INTO `sys_oper_log` VALUES (5832, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq59hzmnj31c00u043z.jpg\"},{\"imageFileLength\":\"103KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursmd6bcj31c00u0n8r.jpg\"},{\"imageFileLength\":\"250KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpj44r3j31c00u0n6o.jpg\"},{\"imageFileLength\":\"170KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut96nxguj31c00u0gqc.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8k3gz8j31c00u0q6p.jpg\"},{\"imageFileLength\":\"167KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaytucmj31hc0u0jvq.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8x295yj31hc0u0wjx.jpg\"},{\"imageFileLength\":\"207KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvx8u9vj31c00u0h0h.jpg\"},{\"imageFileLength\":\"248KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursuf1mej31hc0u0amn.jpg\"},{\"imageFileLength\":\"108KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut85lksaj31c00u00vl.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-12 22:08:25'); INSERT INTO `sys_oper_log` VALUES (5833, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbez16tj31c00u077x.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ur9xns6uj31c00u041s.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf8wk74j31c00u0gr8.jpg\"},{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbcwvylj31c00u0jy1.jpg\"},{\"imageFileLength\":\"413KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28eoce78ej31c00u07wh.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1675x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt4w9fimj31aj0u0q8f.jpg\"},{\"imageFileLength\":\"87KB\",\"imageSize\":\"1280x800\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urszf270j30zk0m8n9a.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8p1fz4j31c00u0ae5.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf6m5dzj31400p00z1.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fat03j31hc0u00wc.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-12 22:08:26'); INSERT INTO `sys_oper_log` VALUES (5834, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"141KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4koypdj31hc0u0ae5.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut46lgwnj31hc0u0tcs.jpg\"},{\"imageFileLength\":\"260KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28f20ls2ij31c00u0kfw.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8zpl50j31c00u0wj2.jpg\"},{\"imageFileLength\":\"179KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7qckabj31hc0u0dke.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7lfgvxj31c00u0n0v.jpg\"},{\"imageFileLength\":\"225KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvjd7mlj31c00u0dux.jpg\"},{\"imageFileLength\":\"161KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaudyl7j31hc0u0gpp.jpg\"},{\"imageFileLength\":\"361KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urph8jmij31hc0u0qe0.jpg\"},{\"imageFileLength\":\"113KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utav242ej31hc0u0acp.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-12 22:09:19'); INSERT INTO `sys_oper_log` VALUES (5835, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年02月14日\",\"holidayName\":\"情人节\",\"lunarDate\":\"2022年01月14日\",\"lunarHoliday\":false,\"residueDays\":1,\"returnDate\":\"2022年02月14日\"},{\"date\":\"2022年02月15日\",\"holidayName\":\"元宵节\",\"lunarDate\":\"2022年01月15日\",\"lunarHoliday\":true,\"residueDays\":2,\"returnDate\":\"辛丑牛年 腊月十三\"},{\"date\":\"2022年02月19日\",\"holidayName\":\"雨水\",\"lunarDate\":\"2022年01月19日\",\"lunarHoliday\":true,\"residueDays\":6,\"returnDate\":\"辛丑牛年 腊月十七\"},{\"date\":\"2022年02月21日\",\"holidayName\":\"国际母语日\",\"lunarDate\":\"2022年01月21日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年02月21日\"},{\"date\":\"2022年02月24日\",\"holidayName\":\"第三世界青年日\",\"lunarDate\":\"2022年01月24日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月24日\"},{\"date\":\"2022年02月28日\",\"holidayName\":\"国际罕见病日\",\"lunarDate\":\"2022年01月28日\",\"lunarHoliday\":false,\"residueDays\":15,\"returnDate\":\"2022年02月28日\"},{\"date\":\"2022年03月01日\",\"holidayName\":\"国际海豹日\",\"lunarDate\":\"2022年01月29日\",\"lunarHoliday\":false,\"residueDays\":16,\"returnDate\":\"2022年03月01日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-12 22:09:44'); INSERT INTO `sys_oper_log` VALUES (5836, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-12\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-12 22:03:54\"}}', 0, '', '2022-02-12 22:21:52'); INSERT INTO `sys_oper_log` VALUES (5837, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-12\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-12 22:03:54\"}}', 0, '', '2022-02-12 22:24:19'); INSERT INTO `sys_oper_log` VALUES (5838, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1644674634000,\"temperature\":\"6\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-12 22:24:20'); INSERT INTO `sys_oper_log` VALUES (5839, '每日一句', 5, 'com.xjs.aword.controller.ApiAWordController.export()', 'POST', 1, 'admin', '', '/aword/export', '127.0.0.1', '', '{}', '', 0, '', '2022-02-12 22:24:28'); INSERT INTO `sys_oper_log` VALUES (5840, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-12\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-12 22:03:54\"}}', 0, '', '2022-02-12 22:25:43'); INSERT INTO `sys_oper_log` VALUES (5841, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1644674634000,\"temperature\":\"6\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-12 22:25:43'); INSERT INTO `sys_oper_log` VALUES (5842, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1492504848496287745', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-12 22:26:43'); INSERT INTO `sys_oper_log` VALUES (5843, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1644674634000,\"temperature\":\"6\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-12 22:28:09'); INSERT INTO `sys_oper_log` VALUES (5844, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-12\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-12 22:03:54\"}}', 0, '', '2022-02-12 22:28:10'); INSERT INTO `sys_oper_log` VALUES (5845, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-12\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-12 22:03:54\"}}', 0, '', '2022-02-12 22:29:00'); INSERT INTO `sys_oper_log` VALUES (5846, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1644674634000,\"temperature\":\"6\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-12 22:29:00'); INSERT INTO `sys_oper_log` VALUES (5847, 'API日志', 5, 'com.xjs.apilog.controller.ApiLogController.export()', 'POST', 1, 'admin', '', '/apilog/export', '127.0.0.1', '', '{}', '', 0, '', '2022-02-12 22:29:22'); INSERT INTO `sys_oper_log` VALUES (5848, '英语一言', 5, 'com.xjs.oneenglish.controller.ApiEnglishController.export()', 'POST', 1, 'admin', '', '/oneenglish/export', '127.0.0.1', '', '{}', '', 0, '', '2022-02-12 22:29:46'); INSERT INTO `sys_oper_log` VALUES (5849, 'API日志', 5, 'com.xjs.apilog.controller.ApiLogController.export()', 'POST', 1, 'admin', '', '/apilog/export', '127.0.0.1', '', '{}', '', 0, '', '2022-02-12 22:30:12'); INSERT INTO `sys_oper_log` VALUES (5850, 'API日志', 5, 'com.xjs.apilog.controller.ApiLogController.export()', 'POST', 1, 'admin', '', '/apilog/export', '127.0.0.1', '', '{}', '', 0, '', '2022-02-12 22:30:25'); INSERT INTO `sys_oper_log` VALUES (5851, '文案管理', 5, 'com.xjs.copywriting.controller.CopyWritingController.export()', 'POST', 1, 'admin', '', '/copyWriting/export', '127.0.0.1', '', '{}', '', 0, '', '2022-02-12 22:30:44'); INSERT INTO `sys_oper_log` VALUES (5852, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1644674634000,\"temperature\":\"6\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-12 22:36:03'); INSERT INTO `sys_oper_log` VALUES (5853, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-12\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-12 22:03:54\"}}', 0, '', '2022-02-12 22:36:03'); INSERT INTO `sys_oper_log` VALUES (5854, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1644674634000,\"temperature\":\"6\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-12 22:36:05'); INSERT INTO `sys_oper_log` VALUES (5855, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-12\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-12 22:03:54\"}}', 0, '', '2022-02-12 22:36:05'); INSERT INTO `sys_oper_log` VALUES (5856, 'API日志', 5, 'com.xjs.apilog.controller.ApiLogController.export()', 'POST', 1, 'admin', '', '/apilog/export', '127.0.0.1', '', '{}', '', 0, '', '2022-02-12 22:36:17'); INSERT INTO `sys_oper_log` VALUES (5857, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 10:03:58\"}}', 0, '', '2022-02-13 10:16:28'); INSERT INTO `sys_oper_log` VALUES (5858, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644718588623,\"humidity\":\"94\",\"id\":1492684065573937154,\"province\":\"江西\",\"reporttime\":1644717838000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 10:16:28'); INSERT INTO `sys_oper_log` VALUES (5859, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 10:03:58\"}}', 0, '', '2022-02-13 10:17:04'); INSERT INTO `sys_oper_log` VALUES (5860, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644718588623,\"humidity\":\"94\",\"id\":1492684065573937154,\"province\":\"江西\",\"reporttime\":1644717838000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 10:17:04'); INSERT INTO `sys_oper_log` VALUES (5861, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"教育人就是要形成人的性格。\",\"createTime\":1644727325535,\"id\":1492720710834692098,\"source\":\"欧文\",\"type\":4}}', 0, '', '2022-02-13 12:42:05'); INSERT INTO `sys_oper_log` VALUES (5862, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In education we are striving not to teach youth to make a living, but to make a life.\",\"dataId\":3486,\"date\":1565884800000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-16.jpg\",\"note\":\"教育不是为了教会青年人谋生,而是教会他们创造生活。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-16-day.mp3\"}}', 0, '', '2022-02-13 12:42:05'); INSERT INTO `sys_oper_log` VALUES (5863, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 12:38:50\"}}', 0, '', '2022-02-13 13:03:32'); INSERT INTO `sys_oper_log` VALUES (5864, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 12:38:50\"}}', 0, '', '2022-02-13 13:03:33'); INSERT INTO `sys_oper_log` VALUES (5865, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1644727130000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 13:03:38'); INSERT INTO `sys_oper_log` VALUES (5866, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 12:38:50\"}}', 0, '', '2022-02-13 13:03:38'); INSERT INTO `sys_oper_log` VALUES (5867, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"349KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uray79mcj31c00u0n7f.jpg\"},{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7j6zb4j31c00u077z.jpg\"},{\"imageFileLength\":\"305KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28di4vu5nj31hc0u0x44.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us98tadtj31c00u0aei.jpg\"},{\"imageFileLength\":\"224KB\",\"imageSize\":\"1920x1200\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005UYuA2gy1fvzhwudggdj31hc0xc44r.jpg\"},{\"imageFileLength\":\"349KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs54t22j31hc0u07fx.jpg\"},{\"imageFileLength\":\"184KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv5vnyyj31c00u0wsh.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs5o85cj31hc0u0wro.jpg\"},{\"imageFileLength\":\"179KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqcogjoj31hc0u0gqu.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utawz9tsj31hc0u00xd.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 14:15:15'); INSERT INTO `sys_oper_log` VALUES (5868, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1frs9vj31c00u0tcm.jpg\"},{\"imageFileLength\":\"194KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us967xfmj31c00u079l.jpg\"},{\"imageFileLength\":\"246KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utc0rr7gj31c00u0ah9.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvu7ogcj31c00u04d7.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursebu37j31c00u0zxm.jpg\"},{\"imageFileLength\":\"164KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrklyl8j31c00u0k6o.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf2h076j31c00u0adg.jpg\"},{\"imageFileLength\":\"111KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4b9nl0j31c00u0whb.jpg\"},{\"imageFileLength\":\"87KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpfcr3aj31400p0ajp.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5ilfnmj31c00u0435.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 14:18:54'); INSERT INTO `sys_oper_log` VALUES (5869, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"107KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbg18xfj31c00u0ju7.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb67eomj31hc0u041x.jpg\"},{\"imageFileLength\":\"183KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us98grmxj31c00u0dl2.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpi43izj31c00u0qda.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut53oesuj31c00u0jvy.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8rgjxbj31c00u0af7.jpg\"},{\"imageFileLength\":\"197KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut96p0orj31c00u00yv.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut824a31j31hc0u0td9.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1etslbj31hc0u0gop.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us91jz1rj31c00u078h.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 14:19:19'); INSERT INTO `sys_oper_log` VALUES (5870, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1492745352819490818', '127.0.0.1', '', '1492745352819490818', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-13 14:22:15'); INSERT INTO `sys_oper_log` VALUES (5871, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"162KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut57cjouj31hc0u0gpr.jpg\"},{\"imageFileLength\":\"114KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usep8j45j31c00u077a.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usetu4x5j31c00u0afr.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urposjaoj31c00u0tj8.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta3b1hrj31c00u0wgz.jpg\"},{\"imageFileLength\":\"209KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8srpftj31c00u0gro.jpg\"},{\"imageFileLength\":\"177KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97srduj31c00u0q7v.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut471sc4j31c00u0tcn.jpg\"},{\"imageFileLength\":\"108KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut85lksaj31c00u00vl.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utamtevtj31hc0u00yd.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 15:37:53'); INSERT INTO `sys_oper_log` VALUES (5872, '获取IP', 0, 'com.xjs.apitools.controller.ApiToolsController.getIPApiData()', 'GET', 1, 'admin', '', '/apitools/ipinfo/172.16.1.10', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"city\":\"\",\"cityId\":\"0\",\"desc\":\" 局域网\",\"ip\":\"172.16.1.10\",\"isp\":\"局域网\",\"province\":\"\"},\"msg\":\"操作成功\"}', 0, '', '2022-02-13 15:38:07'); INSERT INTO `sys_oper_log` VALUES (5873, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1492762968539774977', '127.0.0.1', '', '1492762968539774977', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-13 15:38:18'); INSERT INTO `sys_oper_log` VALUES (5874, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 15:33:42\"}}', 0, '', '2022-02-13 15:38:19'); INSERT INTO `sys_oper_log` VALUES (5875, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 15:33:42\"}}', 0, '', '2022-02-13 15:38:21'); INSERT INTO `sys_oper_log` VALUES (5876, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"95KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbao9jqj31c00u0wgv.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9bp7gij31c00u0q89.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urau4yg5j31c00u079i.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut57djmfj31c00u0juh.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut59xq5yj31c00u0td1.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut471sc4j31c00u0tcn.jpg\"},{\"imageFileLength\":\"230KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dtvufzzj31c00u04qp.jpg\"},{\"imageFileLength\":\"282KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g28dctiu7hj31c00u0kjl.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28en4m6tcj31c00u07k6.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut80ho65j31c00u0zmt.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:39'); INSERT INTO `sys_oper_log` VALUES (5877, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"151KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1f3d9oj31hc0u0ae4.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvb91ayj31hc0u016f.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uran8f2dj31c00u00yi.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28do79103j31hc0u00wc.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfktkfcj31c00u0qat.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq53f8g1j31c00u079q.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uiclaax9j31900u077u.jpg\"},{\"imageFileLength\":\"222KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfdszpaj31c00u0n4f.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut94def3j31c00u0ad6.jpg\"},{\"imageFileLength\":\"156KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbe4aphj31c00u0jvy.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:42'); INSERT INTO `sys_oper_log` VALUES (5878, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut46lgwnj31hc0u0tcs.jpg\"},{\"imageFileLength\":\"94KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut3wt04qj31hc0u0dhs.jpg\"},{\"imageFileLength\":\"201KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us93mjojj31c00u079s.jpg\"},{\"imageFileLength\":\"177KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursuzxovj31c00u0wqn.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52s4okj31c00u0430.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us98tadtj31c00u0aei.jpg\"},{\"imageFileLength\":\"268KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5neiiej31hc0u0ds0.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urt1qxesj31hc0u0naa.jpg\"},{\"imageFileLength\":\"98KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1e4o35j31hc0u0wgp.jpg\"},{\"imageFileLength\":\"312KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urphzevej31hc0u0dpo.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:43'); INSERT INTO `sys_oper_log` VALUES (5879, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"237KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqevtepzj31400p00z1.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gysd0vsj31c00u0adl.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28do79103j31hc0u00wc.jpg\"},{\"imageFileLength\":\"101KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4o01k5j31c00u0td1.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut5jmu4pj31c00u0n04.jpg\"},{\"imageFileLength\":\"264KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpdo7pij31c00u0dr7.jpg\"},{\"imageFileLength\":\"216KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28endpdy9j31c00u07l2.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ndnsej31c00u0whs.jpg\"},{\"imageFileLength\":\"239KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urseh85lj31c00u0wrq.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5ilfnmj31c00u0435.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:44'); INSERT INTO `sys_oper_log` VALUES (5880, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9a3cs3j31c00u0q6m.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut56mw3sj31c00u078e.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq1hbj37j31ao0t677y.jpg\"},{\"imageFileLength\":\"205KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb7i7faj31c00u07a1.jpg\"},{\"imageFileLength\":\"309KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dyrb0cej31c00u0wya.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfwk7g6j31c00u0qar.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf148q8j31c00u0jwf.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usepep67j31c00u0n0m.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpf5v0gj31c00u0wnz.jpg\"},{\"imageFileLength\":\"160KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5irmfnj31hc0u0aen.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:45'); INSERT INTO `sys_oper_log` VALUES (5881, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4fzz13j31c00u0gr2.jpg\"},{\"imageFileLength\":\"273KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvka0b2j31hc0u0aol.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbe1l55j31c00u0jug.jpg\"},{\"imageFileLength\":\"81KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utagolwbj31c00u0jt9.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb9u746j31c00u043c.jpg\"},{\"imageFileLength\":\"380KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dz3hwx2j31c00u0u0x.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraowajij31c00u0gr7.jpg\"},{\"imageFileLength\":\"216KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb1kguuj31c00u044y.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicji4rwj31900u041a.jpg\"},{\"imageFileLength\":\"110KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbaovv6j31hc0u07b3.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:46'); INSERT INTO `sys_oper_log` VALUES (5882, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urapj9xmj31c00u0jwt.jpg\"},{\"imageFileLength\":\"242KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28emy2fwrj31c00u07aa.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28en782onj31c00u0qc4.jpg\"},{\"imageFileLength\":\"314KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfkv7bdj31c00u010e.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbjx4qnj31hc0u0add.jpg\"},{\"imageFileLength\":\"228KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fyl4snyj31c00u0nnm.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9jeog4j31c00u0wj2.jpg\"},{\"imageFileLength\":\"146KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf9tbuxj31c00u0jvo.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utancrnoj31hc0u0q5m.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8rh3w3j31c00u0aez.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:46'); INSERT INTO `sys_oper_log` VALUES (5883, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbh0zurj31c00u0wjg.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urav2glwj31c00u043f.jpg\"},{\"imageFileLength\":\"128KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4qtkpyj31c00u0whx.jpg\"},{\"imageFileLength\":\"164KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrklyl8j31c00u0k6o.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4fa3ytj31c00u078c.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fkgb2j31c00u0jvf.jpg\"},{\"imageFileLength\":\"397KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gt6behzj31hc0u0e7t.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut58vj0jj31c00u0afm.jpg\"},{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvuelq1j31c00u0h0p.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut8e1nsfj318g0p0gp4.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:47'); INSERT INTO `sys_oper_log` VALUES (5884, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8cj4s3j31c00u078g.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5dsewlj31900u0wq1.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbaswbfj31c00u00vt.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfvqtbzj31c00u0jyl.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utanqnghj31c00u041y.jpg\"},{\"imageFileLength\":\"126KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usezfn6xj31c00u0tbx.jpg\"},{\"imageFileLength\":\"204KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useqcs5kj31c00u0tei.jpg\"},{\"imageFileLength\":\"203KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb0kxphj31hc0u0afd.jpg\"},{\"imageFileLength\":\"285KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gtpjgqzj31c00u01kx.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq58noj7j31c00u0tdi.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:48'); INSERT INTO `sys_oper_log` VALUES (5885, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"210KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us99ihw4j31hc0u00y8.jpg\"},{\"imageFileLength\":\"181KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf34db7j31c00u0aj7.jpg\"},{\"imageFileLength\":\"250KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpj44r3j31c00u0n6o.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51egvxj31c00u0td6.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrkzc7yj31hc0u0dv0.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1280x800\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uq1m5arwj30zk0m8dik.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut43siyzj31c00u0n16.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4scwo6j31hc0u0djj.jpg\"},{\"imageFileLength\":\"270KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqflo7zqj31hc0u0qb8.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7rksv4j31hc0u0dje.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:49'); INSERT INTO `sys_oper_log` VALUES (5886, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"216KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb7w0d8j31c00u0dm1.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7cjduoj31c00u0n1h.jpg\"},{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fy1n9nrj31c00u0195.jpg\"},{\"imageFileLength\":\"211KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uray7uqkj31c00u0n3e.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraiq3u6j31c00u078n.jpg\"},{\"imageFileLength\":\"121KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utav4pt7j31hc0u041i.jpg\"},{\"imageFileLength\":\"233KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us94cx15j31c00u0wld.jpg\"},{\"imageFileLength\":\"200KB\",\"imageSize\":\"1600x1000\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4x8t2vj318g0rs79f.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4zop69j31c00u077t.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4v5ldjj31c00u077q.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:50'); INSERT INTO `sys_oper_log` VALUES (5887, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"163KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28evwaiwmj31c00u0k26.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv7np7gj31c00u04cv.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28erw3bt2j31c00u04j4.jpg\"},{\"imageFileLength\":\"99KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta3b1hrj31c00u0wgz.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpc8blcj31c00u0tj8.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfwk7g6j31c00u0qar.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpcvw2yj31c00u0ak7.jpg\"},{\"imageFileLength\":\"336KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28ersrcv1j31c00u01kx.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpp0tlsj31hc0u0wp8.jpg\"},{\"imageFileLength\":\"211KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urptcg56j31hc0u0akp.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:51'); INSERT INTO `sys_oper_log` VALUES (5888, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8jljooj31c00u0td0.jpg\"},{\"imageFileLength\":\"187KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv01zduj31c00u0dux.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursr502dj31c00u0drv.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9kgu7aj31c00u0422.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8s8ffpj31c00u0n1u.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usf2h076j31c00u0adg.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut53oesuj31c00u0jvy.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utavpcuaj31c00u0jun.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicpcv3uj31900u0436.jpg\"},{\"imageFileLength\":\"115KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursamh70j31c00u0k4b.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:52'); INSERT INTO `sys_oper_log` VALUES (5889, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"84KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbotb5j31c00u040h.jpg\"},{\"imageFileLength\":\"197KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ym93fj31c00u0n68.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfdway0j31c00u010k.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usexuhffj31c00u00vx.jpg\"},{\"imageFileLength\":\"113KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4xx0c7j31c00u0tbs.jpg\"},{\"imageFileLength\":\"195KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfll9cwj31hc0u00ze.jpg\"},{\"imageFileLength\":\"202KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urairdt2j31c00u044e.jpg\"},{\"imageFileLength\":\"126KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usezfn6xj31c00u0tbx.jpg\"},{\"imageFileLength\":\"118KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ur9x7ie1j31c00u00vu.jpg\"},{\"imageFileLength\":\"224KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urw0jv9hj31c00u0k5q.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:53'); INSERT INTO `sys_oper_log` VALUES (5890, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fy1n9nrj31c00u0195.jpg\"},{\"imageFileLength\":\"276KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb76iomj31c00u046s.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8tkdbgj31c00u0djm.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb7o6pzj31c00u00wj.jpg\"},{\"imageFileLength\":\"202KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg0dgitj31c00u0grw.jpg\"},{\"imageFileLength\":\"229KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4odkpzj31c00u0tfi.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5aplckj31c00u0wkf.jpg\"},{\"imageFileLength\":\"215KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dn3nsuwj31c00u0ne6.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpp0tlsj31hc0u0wp8.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8y6e79j31c00u0q89.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:53'); INSERT INTO `sys_oper_log` VALUES (5891, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut546u7uj31c00u00xw.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbez1yrj31c00u0tcc.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uqezevj6j31c00u0456.jpg\"},{\"imageFileLength\":\"117KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbg77cj31c00u0ad5.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8t8elwj31c00u0djw.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4zniloj31hc0u0whs.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut53xms9j31c00u0q65.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8mlz56j31c00u0gpn.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfu4ayvj31c00u0qc7.jpg\"},{\"imageFileLength\":\"111KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utav03crj31c00u0act.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:54'); INSERT INTO `sys_oper_log` VALUES (5892, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8ixyrlj31c00u00wl.jpg\"},{\"imageFileLength\":\"200KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5fbwuxj31hc0u0q94.jpg\"},{\"imageFileLength\":\"269KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfp2yt1j31ao0t6wmz.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1ep5icj31hc0u00vc.jpg\"},{\"imageFileLength\":\"604KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbb68fyj31hc0u0khf.jpg\"},{\"imageFileLength\":\"243KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfcwvcoj31c00u0dnk.jpg\"},{\"imageFileLength\":\"248KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursuf1mej31hc0u0amn.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97cwznj31c00u0dk4.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51d7zdj31hc0u078o.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5015kpj31hc0u0q8p.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:55'); INSERT INTO `sys_oper_log` VALUES (5893, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"318KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28du6autnj31c00u0e81.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut58lurhj31c00u0jv5.jpg\"},{\"imageFileLength\":\"309KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dyrb0cej31c00u0wya.jpg\"},{\"imageFileLength\":\"167KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8psh6xj31c00u0gqe.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8a9wanj31c00u0jw3.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8y6c4lj31c00u0gp8.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut56cue9j31hc0u0whe.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraknfx1j31c00u0gqd.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8y6e79j31c00u0q89.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf1o9lkj31c00u041p.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:56'); INSERT INTO `sys_oper_log` VALUES (5894, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urplfnxtj31c00u0dpg.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uram91zmj31c00u0422.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8nby71j31c00u0ae8.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfvqtbzj31c00u0jyl.jpg\"},{\"imageFileLength\":\"153KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utalqw5ij31c00u0aec.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfttmz1j31c00u044r.jpg\"},{\"imageFileLength\":\"229KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4odkpzj31c00u0tfi.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut59xq5yj31c00u0td1.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut50wnxdj31c00u0n1n.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs7r5gcj31hc0u0wqx.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:56'); INSERT INTO `sys_oper_log` VALUES (5895, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"200KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ahri4j31c00u0449.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfx9yh2j31c00u0tgc.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf3l3uoj31c00u0gpy.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq1hbj37j31ao0t677y.jpg\"},{\"imageFileLength\":\"199KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv7zv38j31c00u0ap1.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urphxe4gj31c00u0gvs.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq59yi2qj31hc0u00ya.jpg\"},{\"imageFileLength\":\"160KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb5vyibj31c00u0aeq.jpg\"},{\"imageFileLength\":\"268KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5neiiej31hc0u0ds0.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf4bzk1j31c00u0q7h.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:57'); INSERT INTO `sys_oper_log` VALUES (5896, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb8m46aj31c00u0adw.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dirhamjj31c00u0h23.jpg\"},{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fy1n9nrj31c00u0195.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta2mk43j31c00u0acq.jpg\"},{\"imageFileLength\":\"260KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfai3htj31c00u0qf2.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq53f8g1j31c00u079q.jpg\"},{\"imageFileLength\":\"273KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dtigysvj31c00u0gu5.jpg\"},{\"imageFileLength\":\"232KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpte9j1j31c00u0qe5.jpg\"},{\"imageFileLength\":\"155KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb64mpjj31hc0u0q6s.jpg\"},{\"imageFileLength\":\"239KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8h5wupj31hc0u0gry.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:58'); INSERT INTO `sys_oper_log` VALUES (5897, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9buu8aj31c00u0wjk.jpg\"},{\"imageFileLength\":\"296KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf4h5c0j31hc0u0dot.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usevletzj31c00u0dj9.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dobb94cj31hc0u0n21.jpg\"},{\"imageFileLength\":\"167KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8psh6xj31c00u0gqe.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gsugaloj31c00u079v.jpg\"},{\"imageFileLength\":\"215KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursidbzxj31c00u0gyo.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28en4m6tcj31c00u07k6.jpg\"},{\"imageFileLength\":\"226KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9aoq8fj31c00u07b7.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq58noj7j31c00u0tdi.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:59'); INSERT INTO `sys_oper_log` VALUES (5898, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpffz14j31c00u0tk0.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut51bpngj31c00u0tcv.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4usbnfj31ao0t6tcz.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1ep5icj31hc0u00vc.jpg\"},{\"imageFileLength\":\"273KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dtigysvj31c00u0gu5.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8rgjxbj31c00u0af7.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utavpcuaj31c00u0jun.jpg\"},{\"imageFileLength\":\"115KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8s31xgj31c00u0diy.jpg\"},{\"imageFileLength\":\"254KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbffnc1j31c00u0dni.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut50zxwgj31c00u0q6w.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:40:59'); INSERT INTO `sys_oper_log` VALUES (5899, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"236KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4yibcqj31hc0u07ai.jpg\"},{\"imageFileLength\":\"167KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfc439ij31c00u0dkv.jpg\"},{\"imageFileLength\":\"126KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb5yo3rj31c00u0tc0.jpg\"},{\"imageFileLength\":\"228KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fyl4snyj31c00u0nnm.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpfi0xzj31c00u0qdi.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us93kanwj31c00u0juy.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ndnsej31c00u0whs.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs57olvj31c00u04ad.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut824a31j31hc0u0td9.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8pevqkj31c00u0gom.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:00'); INSERT INTO `sys_oper_log` VALUES (5900, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fy1n9nrj31c00u0195.jpg\"},{\"imageFileLength\":\"246KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utc0rr7gj31c00u0ah9.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicplyynj31900u0jv5.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uqezevj6j31c00u0456.jpg\"},{\"imageFileLength\":\"161KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urauh6r6j31c00u00xa.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8p58anj31c00u0adp.jpg\"},{\"imageFileLength\":\"112KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut5jmu4pj31c00u0n04.jpg\"},{\"imageFileLength\":\"161KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4kjrg6j31c00u0wiw.jpg\"},{\"imageFileLength\":\"179KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqcogjoj31hc0u0gqu.jpg\"},{\"imageFileLength\":\"106KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usfmxuqqj31c00u0418.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:01'); INSERT INTO `sys_oper_log` VALUES (5901, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97hf1xj31c00u0q8b.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq553mjwj31hc0u0n21.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us96gdgnj31c00u0n1m.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg91ozyj31c00u0tgw.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut56udo0j31ao0t6goo.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gysd0vsj31c00u0adl.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvuo4e0j31c00u07j7.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51zh8ij31c00u0af9.jpg\"},{\"imageFileLength\":\"188KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqedvqzrj31c00u0dlv.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urt278waj31c00u0tls.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:02'); INSERT INTO `sys_oper_log` VALUES (5902, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"153KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8kwyuoj31hc0u0n10.jpg\"},{\"imageFileLength\":\"279KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfnlcd3j31c00u0tfe.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1guensj31c00u0adl.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8y4mifj31c00u0af5.jpg\"},{\"imageFileLength\":\"346KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8hz13wj31hc0u0aj9.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8fh0l1j31c00u042l.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7chbtxj31c00u0n0x.jpg\"},{\"imageFileLength\":\"281KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28fvot25tj31c00u04ne.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfzbaegj31c00u0ai8.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut3xa5dkj31hc0u0acv.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:02'); INSERT INTO `sys_oper_log` VALUES (5903, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"172KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb9l8olj31c00u0gqj.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8ck9c2j31c00u0gqi.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq54emp8j31c00u0teg.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urawrlmtj31c00u0n2a.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utae4cnkj31c00u0jvk.jpg\"},{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useoqv5lj31c00u077w.jpg\"},{\"imageFileLength\":\"113KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4xx0c7j31c00u0tbs.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7g8bkj31c00u0wjo.jpg\"},{\"imageFileLength\":\"202KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1urss2bllj31c00u0qgd.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraknfx1j31c00u0gqd.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:03'); INSERT INTO `sys_oper_log` VALUES (5904, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq59hzmnj31c00u043z.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ian5pj31c00u0gob.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4phsk2j31c00u0jwn.jpg\"},{\"imageFileLength\":\"242KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqft4yo9j318g0p0wll.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfklysgj31c00u00zd.jpg\"},{\"imageFileLength\":\"122KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfhtbqnj31hc0u0107.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8libuaj31c00u0af0.jpg\"},{\"imageFileLength\":\"220KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut58mw6tj31hc0u0wkc.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut86vpjaj31c00u0juj.jpg\"},{\"imageFileLength\":\"282KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g28dctiu7hj31c00u0kjl.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:05'); INSERT INTO `sys_oper_log` VALUES (5905, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9buu8aj31c00u0wjk.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut56mw3sj31c00u078e.jpg\"},{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usex7w98j31c00u0jxx.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqevtepzj31400p00z1.jpg\"},{\"imageFileLength\":\"242KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqed1ogbj31c00u07aa.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52s4okj31c00u0430.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvuo4e0j31c00u07j7.jpg\"},{\"imageFileLength\":\"139KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7chbtxj31c00u0n0x.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvnok01j31hc0u017e.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7xs7c9j31c00u0n00.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:06'); INSERT INTO `sys_oper_log` VALUES (5906, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"217KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5abdxmj31hc0u0grd.jpg\"},{\"imageFileLength\":\"330KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urazdg5nj31c00u07ec.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ian5pj31c00u0gob.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8nby71j31c00u0ae8.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut57djmfj31c00u0juh.jpg\"},{\"imageFileLength\":\"259KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfwkaiaj318g0p0ahp.jpg\"},{\"imageFileLength\":\"123KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uta46blbj31c00u0gor.jpg\"},{\"imageFileLength\":\"236KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfam9yjj318g0p0gsk.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utamtevtj31hc0u00yd.jpg\"},{\"imageFileLength\":\"259KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq50qn0oj31c00u0wkc.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:06'); INSERT INTO `sys_oper_log` VALUES (5907, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"172KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uset9sq7j31hc0u0td6.jpg\"},{\"imageFileLength\":\"310KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg31zpbj31hc0u0115.jpg\"},{\"imageFileLength\":\"208KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9byeb4j31c00u044k.jpg\"},{\"imageFileLength\":\"374KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf1krf1j31hc0u048i.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8ymyozj31c00u00wn.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbey4maj31c00u0jvd.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpfi0xzj31c00u0qdi.jpg\"},{\"imageFileLength\":\"251KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqsx8k0j31c00u0wtn.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urazrcsqj31c00u0jvn.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usehb1xgj31c00u0gp0.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:07'); INSERT INTO `sys_oper_log` VALUES (5908, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"172KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uset9sq7j31hc0u0td6.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4u9rrqj31hc0u0jv0.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq53f8g1j31c00u079q.jpg\"},{\"imageFileLength\":\"248KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursuf1mej31hc0u0amn.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9sgg8zj31c00u0n2l.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut53xms9j31c00u0q65.jpg\"},{\"imageFileLength\":\"163KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8htavxj31c00u0q7g.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5cuj78j31c00u0dld.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usehb1xgj31c00u0gp0.jpg\"},{\"imageFileLength\":\"74KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1uq1a5fmrj31400p0wg9.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:08'); INSERT INTO `sys_oper_log` VALUES (5909, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urapj9xmj31c00u0jwt.jpg\"},{\"imageFileLength\":\"113KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8n257tj31c00u0q5x.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8pbackj31c00u0gqn.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4wdzd1j318g0p0n1d.jpg\"},{\"imageFileLength\":\"100KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utanu5ckj31c00u00va.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaukhhbj31hc0u041p.jpg\"},{\"imageFileLength\":\"187KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqflvjhnj31c00u0dly.jpg\"},{\"imageFileLength\":\"92KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb3skbaj31c00u0mzg.jpg\"},{\"imageFileLength\":\"140KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usecnpn0j31c00u042b.jpg\"},{\"imageFileLength\":\"373KB\",\"imageSize\":\"1500x1001\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5q2p7tj315o0rtwri.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:09'); INSERT INTO `sys_oper_log` VALUES (5910, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51pm69j31c00u0gqo.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8clqmjj31hc0u0te3.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8y4mifj31c00u0af5.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb67eomj31hc0u041x.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9b9rbqj31c00u0jve.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5binc6j31c00u0grb.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useu7tuzj31c00u0gpk.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbc45nmj31c00u078k.jpg\"},{\"imageFileLength\":\"218KB\",\"imageSize\":\"1911x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq50cmm3j31h30u0ag1.jpg\"},{\"imageFileLength\":\"105KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7cjoz4j31c00u0acs.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:09'); INSERT INTO `sys_oper_log` VALUES (5911, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"165KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4ycin6j31hc0u042q.jpg\"},{\"imageFileLength\":\"103KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursmd6bcj31c00u0n8r.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpd4zxwj31c00u0tjo.jpg\"},{\"imageFileLength\":\"141KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicplyynj31900u0jv5.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1urso46l9j31c00u0k4o.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqd9m82j31c00u0439.jpg\"},{\"imageFileLength\":\"319KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9e4898j31hc0u0do7.jpg\"},{\"imageFileLength\":\"238KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg0b5w5j31hc0u0467.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urplr8jvj31hc0u0498.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut50ipurj31c00u00wy.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:10'); INSERT INTO `sys_oper_log` VALUES (5912, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqg91ozyj31c00u0tgw.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7xe5kaj31c00u0gpf.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbez1yrj31c00u0tcc.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1us9l1oo5j31hc0u00yx.jpg\"},{\"imageFileLength\":\"154KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us988ve4j31c00u0q72.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ilsmij31c00u0wjt.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51zh8ij31c00u0af9.jpg\"},{\"imageFileLength\":\"196KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfttmz1j31c00u044r.jpg\"},{\"imageFileLength\":\"204KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useqcs5kj31c00u0tei.jpg\"},{\"imageFileLength\":\"134KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utakzwq7j31c00u0q6j.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-13 18:41:10'); INSERT INTO `sys_oper_log` VALUES (5913, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 18:38:41\"}}', 0, '', '2022-02-13 18:41:22'); INSERT INTO `sys_oper_log` VALUES (5914, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1644748721000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 18:41:22'); INSERT INTO `sys_oper_log` VALUES (5915, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 18:38:41\"}}', 0, '', '2022-02-13 18:42:51'); INSERT INTO `sys_oper_log` VALUES (5916, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1644748721000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 18:49:12'); INSERT INTO `sys_oper_log` VALUES (5917, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 18:38:41\"}}', 0, '', '2022-02-13 18:49:12'); INSERT INTO `sys_oper_log` VALUES (5918, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644750726261,\"humidity\":\"91\",\"id\":1492818860593373186,\"province\":\"江西\",\"reporttime\":1644750528000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 19:12:06'); INSERT INTO `sys_oper_log` VALUES (5919, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 19:08:48\"}}', 0, '', '2022-02-13 19:12:06'); INSERT INTO `sys_oper_log` VALUES (5920, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 19:08:48\"}}', 0, '', '2022-02-13 19:15:42'); INSERT INTO `sys_oper_log` VALUES (5921, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644750726261,\"humidity\":\"91\",\"id\":1492818860593373186,\"province\":\"江西\",\"reporttime\":1644750528000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 19:15:42'); INSERT INTO `sys_oper_log` VALUES (5922, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-02-13 19:27:29'); INSERT INTO `sys_oper_log` VALUES (5923, '文案管理', 3, 'com.xjs.copywriting.controller.CopyWritingController.remove()', 'DELETE', 1, 'admin', '', '/copyWriting/1492683946564755477', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-13 19:33:45'); INSERT INTO `sys_oper_log` VALUES (5924, '文案管理', 3, 'com.xjs.copywriting.controller.CopyWritingController.remove()', 'DELETE', 1, 'admin', '', '/copyWriting/1492740318161510401,1492722701753360386,1492683952029933599', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-13 19:33:56'); INSERT INTO `sys_oper_log` VALUES (5925, '文案管理', 3, 'com.xjs.copywriting.controller.CopyWritingController.remove()', 'DELETE', 1, 'admin', '', '/copyWriting/1492683948116647937,1492683936011886621,1492683935231746049', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-13 19:34:03'); INSERT INTO `sys_oper_log` VALUES (5926, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 19:33:58\"}}', 0, '', '2022-02-13 19:34:50'); INSERT INTO `sys_oper_log` VALUES (5927, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644752090564,\"humidity\":\"92\",\"id\":1492824582911565825,\"province\":\"江西\",\"reporttime\":1644752037000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 19:34:50'); INSERT INTO `sys_oper_log` VALUES (5928, '文案管理', 3, 'com.xjs.copywriting.controller.CopyWritingController.remove()', 'DELETE', 1, 'admin', '', '/copyWriting/1492810782711980033,1492805750251823105', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-13 19:34:58'); INSERT INTO `sys_oper_log` VALUES (5929, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 20:03:53\"}}', 0, '', '2022-02-13 20:23:54'); INSERT INTO `sys_oper_log` VALUES (5930, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1644753833000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 20:23:54'); INSERT INTO `sys_oper_log` VALUES (5931, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1644753833000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 20:24:06'); INSERT INTO `sys_oper_log` VALUES (5932, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 20:03:53\"}}', 0, '', '2022-02-13 20:24:06'); INSERT INTO `sys_oper_log` VALUES (5933, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1644753833000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 20:24:21'); INSERT INTO `sys_oper_log` VALUES (5934, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 20:03:53\"}}', 0, '', '2022-02-13 20:24:21'); INSERT INTO `sys_oper_log` VALUES (5935, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-13\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-13 20:03:53\"}}', 0, '', '2022-02-13 20:24:47'); INSERT INTO `sys_oper_log` VALUES (5936, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1644753833000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-13 20:24:47'); INSERT INTO `sys_oper_log` VALUES (5937, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":139,\"apiName\":\"ROLL-身份证查询\",\"dayCount\":0,\"apiUrl\":\"https://www.mxnzp.com/api/idcard/search\",\"createTime\":1642662156000,\"limitCount\":30,\"updateTime\":1642996406000,\"id\":1484058761776762881,\"totalCount\":69}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-14 08:34:22'); INSERT INTO `sys_oper_log` VALUES (5938, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1644800922000,\"temperature\":\"6\",\"weather\":\"多云\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 09:21:51'); INSERT INTO `sys_oper_log` VALUES (5939, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 09:08:42\"}}', 0, '', '2022-02-14 09:21:51'); INSERT INTO `sys_oper_log` VALUES (5940, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1644806325000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 10:42:34'); INSERT INTO `sys_oper_log` VALUES (5941, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 10:38:45\"}}', 0, '', '2022-02-14 10:42:34'); INSERT INTO `sys_oper_log` VALUES (5942, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1644808113000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 11:33:02'); INSERT INTO `sys_oper_log` VALUES (5943, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 11:08:33\"}}', 0, '', '2022-02-14 11:33:04'); INSERT INTO `sys_oper_log` VALUES (5944, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\",\"createTime\":1644809601838,\"id\":1493065802661425153,\"source\":\"病态\",\"type\":2}}', 0, '', '2022-02-14 11:33:21'); INSERT INTO `sys_oper_log` VALUES (5945, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Nothing is more dangerous than discontinued labor.\",\"dataId\":3540,\"date\":1570550400000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-09.jpg\",\"note\":\"没有什么比半途而废更危险。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-09-day.mp3\"}}', 0, '', '2022-02-14 11:33:21'); INSERT INTO `sys_oper_log` VALUES (5946, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":31,\"errorCode\":0,\"transResult\":[{\"dst\":\"The moon is round slowly things will slowly get better right\",\"src\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-02-14 11:33:43'); INSERT INTO `sys_oper_log` VALUES (5947, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The moon is getting round and things will get better, right\",\"src\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\"}]}}', 0, '', '2022-02-14 11:33:46'); INSERT INTO `sys_oper_log` VALUES (5948, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The moon is getting round and things will get better, right\",\"src\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\"}]}}', 0, '', '2022-02-14 11:33:47'); INSERT INTO `sys_oper_log` VALUES (5949, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The moon is getting round and things will get better, right\",\"src\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\"}]}}', 0, '', '2022-02-14 11:33:48'); INSERT INTO `sys_oper_log` VALUES (5950, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The moon is getting round and things will get better, right\",\"src\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\"}]}}', 0, '', '2022-02-14 11:33:53'); INSERT INTO `sys_oper_log` VALUES (5951, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The moon is getting round and things will get better, right\",\"src\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\"}]}}', 0, '', '2022-02-14 11:33:54'); INSERT INTO `sys_oper_log` VALUES (5952, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The moon is getting round and things will get better, right\",\"src\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\"}]}}', 0, '', '2022-02-14 11:33:56'); INSERT INTO `sys_oper_log` VALUES (5953, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"The moon is getting round and things will get better, right\",\"src\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\"}]}}', 0, '', '2022-02-14 11:34:00'); INSERT INTO `sys_oper_log` VALUES (5954, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"The moon is round slowly things will slowly get better right\",\"src\":\"月亮在慢慢变圆 事情也会慢慢变好对吧\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-02-14 11:34:03'); INSERT INTO `sys_oper_log` VALUES (5955, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1493067475358302210', '127.0.0.1', '', '1493067475358302210', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-14 11:49:12'); INSERT INTO `sys_oper_log` VALUES (5956, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你看你的发型,完全不配合你的脸型脸型又不配合身型,身型又和发型完全不搭,而且极度不配合啊!!欢哥!你究竟要怎么样啊 !\",\"createTime\":1644823242026,\"id\":1493123013735542786,\"source\":\"算死草\",\"type\":3}}', 0, '', '2022-02-14 15:20:42'); INSERT INTO `sys_oper_log` VALUES (5957, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You can’t use up creativity. The more you use, the more you have.\",\"createTime\":1644823242032,\"dataId\":4119,\"date\":1620230400000,\"id\":1493123013794263041,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e98f0fe5d62fc53886846debbc742a7b.png\",\"note\":\"创造力取之不尽,用之不竭,越用越多。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/774a6c341a2b95195d5f1fae65adcd9f.mp3\"}}', 0, '', '2022-02-14 15:20:42'); INSERT INTO `sys_oper_log` VALUES (5958, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 16:38:45\"}}', 0, '', '2022-02-14 16:52:31'); INSERT INTO `sys_oper_log` VALUES (5959, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1644827925000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 16:52:31'); INSERT INTO `sys_oper_log` VALUES (5960, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 16:38:45\"}}', 0, '', '2022-02-14 16:52:40'); INSERT INTO `sys_oper_log` VALUES (5961, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 17:08:33\"}}', 0, '', '2022-02-14 17:09:09'); INSERT INTO `sys_oper_log` VALUES (5962, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644829749939,\"humidity\":\"61\",\"id\":1493150309930430465,\"province\":\"江西\",\"reporttime\":1644829712000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 17:09:09'); INSERT INTO `sys_oper_log` VALUES (5963, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644829749939,\"humidity\":\"61\",\"id\":1493150309930430465,\"province\":\"江西\",\"reporttime\":1644829712000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 17:09:18'); INSERT INTO `sys_oper_log` VALUES (5964, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 17:08:33\"}}', 0, '', '2022-02-14 17:09:18'); INSERT INTO `sys_oper_log` VALUES (5965, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"Diary\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"日记\",\"src\":\"Diary\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-02-14 17:15:37'); INSERT INTO `sys_oper_log` VALUES (5966, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It hurts to remember,but it would be worse to forget.\",\"dataId\":4192,\"date\":1626537600000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/271e8a9de6aee4ee4005d84e7a377ccc.png\",\"note\":\"铭记虽痛苦,但遗忘更糟糕。 \",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/b7135224af703461b208325816b911ff.mp3\"}}', 0, '', '2022-02-14 17:15:37'); INSERT INTO `sys_oper_log` VALUES (5967, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们一路奋战,不是为了改变世界,而是为了不让世界改变我们。\",\"createTime\":1644830137622,\"id\":1493151935953039361,\"source\":\"928884975\",\"type\":5}}', 0, '', '2022-02-14 17:15:37'); INSERT INTO `sys_oper_log` VALUES (5968, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"记事簿\",\"top\":2,\"createTime\":1644830213316,\"englishWord\":\"diary\",\"isCollect\":1,\"id\":1493152253482860546,\"sort\":0,\"content\":\"diary\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-14 17:16:53'); INSERT INTO `sys_oper_log` VALUES (5969, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"6\",\"listClass\":\"default\",\"dictSort\":0,\"remark\":\"舔狗日记\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"舔狗日记\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-14 17:55:39'); INSERT INTO `sys_oper_log` VALUES (5970, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"6\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"舔狗日记\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"舔狗日记\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1644832539000,\"dictCode\":121,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-14 17:55:47'); INSERT INTO `sys_oper_log` VALUES (5971, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 17:34:06\"}}', 0, '', '2022-02-14 17:56:20'); INSERT INTO `sys_oper_log` VALUES (5972, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1644831246000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 17:56:20'); INSERT INTO `sys_oper_log` VALUES (5973, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1493162181035540481', '127.0.0.1', '', '1493162181035540481', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-14 17:57:18'); INSERT INTO `sys_oper_log` VALUES (5974, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"道德对人的约束,要根据他所属社会阶层的不同而有所变化。阳光照耀各地情况不同,于是产生了我们赞叹不止的四季。同样,道德也使社会义务与每人的等级地位相吻合。士兵犯的小过失,如果出在将军身上,就是重大罪行。反之亦然。一个收获庄稼的农家姑娘,一个日赚十五个苏发女工,一个零售小商人的女儿,一个年轻的布尔乔亚女子,一个富商大户人家的女孩,一个贵族之家的年轻女继承人,一个德埃斯特家族的女儿,要遵守的戒律是各不相同的。\",\"createTime\":1644832916066,\"id\":1493163589589262338,\"source\":\"巴尔扎克\",\"type\":4}}', 0, '', '2022-02-14 18:01:56'); INSERT INTO `sys_oper_log` VALUES (5975, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A problem well stated is a problem half solved.\",\"dataId\":4187,\"date\":1626105600000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/f332a5d7695d06935002d036ec27baa9.png\",\"note\":\"问题说清楚了,就相当于解决一半了。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e2c434c58cdc26a5595f808f1d319137.mp3\"}}', 0, '', '2022-02-14 18:01:56'); INSERT INTO `sys_oper_log` VALUES (5976, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 17:34:06\"}}', 0, '', '2022-02-14 18:02:00'); INSERT INTO `sys_oper_log` VALUES (5977, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1644831246000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 18:02:00'); INSERT INTO `sys_oper_log` VALUES (5978, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生一世,总有些片断当时看着无关紧要,而事实上却牵动了大局。\",\"createTime\":1644832920658,\"id\":1493163608866283521,\"source\":\"萨克雷\",\"type\":4}}', 0, '', '2022-02-14 18:02:00'); INSERT INTO `sys_oper_log` VALUES (5979, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Everyone has his disadvantages, like the apple bitten by God. \",\"createTime\":1644832920663,\"dataId\":3876,\"date\":1599148800000,\"id\":1493163608866283522,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/04f65f655e052e3a1e70e78057a6e708.png\",\"note\":\"每个人都会有缺陷,就像被上帝咬过的苹果。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/8971351418d225b7e2cf2f830871884e.mp3\"}}', 0, '', '2022-02-14 18:02:00'); INSERT INTO `sys_oper_log` VALUES (5980, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"持续不断地劳动是人生的铁律,也是艺术的铁律。\",\"createTime\":1644832922357,\"id\":1493163615979823105,\"source\":\"巴尔扎克\",\"type\":4}}', 0, '', '2022-02-14 18:02:02'); INSERT INTO `sys_oper_log` VALUES (5981, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"最后的结果确定工作的成败。\",\"createTime\":1644832923198,\"id\":1493163619507232769,\"source\":\"莎士比亚\",\"type\":4}}', 0, '', '2022-02-14 18:02:03'); INSERT INTO `sys_oper_log` VALUES (5982, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"颠沛、流离。最后,物是、人非。你还好吗?\",\"createTime\":1644832924373,\"id\":1493163624481677313,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:02:04'); INSERT INTO `sys_oper_log` VALUES (5983, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"法院挤,跟我去警察局[大哭][大哭][大哭][大哭]\",\"createTime\":1644832924918,\"id\":1493163626746601474,\"source\":\"广寒宫\",\"type\":2}}', 0, '', '2022-02-14 18:02:04'); INSERT INTO `sys_oper_log` VALUES (5984, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"洗衣粉是谋杀爱情的凶手 最后闪闪发亮的只有厨房\",\"createTime\":1644832925917,\"id\":1493163630907351041,\"source\":\"他不懂\",\"type\":2}}', 0, '', '2022-02-14 18:02:05'); INSERT INTO `sys_oper_log` VALUES (5985, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你说的迈不过的苦难,有人早已习以为常。\",\"createTime\":1644832926455,\"id\":1493163633176469505,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 18:02:06'); INSERT INTO `sys_oper_log` VALUES (5986, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没有结局的故事太多,你要习惯相遇与离别。岁月会记得,你温柔赤诚的心。\",\"createTime\":1644832927377,\"id\":1493163637081366530,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 18:02:07'); INSERT INTO `sys_oper_log` VALUES (5987, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"大人总是不听小孩的话!\",\"createTime\":1644832927913,\"id\":1493163639283376130,\"source\":\"特莱尔的冒险\",\"type\":3}}', 0, '', '2022-02-14 18:02:07'); INSERT INTO `sys_oper_log` VALUES (5988, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没有爱情的婚姻是不幸福的,而没有房子的婚姻则更不幸福。\",\"createTime\":1644832928903,\"id\":1493163643435737090,\"source\":\"甲方乙方\",\"type\":3}}', 0, '', '2022-02-14 18:02:08'); INSERT INTO `sys_oper_log` VALUES (5989, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果感情可以分胜负的话,我不知道她是否会赢,但是我很清楚,从一开始,我就输了\",\"createTime\":1644832929468,\"id\":1493163645826490369,\"source\":\"东邪西毒\",\"type\":3}}', 0, '', '2022-02-14 18:02:09'); INSERT INTO `sys_oper_log` VALUES (5990, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Some things have to be very correct\",\"createTime\":1644832930427,\"id\":1493163649857216514,\"source\":\"没有理由\",\"type\":2}}', 0, '', '2022-02-14 18:02:10'); INSERT INTO `sys_oper_log` VALUES (5991, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我再也没有深情让你辜负了\",\"createTime\":1644832931032,\"id\":1493163652377993217,\"source\":\"离岸\",\"type\":2}}', 0, '', '2022-02-14 18:02:11'); INSERT INTO `sys_oper_log` VALUES (5992, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"2015格莱美最佳乡村歌手\",\"createTime\":1641025691000,\"id\":1477194929970831361,\"source\":\"Waiting For Love\",\"type\":2}}', 0, '', '2022-02-14 18:02:12'); INSERT INTO `sys_oper_log` VALUES (5993, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"难过吗 再难过也都是我一个人挺过来的\",\"createTime\":1641647890000,\"id\":1479804622719385619,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:02:12'); INSERT INTO `sys_oper_log` VALUES (5994, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"孤独是一个人的狂欢,我在尽情的享受它,并且热爱它\",\"createTime\":1644832983000,\"id\":1493163870372749314,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 18:03:03'); INSERT INTO `sys_oper_log` VALUES (5995, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我就像现在一样看着你微笑,沉默,得意,失落,于是我跟着你开心也跟着你难过,只是我一直站在现在而你却永远停留过去。\",\"createTime\":1644832984119,\"id\":1493163875053592578,\"source\":\"漫柳如烟\",\"type\":5}}', 0, '', '2022-02-14 18:03:04'); INSERT INTO `sys_oper_log` VALUES (5996, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我在自己周围筑起高墙,没有哪个人能够入内,也尽量不放自己出去。\",\"createTime\":1644832985683,\"id\":1493163881579929602,\"source\":\"村上春树《海边的卡夫卡》\",\"type\":1}}', 0, '', '2022-02-14 18:03:05'); INSERT INTO `sys_oper_log` VALUES (5997, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我是最强的!\",\"createTime\":1644832986293,\"id\":1493163884159426562,\"source\":\"枫の物语\",\"type\":5}}', 0, '', '2022-02-14 18:03:06'); INSERT INTO `sys_oper_log` VALUES (5998, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有一万个去见你的理由,却少了一个去见你的身份。。。。\",\"createTime\":1644832987286,\"id\":1493163888315981825,\"source\":\"不再联系\",\"type\":2}}', 0, '', '2022-02-14 18:03:07'); INSERT INTO `sys_oper_log` VALUES (5999, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"她也知道我所有的小瑕庛,人们称之为不完美。其实不然,那才是好东西,能选择让谁进入我们的世界。你并不完美,我不吊你胃口,你认识的女生也不完美,问题是你们是否完美地合适。亲密关系就是这么一回事,你可以知道全世界的事,但发掘的方法就是去尝试。\",\"createTime\":1644832987797,\"id\":1493163890455076865,\"source\":\"心灵捕手(Good Will Hunting)\",\"type\":3}}', 0, '', '2022-02-14 18:03:07'); INSERT INTO `sys_oper_log` VALUES (6000, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不谈真人 叹花样青春 少年足风流 后来诸多恩怨 情仇汹涌 剪不断理还乱 后人众说纷纭 局中之人释怀与否 谁又知晓 他抬眉温柔 他斜嘴浅笑 她回头 撒一地阳光\",\"createTime\":1644832988756,\"id\":1493163894481608706,\"source\":\"初恋\",\"type\":2}}', 0, '', '2022-02-14 18:03:08'); INSERT INTO `sys_oper_log` VALUES (6001, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"大家好,我是顏人中,身高185,體重一個月之內會降到80kg ! 這是我的第一隻個人單曲,謝謝大家熬夜的等待,感恩感動感謝!! 我還是覺得在做夢,你們的每一份支持和每一個點讚都是我走到今天的動力,再次感謝你們每一個人!!!\",\"createTime\":1644832989326,\"id\":1493163896876556290,\"source\":\"晚安\",\"type\":2}}', 0, '', '2022-02-14 18:03:09'); INSERT INTO `sys_oper_log` VALUES (6002, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"女人,爱是她的灵魂,她可以奉献她的一生永远装天真,只为她...所爱的人。\",\"createTime\":1644832990272,\"id\":1493163900844367873,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:03:10'); INSERT INTO `sys_oper_log` VALUES (6003, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"陈瑞一定是个短发的白羊座小可爱吧\",\"createTime\":1644832990836,\"id\":1493163903235121153,\"source\":\"白羊\",\"type\":2}}', 0, '', '2022-02-14 18:03:10'); INSERT INTO `sys_oper_log` VALUES (6004, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"愿时光能缓,愿故人不散;愿你惦念的人能和你道晚安,愿你独闯的日子里不觉得孤单。\",\"createTime\":1644832991699,\"id\":1493163906829639682,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 18:03:11'); INSERT INTO `sys_oper_log` VALUES (6005, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要在工作面前退缩,说这不可能,劳动会使你创造一切。\",\"createTime\":1644832992219,\"id\":1493163909035843585,\"source\":\"(印度)谚语\",\"type\":4}}', 0, '', '2022-02-14 18:03:12'); INSERT INTO `sys_oper_log` VALUES (6006, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"丧失了自尊心的人,是一个没有出息的个人;丧失了自尊心的民族,是一个无望的民族。\",\"createTime\":1644832993306,\"id\":1493163913569886210,\"source\":\"陈祖芬\",\"type\":4}}', 0, '', '2022-02-14 18:03:13'); INSERT INTO `sys_oper_log` VALUES (6007, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人潮人海中,又看到你。一样迷人,一样美丽。\",\"createTime\":1644832993968,\"id\":1493163916338126849,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:03:13'); INSERT INTO `sys_oper_log` VALUES (6008, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"小学时,想和喜欢的人同桌; 初中时,想和喜欢的人同班; 高中时,想和喜欢的人同校; 工作时,想和喜欢的人同城; 年老时,想和喜欢的人同一个世界。\",\"createTime\":1644832994935,\"id\":1493163920427573250,\"source\":\"Move Up (Lost Gravity)\",\"type\":2}}', 0, '', '2022-02-14 18:03:14'); INSERT INTO `sys_oper_log` VALUES (6009, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“你所站立的地方,正是你的中国;你怎么样,中国便怎么样;你是什么,中国便是什么;你若光明,中国便不黑暗” 愿中国青年都摆脱冷气,只向上走! \",\"createTime\":1644832995511,\"id\":1493163922822520833,\"source\":\"红色\",\"type\":2}}', 0, '', '2022-02-14 18:03:15'); INSERT INTO `sys_oper_log` VALUES (6010, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人世间的感情不过两种,一种是相濡以沫却厌倦到老,一种是相忘江湖却怀念到哭。\",\"createTime\":1644833000901,\"id\":1493163945421430785,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 18:03:20'); INSERT INTO `sys_oper_log` VALUES (6011, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"他以前在猫厂.2帅现在属于不单独在一个厂发歌的哪一列\",\"createTime\":1644833003509,\"id\":1493163956368564226,\"source\":\"Nevada (feat. Cozi Zuehlsdorff)\",\"type\":2}}', 0, '', '2022-02-14 18:03:23'); INSERT INTO `sys_oper_log` VALUES (6012, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"下山一定要记得买菜,生快\",\"createTime\":1644833007347,\"id\":1493163972495663106,\"source\":\"下山\",\"type\":2}}', 0, '', '2022-02-14 18:03:27'); INSERT INTO `sys_oper_log` VALUES (6013, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情要懂得珍惜,随着岁月加倍的珍惜。爱情不是在明月之下闲散,也不是在长板凳上叹息。\",\"createTime\":1644833011871,\"id\":1493163991445528578,\"source\":\"施企巴乔夫\",\"type\":4}}', 0, '', '2022-02-14 18:03:31'); INSERT INTO `sys_oper_log` VALUES (6014, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"春蚕到死丝方尽,蜡炬成灰泪始干。\",\"createTime\":1644833054181,\"id\":1493164168934240258,\"source\":\"李商隐\",\"type\":4}}', 0, '', '2022-02-14 18:04:14'); INSERT INTO `sys_oper_log` VALUES (6015, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的肩上是风,风上是闪烁的星群。\",\"createTime\":1644833055157,\"id\":1493164173019492353,\"source\":\"北岛\",\"type\":1}}', 0, '', '2022-02-14 18:04:15'); INSERT INTO `sys_oper_log` VALUES (6016, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要打人的话,首先要学会挨打。\",\"createTime\":1644833056159,\"id\":1493164177230573570,\"source\":\"精武英雄\",\"type\":3}}', 0, '', '2022-02-14 18:04:16'); INSERT INTO `sys_oper_log` VALUES (6017, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"梦总是有会醒来的时候,不会醒的梦总有一天会变成悲伤。\",\"createTime\":1644833056899,\"id\":1493164180330164225,\"source\":\"林志广\",\"type\":5}}', 0, '', '2022-02-14 18:04:16'); INSERT INTO `sys_oper_log` VALUES (6018, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你那么有钱,为什么不让鬼来推磨\",\"createTime\":1641861735000,\"id\":1480701554318274565,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-02-14 18:04:18'); INSERT INTO `sys_oper_log` VALUES (6019, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"李子维 我可不可以对你许我的第三个愿望 我希望 有一天 我可以变成你会喜欢上的那种女生 然后 你可以像我喜欢你那样的喜欢我\\\" \",\"createTime\":1644833058832,\"id\":1493164188450336770,\"source\":\"想见你想见你想见你\",\"type\":2}}', 0, '', '2022-02-14 18:04:18'); INSERT INTO `sys_oper_log` VALUES (6020, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1644831246000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 18:05:08'); INSERT INTO `sys_oper_log` VALUES (6021, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 17:34:06\"}}', 0, '', '2022-02-14 18:05:08'); INSERT INTO `sys_oper_log` VALUES (6022, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 18:03:57\"}}', 0, '', '2022-02-14 18:08:19'); INSERT INTO `sys_oper_log` VALUES (6023, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644833301697,\"humidity\":\"62\",\"id\":1493165207058034689,\"province\":\"江西\",\"reporttime\":1644833037000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 18:08:21'); INSERT INTO `sys_oper_log` VALUES (6024, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sometimes your whole life boils down to one insane move.\",\"createTime\":1644833305502,\"dataId\":3419,\"date\":1560268800000,\"id\":1493165223046721537,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-12.jpg\",\"note\":\"人一生中出人头地的机会不多,一旦有了一定要抓住机会!\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-12-day.mp3\"}}', 0, '', '2022-02-14 18:08:25'); INSERT INTO `sys_oper_log` VALUES (6025, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"路易斯,我认为这是一段美好友谊的开始。\",\"createTime\":1644833305527,\"id\":1493165223109636097,\"source\":\"卡萨布兰卡 (Casablanca)\",\"type\":3}}', 0, '', '2022-02-14 18:08:25'); INSERT INTO `sys_oper_log` VALUES (6026, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"向日葵告诉我,只要面对着阳光努力向上,日子就会变得单纯而美好。\",\"createTime\":1644833309015,\"id\":1493165237781311490,\"source\":\"几米《又寂寞又美好》\",\"type\":1}}', 0, '', '2022-02-14 18:08:29'); INSERT INTO `sys_oper_log` VALUES (6027, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"薛之谦唱歌这么好听为什么不红[流感]\",\"createTime\":1644833310301,\"id\":1493165243129049090,\"source\":\"意外\",\"type\":2}}', 0, '', '2022-02-14 18:08:30'); INSERT INTO `sys_oper_log` VALUES (6028, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"路易斯,我认为这是一段美好友谊的开始。\",\"createTime\":1644833311257,\"id\":1493165247159775234,\"source\":\"卡萨布兰卡 (Casablanca)\",\"type\":3}}', 0, '', '2022-02-14 18:08:31'); INSERT INTO `sys_oper_log` VALUES (6029, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"大志非才不就,大才非学不成。\",\"createTime\":1644833312232,\"id\":1493165251253415938,\"source\":\"(明)郑心材\",\"type\":4}}', 0, '', '2022-02-14 18:08:32'); INSERT INTO `sys_oper_log` VALUES (6030, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"男孩错过一个最想娶的女孩就会变得很随便,女孩错过一个最想嫁的男孩就会变得很挑剔。\",\"createTime\":1644833313279,\"id\":1493165255661629441,\"source\":\"问\",\"type\":2}}', 0, '', '2022-02-14 18:08:33'); INSERT INTO `sys_oper_log` VALUES (6031, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我超级超级喜欢小动物,怎么说呢,就是顿顿都有吧。\",\"createTime\":1641956284000,\"id\":1481098121076408340,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:08:34'); INSERT INTO `sys_oper_log` VALUES (6032, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我认为人生最美好的主旨和人类生活最幸福的结果,无过于学习了。\",\"createTime\":1644833316347,\"id\":1493165268500393985,\"source\":\"巴尔扎克\",\"type\":4}}', 0, '', '2022-02-14 18:08:36'); INSERT INTO `sys_oper_log` VALUES (6033, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"鱼对水说:“你看不见我的眼泪,因为我的泪在水里。”水对鱼说:“我能感受到你的眼泪 ,因为你的泪在我的心里。” ——佚名\",\"createTime\":1644833317438,\"id\":1493165273093156866,\"source\":\"像鱼\",\"type\":2}}', 0, '', '2022-02-14 18:08:37'); INSERT INTO `sys_oper_log` VALUES (6034, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"夜深了,你們最想和誰說晚安,寫在評論區,相信他/她能感受得到! 一周之後,我會在評論區抽取一位朋友在12點打電話給你說“晚安”,陪你進入夢鄉~ 一個月之後我會抽取另外一位朋友,送你到台灣我請你吃飯一起唱歌!包機票包酒店,謝謝網易雲音樂的支持!\",\"createTime\":1644833318294,\"id\":1493165276679286786,\"source\":\"晚安\",\"type\":2}}', 0, '', '2022-02-14 18:08:38'); INSERT INTO `sys_oper_log` VALUES (6035, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你的努力,别人不一定放在眼里,你不努力,别人一定放在心里。\",\"createTime\":1641647882000,\"id\":1479804586589650959,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:08:39'); INSERT INTO `sys_oper_log` VALUES (6036, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We are so busy watching out for whats just ahead of us that we dont take time to enjoy where we are. \",\"createTime\":1641955695000,\"id\":1481095650736209924,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:08:40'); INSERT INTO `sys_oper_log` VALUES (6037, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"地球只有一个,而欧派有两个。\",\"createTime\":1644833321684,\"id\":1493165290906365954,\"source\":\"mlmtmfz\",\"type\":5}}', 0, '', '2022-02-14 18:08:41'); INSERT INTO `sys_oper_log` VALUES (6038, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"2018年《出山》 2019年《下山》 2020年《上山》 2021年《归山》 2022年《进山》 2022年《烧山》2023年《炸山》\",\"createTime\":1644833392805,\"id\":1493165589222043649,\"source\":\"下山\",\"type\":2}}', 0, '', '2022-02-14 18:09:52'); INSERT INTO `sys_oper_log` VALUES (6039, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好的坏的我们都收下吧, 然后一声不响,继续生活。\",\"createTime\":1644833393787,\"id\":1493165593311490049,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:09:53'); INSERT INTO `sys_oper_log` VALUES (6040, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"根本没有中华厨艺学院,所谓的中华厨艺学院就是少林寺的厨房,其实你就是少林寺逃出来的叛徒!\",\"createTime\":1644833394684,\"id\":1493165597090557954,\"source\":\"食神\",\"type\":3}}', 0, '', '2022-02-14 18:09:54'); INSERT INTO `sys_oper_log` VALUES (6041, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天发工资了 我一个月工资1500 你猜我会给你多少 是不是觉得我会给你1200 自己留300吃饭 哈哈 我1500都给你 因为厂里包吃包住\",\"createTime\":1644833395752,\"id\":1493165601561686017,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:09:55'); INSERT INTO `sys_oper_log` VALUES (6042, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不管被踢被打失声狂叫,我都会陪你熬过去,到头来你还会感谢我。\",\"createTime\":1644833396544,\"id\":1493165604896157698,\"source\":\"斗阵俱乐部(搏击俱乐部)Fight Club\",\"type\":3}}', 0, '', '2022-02-14 18:09:56'); INSERT INTO `sys_oper_log` VALUES (6043, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"选一个能让你快乐的人,而不是你只能努力取悦的人\",\"createTime\":1644833397407,\"id\":1493165608486481922,\"source\":\"最后一个情人\",\"type\":5}}', 0, '', '2022-02-14 18:09:57'); INSERT INTO `sys_oper_log` VALUES (6044, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"可以用早起代替熬夜,世界都还在睡,爸妈都还在睡,老板在睡老师在睡,全世界都还在睡,你就可以看着太阳慢慢升起,就会感到光明原来总会来到。而你在乎的人也会慢慢醒来,世界还在慢慢运转,你依旧会有属于自己的时间,相信我.早起比熬夜更值得。控制了早晨,你才能控制人生\",\"createTime\":1644833398404,\"id\":1493165612705951745,\"source\":\"熬夜成瘾\",\"type\":2}}', 0, '', '2022-02-14 18:09:58'); INSERT INTO `sys_oper_log` VALUES (6045, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"历史虽然会一再重演,但人类却无法回到过去。\",\"createTime\":1644833398999,\"id\":1493165615159619585,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-02-14 18:09:59'); INSERT INTO `sys_oper_log` VALUES (6046, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"当然是尿阿--白猴\",\"createTime\":1644833399930,\"id\":1493165619068710913,\"source\":\"艋舺\",\"type\":3}}', 0, '', '2022-02-14 18:09:59'); INSERT INTO `sys_oper_log` VALUES (6047, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我坐在窗边给你发了99条消息 你终于肯回我了 你说“发你妈啊” 我一下子就哭了 原来努力真的有用 你已经开始考虑想见我的妈妈了 你其实也是挺喜欢我的\",\"createTime\":1644833400753,\"id\":1493165622533206017,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:10:00'); INSERT INTO `sys_oper_log` VALUES (6048, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644833301697,\"humidity\":\"62\",\"id\":1493165207058034689,\"province\":\"江西\",\"reporttime\":1644833037000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 18:10:03'); INSERT INTO `sys_oper_log` VALUES (6049, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 18:03:57\"}}', 0, '', '2022-02-14 18:10:03'); INSERT INTO `sys_oper_log` VALUES (6050, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我本可以容忍黑暗,如果我不曾见过太阳.然而阳光已使我荒凉,成为更新的荒凉……我啜饮过生活的芳醇,付出了什么,告诉你吧,不多不少,整整一生.\",\"createTime\":1644833404391,\"id\":1493165637766918145,\"source\":\"现世道\",\"type\":2}}', 0, '', '2022-02-14 18:10:04'); INSERT INTO `sys_oper_log` VALUES (6051, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"No matter how dark the moment, love and hope are always possible.\",\"createTime\":1644833404422,\"dataId\":3757,\"date\":1588953600000,\"id\":1493165637955661825,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/f1b48c83862187185cd85223f1e14065.png\",\"note\":\"无论眼前有多黑暗,爱和希望总有可能。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/54e2d8e94a1f1b209768b9e9c376cbff.mp3\"}}', 0, '', '2022-02-14 18:10:04'); INSERT INTO `sys_oper_log` VALUES (6052, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644833301697,\"humidity\":\"62\",\"id\":1493165207058034689,\"province\":\"江西\",\"reporttime\":1644833037000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 18:13:04'); INSERT INTO `sys_oper_log` VALUES (6053, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 18:03:57\"}}', 0, '', '2022-02-14 18:13:04'); INSERT INTO `sys_oper_log` VALUES (6054, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If we don\'t end war, war will end us.\",\"createTime\":1644833668047,\"dataId\":3874,\"date\":1599062400000,\"id\":1493166743674859522,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/1922400cab22a13df7b743c59294ed5d.png\",\"note\":\"如果我们不结束战争,被终结的将是我们自己。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/8971351418d225b7e2cf2f830871884e.mp3\"}}', 0, '', '2022-02-14 18:14:28'); INSERT INTO `sys_oper_log` VALUES (6055, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心若简易,何必杯具。\",\"createTime\":1644833668957,\"id\":1493166747449733122,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:14:28'); INSERT INTO `sys_oper_log` VALUES (6056, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我想成为一个温柔的人,因为曾被温柔的人那样对待,深深了解那种被温柔相待的感觉。\",\"createTime\":1644833701071,\"id\":1493166882183360514,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 18:15:01'); INSERT INTO `sys_oper_log` VALUES (6057, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644833301697,\"humidity\":\"62\",\"id\":1493165207058034689,\"province\":\"江西\",\"reporttime\":1644833037000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 18:15:49'); INSERT INTO `sys_oper_log` VALUES (6058, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 18:03:57\"}}', 0, '', '2022-02-14 18:15:49'); INSERT INTO `sys_oper_log` VALUES (6059, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The things we lose have a way of coming back to us in the end, if not always in the way we expect. \",\"createTime\":1644833756497,\"dataId\":3473,\"date\":1564761600000,\"id\":1493167114652659713,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-03.jpg\",\"note\":\"失去的东西到最后总有办法回来的,尽管有时会出乎我们的意料。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-03-day.mp3\"}}', 0, '', '2022-02-14 18:15:56'); INSERT INTO `sys_oper_log` VALUES (6060, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"即便被压榨拿着微薄的工资超负荷劳动,在最后望向烟花和自己的妻子儿女时,也会因为“努力守护着自己的家人”而感到幸福满足。 漫天绚烂的烟花,在头顶炸开成虚幻和遥远的美丽,社长家中狂欢不止,打翻的幸福蛋糕,倒下的疲惫身躯,八爷lemon的神插入,直戳泪点[流泪]\",\"createTime\":1644833756508,\"id\":1493167114711379970,\"source\":\"Lemon\",\"type\":2}}', 0, '', '2022-02-14 18:15:56'); INSERT INTO `sys_oper_log` VALUES (6061, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有一次我问他哥哥:“当兵累吗。”他说:“特别累。”我问:“有生命危险吗。”他说:“当然有啊。”我问:“那为什么还去当兵啊,又累又不自由。”他微微一笑,“因为我是中国男儿啊。”在那一刻,我稍微有点懂得了,有些人责任感的高度,是能被人仰望。哥哥死于2016年的一场火灾,\",\"createTime\":1644833761603,\"id\":1493167136047804417,\"source\":\"再也没有\",\"type\":2}}', 0, '', '2022-02-14 18:16:01'); INSERT INTO `sys_oper_log` VALUES (6062, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"第二高峰是乔戈里峰,第三是干城章嘉峰,第四是洛子峰,第五是马卡鲁峰,,,,其实只要尽自己的能力,无论做到第几,都会有人记住的,\",\"createTime\":1644833765088,\"id\":1493167150656565250,\"source\":\"老街\",\"type\":2}}', 0, '', '2022-02-14 18:16:05'); INSERT INTO `sys_oper_log` VALUES (6063, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"主公[折磨]人心散了,队伍不好带啊[晕]臣顶不住了[抠鼻]\",\"createTime\":1644833770402,\"id\":1493167172953485314,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:16:10'); INSERT INTO `sys_oper_log` VALUES (6064, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"昨天你把我删了 我看着红色感叹号陷入了久久的沉思 我想这其中一定有什么含义 红色红色 我明白了 红色代表热情 你对我很热情 你想和我结婚 我愿意\",\"createTime\":1644833772396,\"id\":1493167181325316098,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:16:12'); INSERT INTO `sys_oper_log` VALUES (6065, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每一天,你都会做出一个决定,改变你的生活。\",\"createTime\":1644834017864,\"id\":1493168210922090497,\"source\":\"罗拉快跑\",\"type\":3}}', 0, '', '2022-02-14 18:20:17'); INSERT INTO `sys_oper_log` VALUES (6066, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"无论这个世界对你怎样,都请你一如既往的努力、勇敢、充满希望。\",\"createTime\":1644834028771,\"id\":1493168256665169922,\"source\":\"毕淑敏 《愿你与这世界温暖相拥》\",\"type\":1}}', 0, '', '2022-02-14 18:20:28'); INSERT INTO `sys_oper_log` VALUES (6067, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"待凛冬离去,雪松草青,相信一定有新的相逢将温暖延续。\",\"createTime\":1644834039534,\"id\":1493168301808463874,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 18:20:39'); INSERT INTO `sys_oper_log` VALUES (6068, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生活不论好坏, 每一-天都是限量版。\",\"createTime\":1644834048674,\"id\":1493168340148596737,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 18:20:48'); INSERT INTO `sys_oper_log` VALUES (6069, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时光的飞逝悄悄地把我们拉远了\",\"createTime\":1644834057118,\"id\":1493168375535939585,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:20:57'); INSERT INTO `sys_oper_log` VALUES (6070, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"现在很流行这种关系 和对方聊的很好 和她说自己很多的故事 熬夜聊天 等他晚安 和恋爱没什么区别 却没有权利叫一声亲爱的 最重要的是 你以为他和你一样认真 却发现你只是他无聊时候的伴 可惜的却是 你也认真他也认真 可你们却在相互试探中错过 故事是自己的 晚安也是对自己说的 告诉自己该离开了\",\"createTime\":1644834080000,\"id\":1493168471535169537,\"source\":\"责无旁贷\",\"type\":2}}', 0, '', '2022-02-14 18:21:20'); INSERT INTO `sys_oper_log` VALUES (6071, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"风景不好,但路,还是要走。正如晨曦的雾,美丽终将散去,也许结果不尽人意,但生活依然继续。\",\"createTime\":1644834084314,\"id\":1493168489595842562,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 18:21:24'); INSERT INTO `sys_oper_log` VALUES (6072, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个人要令另一个人讨厌不是难事,能让所有的人都讨厌也是一种本事。\",\"createTime\":1644834088976,\"id\":1493168509183242242,\"source\":\"小钟\",\"type\":5}}', 0, '', '2022-02-14 18:21:28'); INSERT INTO `sys_oper_log` VALUES (6073, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"昨天给你发了99条约你一起植树的消息,今天你终于肯回我了, 你说“你先去植发吧,死秃子。” 我一下子就哭了 ,原来努力真的有用 ,你已经开始关心我了,你也是挺喜欢我的吧。\",\"createTime\":1644834091212,\"id\":1493168518561705986,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:21:31'); INSERT INTO `sys_oper_log` VALUES (6074, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不过....我老爸其实真的好疼我,他抢劫银行呢,其实都是想买辆玩具车给我,杀人是因为有个人说我不够帅,强奸妇女是因为我跟他讲我想要个妹妹。唉..我......我老爸真是一个慈父。\",\"createTime\":1644834246937,\"id\":1493169171719696385,\"source\":\"千王之王\",\"type\":3}}', 0, '', '2022-02-14 18:24:06'); INSERT INTO `sys_oper_log` VALUES (6075, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一切礼仪,都是为了文饰那些虚应故事的行为,言不由衷的欢迎,出尔反尔的殷勤而设立的;如果有真实的友谊,这些虚伪的形式就该一律摈弃。\",\"createTime\":1644834249794,\"id\":1493169183669268481,\"source\":\"莎士比亚\",\"type\":4}}', 0, '', '2022-02-14 18:24:09'); INSERT INTO `sys_oper_log` VALUES (6076, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我一直在骗你你知道吗?骗就骗吧,就像飞蛾一样,明知道要受伤,还是会扑到火上,飞蛾就那么笨??!\",\"createTime\":1644834250960,\"id\":1493169188572409858,\"source\":\"齐天大圣西游记\",\"type\":3}}', 0, '', '2022-02-14 18:24:10'); INSERT INTO `sys_oper_log` VALUES (6077, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"世界上有那么多的城镇,城镇中有那么多的酒馆,她却走进了我的。--亨普瑞-鲍格特\",\"createTime\":1644834251504,\"id\":1493169190849916929,\"source\":\"卡萨布兰卡 (Casablanca)\",\"type\":3}}', 0, '', '2022-02-14 18:24:11'); INSERT INTO `sys_oper_log` VALUES (6078, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不忘初心,内心强大的女孩子,加油哦[强]\",\"createTime\":1644834252495,\"id\":1493169194989694977,\"source\":\"芒种\",\"type\":2}}', 0, '', '2022-02-14 18:24:12'); INSERT INTO `sys_oper_log` VALUES (6079, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"对,过去是痛楚的,但我认为你要么可以逃避,要么可以向它学习。\",\"createTime\":1644834253044,\"id\":1493169197321728001,\"source\":\"狮子王 The lion king\",\"type\":3}}', 0, '', '2022-02-14 18:24:13'); INSERT INTO `sys_oper_log` VALUES (6080, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你跟她已经醒了吧?我今天捡垃圾挣了一百多 明天给你打过去 你快点休息吧 我明天叫你起床 给你点外卖买烟 给你点你最喜欢的奶茶 晚上我会继续去摆地摊的 你不用担心我烦你 床只有那么大 睡不下三个 你要好好照顾好自己不要让她抢你被子 我永远爱你\",\"createTime\":1644834254390,\"id\":1493169202946289666,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:24:14'); INSERT INTO `sys_oper_log` VALUES (6081, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"灰姑娘的玻璃鞋,其实是故意掉的!要引起王子的注意…\",\"createTime\":1644834255219,\"id\":1493169206448533505,\"source\":\"Nana\",\"type\":3}}', 0, '', '2022-02-14 18:24:15'); INSERT INTO `sys_oper_log` VALUES (6082, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我来了宝贝!! 这个达芬奇我爱哭了\",\"createTime\":1644835597831,\"id\":1493174837725278209,\"source\":\"别叫我达芬奇\",\"type\":2}}', 0, '', '2022-02-14 18:46:37'); INSERT INTO `sys_oper_log` VALUES (6083, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"友谊既不需要奴隶,也不允许有统治者,友谊最喜欢平等。\",\"createTime\":1644835609846,\"id\":1493174888161783809,\"source\":\"冈察洛夫(俄国)\",\"type\":4}}', 0, '', '2022-02-14 18:46:49'); INSERT INTO `sys_oper_log` VALUES (6084, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我不知道怎么跟你相处 你有游戏要打 有小说要看 有觉要睡 朋友喊了还要去 而我的生活只有想你想你想你 我怎么配得上跟你谈恋爱呢 我只是一个得不到爱情的小笨蛋罢了\",\"createTime\":1644835611312,\"id\":1493174894272884737,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:46:51'); INSERT INTO `sys_oper_log` VALUES (6085, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你说生孩子本来就够痛苦了 还管是谁的干嘛呢 我可以跟你的孩子姓\",\"createTime\":1644835612176,\"id\":1493174897921929217,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:46:52'); INSERT INTO `sys_oper_log` VALUES (6086, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我一生渴望被人收藏好,妥善安放,细心保管,免我惊,免我苦,免我四下流离,免我无枝可依,我一直都在等...\",\"createTime\":1644835613181,\"id\":1493174902137204737,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:46:53'); INSERT INTO `sys_oper_log` VALUES (6087, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"错误是用来犯的,女人是用来惯的\",\"createTime\":1641647889000,\"id\":1479804618705436690,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:46:53'); INSERT INTO `sys_oper_log` VALUES (6088, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"愉快中有眼泪,狂喜也有尽止,只有希望像一剂猛烈但却无害的兴奋剂;它能使我们的心马上鼓舞而沉着起来,又不需要我们为快乐而付出智慧作代价。\",\"createTime\":1644835614837,\"id\":1493174909062000642,\"source\":\"杨格\",\"type\":4}}', 0, '', '2022-02-14 18:46:54'); INSERT INTO `sys_oper_log` VALUES (6089, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Why you dont talk to me anymore? Dont like me anymore?\",\"createTime\":1644835615394,\"id\":1493174911389839361,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:46:55'); INSERT INTO `sys_oper_log` VALUES (6090, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱一个人,就是无论你发现他做了怎样对不起你的事情,你都不会去计较,但当你做错了,或是因你而错的事情对不起了他,你会深深的愧疚并心疼...\",\"createTime\":1644835616320,\"id\":1493174915294736386,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:46:56'); INSERT INTO `sys_oper_log` VALUES (6091, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天你说了要和我打电话,我等了一天,马上十二点了才打过来,我有点不高兴就挂了,你骂了句给脸不要脸。我想了一下,哎呀你还会关心我的脸,多么善良的男孩子,我发誓还能再等一天电话[太開心]\",\"createTime\":1644835617163,\"id\":1493174918817951746,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:46:57'); INSERT INTO `sys_oper_log` VALUES (6092, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你扇了我一巴掌 我握着你的手说“怎么这么凉”\",\"createTime\":1644835618349,\"id\":1493174923792396289,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:46:58'); INSERT INTO `sys_oper_log` VALUES (6093, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天我的女神终于跟我提“亲嘴”这两个字啦,她让我给她去买点亲嘴烧送过去,她老公想吃。\",\"createTime\":1644835619205,\"id\":1493174927382720514,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:46:59'); INSERT INTO `sys_oper_log` VALUES (6094, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"昨天你把我删了,我陷入了久久的沉思,我想这其中一定有什么含义,原来你是在欲擒故纵,嫌我不够爱你,无理取闹的你变得更加可爱了,我会坚守我对你的爱的,你放心好啦!么么哒!今天发工资了 发了1839 给你微信转了520 支付宝1314 还剩下5 傍晚给你发了很多消息你没回 刚弹你正在通话中 你让我别烦 别打扰你跟别人k 好吧没关系宝宝我爱你 所以我不生气 剩下5块我在小卖部买了你爱吃的老坛酸菜牛肉面 给你寄过去了 希望你保护好食欲 我去上班了爱你\",\"createTime\":1644835620341,\"id\":1493174932164227073,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:47:00'); INSERT INTO `sys_oper_log` VALUES (6095, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"所有的科学都是错误先真理而生,错误在先比错误在后好。\",\"createTime\":1644835665929,\"id\":1493175123399331841,\"source\":\"沃尔波斯\",\"type\":4}}', 0, '', '2022-02-14 18:47:46'); INSERT INTO `sys_oper_log` VALUES (6096, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Have you ever seen the scene of Los Angeles at 4am?\",\"dataId\":3660,\"date\":1580140800000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/3ec342f4d930a5724e3a1439d4b78fba.jpg\",\"note\":\"你见过凌晨四点的洛杉矶吗?\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/1a0ec4ea2c0dca59ad5ea4abe2a8c5ca.mp3\"}}', 0, '', '2022-02-14 18:47:46'); INSERT INTO `sys_oper_log` VALUES (6097, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"经历多了就会知道,这世上需要的不只是真诚,和不同的人说不同的话,表现出不一样的态度,是一种非常可贵的能力。\",\"createTime\":1644835667662,\"id\":1493175130672254978,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 18:47:47'); INSERT INTO `sys_oper_log` VALUES (6098, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天我看见她好像特别难受,不知道为什么,我好想安慰一下,可是当我问的那一下,她叫我滚开,或许我真的有打扰到你吧,我想让她开心,所以我走开了\",\"createTime\":1644835668928,\"id\":1493175135961272321,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:47:48'); INSERT INTO `sys_oper_log` VALUES (6099, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你愿意陪我走到地狱的底端吗?\",\"createTime\":1644835669916,\"id\":1493175140117827586,\"source\":\"icecai123\",\"type\":5}}', 0, '', '2022-02-14 18:47:49'); INSERT INTO `sys_oper_log` VALUES (6100, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“得不到掌声得到温馨我爱这种清静...”\",\"createTime\":1644835670533,\"id\":1493175142701518850,\"source\":\"一事无成\",\"type\":2}}', 0, '', '2022-02-14 18:47:50'); INSERT INTO `sys_oper_log` VALUES (6101, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在这个世界上,良心应该更大于天才。巴尔扎克说:良心比天才更难得。良心是我们自己对自己的反应。\",\"createTime\":1644835671467,\"id\":1493175146606415873,\"source\":\"弗洛姆\",\"type\":4}}', 0, '', '2022-02-14 18:47:51'); INSERT INTO `sys_oper_log` VALUES (6102, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"走完同一条街,回到两个世界。\",\"createTime\":1644835672033,\"id\":1493175148997169153,\"source\":\"王菲\",\"type\":1}}', 0, '', '2022-02-14 18:47:52'); INSERT INTO `sys_oper_log` VALUES (6103, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"吃的苦中苦,才知白辛苦。\",\"createTime\":1644835684163,\"id\":1493175199865688066,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-14 18:48:04'); INSERT INTO `sys_oper_log` VALUES (6104, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“我把理想卖了,换成柴米油盐” 旅行的意义又是什么呢?\",\"createTime\":1644835686094,\"id\":1493175207922946050,\"source\":\"旅行\",\"type\":2}}', 0, '', '2022-02-14 18:48:06'); INSERT INTO `sys_oper_log` VALUES (6105, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"When life give you a hundred reasons to cry, show life that you have a thousand reasons to smile.\",\"createTime\":1644835687289,\"id\":1493175212960305153,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 18:48:07'); INSERT INTO `sys_oper_log` VALUES (6106, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"也许只有一个人才明白这一切,前世的思念今生今世来了结……”\",\"createTime\":1644835687842,\"id\":1493175215288143873,\"source\":\"胭脂扣\",\"type\":3}}', 0, '', '2022-02-14 18:48:07'); INSERT INTO `sys_oper_log` VALUES (6107, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"健康是智慧的条件,是愉快的标志。\",\"createTime\":1644835688718,\"id\":1493175218941382657,\"source\":\"爱默生\",\"type\":4}}', 0, '', '2022-02-14 18:48:08'); INSERT INTO `sys_oper_log` VALUES (6108, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我发消息问你在干嘛 你没回我消息。切到游戏客户端 发现你已经开局15分钟了 我觉得那等着你玩完这一局就好了。结果我就看着你一直在组队开局 又组队开局。没什么 就是想告诉你要少玩手机 不想理我就不用理我 没关系的。\",\"createTime\":1644835689568,\"id\":1493175222531706882,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 18:48:09'); INSERT INTO `sys_oper_log` VALUES (6109, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"7\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"毒鸡汤\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"毒鸡汤\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-14 18:48:49'); INSERT INTO `sys_oper_log` VALUES (6110, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 18:38:49\"}}', 0, '', '2022-02-14 18:48:58'); INSERT INTO `sys_oper_log` VALUES (6111, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"66\",\"province\":\"江西\",\"reporttime\":1644835129000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 18:48:58'); INSERT INTO `sys_oper_log` VALUES (6112, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Time is a great teacher, but unfortunately it kills all its pupils. \",\"dataId\":4124,\"date\":1620662400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/5f9cca12359ee38e12de09bbfa1947e2.png\",\"note\":\"时间是位伟大的导师,但不幸的是它消蚀每一个学生的生命。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/0385d89414002a795cd5583da9356a7c.mp3\"}}', 0, '', '2022-02-14 18:48:59'); INSERT INTO `sys_oper_log` VALUES (6113, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"星河滚烫你是人间理想\",\"createTime\":1644835739933,\"id\":1493175433798799362,\"source\":\"欧若拉\",\"type\":2}}', 0, '', '2022-02-14 18:48:59'); INSERT INTO `sys_oper_log` VALUES (6114, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1493175433735921665', '127.0.0.1', '', '1493175433735921665', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-14 18:49:03'); INSERT INTO `sys_oper_log` VALUES (6115, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"8\",\"listClass\":\"danger\",\"dictSort\":0,\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"一言\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-14 19:55:55'); INSERT INTO `sys_oper_log` VALUES (6116, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The snow whispers around me. \",\"dataId\":4319,\"date\":1637510400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/00d88fe9ffebd0cf20d1b752bac2005e.png\",\"note\":\"雪花萦绕在我耳边,窃窃私语。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/04e1b525390b4872214343a6faa10591.mp3\"}}', 0, '', '2022-02-14 20:02:49'); INSERT INTO `sys_oper_log` VALUES (6117, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你三天没回我的消息 在我孜孜不倦地骚扰下你终于舍得回我了 你说‘nmsl\'我想 这一定是有什么含义吧 噢!我恍然大悟 原来是尼美舒利颗粒 他知道我关节炎 让我吃尼美舒利颗粒 他还是关心我的但是又不想显现的那么热情的 天啊他好高冷我好像更喜欢他了。\",\"createTime\":1644840169520,\"id\":1493194012829102082,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 20:02:49'); INSERT INTO `sys_oper_log` VALUES (6118, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\u001F�\\b\\u0000\\u0000\\u0000\\u0000\\u0000\\u0000\\u0003\\u0001)\\u0000��\\\"邂逅本身,就是一种奇迹啊。\\\"\\u0005�%f)\\u0000\\u0000\\u0000\",\"createTime\":1644840175408,\"id\":1493194037479026689,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 20:02:55'); INSERT INTO `sys_oper_log` VALUES (6119, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"星河滚烫你是人间理想\",\"createTime\":1644840178322,\"id\":1493194049692839937,\"source\":\"欧若拉\",\"type\":2}}', 0, '', '2022-02-14 20:02:58'); INSERT INTO `sys_oper_log` VALUES (6120, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我只顾喜欢,却忘了不合适。\",\"createTime\":1644840179281,\"id\":1493194053727760385,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 20:02:59'); INSERT INTO `sys_oper_log` VALUES (6121, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人这一辈子,能被记住的也只有名字,你的名字被我刻在蛙店的角落,我的名字希望刻在你的脚心。\",\"createTime\":1644840180360,\"id\":1493194058261803009,\"source\":\"我的名字\",\"type\":2}}', 0, '', '2022-02-14 20:03:00'); INSERT INTO `sys_oper_log` VALUES (6122, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"坚持的昨天叫立足,坚持的今天叫进取,坚持的明天叫成功。\",\"createTime\":1641647439000,\"id\":1479802731591589896,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 20:03:04'); INSERT INTO `sys_oper_log` VALUES (6123, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在人生中第一要紧的是发现自己。为了这个目的,各位时常需要孤独和深思。\",\"createTime\":1644840185581,\"id\":1493194080168652802,\"source\":\"南森\",\"type\":4}}', 0, '', '2022-02-14 20:03:05'); INSERT INTO `sys_oper_log` VALUES (6124, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你相信吗 也许在另一个平行时空 有一个跟你长得很像很像的人 正在热烈得爱着那个你爱不到的人\",\"createTime\":1644840186828,\"id\":1493194085394755585,\"source\":\"想见你想见你想见你\",\"type\":2}}', 0, '', '2022-02-14 20:03:06'); INSERT INTO `sys_oper_log` VALUES (6125, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"夫君子之行,静以修身,俭以养德,非淡泊无以明志,非宁静无以致远。\",\"createTime\":1644840188224,\"id\":1493194091254198274,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 20:03:08'); INSERT INTO `sys_oper_log` VALUES (6126, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"既然如此,就再努力一次吧。别在这里愁眉不展,也不要再自欺欺人,重新来过!\",\"createTime\":1644840189270,\"id\":1493194095658217474,\"source\":\"№1‰の薇恩\",\"type\":5}}', 0, '', '2022-02-14 20:03:09'); INSERT INTO `sys_oper_log` VALUES (6127, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"当你连尝试的勇气都没有,你就不配拥有幸福,也永远不会得到幸福,伤过,痛过, 才知道有多深刻。\",\"createTime\":1641647440000,\"id\":1479802734548574213,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-02-14 20:03:13'); INSERT INTO `sys_oper_log` VALUES (6128, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"无论发生什么,都请不要后悔与我的相遇⋯⋯\",\"createTime\":1644840229795,\"id\":1493194265636581378,\"source\":\"da-h\",\"type\":5}}', 0, '', '2022-02-14 20:03:49'); INSERT INTO `sys_oper_log` VALUES (6129, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你是满船的烟波,你是海底的星河。\",\"createTime\":1644840232093,\"id\":1493194275279286273,\"source\":\"Lemon\",\"type\":2}}', 0, '', '2022-02-14 20:03:52'); INSERT INTO `sys_oper_log` VALUES (6130, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人类的悲欢也许并不相通,人类却总一样的行色匆匆。\",\"createTime\":1644840233224,\"id\":1493194279997878273,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 20:03:53'); INSERT INTO `sys_oper_log` VALUES (6131, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你没回我的消息,我发了一条仅你可见也没任何回应,我想你应该是在忙所以没时间理我,应该是我等的还不够久。\",\"createTime\":1644840235100,\"id\":1493194287853809665,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 20:03:55'); INSERT INTO `sys_oper_log` VALUES (6132, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\u001F�\\b\\u0000\\u0000\\u0000\\u0000\\u0000\\u0000\\u0003Sz�a��uӟ��dG׳9���6<�lx�a��Y-�\\u001A�<]�����Ov�z�0����\';�?���d�,�J��I=�:&>m��|�n�b�.���\\rMJ\\u0000�\\u001B~r_\\u0000\\u0000\\u0000\",\"createTime\":1644840237171,\"id\":1493194296540213250,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 20:03:57'); INSERT INTO `sys_oper_log` VALUES (6133, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没关系,比较凉快。\",\"createTime\":1644840290673,\"id\":1493194520948060161,\"source\":\"新少林五祖\",\"type\":3}}', 0, '', '2022-02-14 20:04:50'); INSERT INTO `sys_oper_log` VALUES (6134, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"黎叔可以很负责任的告诉你,黎叔很生气,后果很严重。\",\"createTime\":1644840291894,\"id\":1493194526107054081,\"source\":\"天下无贼\",\"type\":3}}', 0, '', '2022-02-14 20:04:51'); INSERT INTO `sys_oper_log` VALUES (6135, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\u001F�\\b\\u0000\\u0000\\u0000\\u0000\\u0000\\u0000\\u0003Sz����cÓ�\\u000B��jyٴ�钕���<���Y��gs\\u001A����b�\\u0004�ԓ\\u001D\\r@��\\rMJ\\u0000����2\\u0000\\u0000\\u0000\",\"createTime\":1644840293615,\"id\":1493194533283508226,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 20:04:53'); INSERT INTO `sys_oper_log` VALUES (6136, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"每种首创事业的成功,最要紧的还是所有当事人的基本训练。\\\"\",\"createTime\":1644840500546,\"id\":1493195401252782081,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 20:08:20'); INSERT INTO `sys_oper_log` VALUES (6137, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要将不好的情绪带到工作中去。\",\"createTime\":1644840521040,\"id\":1493195487206653954,\"source\":\"网络收集\",\"type\":4}}', 0, '', '2022-02-14 20:08:41'); INSERT INTO `sys_oper_log` VALUES (6138, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"把全身的力量集中在一点爆发出来,就是最强的拳。\",\"createTime\":1644840522101,\"id\":1493195491623256065,\"source\":\"精武英雄\",\"type\":3}}', 0, '', '2022-02-14 20:08:42'); INSERT INTO `sys_oper_log` VALUES (6139, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"浅喜欢,静静爱,深深思索,淡淡释怀。\",\"createTime\":1644840522963,\"id\":1493195495263911937,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 20:08:42'); INSERT INTO `sys_oper_log` VALUES (6140, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你最无暇的时光是哪段,你又把它奉献给了谁?\",\"createTime\":1644840524253,\"id\":1493195500678758402,\"source\":\"王晓龙\",\"type\":5}}', 0, '', '2022-02-14 20:08:44'); INSERT INTO `sys_oper_log` VALUES (6141, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我根本无力抵抗深夜铺天盖地袭来的难过。 \",\"createTime\":1644840525436,\"id\":1493195505653202946,\"source\":\"红色高跟鞋\",\"type\":2}}', 0, '', '2022-02-14 20:08:45'); INSERT INTO `sys_oper_log` VALUES (6142, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“喜欢一首歌会单曲循环 爱上一个人会不断原谅 可是歌听腻了就会切掉 所以人爱累了 也该收起一而再三的宽容 ” \",\"createTime\":1644840526767,\"id\":1493195511193878529,\"source\":\"悬溺\",\"type\":2}}', 0, '', '2022-02-14 20:08:46'); INSERT INTO `sys_oper_log` VALUES (6143, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"用我一生,换你十年天真无邪。\",\"createTime\":1644840527724,\"id\":1493195515228798977,\"source\":\"秦木\",\"type\":5}}', 0, '', '2022-02-14 20:08:47'); INSERT INTO `sys_oper_log` VALUES (6144, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"如果你能像看别人缺点一样,如此准确地发现自己的缺点,那么你的生命将会不平凡\\\"\",\"createTime\":1644840529438,\"id\":1493195522401058818,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 20:08:49'); INSERT INTO `sys_oper_log` VALUES (6145, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you\'ve got a talent, protect it.\",\"createTime\":1644840621223,\"dataId\":3573,\"date\":1573315200000,\"id\":1493195907404611585,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-10.jpg\",\"note\":\"如果你有某种天份,保护好它。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-10-day.mp3\"}}', 0, '', '2022-02-14 20:10:21'); INSERT INTO `sys_oper_log` VALUES (6146, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你昨天晚上又没回我信息,我却看见你的游戏在线,在我再一次孜孜不倦的骚扰你的情况下,你终于跟我说了一句最长的话 “你他妈是不是有病” 我又陷入了沉思,这一定有什么含义,我想了很久你竟然提到了我的妈妈,原来你已经想得那么长远了,想和我结婚见我的父母,我太感动了真的,真的,那你现在在干嘛,我好想你,我妈妈说她也很喜欢你。\",\"createTime\":1644840621674,\"id\":1493195909292048386,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 20:10:21'); INSERT INTO `sys_oper_log` VALUES (6147, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"与其仓皇追赶日落,我更想静待漫天繁星。\",\"createTime\":1644840622423,\"id\":1493195912441970690,\"source\":\"网易云《等》热评\",\"type\":1}}', 0, '', '2022-02-14 20:10:22'); INSERT INTO `sys_oper_log` VALUES (6148, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"从小觉得最厉害的人就是妈妈,不怕黑,什么都知道,做好吃的饭,把生活打理得井井有条,哭着不知道怎么办时只好找她。可我好像忘了这个被我依靠的人也曾是个小姑娘,怕黑也掉眼泪,笨手笨脚会被针扎到手。最美的姑娘,是什么让你变得这么强大呢,是岁月,还是爱。\",\"createTime\":1644840623541,\"id\":1493195917097648130,\"source\":\"牵丝戏\",\"type\":2}}', 0, '', '2022-02-14 20:10:23'); INSERT INTO `sys_oper_log` VALUES (6149, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"涉江而过,芙蓉千朵。诗也简单,心也简单。\",\"createTime\":1644840624265,\"id\":1493195920121741314,\"source\":\"席慕蓉\",\"type\":1}}', 0, '', '2022-02-14 20:10:24'); INSERT INTO `sys_oper_log` VALUES (6150, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"做人不易,懂我的人,无需解释,不懂我的人说再多也没用,问心无愧即可。\",\"createTime\":1644840625455,\"id\":1493195925154906113,\"source\":\"阿土仔\",\"type\":5}}', 0, '', '2022-02-14 20:10:25'); INSERT INTO `sys_oper_log` VALUES (6151, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"走得突然,我们来不及告别,这样也好,因为我们永远不告别。\",\"createTime\":1644840626054,\"id\":1493195927671488514,\"source\":\"三毛\",\"type\":1}}', 0, '', '2022-02-14 20:10:26'); INSERT INTO `sys_oper_log` VALUES (6152, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生一世,总有些片断当时看着无关紧要,而事实上却牵动了大局。\",\"createTime\":1644840627035,\"id\":1493195931760934914,\"source\":\"萨克雷\",\"type\":4}}', 0, '', '2022-02-14 20:10:27'); INSERT INTO `sys_oper_log` VALUES (6153, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你不必生来勇敢,天赋过人。只要能投入勤奋,诚诚恳恳。\",\"createTime\":1644840627620,\"id\":1493195934214602754,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 20:10:27'); INSERT INTO `sys_oper_log` VALUES (6154, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你是我一眼望不尽的温柔欢喜。\",\"createTime\":1644840628591,\"id\":1493195938308243458,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 20:10:28'); INSERT INTO `sys_oper_log` VALUES (6155, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"喜欢上你,爱上你,真是太好了,谢谢。\",\"createTime\":1644840629191,\"id\":1493195940824825857,\"source\":\"xiaozhusirs\",\"type\":5}}', 0, '', '2022-02-14 20:10:29'); INSERT INTO `sys_oper_log` VALUES (6156, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我爸说再敢网恋就打断我的腿 幸好不是胳膊 这样我还能继续和你打字聊天,就算连胳膊也打断了,我的心里也会有你位置。\",\"createTime\":1644840630546,\"id\":1493195946491330561,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 20:10:30'); INSERT INTO `sys_oper_log` VALUES (6157, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"现在已经凌晨12点了,我望着手机屏幕迟迟没有她的消息:你知道吗?我等了一晚上你的消息。她终于回复我了:是我让你等的?\",\"createTime\":1644840631780,\"id\":1493195951654518785,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 20:10:31'); INSERT INTO `sys_oper_log` VALUES (6158, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"记忆里你神色紧张的把耳朵贴向我的胸口听我的心跳声,然后就再也没离开过。\",\"createTime\":1644840632676,\"id\":1493195955433586689,\"source\":\"安然\",\"type\":5}}', 0, '', '2022-02-14 20:10:32'); INSERT INTO `sys_oper_log` VALUES (6159, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果你愿意,一层一层一层地剥开我的心,你会发现我缺心眼。\",\"createTime\":1644840633532,\"id\":1493195959023910914,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-14 20:10:33'); INSERT INTO `sys_oper_log` VALUES (6160, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"宿舍一哥们儿用这首歌作闹铃,结果全宿舍都静静地躺着把这首歌听完。。。\",\"createTime\":1644840634691,\"id\":1493195963868332033,\"source\":\"老街\",\"type\":2}}', 0, '', '2022-02-14 20:10:34'); INSERT INTO `sys_oper_log` VALUES (6161, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644840227000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 20:31:54'); INSERT INTO `sys_oper_log` VALUES (6162, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 20:03:47\"}}', 0, '', '2022-02-14 20:31:54'); INSERT INTO `sys_oper_log` VALUES (6163, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The person whose calls you always take, that’s the relationship you’re in.\",\"createTime\":1644841963968,\"dataId\":4054,\"date\":1614614400000,\"id\":1493201539264364545,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/a0d489123fc360f4c990dcc761f4ef7b.png\",\"note\":\"能让你随时接电话的人,才是你真正在乎的人。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/d98bd7f5c5966af81d3c50aa99f85ff3.mp3\"}}', 0, '', '2022-02-14 20:32:43'); INSERT INTO `sys_oper_log` VALUES (6164, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"如果提出的问题本身就有问题,那么答案又有什么用呢?\\\"\",\"createTime\":1644841964412,\"id\":1493201541151801345,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 20:32:44'); INSERT INTO `sys_oper_log` VALUES (6165, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只看一个人的著作,结果是不大好的:你就得不到多方面的优点。必须如蜜蜂一样,采过许多花,这才能酿出蜜来,倘若叮在一处,所得就非常有限,枯燥了。\",\"createTime\":1644841976147,\"id\":1493201590342598657,\"source\":\"鲁迅\",\"type\":4}}', 0, '', '2022-02-14 20:32:56'); INSERT INTO `sys_oper_log` VALUES (6166, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The most important thing in communication is hearing what isn\'t said.\",\"createTime\":1644842099389,\"dataId\":4090,\"date\":1617724800000,\"id\":1493202107257012225,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/541e61d76806149c6058c71641af170e.png\",\"note\":\"与人沟通,最重要的是能听出言外之意。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/024ba27f64bc26a4941431c577266086.mp3\"}}', 0, '', '2022-02-14 20:34:59'); INSERT INTO `sys_oper_log` VALUES (6167, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要再减肥了,苦了自己,又苦了体重秤。\",\"createTime\":1644842099592,\"id\":1493202108125233154,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-14 20:34:59'); INSERT INTO `sys_oper_log` VALUES (6168, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时间赐我青春与死亡,尽管我戴着镣铐依然像大海一样歌唱。\",\"createTime\":1644842156241,\"id\":1493202345711583233,\"source\":\" 狄兰·托马斯\",\"type\":1}}', 0, '', '2022-02-14 20:35:56'); INSERT INTO `sys_oper_log` VALUES (6169, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时间会让你看清每一张脸,久伴会让你知道每一颗心。\",\"createTime\":1644842157216,\"id\":1493202349805223938,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 20:35:57'); INSERT INTO `sys_oper_log` VALUES (6170, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"眼里的世界,从来只是表象。心灵的声音,才是生命的真谛。一片落叶,是衰败的迹象,还是重生的征兆,取决于心的方向。\",\"createTime\":1644842159307,\"id\":1493202358554542081,\"source\":\"鑫磊\",\"type\":5}}', 0, '', '2022-02-14 20:35:59'); INSERT INTO `sys_oper_log` VALUES (6171, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有意者电联,非诚勿扰。\",\"createTime\":1644842159902,\"id\":1493202361071124481,\"source\":\"非诚勿扰\",\"type\":3}}', 0, '', '2022-02-14 20:35:59'); INSERT INTO `sys_oper_log` VALUES (6172, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Don`t cry because it came to an end,smile because it happened. 不要因为它的结束而哭,应当为它的发生而笑。\",\"createTime\":1644842161007,\"id\":1493202365730996225,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-02-14 20:36:01'); INSERT INTO `sys_oper_log` VALUES (6173, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"树大必有枯枝,人多必有白痴。\\\"\",\"createTime\":1644842162225,\"id\":1493202370827075585,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 20:36:02'); INSERT INTO `sys_oper_log` VALUES (6174, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我是真的等过你很久 只是你没来。\",\"createTime\":1644842163565,\"id\":1493202376430665730,\"source\":\"根本你不懂得爱我(女生版)\",\"type\":2}}', 0, '', '2022-02-14 20:36:03'); INSERT INTO `sys_oper_log` VALUES (6175, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"徐脂虎闭眼道:“你动手吧。 袁庭山站起身,立于墙头,脸色狰狞,缓慢拔刀。 “你敢?! 有言语伴随古剑清鸣声呼啸而至。 有一剑,由千里外武当山而来,落于徐脂虎身前。 黄鹤驾临江南湖亭郡,一名年轻道士如流星坠落,瞬间来到报国寺院中。 今日解签,宜下江南。\",\"createTime\":1644842164344,\"id\":1493202379702222849,\"source\":\"下山\",\"type\":2}}', 0, '', '2022-02-14 20:36:04'); INSERT INTO `sys_oper_log` VALUES (6176, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"三观不合真的很难做朋友,因为思想经历感官,全都不一样,就像我说大海很漂亮,你却说淹死过很多人。\",\"createTime\":1644842165470,\"id\":1493202384425009153,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 20:36:05'); INSERT INTO `sys_oper_log` VALUES (6177, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没有思想的人生,就像没有舵的船。\",\"createTime\":1644842166146,\"id\":1493202387260358658,\"source\":\"佚名\",\"type\":4}}', 0, '', '2022-02-14 20:36:06'); INSERT INTO `sys_oper_log` VALUES (6178, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一定要爱着点什么,恰似草木对光阴的钟情。\",\"createTime\":1644842167376,\"id\":1493202392423546882,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 20:36:07'); INSERT INTO `sys_oper_log` VALUES (6179, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"现在这个身体、灵魂,甚至每一根头发都是主人的。只要契约还在继续,就必须服从他的命令,这是执事的美学。\\\"\",\"createTime\":1644842168246,\"id\":1493202396072591362,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 20:36:08'); INSERT INTO `sys_oper_log` VALUES (6180, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一草一木都比人更有资格做人的老师,真实、自然、活在当下。\",\"createTime\":1644842169613,\"id\":1493202401802010625,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 20:36:09'); INSERT INTO `sys_oper_log` VALUES (6181, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":49}', 0, '', '2022-02-14 20:36:17'); INSERT INTO `sys_oper_log` VALUES (6182, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"当面对两难的抉择时,不妨丢一枚硬币吧,并非是要靠那二分之一的机运来帮你做出抉择!而是因为当硬币被抛上空中,开始旋转的那一瞬间你会突然明白,自己想要的!\\\"\",\"createTime\":1644848558110,\"id\":1493229197100531713,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 22:22:38'); INSERT INTO `sys_oper_log` VALUES (6183, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Patriotism is deeply rooted in the instincts and emotions of human being.\",\"dataId\":4267,\"date\":1633017600000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/eb5a5f36242b66611440e1fd481733a0.png\",\"note\":\"爱国精神深深根植于人的本能和情感之中。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cfd032d3ced47817390310105ab7c7dd.mp3\"}}', 0, '', '2022-02-14 22:22:38'); INSERT INTO `sys_oper_log` VALUES (6184, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"文案\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"copy\",\"src\":\"文案\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-02-14 22:22:39'); INSERT INTO `sys_oper_log` VALUES (6185, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"文案\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Copywriting\",\"src\":\"文案\"}]}}', 0, '', '2022-02-14 22:22:44'); INSERT INTO `sys_oper_log` VALUES (6186, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 22:38:43\"}}', 0, '', '2022-02-14 22:41:53'); INSERT INTO `sys_oper_log` VALUES (6187, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好看的皮囊你养不起,有趣的灵魂看不上你\",\"createTime\":1644849713287,\"id\":1493234042285002754,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-14 22:41:53'); INSERT INTO `sys_oper_log` VALUES (6188, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1644849523000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 22:41:53'); INSERT INTO `sys_oper_log` VALUES (6189, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Doing things change things, no doing things, these things are exactly as they were.\",\"createTime\":1644849713571,\"dataId\":4066,\"date\":1615651200000,\"id\":1493234043480379394,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/93bae6706a6299f9809d41e94d628da0.png\",\"note\":\"行动才能改变,没有行动,一切也会原封不动。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/29898111cd7c7173009b6e0674c0850e.mp3\"}}', 0, '', '2022-02-14 22:41:53'); INSERT INTO `sys_oper_log` VALUES (6190, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"当你的才华撑不起你的野心时,那你就应该静下心来学习;当你的经济还撑不起你的梦想时,那你就应该踏实的去工作。\",\"createTime\":1644849715410,\"id\":1493234051164344321,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 22:41:55'); INSERT INTO `sys_oper_log` VALUES (6191, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"当面对两难的抉择时,不妨丢一枚硬币吧,并非是要靠那二分之一的机运来帮你做出抉择!而是因为当硬币被抛上空中,开始旋转的那一瞬间你会突然明白,自己想要的!\\\"\",\"createTime\":1644849716819,\"id\":1493234057086701569,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 22:41:56'); INSERT INTO `sys_oper_log` VALUES (6192, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情就是一个耍流氓,一个默认,一旦有人不配合这个游戏就完不成了,太理智了 那不是爱情,是交易。太感性那也不是爱情,那是疯子。\",\"createTime\":1644849717532,\"id\":1493234060043685889,\"source\":\"阿土仔\",\"type\":5}}', 0, '', '2022-02-14 22:41:57'); INSERT INTO `sys_oper_log` VALUES (6193, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我坐在窗边一直发了三天 终于忍不住问为什么从来不回我消息 你秒回“也不想想你算什么东西”看到“想你”,我一下子就哭了 原来你心里是有我的\",\"createTime\":1644849718838,\"id\":1493234065525641218,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 22:41:58'); INSERT INTO `sys_oper_log` VALUES (6194, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一直觉得这世上告别仪式挺多,比如喝酒、旅行,或干脆痛哭一场,可是后来才知道,人生中大部分告别是悄无声息的,原来某天的相见,竟已是最后一面,此后即便不是隔山隔水,也没有再重逢。\",\"createTime\":1644849719435,\"id\":1493234068046417921,\"source\":\"佚名\",\"type\":2}}', 0, '', '2022-02-14 22:41:59'); INSERT INTO `sys_oper_log` VALUES (6195, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"生活不止眼前的苟且,还有读不懂的诗和到不了的远方。\",\"createTime\":1644849720723,\"id\":1493234073461264386,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-14 22:42:00'); INSERT INTO `sys_oper_log` VALUES (6196, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天我起床起晚了,连忙看手机,看到了你对我还没有起床的担心,你说:“nmsl还不给 打钱吃早餐,我给你妈两面烤的焦黄就酱吃了”我很感动,立马打了两倍的早饭钱给他,心里不太舒服,觉得愧对于他,又多加一百“记得喝奶茶”我说到。\",\"createTime\":1644849721823,\"id\":1493234078058221570,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 22:42:01'); INSERT INTO `sys_oper_log` VALUES (6197, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"过去了依然存在\",\"createTime\":1644849722881,\"id\":1493234082525155329,\"source\":\"如果 爱\",\"type\":3}}', 0, '', '2022-02-14 22:42:02'); INSERT INTO `sys_oper_log` VALUES (6198, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"来,跑起来吧,在大家为你们开辟的道路上。\\\"\",\"createTime\":1644849723745,\"id\":1493234086115479553,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 22:42:03'); INSERT INTO `sys_oper_log` VALUES (6199, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"记得当时年纪小,你爱谈天我爱笑。\",\"createTime\":1644849724732,\"id\":1493234090267840514,\"source\":\"三毛\",\"type\":1}}', 0, '', '2022-02-14 22:42:04'); INSERT INTO `sys_oper_log` VALUES (6200, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天我观战了一天你带别人打游戏,你们玩的很开心,我给你发了200多条消息,你说你没流量了就不回了,晚上你发了条说说没有人爱你,我连滚带爬评论了句有我在。你把我拉黑了,我给你打电话也无人接听。对不起我不该打扰到你的。我求求你再给我一次当你好友的机会吧!\",\"createTime\":1644849725574,\"id\":1493234093795250178,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 22:42:05'); INSERT INTO `sys_oper_log` VALUES (6201, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"哥们,求你和她说句话吧,这样她就不会那么难过了。\",\"createTime\":1644849726836,\"id\":1493234099084267521,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 22:42:06'); INSERT INTO `sys_oper_log` VALUES (6202, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这是我的国土,我不为她而战斗,谁为呢?\",\"createTime\":1644849727419,\"id\":1493234101537935361,\"source\":\"狮子王 The lion king\",\"type\":3}}', 0, '', '2022-02-14 22:42:07'); INSERT INTO `sys_oper_log` VALUES (6203, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"重要的是拿出结果的能力,与种族、手段都没有关系。结果优先于一切!\\\"\",\"createTime\":1644849728750,\"id\":1493234107141525506,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 22:42:08'); INSERT INTO `sys_oper_log` VALUES (6204, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你们能想象我一早上起来,发现v神,三哥,洁匪,小马丁,喀什米尔和 ILLENIUM都发新歌了的表情嘛!!!我现在还沉浸在727那天烟卷,教主,断眉和黄老板的新歌里呢,这是要我心脏炸裂嘛[爱心][爱心][爱心]大爱v神!!新歌也超好听!!\",\"createTime\":1644849802860,\"id\":1493234417952034817,\"source\":\"Walk Thru Fire\",\"type\":2}}', 0, '', '2022-02-14 22:43:22'); INSERT INTO `sys_oper_log` VALUES (6205, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这支给你摇\",\"createTime\":1644849803885,\"id\":1493234422293139458,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2022-02-14 22:43:23'); INSERT INTO `sys_oper_log` VALUES (6206, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"少林功夫加唱歌跳舞你说有没有搞头?\",\"createTime\":1644849804962,\"id\":1493234426785239041,\"source\":\"少林足球\",\"type\":3}}', 0, '', '2022-02-14 22:43:24'); INSERT INTO `sys_oper_log` VALUES (6207, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"立志、工作、成就,是人类活动的三大要素。立志是事业的大门,工作是登堂入室的旅程。这旅程的尽头有个成功在等待着,来庆祝你的努力结果。\",\"createTime\":1644849805559,\"id\":1493234429301821442,\"source\":\"巴斯德\",\"type\":4}}', 0, '', '2022-02-14 22:43:25'); INSERT INTO `sys_oper_log` VALUES (6208, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我坐在窗边给你发了99条消息,你终于肯回我了,你说“发你妈啊” 我一下子就哭了,原来努力真的有用,你已经开始考虑想见我的妈妈了,你也是挺喜欢我的!\",\"createTime\":1644849806910,\"id\":1493234434947354625,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-14 22:43:26'); INSERT INTO `sys_oper_log` VALUES (6209, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"自己都是一个失败的人,还想教出成功的孩子吗?\",\"createTime\":1644849807775,\"id\":1493234438608982018,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-14 22:43:27'); INSERT INTO `sys_oper_log` VALUES (6210, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"很多人觉得自己活得太累,实际上,他们可能只是睡得太晚。\",\"createTime\":1644849809037,\"id\":1493234443889610753,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-14 22:43:29'); INSERT INTO `sys_oper_log` VALUES (6211, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"桃李春风已过,少年早已栖身江湖惹得一身江湖气。 每日凌晨三点,开着他爆改的跑车,飙驰在他们曾经走过的街道上。 他只记得她曾经的话:好像和你一起开着那种跑车。 长烟入喉,今天他已有这车,她却不知去向。 如今只能犹借银枪逞风流~ 天命轻狂,车上循环放着关山酒 纵意而歌,谁能与我饮这浊酒? \",\"createTime\":1644849809617,\"id\":1493234446318112770,\"source\":\"关山酒\",\"type\":2}}', 0, '', '2022-02-14 22:43:29'); INSERT INTO `sys_oper_log` VALUES (6212, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"那一世 转山转水转佛塔 不为修来世 只为途中与你相见\",\"createTime\":1644849810724,\"id\":1493234450957012994,\"source\":\"可能否\",\"type\":2}}', 0, '', '2022-02-14 22:43:30'); INSERT INTO `sys_oper_log` VALUES (6213, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"莫作昙花一现,勿失勿忘!\\\"\",\"createTime\":1644849811644,\"id\":1493234454778023938,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 22:43:31'); INSERT INTO `sys_oper_log` VALUES (6214, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在你不害怕的时间去斗牛,这不算什么;在你害怕时不去斗牛,也没有什么了不起;只有在你害怕时还去斗牛才是真正了不起。\",\"createTime\":1644849812724,\"id\":1493234459333038082,\"source\":\"网络收集\",\"type\":4}}', 0, '', '2022-02-14 22:43:32'); INSERT INTO `sys_oper_log` VALUES (6215, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有些事情我们必须放弃,才有精力去迎接更美好的生活。\",\"createTime\":1644849813534,\"id\":1493234462717841409,\"source\":\"杨爱天\",\"type\":5}}', 0, '', '2022-02-14 22:43:33'); INSERT INTO `sys_oper_log` VALUES (6216, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"少罗嗦,你还不如虫子呢!\\\"\",\"createTime\":1644849814832,\"id\":1493234468199796738,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-14 22:43:34'); INSERT INTO `sys_oper_log` VALUES (6217, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"逃避是解决不了问题的,不逃你也解决不了啊。\",\"createTime\":1644849815755,\"id\":1493234472020807682,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-14 22:43:35'); INSERT INTO `sys_oper_log` VALUES (6218, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"年轻时有贼心没有贼胆,如今时贼心有了,贼胆也有了,贼又没了!\",\"createTime\":1644849816731,\"id\":1493234476114448385,\"source\":\"一声叹息\",\"type\":3}}', 0, '', '2022-02-14 22:43:36'); INSERT INTO `sys_oper_log` VALUES (6219, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我这人吧,永远不要挑战我的底线,否则我又得修改底线。\",\"createTime\":1644849817622,\"id\":1493234479906099201,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-14 22:43:37'); INSERT INTO `sys_oper_log` VALUES (6220, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"良好的品格是人性的最高表现。好的品性不仅是社会的良心,而且是国家的原动力;因为世界主要是被德性统治。\",\"createTime\":1641883925000,\"id\":1480794625005494273,\"source\":\"史迈尔\",\"type\":4}}', 0, '', '2022-02-14 22:44:36'); INSERT INTO `sys_oper_log` VALUES (6221, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"焚化我的记忆,祭奠你犹存的美丽。\",\"createTime\":1641871326000,\"id\":1480741780902289415,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 22:46:46'); INSERT INTO `sys_oper_log` VALUES (6222, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们要敢于思考“不可想象的事情”,因为如果事情变得不可想象,思考就停止,行动就变得无意识。\",\"createTime\":1640958840000,\"id\":1476914537460060162,\"source\":\"富布赖特\",\"type\":4}}', 0, '', '2022-02-14 22:51:04'); INSERT INTO `sys_oper_log` VALUES (6223, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱笑的女孩运气不会太差,但是运气差的女孩,还能笑得出来吗?\",\"createTime\":1641888374000,\"id\":1480813285736620052,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 22:53:12'); INSERT INTO `sys_oper_log` VALUES (6224, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不是每一个都要站在第一线上的,各人应该做自己份内的工作。\",\"createTime\":1640783340000,\"id\":1476178436860628995,\"source\":\"赫尔岑\",\"type\":4}}', 0, '', '2022-02-14 22:54:03'); INSERT INTO `sys_oper_log` VALUES (6225, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"背后说我的人。我想告诉你。我不是你爹。没那么多故事让你惦记。\",\"createTime\":1641701054000,\"id\":1480027608848216081,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 22:55:37'); INSERT INTO `sys_oper_log` VALUES (6226, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"少壮不努力,老大徒伤悲。\",\"createTime\":1641780124000,\"id\":1480359252072820738,\"source\":\"《长歌行》\",\"type\":4}}', 0, '', '2022-02-14 22:59:37'); INSERT INTO `sys_oper_log` VALUES (6227, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我见众生皆草木,唯你是青山。\",\"createTime\":1640961000000,\"id\":1476923597043462146,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-14 23:03:20'); INSERT INTO `sys_oper_log` VALUES (6228, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"听的想谈恋爱……算了,那就多听几遍吧\",\"createTime\":1641907804000,\"id\":1480894781296607249,\"source\":\"不得不爱\",\"type\":5}}', 0, '', '2022-02-14 23:03:20'); INSERT INTO `sys_oper_log` VALUES (6229, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 22:38:43\"}}', 0, '', '2022-02-14 23:06:37'); INSERT INTO `sys_oper_log` VALUES (6230, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"少些胡思乱想 你就没那么累了 晚安\",\"createTime\":1641647486000,\"id\":1479802927868239893,\"source\":\"那就晚安\",\"type\":5}}', 0, '', '2022-02-14 23:09:13'); INSERT INTO `sys_oper_log` VALUES (6231, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"喜新厌旧是一个人的本能,谁都不能保证一辈子只对你一个人有好感。\",\"createTime\":1641994814000,\"id\":1481259727691948046,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 23:15:30'); INSERT INTO `sys_oper_log` VALUES (6232, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 22:38:43\"}}', 0, '', '2022-02-14 23:15:46'); INSERT INTO `sys_oper_log` VALUES (6233, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 22:38:43\"}}', 0, '', '2022-02-14 23:16:03'); INSERT INTO `sys_oper_log` VALUES (6234, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 22:38:43\"}}', 0, '', '2022-02-14 23:16:04'); INSERT INTO `sys_oper_log` VALUES (6235, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我是一棵葱 站在风雨中。谁要敢拿我沾酱 我骂她老祖宗。\",\"createTime\":1641795246000,\"id\":1480422678887362563,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 23:23:38'); INSERT INTO `sys_oper_log` VALUES (6236, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我从未让你骄傲 你却待我如宝----致老爸\",\"createTime\":1642055294000,\"id\":1481513398972968972,\"source\":\"杨爱天\",\"type\":5}}', 0, '', '2022-02-14 23:31:32'); INSERT INTO `sys_oper_log` VALUES (6237, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"伴随响起吹树叶的旋律 对面山上的哥哥唱着歌 七彩的歌声乘着翅膀飞越云海 女孩们在这边守候 等着男孩来主动表白 两边的人儿 此情可待 只有歌声以及吹树叶的方式 才会让我明白你纯净的爱\",\"createTime\":1641522481000,\"id\":1479278619527360513,\"source\":\"哈尼宝贝\",\"type\":2}}', 0, '', '2022-02-14 23:33:22'); INSERT INTO `sys_oper_log` VALUES (6238, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-14\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-15\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"5\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-14 23:08:31\"}}', 0, '', '2022-02-14 23:33:22'); INSERT INTO `sys_oper_log` VALUES (6239, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1644851311000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-14 23:33:22'); INSERT INTO `sys_oper_log` VALUES (6240, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Limitations live only in our minds. But if we use our imaginations, our possibilities become limitless.\",\"createTime\":1644852802982,\"dataId\":3447,\"date\":1562688000000,\"id\":1493247001413537793,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-10.jpg\",\"note\":\"局限只存在于我们的大脑中。可是如果我们运用自己的想象力,就会获得无限的可能性。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-10-day.mp3\"}}', 0, '', '2022-02-14 23:33:23'); INSERT INTO `sys_oper_log` VALUES (6241, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"做对事赢一次 做对人赢一生 路是自己选择的 跪着也要走完\",\"createTime\":1641789014000,\"id\":1480396539976445965,\"source\":\"aa丫头\",\"type\":5}}', 0, '', '2022-02-14 23:36:48'); INSERT INTO `sys_oper_log` VALUES (6242, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我一直都在流浪,可我不曾见过海洋!\",\"createTime\":1641806766000,\"id\":1480470996673851404,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 23:40:59'); INSERT INTO `sys_oper_log` VALUES (6243, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"兄弟,用心交.父母,拿命孝!\",\"createTime\":1641631200000,\"id\":1479734620016312335,\"source\":\"留住所想\",\"type\":5}}', 0, '', '2022-02-14 23:42:57'); INSERT INTO `sys_oper_log` VALUES (6244, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"太多的交涉 终究变成无法弥补的伤害\",\"createTime\":1641633840000,\"id\":1479745693142441988,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-14 23:43:03'); INSERT INTO `sys_oper_log` VALUES (6245, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我活着就是为了让你们到死也得记着我\",\"createTime\":1641719884000,\"id\":1480106587743543302,\"source\":\"温\",\"type\":5}}', 0, '', '2022-02-14 23:43:47'); INSERT INTO `sys_oper_log` VALUES (6246, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Inspiration usually comes during work, rather than before it.\",\"createTime\":1644888108419,\"dataId\":4020,\"date\":1611676800000,\"id\":1493395083138138113,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/8167d33c67dd8f8f5b2d6352445f23c5.png\",\"note\":\"灵感通常来源于工作之中,而不是什么都没做之前。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cb2111c652755109fd62de1b4bc9e5ce.mp3\"}}', 0, '', '2022-02-15 09:21:48'); INSERT INTO `sys_oper_log` VALUES (6247, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"请记住,你并不是一无所有,你还有病!哈哈\",\"createTime\":1641706214000,\"id\":1480049251448467459,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-15 09:21:50'); INSERT INTO `sys_oper_log` VALUES (6248, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"那次坐公交车上太挤了,一个妹子举着煎饼果子,因为我个子比较高正好举到我脸前,就剩一口了,我突然就脑抽的咬了一口,妹子一下子懵逼了,看着我,感觉一瞬间都快哭了,然后我还继续智障的说:生菜放少了……..\",\"createTime\":1644888124938,\"id\":1493395152419651586,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:22:04'); INSERT INTO `sys_oper_log` VALUES (6249, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"肖恩骑自行车摔伤,得住院治疗,一位年轻美貌的护士拿着表格让他填。肖恩填好,递上表格。“还有什么填漏的?”女护士问。“有!”肖恩想了想说,“我是个单身汉。”\",\"createTime\":1644888141232,\"id\":1493395220728086530,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:22:21'); INSERT INTO `sys_oper_log` VALUES (6250, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"#笑话# 和女朋友吵架了,一个人静下来后,觉得自己有点过分。打电话道歉,她一直不接。于是,我只得发信息:”今天中午,我看着你的照片,认真反思了自己,觉得自己做的很不对,不该那么对你。你肯定很难过,对我很失望。我错了。请原谅我好吗?”她秒回:”看的哪张照片?”\",\"createTime\":1644888145093,\"id\":1493395236918099969,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:22:25'); INSERT INTO `sys_oper_log` VALUES (6251, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一官吏的乌纱帽被妻子打架时踩破了。他很生气,还向皇帝奏了一本:“启奏陛下:臣妻很是罗嗦,昨天与臣吵架,踩碎臣的纱帽。”皇上见了后传旨道:“爱卿你要忍耐,皇后也有此毛病,与朕一言不合,即将皇冠打得粉碎。你的纱帽算个什么,顶多是个布口袋!”\",\"createTime\":1644888218390,\"id\":1493395544398249986,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:23:38'); INSERT INTO `sys_oper_log` VALUES (6252, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"减肥减肥 每次都是吃完饭就说减肥\",\"createTime\":1641798254000,\"id\":1480435295257325569,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-15 09:23:48'); INSERT INTO `sys_oper_log` VALUES (6253, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\",\"createTime\":1644888236812,\"id\":1493395621623775233,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:23:56'); INSERT INTO `sys_oper_log` VALUES (6254, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"小公鸡和它的朋友说:“我向我喜欢的小母鸡表白,好像成功了。”“哦?恭喜!你是怎样表白的?”“我说我喜欢你,你给我生孩子吧。”“够直接,那它怎么回答的呢?”“它说,我给你生个卵!”\",\"createTime\":1644888267817,\"id\":1493395751684947969,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:24:27'); INSERT INTO `sys_oper_log` VALUES (6255, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"#爆笑笑话# 昨晚跑网约车,一个女乘客上车就抽烟,于是我把车窗打开,她态度很不好的说:“冷死了,关上! ”我 懒得跟她理论,默默关上窗放了个屁。\",\"createTime\":1644888269817,\"id\":1493395760065167362,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:24:29'); INSERT INTO `sys_oper_log` VALUES (6256, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时间会刺破青春表面的彩饰,会在美人的额上掘深沟浅槽;会吃掉稀世之珍!天生丽质,什么都逃不过他那横扫的镰刀。\",\"createTime\":1642050124000,\"id\":1481491714240901122,\"source\":\"莎士比亚\",\"type\":4}}', 0, '', '2022-02-15 09:24:30'); INSERT INTO `sys_oper_log` VALUES (6257, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"天上的星星千千万万,只要看懂一颗就够了,世上的女人千千万万,只要爱上一个就够了。\",\"createTime\":1641788894000,\"id\":1480396036513165313,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-15 09:24:32'); INSERT INTO `sys_oper_log` VALUES (6258, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"吃饭吃到一半,老妈把碗一摔冲我骂道:“三十好几的人了,天天不务正业,你说你为这家做过什么贡献!”我低头不语,有泪,从脸庞滑过,为了化解这种尴尬的局面,老爸在旁轻轻唱道:“老人不图儿女为家作多大贡献嘛。。。”老妈猛得一巴掌呼到老爸脸上:“说谁老呢?!”\",\"createTime\":1644888274652,\"id\":1493395780323655682,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:24:34'); INSERT INTO `sys_oper_log` VALUES (6259, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"老婆怀孕了,一天晚饭后她一直打嗝,我想吓她一下治好打嗝于是我板起脸慢慢地问她:孩子是谁的?老婆看着我问我什么意思。 我说:别瞒了,我都知道了,我看你扣扣了,那个人是谁? 过了一会儿老婆居然哭着和我坦白了!孩子还真他妈不是我的! 她他妈的是一边打嗝一边坦白的!\",\"createTime\":1644888317133,\"id\":1493395958556409857,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:25:17'); INSERT INTO `sys_oper_log` VALUES (6260, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"夫妻准备亲热,行动前老婆说要跟老公打赌,谁输就包一年的家务,老公同意了。老婆:我们打赌你能坚持多长时间。老公暗自在心里估计了一下时间,然后说:我能坚持一柱香的时间。老婆许可,于是她开始点燃一盘蚊香。老公。。。\",\"createTime\":1644888324098,\"id\":1493395987769737218,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:25:24'); INSERT INTO `sys_oper_log` VALUES (6261, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"1、明明是傻,却说是逆向思维。2、悲哀就在于,当你想两肋插刀的时候,却只有一把刀。3、如果修个三十公里高的烟囱,那地球就是根棒棒糖了。4、最明目张胆的恭维,就是把“悍妇撒泼”说成是“贵妃醉酒”。+5、酒少喝开胃,茶多饮火退;话少说就对,事多管遭罪;做人默默无闻最可贵。6、垃圾是放错地方的资源。如果你经常收到垃圾短信、邮件,说明你可能是个资源。7、玩办公室恋情,先要学好伪装术,否则受伤的不是你的心灵,就是你的职业生涯。8、外语不及格,证明我爱国;整天乱摆阔,其实没老婆;长个小肚子,偏装弥勒佛;到处喳喳叫,好像大蝈蝈。9、今天的年轻一代和我们这一代没有什么不同。他们也是逐渐懂事,也离家出走,也要结婚,也生孩子,只不过其顺序是倒过来的。10、定律三则:1.会议的价值和出席会议的人数成反比。2.辩论时间的长短与问题的重要性成反比。3.恨别人就像为了逮住耗子而不惜烧毁你自己的房子。\",\"createTime\":1644888337484,\"id\":1493396043868553218,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:25:37'); INSERT INTO `sys_oper_log` VALUES (6262, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"初中时,我一同学惹到人了,放学时被20多个人给堵了,没想到他反身往回跑,拿了一扫把跑向厕所,粘了一扫把的屎,硬是追着20多个人打,无一人敢近其身,最后说了三个字。。。。。\",\"createTime\":1644888544251,\"id\":1493396911145762818,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:29:04'); INSERT INTO `sys_oper_log` VALUES (6263, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1644887328000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 09:29:12'); INSERT INTO `sys_oper_log` VALUES (6264, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 09:08:48\"}}', 0, '', '2022-02-15 09:29:12'); INSERT INTO `sys_oper_log` VALUES (6265, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I like the dreams of the future better than the history of the past.\",\"createTime\":1644888552125,\"dataId\":3564,\"date\":1572537600000,\"id\":1493396944125575170,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-11-01.jpg\",\"note\":\"我不缅怀过去的历史,而致力于未来的梦想。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-11-01-day.mp3\"}}', 0, '', '2022-02-15 09:29:12'); INSERT INTO `sys_oper_log` VALUES (6266, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"人生就像一场无成果的游戏,幸福的分量是固定的,假设世上存在的幸福和不幸的总量是固定的,那这就是“有人获得幸福,势必会有人遭遇不幸”的游戏,任谁都觉得自己是世上最不幸的人,认为自己的这般不幸,肯定会有人获得了巨大的幸福。\\\"\",\"createTime\":1644888552535,\"id\":1493396945887182849,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-15 09:29:12'); INSERT INTO `sys_oper_log` VALUES (6267, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1644887328000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 09:29:17'); INSERT INTO `sys_oper_log` VALUES (6268, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 09:08:48\"}}', 0, '', '2022-02-15 09:29:17'); INSERT INTO `sys_oper_log` VALUES (6269, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Our life is frittered away by detail, simplify it, simplify it.\",\"createTime\":1644888557387,\"dataId\":3518,\"date\":1568563200000,\"id\":1493396966225362946,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-09-16.jpg\",\"note\":\"我们的生活都被琐事浪费掉了,简单点,简单点。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-09-16-day.mp3\"}}', 0, '', '2022-02-15 09:29:17'); INSERT INTO `sys_oper_log` VALUES (6270, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"所有的科学都是错误先真理而生,错误在先比错误在后好。\",\"createTime\":1644888557428,\"id\":1493396966414106625,\"source\":\"沃尔波斯\",\"type\":4}}', 0, '', '2022-02-15 09:29:17'); INSERT INTO `sys_oper_log` VALUES (6271, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1644887328000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 09:29:23'); INSERT INTO `sys_oper_log` VALUES (6272, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 09:08:48\"}}', 0, '', '2022-02-15 09:29:24'); INSERT INTO `sys_oper_log` VALUES (6273, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A straight foot is not afraid of a crooked shoe. 身正不怕影子斜。\",\"createTime\":1644888564494,\"id\":1493396996046864386,\"source\":\"Rain\",\"type\":5}}', 0, '', '2022-02-15 09:29:24'); INSERT INTO `sys_oper_log` VALUES (6274, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"At the place we don\'t know, there is always some sadness we haven\'t seen.\",\"createTime\":1644888565380,\"dataId\":4271,\"date\":1633363200000,\"id\":1493396999742046209,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d7b42f8d664e47ecb3d701845b5b89f8.png\",\"note\":\"在我们不曾了解的地方,总有些未曾看到的心酸。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a0db954956f84b7e14b2629c787191b5.mp3\"}}', 0, '', '2022-02-15 09:29:25'); INSERT INTO `sys_oper_log` VALUES (6275, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 09:08:48\"}}', 0, '', '2022-02-15 09:29:51'); INSERT INTO `sys_oper_log` VALUES (6276, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1644887328000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 09:29:51'); INSERT INTO `sys_oper_log` VALUES (6277, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"To believe with certainty, we must begin with doubting.\",\"createTime\":1644888591714,\"dataId\":3560,\"date\":1572278400000,\"id\":1493397110228402178,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-29.jpg\",\"note\":\"要完全相信,我们首先得怀疑。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-29-day.mp3\"}}', 0, '', '2022-02-15 09:29:51'); INSERT INTO `sys_oper_log` VALUES (6278, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"1、为什么古代中国能一夫多妻制,而现在不能实行一夫多妻制?原因:如果每个男人可以娶四个老婆,那他将要面对十六个丈母娘……2、A:你想不想体验一把当大官的感觉?B:做梦都想。A:那让你体验一把。B:好啊,怎么体验?A:爱卿,给朕沏壶茶。B:。。。3、男:你叫我爸爸,我告诉你一个秘密。女:我叫你爸爸?男:对,叫我一声爸爸。女:爸爸。。。然后呢?男:我告诉你一个秘密,这个秘密就是。。。你不是我亲生的。。。4、男A:“我认为,对女人来说,最大的幸福是她嫁给了她想嫁的男人。”男B:“不见得!女人最大的幸福是她嫁的那个男人也是其他女人想嫁的!”5、喜欢的女孩学习成绩很好,为了得到她的注意,我每天疯狂学习。一年后,她终于注意到我了,甚至还跟朋友议论我。“那个男的,每天学习最认真,为什么还考最后一名?\",\"createTime\":1644888592783,\"id\":1493397114699530241,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:29:52'); INSERT INTO `sys_oper_log` VALUES (6279, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1644887328000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 09:29:57'); INSERT INTO `sys_oper_log` VALUES (6280, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 09:08:48\"}}', 0, '', '2022-02-15 09:29:57'); INSERT INTO `sys_oper_log` VALUES (6281, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"History is apt to judge harshly those who sacrifice tomorrow for today. \",\"createTime\":1644888597486,\"dataId\":4129,\"date\":1621094400000,\"id\":1493397134421147650,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/335d74486a906045870e9111586191cb.png\",\"note\":\"历史往往对那些为了今天而牺牲明天的人作出严厉的判决。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/04fe78c1945f3762cd2a742972cb4728.mp3\"}}', 0, '', '2022-02-15 09:29:57'); INSERT INTO `sys_oper_log` VALUES (6282, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"(Lz男)今天在园林区干活,期间去拉粑粑(老式厕所 蹲位没有隔断的)。正拉的畅快,这时进来一个30来岁少妇(长的还不错)当时俩人都愣了下,我以为她会跑出去,没想到那mm直接蹲到边上位置嘘嘘,然后就出去了。剩我一人蹲在那里凌乱。。。。\",\"createTime\":1644888598506,\"id\":1493397138703532034,\"source\":\"笑话大全\",\"type\":5}}', 0, '', '2022-02-15 09:29:58'); INSERT INTO `sys_oper_log` VALUES (6283, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"(Lz男)今天在园林区干活,期间去拉粑粑(老式厕所 蹲位没有隔断的)。正拉的畅快,这时进来一个30来岁少妇(长的还不错)当时俩人都愣了下,我以为她会跑出去,没想到那mm直接蹲到边上位置嘘嘘,然后就出去了。剩我一人蹲在那里凌乱。。。。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"(LZ male) I was working in the garden area today, and I went to pull Baba (there was no partition in the squatting position of the old-fashioned toilet). At that time, a 30-year-old young woman came in. At that time, both of them were stunned. I thought she would run out. Unexpectedly, mm squatted directly to the side and went out. I was left squatting there alone....\",\"src\":\"(Lz男)今天在园林区干活,期间去拉粑粑(老式厕所 蹲位没有隔断的)。正拉的畅快,这时进来一个30来岁少妇(长的还不错)当时俩人都愣了下,我以为她会跑出去,没想到那mm直接蹲到边上位置嘘嘘,然后就出去了。剩我一人蹲在那里凌乱。。。。\"}]}}', 0, '', '2022-02-15 09:30:05'); INSERT INTO `sys_oper_log` VALUES (6284, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In case I don\'t see you… Good afternoon, good evening, and good night.\",\"createTime\":1644888668295,\"dataId\":4367,\"date\":1641657600000,\"id\":1493397431403036673,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/09072d0439ab464c9071479c2ecc309b.png\",\"note\":\"假如我再也见不到你……祝你下午好,晚上好,晚安。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/77bb0af230aa6da890155a50e8e4952e.mp3\"}}', 0, '', '2022-02-15 09:31:08'); INSERT INTO `sys_oper_log` VALUES (6285, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"微风摇曳着窗帘,夕阳斜射入教室,在那里鼓起勇气告白的少年。即使现在也能清晰地回想起她的声音「当朋友,不行吗?」\\\"\",\"createTime\":1644888668735,\"id\":1493397433286279170,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-15 09:31:08'); INSERT INTO `sys_oper_log` VALUES (6286, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"10\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"笑话大全\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"笑话大全\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 09:31:59'); INSERT INTO `sys_oper_log` VALUES (6287, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1644887328000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 09:32:06'); INSERT INTO `sys_oper_log` VALUES (6288, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 09:08:48\"}}', 0, '', '2022-02-15 09:32:06'); INSERT INTO `sys_oper_log` VALUES (6289, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1644887328000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 09:32:41'); INSERT INTO `sys_oper_log` VALUES (6290, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 09:08:48\"}}', 0, '', '2022-02-15 09:32:41'); INSERT INTO `sys_oper_log` VALUES (6291, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"263KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvr8lsij31hc0u0h03.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut46lgwnj31hc0u0tcs.jpg\"},{\"imageFileLength\":\"208KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut844peaj31c00u0wkb.jpg\"},{\"imageFileLength\":\"222KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usffr0v7j31hc0u0dli.jpg\"},{\"imageFileLength\":\"199KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv7zv38j31c00u0ap1.jpg\"},{\"imageFileLength\":\"218KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpi5mi8j31c00u0qdm.jpg\"},{\"imageFileLength\":\"110KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbaovv6j31hc0u07b3.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urp9w1ioj31hc0u049u.jpg\"},{\"imageFileLength\":\"312KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urphzevej31hc0u0dpo.jpg\"},{\"imageFileLength\":\"256KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrlmzn8j31c00u0k6n.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-15 09:35:27'); INSERT INTO `sys_oper_log` VALUES (6292, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-02-15 09:41:10'); INSERT INTO `sys_oper_log` VALUES (6293, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"11\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"搞笑段子\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"搞笑段子\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 09:54:46'); INSERT INTO `sys_oper_log` VALUES (6294, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 09:33:55\"}}', 0, '', '2022-02-15 09:55:11'); INSERT INTO `sys_oper_log` VALUES (6295, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A dream doesn’t become reality through magic; it takes sweat, determination, and hard work.\",\"createTime\":1644890111503,\"dataId\":4051,\"date\":1614355200000,\"id\":1493403484685479937,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9ec463a413f7c8d885078d9d20833c10.png\",\"note\":\"梦想的实现不是靠魔法,而是靠汗水、决心与努力。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/e0fcf18e9874e49391b0bb026d2f5754.mp3\"}}', 0, '', '2022-02-15 09:55:11'); INSERT INTO `sys_oper_log` VALUES (6296, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1644888835000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 09:55:11'); INSERT INTO `sys_oper_log` VALUES (6297, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"错爱, 是喜欢却不合适的鞋,穿了脚疼, 扔了心疼。是你, 会继续穿, 还是扔掉呢?\",\"createTime\":1641715926000,\"id\":1480089986851917828,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-15 09:55:11'); INSERT INTO `sys_oper_log` VALUES (6298, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"其实从一开始你就不该对我那么好的,给了我这么多希望然后又独自离开,这种感觉真的好难受。\",\"createTime\":1641647601000,\"id\":1479803409705689093,\"source\":\"冭孒\",\"type\":5}}', 0, '', '2022-02-15 09:55:20'); INSERT INTO `sys_oper_log` VALUES (6299, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一辈子用永远定格,苍老时间的格调。\",\"createTime\":1641648112000,\"id\":1479805553515134979,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-15 09:56:12'); INSERT INTO `sys_oper_log` VALUES (6300, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"鞋子坏了,打算换一双,预备走更远的路。\",\"createTime\":1641475320000,\"id\":1479080811606786049,\"source\":\"三毛\",\"type\":1}}', 0, '', '2022-02-15 09:56:13'); INSERT INTO `sys_oper_log` VALUES (6301, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"然而,真正让她产生一语惊心之感的,却是对方最后提到的一句话:道德常常能弥补智慧的缺陷,然而,智慧却永远填补不了道德的空白。\",\"createTime\":1641647881000,\"id\":1479804584257617928,\"source\":\"你的美开始扭曲\",\"type\":5}}', 0, '', '2022-02-15 09:56:13'); INSERT INTO `sys_oper_log` VALUES (6302, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有奶不一定是娘,但有钱一定是爷!\",\"createTime\":1641648061000,\"id\":1479805339576270861,\"source\":\"阿土仔\",\"type\":5}}', 0, '', '2022-02-15 09:56:18'); INSERT INTO `sys_oper_log` VALUES (6303, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"总以为你是我的过客 没想到最后我才是你的过客\",\"createTime\":1641132540000,\"id\":1477643088274587650,\"source\":\"过客\",\"type\":2}}', 0, '', '2022-02-15 09:56:41'); INSERT INTO `sys_oper_log` VALUES (6304, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"忽然很想你。这只是我一时想起你。在这个感情泛滥的年度里,我只说,我喜欢你。我想你了,此刻。\",\"createTime\":1641647281000,\"id\":1479802068056891409,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-15 09:57:44'); INSERT INTO `sys_oper_log` VALUES (6305, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 09:33:55\"}}', 0, '', '2022-02-15 09:58:29'); INSERT INTO `sys_oper_log` VALUES (6306, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1644888835000,\"temperature\":\"8\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 09:58:29'); INSERT INTO `sys_oper_log` VALUES (6307, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生是一场盛大的遇见,若你懂得,就请珍惜。\",\"createTime\":1641725526000,\"id\":1480130251406925835,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-02-15 09:58:29'); INSERT INTO `sys_oper_log` VALUES (6308, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Do not, for one repulse, forgo the purpose that you resolved to effort.\",\"createTime\":1644890309945,\"dataId\":3468,\"date\":1564329600000,\"id\":1493404317011574786,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-29.jpg\",\"note\":\"不要只因一次挫败,就放弃你原来决心想达到的目的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-29-day.mp3\"}}', 0, '', '2022-02-15 09:58:29'); INSERT INTO `sys_oper_log` VALUES (6309, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"新欢永远是欢,旧爱永远是爱。\",\"createTime\":1641647482000,\"id\":1479802911124578306,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-15 09:58:34'); INSERT INTO `sys_oper_log` VALUES (6310, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"路漫漫,风淡淡,天蓝蓝,思绵绵。烟花灿,过元旦,快乐伴,赛神仙。与好运,常相见,跟平安,永连线。祝愿你,福无限,日子美,生活甜。\",\"createTime\":1641825364000,\"id\":1480549003197865988,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-15 09:59:23'); INSERT INTO `sys_oper_log` VALUES (6311, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"猜这是什么?:猜出来了,不会的举手吧\",\"createTime\":1644890438353,\"id\":1493404855597973506,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-02-15 10:00:38'); INSERT INTO `sys_oper_log` VALUES (6312, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"lz农村妹纸,讲一个爸爸跟我说的!爸爸去看地,结果看到蒋二嫂在砍竹笋炒,然后爸爸看到几棵很大的竹笋,于是大喊:“蒋二嫂,这边有几棵大的。”蒋二嫂看了爸爸一眼,没理爸爸。爸爸就一直喊。。。。后来蒋二嫂憋不住了说:“你不要喊嘛,我是在偷别人家的竹笋。”\",\"createTime\":1644890452289,\"id\":1493404914016239618,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-02-15 10:00:52'); INSERT INTO `sys_oper_log` VALUES (6313, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"8\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"一言\",\"params\":{},\"dictType\":\"copywriting_type\",\"dictLabel\":\"一言\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1644839755000,\"dictCode\":123,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 10:03:18'); INSERT INTO `sys_oper_log` VALUES (6314, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'webmagic_jd_item', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 10:33:09'); INSERT INTO `sys_oper_log` VALUES (6315, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1644924833000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 19:43:11'); INSERT INTO `sys_oper_log` VALUES (6316, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 19:33:53\"}}', 0, '', '2022-02-15 19:43:11'); INSERT INTO `sys_oper_log` VALUES (6317, '定时任务', 1, 'com.ruoyi.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '', '{\"msg\":\"新增任务\'新浪新闻-爬虫-定时任务\'失败,Cron表达式不正确\",\"code\":500}', 0, NULL, '2022-02-15 20:11:53'); INSERT INTO `sys_oper_log` VALUES (6318, '定时任务', 1, 'com.ruoyi.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"新浪新闻-爬虫-定时任务\",\"concurrent\":\"1\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"* * * * * ?\",\"jobId\":104,\"createBy\":\"admin\",\"nextValidTime\":1644927124000,\"invokeTarget\":\"x\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 20:12:03'); INSERT INTO `sys_oper_log` VALUES (6319, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"新浪新闻-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"* * * * * ?\",\"jobId\":104,\"createBy\":\"admin\",\"nextValidTime\":1644927170000,\"createTime\":1644927123000,\"updateBy\":\"admin\",\"invokeTarget\":\"SinaTask.sinaNews\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 20:12:49'); INSERT INTO `sys_oper_log` VALUES (6320, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"新浪新闻-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0/30 * * * ?\",\"jobId\":104,\"createBy\":\"admin\",\"nextValidTime\":1644928200000,\"createTime\":1644927123000,\"updateBy\":\"admin\",\"invokeTarget\":\"SinaTask.sinaNews\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 20:13:14'); INSERT INTO `sys_oper_log` VALUES (6321, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":104,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 20:14:46'); INSERT INTO `sys_oper_log` VALUES (6322, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":104,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 20:14:48'); INSERT INTO `sys_oper_log` VALUES (6323, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1644926626000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 20:22:08'); INSERT INTO `sys_oper_log` VALUES (6324, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 20:03:46\"}}', 0, '', '2022-02-15 20:22:08'); INSERT INTO `sys_oper_log` VALUES (6325, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"date\",\"orderNum\":\"5\",\"menuName\":\"业务监控\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"monitor\",\"children\":[],\"createTime\":1641108775000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2045,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 21:20:08'); INSERT INTO `sys_oper_log` VALUES (6326, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"bug\",\"orderNum\":\"4\",\"menuName\":\"爬虫数据\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"webmagic\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 21:21:16'); INSERT INTO `sys_oper_log` VALUES (6327, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"logininfor\",\"orderNum\":\"1\",\"menuName\":\"新浪新闻\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"sinaNews\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 21:22:16'); INSERT INTO `sys_oper_log` VALUES (6328, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:08:34\"}}', 0, '', '2022-02-15 21:22:18'); INSERT INTO `sys_oper_log` VALUES (6329, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1644930514000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:22:18'); INSERT INTO `sys_oper_log` VALUES (6330, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1644930514000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:22:22'); INSERT INTO `sys_oper_log` VALUES (6331, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:08:34\"}}', 0, '', '2022-02-15 21:22:22'); INSERT INTO `sys_oper_log` VALUES (6332, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1644930514000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:27:46'); INSERT INTO `sys_oper_log` VALUES (6333, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:08:34\"}}', 0, '', '2022-02-15 21:27:47'); INSERT INTO `sys_oper_log` VALUES (6334, '代码生成', 3, 'com.ruoyi.gen.controller.GenController.remove()', 'DELETE', 1, 'admin', NULL, '/gen/18', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 21:27:56'); INSERT INTO `sys_oper_log` VALUES (6335, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'webmagic_sina_news', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 21:28:15'); INSERT INTO `sys_oper_log` VALUES (6336, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"logininfor\",\"orderNum\":\"1\",\"menuName\":\"新浪新闻\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"sinaNews\",\"children\":[],\"createTime\":1644931336000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2076,\"menuType\":\"C\",\"perms\":\"webmagic:sinaNews:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 21:43:52'); INSERT INTO `sys_oper_log` VALUES (6337, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"logininfor\",\"orderNum\":\"1\",\"menuName\":\"新浪新闻\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"sinaNews\",\"component\":\"business/webmagic/sina/sinaNews/index.vue\",\"children\":[],\"createTime\":1644931336000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2076,\"menuType\":\"C\",\"perms\":\"webmagic:sinaNews:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 21:44:41'); INSERT INTO `sys_oper_log` VALUES (6338, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"logininfor\",\"orderNum\":\"1\",\"menuName\":\"新浪新闻\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"sinaNews\",\"component\":\"business/webmagic/sina/sinaNews/index\",\"children\":[],\"createTime\":1644931336000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2076,\"menuType\":\"C\",\"perms\":\"webmagic:sinaNews:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 21:44:56'); INSERT INTO `sys_oper_log` VALUES (6339, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"新浪新闻删除\",\"params\":{},\"parentId\":2076,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"webmagic:sinaNews:remove\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-15 21:45:19'); INSERT INTO `sys_oper_log` VALUES (6340, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:45:29'); INSERT INTO `sys_oper_log` VALUES (6341, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:45:29'); INSERT INTO `sys_oper_log` VALUES (6342, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:47:03'); INSERT INTO `sys_oper_log` VALUES (6343, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:47:03'); INSERT INTO `sys_oper_log` VALUES (6344, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:47:09'); INSERT INTO `sys_oper_log` VALUES (6345, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:47:10'); INSERT INTO `sys_oper_log` VALUES (6346, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:49:12'); INSERT INTO `sys_oper_log` VALUES (6347, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:49:12'); INSERT INTO `sys_oper_log` VALUES (6348, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1493559502462124034', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-15 21:49:22'); INSERT INTO `sys_oper_log` VALUES (6349, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1493559502768308225', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-15 21:49:25'); INSERT INTO `sys_oper_log` VALUES (6350, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:52:32'); INSERT INTO `sys_oper_log` VALUES (6351, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:52:32'); INSERT INTO `sys_oper_log` VALUES (6352, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:53:27'); INSERT INTO `sys_oper_log` VALUES (6353, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:53:27'); INSERT INTO `sys_oper_log` VALUES (6354, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:53:51'); INSERT INTO `sys_oper_log` VALUES (6355, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:53:51'); INSERT INTO `sys_oper_log` VALUES (6356, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:54:06'); INSERT INTO `sys_oper_log` VALUES (6357, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:54:06'); INSERT INTO `sys_oper_log` VALUES (6358, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:54:22'); INSERT INTO `sys_oper_log` VALUES (6359, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:54:22'); INSERT INTO `sys_oper_log` VALUES (6360, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:54:37'); INSERT INTO `sys_oper_log` VALUES (6361, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:54:37'); INSERT INTO `sys_oper_log` VALUES (6362, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:55:20'); INSERT INTO `sys_oper_log` VALUES (6363, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:55:20'); INSERT INTO `sys_oper_log` VALUES (6364, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 21:33:50\"}}', 0, '', '2022-02-15 21:55:33'); INSERT INTO `sys_oper_log` VALUES (6365, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644932030000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 21:55:33'); INSERT INTO `sys_oper_log` VALUES (6366, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644934094900,\"humidity\":\"65\",\"id\":1493587964423487490,\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:08:14'); INSERT INTO `sys_oper_log` VALUES (6367, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:08:15'); INSERT INTO `sys_oper_log` VALUES (6368, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644934094900,\"humidity\":\"65\",\"id\":1493587964423487490,\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:09:00'); INSERT INTO `sys_oper_log` VALUES (6369, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:09:00'); INSERT INTO `sys_oper_log` VALUES (6370, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644934094900,\"humidity\":\"65\",\"id\":1493587964423487490,\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:10:28'); INSERT INTO `sys_oper_log` VALUES (6371, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:10:28'); INSERT INTO `sys_oper_log` VALUES (6372, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644934094900,\"humidity\":\"65\",\"id\":1493587964423487490,\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:11:22'); INSERT INTO `sys_oper_log` VALUES (6373, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:11:22'); INSERT INTO `sys_oper_log` VALUES (6374, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:12:43'); INSERT INTO `sys_oper_log` VALUES (6375, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644934094900,\"humidity\":\"65\",\"id\":1493587964423487490,\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:12:43'); INSERT INTO `sys_oper_log` VALUES (6376, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:22:02'); INSERT INTO `sys_oper_log` VALUES (6377, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:22:02'); INSERT INTO `sys_oper_log` VALUES (6378, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:22:09'); INSERT INTO `sys_oper_log` VALUES (6379, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:22:10'); INSERT INTO `sys_oper_log` VALUES (6380, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:22:30'); INSERT INTO `sys_oper_log` VALUES (6381, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:22:30'); INSERT INTO `sys_oper_log` VALUES (6382, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:22:38'); INSERT INTO `sys_oper_log` VALUES (6383, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:22:38'); INSERT INTO `sys_oper_log` VALUES (6384, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:22:50'); INSERT INTO `sys_oper_log` VALUES (6385, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:22:51'); INSERT INTO `sys_oper_log` VALUES (6386, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:22:56'); INSERT INTO `sys_oper_log` VALUES (6387, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:22:56'); INSERT INTO `sys_oper_log` VALUES (6388, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:23:17'); INSERT INTO `sys_oper_log` VALUES (6389, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:23:17'); INSERT INTO `sys_oper_log` VALUES (6390, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:23:34'); INSERT INTO `sys_oper_log` VALUES (6391, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:23:34'); INSERT INTO `sys_oper_log` VALUES (6392, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:23:51'); INSERT INTO `sys_oper_log` VALUES (6393, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:23:52'); INSERT INTO `sys_oper_log` VALUES (6394, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:23:55'); INSERT INTO `sys_oper_log` VALUES (6395, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:23:55'); INSERT INTO `sys_oper_log` VALUES (6396, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1644933828000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:24:03'); INSERT INTO `sys_oper_log` VALUES (6397, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:03:48\"}}', 0, '', '2022-02-15 22:24:03'); INSERT INTO `sys_oper_log` VALUES (6398, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644935934847,\"humidity\":\"65\",\"id\":1493595681699577858,\"province\":\"江西\",\"reporttime\":1644935930000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:38:54'); INSERT INTO `sys_oper_log` VALUES (6399, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:38:51\"}}', 0, '', '2022-02-15 22:38:54'); INSERT INTO `sys_oper_log` VALUES (6400, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644935934847,\"humidity\":\"65\",\"id\":1493595681699577858,\"province\":\"江西\",\"reporttime\":1644935930000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:41:56'); INSERT INTO `sys_oper_log` VALUES (6401, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:38:51\"}}', 0, '', '2022-02-15 22:41:56'); INSERT INTO `sys_oper_log` VALUES (6402, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644935934847,\"humidity\":\"65\",\"id\":1493595681699577858,\"province\":\"江西\",\"reporttime\":1644935930000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-15 22:43:31'); INSERT INTO `sys_oper_log` VALUES (6403, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-15\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-15 22:38:51\"}}', 0, '', '2022-02-15 22:43:31'); INSERT INTO `sys_oper_log` VALUES (6404, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644972433576,\"humidity\":\"79\",\"id\":1493748768489852930,\"province\":\"江西\",\"reporttime\":1644971931000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-16 08:47:13'); INSERT INTO `sys_oper_log` VALUES (6405, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 08:38:52\"}}', 0, '', '2022-02-16 08:47:14'); INSERT INTO `sys_oper_log` VALUES (6406, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644972433576,\"humidity\":\"79\",\"id\":1493748768489852930,\"province\":\"江西\",\"reporttime\":1644971931000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-16 08:48:05'); INSERT INTO `sys_oper_log` VALUES (6407, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 08:38:52\"}}', 0, '', '2022-02-16 08:48:05'); INSERT INTO `sys_oper_log` VALUES (6408, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 08:38:52\"}}', 0, '', '2022-02-16 08:50:00'); INSERT INTO `sys_oper_log` VALUES (6409, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644972433576,\"humidity\":\"79\",\"id\":1493748768489852930,\"province\":\"江西\",\"reporttime\":1644971931000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-16 08:50:00'); INSERT INTO `sys_oper_log` VALUES (6410, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644972433576,\"humidity\":\"79\",\"id\":1493748768489852930,\"province\":\"江西\",\"reporttime\":1644971931000,\"temperature\":\"7\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-16 08:51:23'); INSERT INTO `sys_oper_log` VALUES (6411, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 08:38:52\"}}', 0, '', '2022-02-16 08:51:23'); INSERT INTO `sys_oper_log` VALUES (6412, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1644979128000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-16 10:59:00'); INSERT INTO `sys_oper_log` VALUES (6413, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 10:38:48\"}}', 0, '', '2022-02-16 10:59:00'); INSERT INTO `sys_oper_log` VALUES (6414, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644989714879,\"humidity\":\"68\",\"id\":1493821251502985217,\"province\":\"江西\",\"reporttime\":1644989649000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-16 13:35:14'); INSERT INTO `sys_oper_log` VALUES (6415, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 13:34:09\"}}', 0, '', '2022-02-16 13:35:15'); INSERT INTO `sys_oper_log` VALUES (6416, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644998824353,\"humidity\":\"74\",\"id\":1493859459385249793,\"province\":\"江西\",\"reporttime\":1644998626000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-16 16:07:04'); INSERT INTO `sys_oper_log` VALUES (6417, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 16:03:46\"}}', 0, '', '2022-02-16 16:07:04'); INSERT INTO `sys_oper_log` VALUES (6418, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1644998824353,\"humidity\":\"74\",\"id\":1493859459385249793,\"province\":\"江西\",\"reporttime\":1644998626000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-16 16:08:50'); INSERT INTO `sys_oper_log` VALUES (6419, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 16:03:46\"}}', 0, '', '2022-02-16 16:08:50'); INSERT INTO `sys_oper_log` VALUES (6420, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursvoilij31c00u0wrk.jpg\"},{\"imageFileLength\":\"191KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usey2x2ej31hc0u0797.jpg\"},{\"imageFileLength\":\"110KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicjnncaj31900u0tbm.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us923zsoj31c00u0tch.jpg\"},{\"imageFileLength\":\"266KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5fyxeyj31hc0u0ak5.jpg\"},{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28evp7c8mj31c00u0qar.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfe3xypj31c00u0agd.jpg\"},{\"imageFileLength\":\"142KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8p1fz4j31c00u0ae5.jpg\"},{\"imageFileLength\":\"182KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8rgjxbj31c00u0af7.jpg\"},{\"imageFileLength\":\"101KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8v42bsj31c00u0q5g.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-16 16:26:56'); INSERT INTO `sys_oper_log` VALUES (6421, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年02月19日\",\"holidayName\":\"雨水\",\"lunarDate\":\"2022年01月19日\",\"lunarHoliday\":true,\"residueDays\":2,\"returnDate\":\"辛丑牛年 腊月十七\"},{\"date\":\"2022年02月21日\",\"holidayName\":\"国际母语日\",\"lunarDate\":\"2022年01月21日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年02月21日\"},{\"date\":\"2022年02月24日\",\"holidayName\":\"第三世界青年日\",\"lunarDate\":\"2022年01月24日\",\"lunarHoliday\":false,\"residueDays\":7,\"returnDate\":\"2022年02月24日\"},{\"date\":\"2022年02月28日\",\"holidayName\":\"国际罕见病日\",\"lunarDate\":\"2022年01月28日\",\"lunarHoliday\":false,\"residueDays\":11,\"returnDate\":\"2022年02月28日\"},{\"date\":\"2022年03月01日\",\"holidayName\":\"国际海豹日\",\"lunarDate\":\"2022年01月29日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年03月01日\"},{\"date\":\"2022年03月03日\",\"holidayName\":\"全国爱耳日\",\"lunarDate\":\"2022年02月01日\",\"lunarHoliday\":false,\"residueDays\":14,\"returnDate\":\"2022年03月03日\"},{\"date\":\"2022年03月04日\",\"holidayName\":\"龙抬头\",\"lunarDate\":\"2022年02月02日\",\"lunarHoliday\":true,\"residueDays\":15,\"returnDate\":\"壬寅虎年 正月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-16 16:26:58'); INSERT INTO `sys_oper_log` VALUES (6422, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1493862723757461505', '127.0.0.1', '', '1493862723757461505', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-16 16:27:45'); INSERT INTO `sys_oper_log` VALUES (6423, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 16:03:46\"}}', 0, '', '2022-02-16 16:27:45'); INSERT INTO `sys_oper_log` VALUES (6424, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 16:38:54\"}}', 0, '', '2022-02-16 16:53:04'); INSERT INTO `sys_oper_log` VALUES (6425, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645000734000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-16 16:53:04'); INSERT INTO `sys_oper_log` VALUES (6426, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'webmagic_copywriting_network', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-16 16:53:12'); INSERT INTO `sys_oper_log` VALUES (6427, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-16\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-16 17:08:33\"}}', 0, '', '2022-02-16 17:23:45'); INSERT INTO `sys_oper_log` VALUES (6428, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1645002513000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-16 17:23:45'); INSERT INTO `sys_oper_log` VALUES (6429, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It is the business of the very few to be independent; it is a privilege of the strong. \",\"createTime\":1645059344242,\"dataId\":3400,\"date\":1558627200000,\"id\":1494113298218614786,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-05-24.jpg\",\"note\":\"只有少数人能做到独立自主;那是强者的特权。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-05-241-day.mp3\"}}', 0, '', '2022-02-17 08:55:44'); INSERT INTO `sys_oper_log` VALUES (6430, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"物之成于气,人之成于学。\",\"createTime\":1645059344067,\"id\":1494113297459445761,\"source\":\"(清)陈确\",\"type\":4}}', 0, '', '2022-02-17 08:55:44'); INSERT INTO `sys_oper_log` VALUES (6431, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你们之所以喝鸡汤,是因为肉呢被别人吃光了。\",\"createTime\":1645059357153,\"id\":1494113352388050946,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-17 08:55:57'); INSERT INTO `sys_oper_log` VALUES (6432, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"不相信人咬不到肚脐的,咬破肚脐去死如何?\\\"\",\"createTime\":1645059366947,\"id\":1494113393437704194,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-17 08:56:06'); INSERT INTO `sys_oper_log` VALUES (6433, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645058322000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:00:15'); INSERT INTO `sys_oper_log` VALUES (6434, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 08:38:42\"}}', 0, '', '2022-02-17 09:00:15'); INSERT INTO `sys_oper_log` VALUES (6435, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1494114391057121281', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 09:00:17'); INSERT INTO `sys_oper_log` VALUES (6436, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1494111928124063745', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 09:00:24'); INSERT INTO `sys_oper_log` VALUES (6437, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1494111906464677889', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 09:00:27'); INSERT INTO `sys_oper_log` VALUES (6438, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1494111893869182978', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 09:00:29'); INSERT INTO `sys_oper_log` VALUES (6439, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1494111875154198529', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 09:00:34'); INSERT INTO `sys_oper_log` VALUES (6440, 'API日志', 3, 'com.xjs.apilog.controller.ApiLogController.remove()', 'DELETE', 1, 'admin', '', '/apilog/1494111881282076673', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 09:00:35'); INSERT INTO `sys_oper_log` VALUES (6441, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Self-esteem is the reputation we acquire with ourselves.\",\"createTime\":1645059646155,\"dataId\":4040,\"date\":1613404800000,\"id\":1494114564512546818,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/ad345a789016bc5b5ea3c1466fcd52af.png\",\"note\":\"自尊是我们给自己争取的信誉。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/3ec8c19bbc12c67b2fd47f50b9e8c999.mp3\"}}', 0, '', '2022-02-17 09:00:46'); INSERT INTO `sys_oper_log` VALUES (6442, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"活着本来没有什么意义 但是只要活着 就可以找到 有趣的事情。就像你发现了花 我又发现了你一样\\\"\",\"createTime\":1645059648357,\"id\":1494114573765181442,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-17 09:00:48'); INSERT INTO `sys_oper_log` VALUES (6443, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645058322000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:03:27'); INSERT INTO `sys_oper_log` VALUES (6444, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 08:38:42\"}}', 0, '', '2022-02-17 09:03:27'); INSERT INTO `sys_oper_log` VALUES (6445, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645058322000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:03:35'); INSERT INTO `sys_oper_log` VALUES (6446, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 08:38:42\"}}', 0, '', '2022-02-17 09:03:35'); INSERT INTO `sys_oper_log` VALUES (6447, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 08:38:42\"}}', 0, '', '2022-02-17 09:04:40'); INSERT INTO `sys_oper_log` VALUES (6448, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645058322000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:04:40'); INSERT INTO `sys_oper_log` VALUES (6449, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 08:38:42\"}}', 0, '', '2022-02-17 09:05:14'); INSERT INTO `sys_oper_log` VALUES (6450, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645058322000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:05:14'); INSERT INTO `sys_oper_log` VALUES (6451, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645058322000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:05:21'); INSERT INTO `sys_oper_log` VALUES (6452, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 08:38:42\"}}', 0, '', '2022-02-17 09:05:21'); INSERT INTO `sys_oper_log` VALUES (6453, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 08:38:42\"}}', 0, '', '2022-02-17 09:05:34'); INSERT INTO `sys_oper_log` VALUES (6454, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645058322000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:05:34'); INSERT INTO `sys_oper_log` VALUES (6455, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645058322000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:07:02'); INSERT INTO `sys_oper_log` VALUES (6456, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 08:38:42\"}}', 0, '', '2022-02-17 09:07:02'); INSERT INTO `sys_oper_log` VALUES (6457, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645058322000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:07:10'); INSERT INTO `sys_oper_log` VALUES (6458, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 08:38:42\"}}', 0, '', '2022-02-17 09:07:10'); INSERT INTO `sys_oper_log` VALUES (6459, '定时任务', 1, 'com.ruoyi.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案网-爬虫-定时任务\",\"concurrent\":\"1\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"* * * * * ?\",\"jobId\":105,\"createBy\":\"admin\",\"nextValidTime\":1645060445000,\"invokeTarget\":\"CopyWritingNetworkTask.copyWritingNetwork\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:14:04'); INSERT INTO `sys_oper_log` VALUES (6460, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案网-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0 0/8 * * ?\",\"jobId\":105,\"createBy\":\"admin\",\"nextValidTime\":1645084800000,\"createTime\":1645060444000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingNetworkTask.copyWritingNetwork\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:15:24'); INSERT INTO `sys_oper_log` VALUES (6461, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:15:25'); INSERT INTO `sys_oper_log` VALUES (6462, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:16:26'); INSERT INTO `sys_oper_log` VALUES (6463, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-02-17 09:19:48'); INSERT INTO `sys_oper_log` VALUES (6464, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-02-17 09:19:54'); INSERT INTO `sys_oper_log` VALUES (6465, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:20:24'); INSERT INTO `sys_oper_log` VALUES (6466, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:22:31'); INSERT INTO `sys_oper_log` VALUES (6467, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:25:30'); INSERT INTO `sys_oper_log` VALUES (6468, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:08:35\"}}', 0, '', '2022-02-17 09:30:19'); INSERT INTO `sys_oper_log` VALUES (6469, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645060115000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:30:19'); INSERT INTO `sys_oper_log` VALUES (6470, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/webmagic_copywriting_network', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:30:27'); INSERT INTO `sys_oper_log` VALUES (6471, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"example\",\"orderNum\":\"2\",\"menuName\":\"文案网\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"copyWritingNetwork\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:32:24'); INSERT INTO `sys_oper_log` VALUES (6472, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:43:04'); INSERT INTO `sys_oper_log` VALUES (6473, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:43:04'); INSERT INTO `sys_oper_log` VALUES (6474, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:49:57'); INSERT INTO `sys_oper_log` VALUES (6475, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:49:57'); INSERT INTO `sys_oper_log` VALUES (6476, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:50:00'); INSERT INTO `sys_oper_log` VALUES (6477, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:50:00'); INSERT INTO `sys_oper_log` VALUES (6478, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"example\",\"orderNum\":\"2\",\"menuName\":\"文案网\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"copyWritingNetwork\",\"component\":\"\",\"children\":[],\"createTime\":1645061544000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2078,\"menuType\":\"C\",\"perms\":\"webmagic:copyWritingNetwork:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:50:24'); INSERT INTO `sys_oper_log` VALUES (6479, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"example\",\"orderNum\":\"2\",\"menuName\":\"文案网\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"copyWritingNetwork\",\"component\":\"business/webmagic/copywritingnetwork/index\",\"children\":[],\"createTime\":1645061544000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2078,\"menuType\":\"C\",\"perms\":\"webmagic:copyWritingNetwork:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:50:44'); INSERT INTO `sys_oper_log` VALUES (6480, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:50:47'); INSERT INTO `sys_oper_log` VALUES (6481, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:50:47'); INSERT INTO `sys_oper_log` VALUES (6482, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:52:17'); INSERT INTO `sys_oper_log` VALUES (6483, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:52:18'); INSERT INTO `sys_oper_log` VALUES (6484, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:52:29'); INSERT INTO `sys_oper_log` VALUES (6485, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:52:29'); INSERT INTO `sys_oper_log` VALUES (6486, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:52:37'); INSERT INTO `sys_oper_log` VALUES (6487, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:52:37'); INSERT INTO `sys_oper_log` VALUES (6488, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:52:46'); INSERT INTO `sys_oper_log` VALUES (6489, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:52:46'); INSERT INTO `sys_oper_log` VALUES (6490, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:52:54'); INSERT INTO `sys_oper_log` VALUES (6491, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:52:54'); INSERT INTO `sys_oper_log` VALUES (6492, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:53:44'); INSERT INTO `sys_oper_log` VALUES (6493, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:53:44'); INSERT INTO `sys_oper_log` VALUES (6494, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:53:52'); INSERT INTO `sys_oper_log` VALUES (6495, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:53:52'); INSERT INTO `sys_oper_log` VALUES (6496, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:54:39'); INSERT INTO `sys_oper_log` VALUES (6497, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:54:40'); INSERT INTO `sys_oper_log` VALUES (6498, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:54:45'); INSERT INTO `sys_oper_log` VALUES (6499, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:54:45'); INSERT INTO `sys_oper_log` VALUES (6500, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:55:13'); INSERT INTO `sys_oper_log` VALUES (6501, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:55:13'); INSERT INTO `sys_oper_log` VALUES (6502, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 09:58:53'); INSERT INTO `sys_oper_log` VALUES (6503, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 09:58:53'); INSERT INTO `sys_oper_log` VALUES (6504, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"文案网删除按钮\",\"params\":{},\"parentId\":2078,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"webmagic:copyWritingNetwork:remove\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 09:59:59'); INSERT INTO `sys_oper_log` VALUES (6505, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"2\",\"menuName\":\"文案网导出按钮\",\"params\":{},\"parentId\":2078,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"webmagic:copyWritingNetwork:export\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 10:00:20'); INSERT INTO `sys_oper_log` VALUES (6506, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645061630000,\"temperature\":\"6\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 10:00:31'); INSERT INTO `sys_oper_log` VALUES (6507, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 09:33:50\"}}', 0, '', '2022-02-17 10:00:31'); INSERT INTO `sys_oper_log` VALUES (6508, 'API预警', 5, 'com.xjs.controller.ApiWarningController.export()', 'POST', 1, 'admin', '', '/apiwarning/export', '127.0.0.1', '', '{\"apiName\":\"ROLL\"}', '', 0, '', '2022-02-17 10:01:40'); INSERT INTO `sys_oper_log` VALUES (6509, 'API预警', 5, 'com.xjs.controller.ApiWarningController.export()', 'POST', 1, 'admin', '', '/apiwarning/export', '127.0.0.1', '', '{\"apiName\":\"ROLL\"}', '', 0, '', '2022-02-17 10:02:14'); INSERT INTO `sys_oper_log` VALUES (6510, 'API预警', 5, 'com.xjs.controller.ApiWarningController.export()', 'POST', 1, 'admin', '', '/apiwarning/export', '127.0.0.1', '', '{}', '', 0, '', '2022-02-17 10:03:16'); INSERT INTO `sys_oper_log` VALUES (6511, '文案网', 5, 'com.xjs.copywritingNetwork.controller.CopyWritingNetworkController.export()', 'POST', 1, 'admin', '', '/copyWritingNetwork/export', '127.0.0.1', '', '{\"content\":\"情人节\"}', '', 0, '', '2022-02-17 10:05:18'); INSERT INTO `sys_oper_log` VALUES (6512, '文案网', 5, 'com.xjs.copywritingNetwork.controller.CopyWritingNetworkController.export()', 'POST', 1, 'admin', '', '/copyWritingNetwork/export', '127.0.0.1', '', '{\"content\":\"情人节\"}', '', 0, '', '2022-02-17 10:05:42'); INSERT INTO `sys_oper_log` VALUES (6513, '文案管理', 5, 'com.xjs.copywriting.controller.CopyWritingController.export()', 'POST', 1, 'admin', '', '/copyWriting/export', '127.0.0.1', '', '{\"type\":10}', '', 0, '', '2022-02-17 10:07:01'); INSERT INTO `sys_oper_log` VALUES (6514, '文案网', 5, 'com.xjs.copywritingNetwork.controller.CopyWritingNetworkController.export()', 'POST', 1, 'admin', '', '/copyWritingNetwork/export', '127.0.0.1', '', '{\"content\":\"朋友圈\"}', '', 0, '', '2022-02-17 10:07:45'); INSERT INTO `sys_oper_log` VALUES (6515, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 10:03:50\"}}', 0, '', '2022-02-17 10:23:12'); INSERT INTO `sys_oper_log` VALUES (6516, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645063430000,\"temperature\":\"5\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 10:23:13'); INSERT INTO `sys_oper_log` VALUES (6517, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645063430000,\"temperature\":\"5\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 10:24:09'); INSERT INTO `sys_oper_log` VALUES (6518, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 10:03:50\"}}', 0, '', '2022-02-17 10:24:09'); INSERT INTO `sys_oper_log` VALUES (6519, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645063430000,\"temperature\":\"5\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 10:24:31'); INSERT INTO `sys_oper_log` VALUES (6520, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 10:03:50\"}}', 0, '', '2022-02-17 10:24:31'); INSERT INTO `sys_oper_log` VALUES (6521, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 10:03:50\"}}', 0, '', '2022-02-17 10:26:11'); INSERT INTO `sys_oper_log` VALUES (6522, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645063430000,\"temperature\":\"5\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 10:26:11'); INSERT INTO `sys_oper_log` VALUES (6523, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645063430000,\"temperature\":\"5\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 10:31:10'); INSERT INTO `sys_oper_log` VALUES (6524, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 10:03:50\"}}', 0, '', '2022-02-17 10:31:10'); INSERT INTO `sys_oper_log` VALUES (6525, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645063430000,\"temperature\":\"5\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 10:31:22'); INSERT INTO `sys_oper_log` VALUES (6526, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 10:03:50\"}}', 0, '', '2022-02-17 10:31:22'); INSERT INTO `sys_oper_log` VALUES (6527, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"≤3\",\"daytemp\":\"8\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 10:03:50\"}}', 0, '', '2022-02-17 10:34:26'); INSERT INTO `sys_oper_log` VALUES (6528, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645063430000,\"temperature\":\"5\",\"weather\":\"中雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 10:34:26'); INSERT INTO `sys_oper_log` VALUES (6529, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1493779176061276166', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 10:34:36'); INSERT INTO `sys_oper_log` VALUES (6530, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 10:49:33'); INSERT INTO `sys_oper_log` VALUES (6531, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":104,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 10:52:49'); INSERT INTO `sys_oper_log` VALUES (6532, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 10:54:40'); INSERT INTO `sys_oper_log` VALUES (6533, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 11:04:40'); INSERT INTO `sys_oper_log` VALUES (6534, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 11:07:27'); INSERT INTO `sys_oper_log` VALUES (6535, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 11:16:57'); INSERT INTO `sys_oper_log` VALUES (6536, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645067315000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 11:24:57'); INSERT INTO `sys_oper_log` VALUES (6537, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 11:08:35\"}}', 0, '', '2022-02-17 11:24:58'); INSERT INTO `sys_oper_log` VALUES (6538, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645067315000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 11:28:43'); INSERT INTO `sys_oper_log` VALUES (6539, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 11:08:35\"}}', 0, '', '2022-02-17 11:28:43'); INSERT INTO `sys_oper_log` VALUES (6540, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 13:33:50\"}}', 0, '', '2022-02-17 14:02:02'); INSERT INTO `sys_oper_log` VALUES (6541, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645076030000,\"temperature\":\"4\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 14:02:03'); INSERT INTO `sys_oper_log` VALUES (6542, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 13:33:50\"}}', 0, '', '2022-02-17 14:06:16'); INSERT INTO `sys_oper_log` VALUES (6543, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645076030000,\"temperature\":\"4\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 14:06:16'); INSERT INTO `sys_oper_log` VALUES (6544, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 13:33:50\"}}', 0, '', '2022-02-17 14:08:21'); INSERT INTO `sys_oper_log` VALUES (6545, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645076030000,\"temperature\":\"4\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 14:08:21'); INSERT INTO `sys_oper_log` VALUES (6546, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645076030000,\"temperature\":\"4\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 14:09:23'); INSERT INTO `sys_oper_log` VALUES (6547, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 13:33:50\"}}', 0, '', '2022-02-17 14:09:24'); INSERT INTO `sys_oper_log` VALUES (6548, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645076030000,\"temperature\":\"4\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 14:11:08'); INSERT INTO `sys_oper_log` VALUES (6549, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 13:33:50\"}}', 0, '', '2022-02-17 14:11:08'); INSERT INTO `sys_oper_log` VALUES (6550, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 14:03:50\"}}', 0, '', '2022-02-17 14:12:30'); INSERT INTO `sys_oper_log` VALUES (6551, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645078350521,\"humidity\":\"94\",\"id\":1494193016355815426,\"province\":\"江西\",\"reporttime\":1645077830000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 14:12:30'); INSERT INTO `sys_oper_log` VALUES (6552, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 14:03:50\"}}', 0, '', '2022-02-17 14:14:16'); INSERT INTO `sys_oper_log` VALUES (6553, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645078350521,\"humidity\":\"94\",\"id\":1494193016355815426,\"province\":\"江西\",\"reporttime\":1645077830000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 14:14:16'); INSERT INTO `sys_oper_log` VALUES (6554, '获取历史热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.getHistoryTopSearchByDate()', 'GET', 1, 'admin', '', '/topsearch/getHistoryTopSearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"douyinList\":[],\"baiduList\":[],\"wechatList\":[],\"allnetworkList\":[],\"weiboList\":[]}}', 0, '', '2022-02-17 14:16:55'); INSERT INTO `sys_oper_log` VALUES (6555, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645078350521,\"humidity\":\"94\",\"id\":1494193016355815426,\"province\":\"江西\",\"reporttime\":1645077830000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 14:20:54'); INSERT INTO `sys_oper_log` VALUES (6556, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 14:03:50\"}}', 0, '', '2022-02-17 14:20:54'); INSERT INTO `sys_oper_log` VALUES (6557, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645078350521,\"humidity\":\"94\",\"id\":1494193016355815426,\"province\":\"江西\",\"reporttime\":1645077830000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 14:21:32'); INSERT INTO `sys_oper_log` VALUES (6558, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 14:03:50\"}}', 0, '', '2022-02-17 14:21:32'); INSERT INTO `sys_oper_log` VALUES (6559, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645079934000,\"temperature\":\"4\",\"weather\":\"小雨\",\"winddirection\":\"西北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 14:42:56'); INSERT INTO `sys_oper_log` VALUES (6560, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 14:38:54\"}}', 0, '', '2022-02-17 14:42:56'); INSERT INTO `sys_oper_log` VALUES (6561, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'webmagic_log', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 14:43:07'); INSERT INTO `sys_oper_log` VALUES (6562, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:07:30'); INSERT INTO `sys_oper_log` VALUES (6563, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:27:08'); INSERT INTO `sys_oper_log` VALUES (6564, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:29:33'); INSERT INTO `sys_oper_log` VALUES (6565, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:33:31'); INSERT INTO `sys_oper_log` VALUES (6566, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:36:37'); INSERT INTO `sys_oper_log` VALUES (6567, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:38:24'); INSERT INTO `sys_oper_log` VALUES (6568, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:40:57'); INSERT INTO `sys_oper_log` VALUES (6569, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:44:08'); INSERT INTO `sys_oper_log` VALUES (6570, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:48:20'); INSERT INTO `sys_oper_log` VALUES (6571, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:49:31'); INSERT INTO `sys_oper_log` VALUES (6572, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:51:41'); INSERT INTO `sys_oper_log` VALUES (6573, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:52:16'); INSERT INTO `sys_oper_log` VALUES (6574, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 15:53:19'); INSERT INTO `sys_oper_log` VALUES (6575, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":105,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 16:01:16'); INSERT INTO `sys_oper_log` VALUES (6576, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":104,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 16:08:52'); INSERT INTO `sys_oper_log` VALUES (6577, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"新浪新闻-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0 * * * ?\",\"jobId\":104,\"createBy\":\"admin\",\"nextValidTime\":1645088400000,\"createTime\":1644927123000,\"updateBy\":\"admin\",\"invokeTarget\":\"SinaTask.sinaNews\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 16:12:36'); INSERT INTO `sys_oper_log` VALUES (6578, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":104,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 16:12:42'); INSERT INTO `sys_oper_log` VALUES (6579, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"online\",\"orderNum\":\"2\",\"menuName\":\"爬虫日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"reptileLog\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 16:30:22'); INSERT INTO `sys_oper_log` VALUES (6580, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"online\",\"orderNum\":\"2\",\"menuName\":\"爬虫日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"reptileLog\",\"component\":\"business/log/reptilelog/index\",\"children\":[],\"createTime\":1645086622000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2081,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 16:30:45'); INSERT INTO `sys_oper_log` VALUES (6581, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645085029000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 16:31:48'); INSERT INTO `sys_oper_log` VALUES (6582, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 16:03:49\"}}', 0, '', '2022-02-17 16:31:50'); INSERT INTO `sys_oper_log` VALUES (6583, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"online\",\"orderNum\":\"2\",\"menuName\":\"爬虫日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"reptileLog\",\"component\":\"business/log/reptilelog/index\",\"children\":[],\"createTime\":1645086622000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2081,\"menuType\":\"C\",\"perms\":\"log:webmagicLog:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 16:55:43'); INSERT INTO `sys_oper_log` VALUES (6584, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"爬虫日志删除按钮\",\"params\":{},\"parentId\":2081,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"log:webmagicLog:remove\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 16:56:06'); INSERT INTO `sys_oper_log` VALUES (6585, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"2\",\"menuName\":\"爬虫日志导出按钮\",\"params\":{},\"parentId\":2081,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"log:webmagicLog:export\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 16:56:27'); INSERT INTO `sys_oper_log` VALUES (6586, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 16:38:47\"}}', 0, '', '2022-02-17 17:01:33'); INSERT INTO `sys_oper_log` VALUES (6587, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645087127000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 17:01:33'); INSERT INTO `sys_oper_log` VALUES (6588, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 16:38:47\"}}', 0, '', '2022-02-17 17:03:52'); INSERT INTO `sys_oper_log` VALUES (6589, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645087127000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 17:03:52'); INSERT INTO `sys_oper_log` VALUES (6590, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 16:38:47\"}}', 0, '', '2022-02-17 17:04:24'); INSERT INTO `sys_oper_log` VALUES (6591, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645087127000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 17:04:24'); INSERT INTO `sys_oper_log` VALUES (6592, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645087127000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 17:06:08'); INSERT INTO `sys_oper_log` VALUES (6593, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 16:38:47\"}}', 0, '', '2022-02-17 17:06:08'); INSERT INTO `sys_oper_log` VALUES (6594, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645087127000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 17:09:25'); INSERT INTO `sys_oper_log` VALUES (6595, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 16:38:47\"}}', 0, '', '2022-02-17 17:09:26'); INSERT INTO `sys_oper_log` VALUES (6596, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645087127000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 17:10:52'); INSERT INTO `sys_oper_log` VALUES (6597, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 16:38:47\"}}', 0, '', '2022-02-17 17:10:52'); INSERT INTO `sys_oper_log` VALUES (6598, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:11:44'); INSERT INTO `sys_oper_log` VALUES (6599, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:11:44'); INSERT INTO `sys_oper_log` VALUES (6600, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:13:04'); INSERT INTO `sys_oper_log` VALUES (6601, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:13:04'); INSERT INTO `sys_oper_log` VALUES (6602, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:13:58'); INSERT INTO `sys_oper_log` VALUES (6603, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:13:58'); INSERT INTO `sys_oper_log` VALUES (6604, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:15:50'); INSERT INTO `sys_oper_log` VALUES (6605, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:15:50'); INSERT INTO `sys_oper_log` VALUES (6606, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:17:30'); INSERT INTO `sys_oper_log` VALUES (6607, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:17:30'); INSERT INTO `sys_oper_log` VALUES (6608, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:17:49'); INSERT INTO `sys_oper_log` VALUES (6609, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:17:49'); INSERT INTO `sys_oper_log` VALUES (6610, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:17:55'); INSERT INTO `sys_oper_log` VALUES (6611, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:17:55'); INSERT INTO `sys_oper_log` VALUES (6612, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:18:05'); INSERT INTO `sys_oper_log` VALUES (6613, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:18:05'); INSERT INTO `sys_oper_log` VALUES (6614, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:18:41'); INSERT INTO `sys_oper_log` VALUES (6615, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:18:41'); INSERT INTO `sys_oper_log` VALUES (6616, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:18:52'); INSERT INTO `sys_oper_log` VALUES (6617, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:18:52'); INSERT INTO `sys_oper_log` VALUES (6618, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:19:11'); INSERT INTO `sys_oper_log` VALUES (6619, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:19:11'); INSERT INTO `sys_oper_log` VALUES (6620, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:19:24'); INSERT INTO `sys_oper_log` VALUES (6621, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:19:24'); INSERT INTO `sys_oper_log` VALUES (6622, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:19:45'); INSERT INTO `sys_oper_log` VALUES (6623, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:19:45'); INSERT INTO `sys_oper_log` VALUES (6624, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645089104859,\"humidity\":\"93\",\"id\":1494238123285151745,\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:20:41'); INSERT INTO `sys_oper_log` VALUES (6625, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:20:41'); INSERT INTO `sys_oper_log` VALUES (6626, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:22:31'); INSERT INTO `sys_oper_log` VALUES (6627, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:22:31'); INSERT INTO `sys_oper_log` VALUES (6628, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:26:50'); INSERT INTO `sys_oper_log` VALUES (6629, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:26:50'); INSERT INTO `sys_oper_log` VALUES (6630, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:28:04'); INSERT INTO `sys_oper_log` VALUES (6631, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:28:04'); INSERT INTO `sys_oper_log` VALUES (6632, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:28:52'); INSERT INTO `sys_oper_log` VALUES (6633, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:28:52'); INSERT INTO `sys_oper_log` VALUES (6634, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:29:07'); INSERT INTO `sys_oper_log` VALUES (6635, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:29:07'); INSERT INTO `sys_oper_log` VALUES (6636, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:29:57'); INSERT INTO `sys_oper_log` VALUES (6637, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:29:58'); INSERT INTO `sys_oper_log` VALUES (6638, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:31:34'); INSERT INTO `sys_oper_log` VALUES (6639, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:31:34'); INSERT INTO `sys_oper_log` VALUES (6640, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645088912000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 17:31:42'); INSERT INTO `sys_oper_log` VALUES (6641, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 17:08:32\"}}', 0, '', '2022-02-17 17:31:42'); INSERT INTO `sys_oper_log` VALUES (6642, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645096123000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 19:25:42'); INSERT INTO `sys_oper_log` VALUES (6643, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:08:43\"}}', 0, '', '2022-02-17 19:25:42'); INSERT INTO `sys_oper_log` VALUES (6644, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645097150643,\"en\":\"A maiden with many wooers often chooses the worst.\",\"id\":1494271869753360385,\"zh\":\"求婚者多的少女往往选中最差的郎君.\"}}', 0, '', '2022-02-17 19:25:50'); INSERT INTO `sys_oper_log` VALUES (6645, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645096123000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 19:30:28'); INSERT INTO `sys_oper_log` VALUES (6646, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:08:43\"}}', 0, '', '2022-02-17 19:30:29'); INSERT INTO `sys_oper_log` VALUES (6647, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:08:43\"}}', 0, '', '2022-02-17 19:30:51'); INSERT INTO `sys_oper_log` VALUES (6648, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645096123000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 19:30:51'); INSERT INTO `sys_oper_log` VALUES (6649, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:08:43\"}}', 0, '', '2022-02-17 19:32:35'); INSERT INTO `sys_oper_log` VALUES (6650, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645096123000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-17 19:32:35'); INSERT INTO `sys_oper_log` VALUES (6651, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 19:37:37'); INSERT INTO `sys_oper_log` VALUES (6652, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645097857159,\"humidity\":\"92\",\"id\":1494274833113022466,\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 19:37:37'); INSERT INTO `sys_oper_log` VALUES (6653, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645097857159,\"humidity\":\"92\",\"id\":1494274833113022466,\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 19:38:43'); INSERT INTO `sys_oper_log` VALUES (6654, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 19:38:43'); INSERT INTO `sys_oper_log` VALUES (6655, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645097857159,\"humidity\":\"92\",\"id\":1494274833113022466,\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 19:38:55'); INSERT INTO `sys_oper_log` VALUES (6656, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 19:38:55'); INSERT INTO `sys_oper_log` VALUES (6657, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645097857159,\"humidity\":\"92\",\"id\":1494274833113022466,\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 19:41:15'); INSERT INTO `sys_oper_log` VALUES (6658, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 19:41:15'); INSERT INTO `sys_oper_log` VALUES (6659, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645097857159,\"humidity\":\"92\",\"id\":1494274833113022466,\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 19:45:48'); INSERT INTO `sys_oper_log` VALUES (6660, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 19:45:48'); INSERT INTO `sys_oper_log` VALUES (6661, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:01:33'); INSERT INTO `sys_oper_log` VALUES (6662, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 20:01:33'); INSERT INTO `sys_oper_log` VALUES (6663, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:01:53'); INSERT INTO `sys_oper_log` VALUES (6664, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 20:01:53'); INSERT INTO `sys_oper_log` VALUES (6665, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:03:12'); INSERT INTO `sys_oper_log` VALUES (6666, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 20:03:12'); INSERT INTO `sys_oper_log` VALUES (6667, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:03:15'); INSERT INTO `sys_oper_log` VALUES (6668, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 20:03:16'); INSERT INTO `sys_oper_log` VALUES (6669, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:03:21'); INSERT INTO `sys_oper_log` VALUES (6670, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 20:03:22'); INSERT INTO `sys_oper_log` VALUES (6671, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:06:21'); INSERT INTO `sys_oper_log` VALUES (6672, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 20:06:21'); INSERT INTO `sys_oper_log` VALUES (6673, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:07:40'); INSERT INTO `sys_oper_log` VALUES (6674, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 20:07:41'); INSERT INTO `sys_oper_log` VALUES (6675, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645097631000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:11:31'); INSERT INTO `sys_oper_log` VALUES (6676, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 19:33:52\"}}', 0, '', '2022-02-17 20:11:31'); INSERT INTO `sys_oper_log` VALUES (6677, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:12:05'); INSERT INTO `sys_oper_log` VALUES (6678, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645099925723,\"humidity\":\"93\",\"id\":1494283509307670530,\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:12:05'); INSERT INTO `sys_oper_log` VALUES (6679, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645099925723,\"humidity\":\"93\",\"id\":1494283509307670530,\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:12:26'); INSERT INTO `sys_oper_log` VALUES (6680, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:12:26'); INSERT INTO `sys_oper_log` VALUES (6681, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:14:25'); INSERT INTO `sys_oper_log` VALUES (6682, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645099925723,\"humidity\":\"93\",\"id\":1494283509307670530,\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:14:25'); INSERT INTO `sys_oper_log` VALUES (6683, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Work hard!Work will save you. Work is the only thing that will see you through this.\",\"createTime\":1645100089343,\"dataId\":3610,\"date\":1576425600000,\"id\":1494284195541942273,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-16.jpg\",\"note\":\"努力工作!工作能拯救你。埋头苦干可令你忘记痛楚。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/cec30b90ed3322f3b93703f505128b4c.mp3\"}}', 0, '', '2022-02-17 20:14:49'); INSERT INTO `sys_oper_log` VALUES (6684, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只要迩需要我,我一直都在迩能看得到我的地方。\",\"createTime\":1645100089473,\"id\":1494284196108173313,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-17 20:14:49'); INSERT INTO `sys_oper_log` VALUES (6685, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645099925723,\"humidity\":\"93\",\"id\":1494283509307670530,\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:16:16'); INSERT INTO `sys_oper_log` VALUES (6686, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:16:16'); INSERT INTO `sys_oper_log` VALUES (6687, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645099925723,\"humidity\":\"93\",\"id\":1494283509307670530,\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:16:44'); INSERT INTO `sys_oper_log` VALUES (6688, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:16:44'); INSERT INTO `sys_oper_log` VALUES (6689, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:17:53'); INSERT INTO `sys_oper_log` VALUES (6690, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645099925723,\"humidity\":\"93\",\"id\":1494283509307670530,\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:17:53'); INSERT INTO `sys_oper_log` VALUES (6691, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:29:30'); INSERT INTO `sys_oper_log` VALUES (6692, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:29:30'); INSERT INTO `sys_oper_log` VALUES (6693, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:32:15'); INSERT INTO `sys_oper_log` VALUES (6694, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:32:16'); INSERT INTO `sys_oper_log` VALUES (6695, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:32:56'); INSERT INTO `sys_oper_log` VALUES (6696, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:32:56'); INSERT INTO `sys_oper_log` VALUES (6697, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:33:55'); INSERT INTO `sys_oper_log` VALUES (6698, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:33:56'); INSERT INTO `sys_oper_log` VALUES (6699, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:34:10'); INSERT INTO `sys_oper_log` VALUES (6700, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:34:11'); INSERT INTO `sys_oper_log` VALUES (6701, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:34:35'); INSERT INTO `sys_oper_log` VALUES (6702, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:34:36'); INSERT INTO `sys_oper_log` VALUES (6703, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:34:44'); INSERT INTO `sys_oper_log` VALUES (6704, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:34:44'); INSERT INTO `sys_oper_log` VALUES (6705, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:35:19'); INSERT INTO `sys_oper_log` VALUES (6706, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:35:19'); INSERT INTO `sys_oper_log` VALUES (6707, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:36:05'); INSERT INTO `sys_oper_log` VALUES (6708, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:36:05'); INSERT INTO `sys_oper_log` VALUES (6709, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:36:53'); INSERT INTO `sys_oper_log` VALUES (6710, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:36:53'); INSERT INTO `sys_oper_log` VALUES (6711, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:38:38'); INSERT INTO `sys_oper_log` VALUES (6712, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:38:38'); INSERT INTO `sys_oper_log` VALUES (6713, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Men are like wine: some turn to vinegar, but the best improve with age.\",\"dataId\":3526,\"date\":1569340800000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-09-25.jpg\",\"note\":\"人如酒:有些会转变成醋,但出类拔萃者会随着年月增长而日渐香醇。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-09-25-day.mp3\"}}', 0, '', '2022-02-17 20:39:05'); INSERT INTO `sys_oper_log` VALUES (6714, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"英雄一怒为红颜,红颜一怒,得花钱。\",\"createTime\":1645101545444,\"id\":1494290302863802370,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-17 20:39:05'); INSERT INTO `sys_oper_log` VALUES (6715, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645099430000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 20:39:18'); INSERT INTO `sys_oper_log` VALUES (6716, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:03:50\"}}', 0, '', '2022-02-17 20:39:18'); INSERT INTO `sys_oper_log` VALUES (6717, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:40:42'); INSERT INTO `sys_oper_log` VALUES (6718, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:40:42'); INSERT INTO `sys_oper_log` VALUES (6719, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:43:05'); INSERT INTO `sys_oper_log` VALUES (6720, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:43:05'); INSERT INTO `sys_oper_log` VALUES (6721, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:47:48'); INSERT INTO `sys_oper_log` VALUES (6722, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:47:48'); INSERT INTO `sys_oper_log` VALUES (6723, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:50:30'); INSERT INTO `sys_oper_log` VALUES (6724, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:50:30'); INSERT INTO `sys_oper_log` VALUES (6725, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:52:08'); INSERT INTO `sys_oper_log` VALUES (6726, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:52:08'); INSERT INTO `sys_oper_log` VALUES (6727, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:52:13'); INSERT INTO `sys_oper_log` VALUES (6728, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:52:13'); INSERT INTO `sys_oper_log` VALUES (6729, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:52:17'); INSERT INTO `sys_oper_log` VALUES (6730, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:52:17'); INSERT INTO `sys_oper_log` VALUES (6731, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:52:20'); INSERT INTO `sys_oper_log` VALUES (6732, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:52:20'); INSERT INTO `sys_oper_log` VALUES (6733, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:55:09'); INSERT INTO `sys_oper_log` VALUES (6734, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:55:09'); INSERT INTO `sys_oper_log` VALUES (6735, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:55:43'); INSERT INTO `sys_oper_log` VALUES (6736, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:55:44'); INSERT INTO `sys_oper_log` VALUES (6737, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 20:56:12'); INSERT INTO `sys_oper_log` VALUES (6738, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 20:56:12'); INSERT INTO `sys_oper_log` VALUES (6739, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我们从一惊一乍的孩童,变成了冷冷清清的大人。\",\"createTime\":1645102745145,\"id\":1494295334774505473,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-17 20:59:05'); INSERT INTO `sys_oper_log` VALUES (6740, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"To the world you may be one person, but to one person you may be the world.\",\"createTime\":1645102745147,\"dataId\":4950,\"date\":1597766400000,\"id\":1494295334833225729,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/85f023ff577027d5225d0d23d44b2273.0b46880907bec11f6d86ed2b28181f46.jpeg\",\"note\":\"对世界而言你或许只是某个人,但对某个人而言你或许是全世界。\",\"source\":\"Dr. Seuss\",\"tts\":\"\"}}', 0, '', '2022-02-17 20:59:05'); INSERT INTO `sys_oper_log` VALUES (6741, '获取历史热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.getHistoryTopSearchByDate()', 'GET', 1, 'admin', '', '/topsearch/getHistoryTopSearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"douyinList\":[],\"baiduList\":[],\"wechatList\":[],\"allnetworkList\":[],\"weiboList\":[]}}', 0, '', '2022-02-17 20:59:57'); INSERT INTO `sys_oper_log` VALUES (6742, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"114KB\",\"imageSize\":\"1623x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb0gettj31930u0dl5.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utag2k78j31c00u00vn.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfx9yh2j31c00u0tgc.jpg\"},{\"imageFileLength\":\"108KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utaz82r4j31c00u0dio.jpg\"},{\"imageFileLength\":\"309KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dyrb0cej31c00u0wya.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utanqnghj31c00u041y.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbey4maj31c00u0jvd.jpg\"},{\"imageFileLength\":\"237KB\",\"imageSize\":\"1440x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf6m5dzj31400p00z1.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7p0lzj31c00u00wc.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq58noj7j31c00u0tdi.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-17 21:01:53'); INSERT INTO `sys_oper_log` VALUES (6743, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 21:04:38'); INSERT INTO `sys_oper_log` VALUES (6744, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:04:38'); INSERT INTO `sys_oper_log` VALUES (6745, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 21:05:26'); INSERT INTO `sys_oper_log` VALUES (6746, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:05:26'); INSERT INTO `sys_oper_log` VALUES (6747, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:06:44'); INSERT INTO `sys_oper_log` VALUES (6748, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 21:06:44'); INSERT INTO `sys_oper_log` VALUES (6749, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 20:38:49\"}}', 0, '', '2022-02-17 21:06:50'); INSERT INTO `sys_oper_log` VALUES (6750, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:06:50'); INSERT INTO `sys_oper_log` VALUES (6751, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:13:46'); INSERT INTO `sys_oper_log` VALUES (6752, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:13:50'); INSERT INTO `sys_oper_log` VALUES (6753, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:13:53'); INSERT INTO `sys_oper_log` VALUES (6754, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:13:53'); INSERT INTO `sys_oper_log` VALUES (6755, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:14:00'); INSERT INTO `sys_oper_log` VALUES (6756, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:14:00'); INSERT INTO `sys_oper_log` VALUES (6757, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:14:06'); INSERT INTO `sys_oper_log` VALUES (6758, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:14:06'); INSERT INTO `sys_oper_log` VALUES (6759, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:14:09'); INSERT INTO `sys_oper_log` VALUES (6760, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:14:10'); INSERT INTO `sys_oper_log` VALUES (6761, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645101529000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:14:31'); INSERT INTO `sys_oper_log` VALUES (6762, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:14:32'); INSERT INTO `sys_oper_log` VALUES (6763, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:15:02'); INSERT INTO `sys_oper_log` VALUES (6764, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645103702292,\"humidity\":\"93\",\"id\":1494299349339996162,\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:15:02'); INSERT INTO `sys_oper_log` VALUES (6765, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:15:07'); INSERT INTO `sys_oper_log` VALUES (6766, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645103702292,\"humidity\":\"93\",\"id\":1494299349339996162,\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:15:07'); INSERT INTO `sys_oper_log` VALUES (6767, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645103702292,\"humidity\":\"93\",\"id\":1494299349339996162,\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:15:16'); INSERT INTO `sys_oper_log` VALUES (6768, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:15:16'); INSERT INTO `sys_oper_log` VALUES (6769, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645103702292,\"humidity\":\"93\",\"id\":1494299349339996162,\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:15:19'); INSERT INTO `sys_oper_log` VALUES (6770, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:15:19'); INSERT INTO `sys_oper_log` VALUES (6771, 'API日志', 5, 'com.xjs.apilog.controller.ApiLogController.export()', 'POST', 1, 'admin', '', '/apilog/export', '127.0.0.1', '', '{\"apiName\":\"\",\"method\":\"Get\",\"isSuccess\":1}', '', 0, '', '2022-02-17 21:15:49'); INSERT INTO `sys_oper_log` VALUES (6772, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:18:55'); INSERT INTO `sys_oper_log` VALUES (6773, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645103702292,\"humidity\":\"93\",\"id\":1494299349339996162,\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:18:55'); INSERT INTO `sys_oper_log` VALUES (6774, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645103702292,\"humidity\":\"93\",\"id\":1494299349339996162,\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:19:24'); INSERT INTO `sys_oper_log` VALUES (6775, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:19:24'); INSERT INTO `sys_oper_log` VALUES (6776, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:19:37'); INSERT INTO `sys_oper_log` VALUES (6777, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645103702292,\"humidity\":\"93\",\"id\":1494299349339996162,\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:19:37'); INSERT INTO `sys_oper_log` VALUES (6778, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645103702292,\"humidity\":\"93\",\"id\":1494299349339996162,\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:20:05'); INSERT INTO `sys_oper_log` VALUES (6779, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:20:05'); INSERT INTO `sys_oper_log` VALUES (6780, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:22:06'); INSERT INTO `sys_oper_log` VALUES (6781, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645103702292,\"humidity\":\"93\",\"id\":1494299349339996162,\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:22:06'); INSERT INTO `sys_oper_log` VALUES (6782, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645103702292,\"humidity\":\"93\",\"id\":1494299349339996162,\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:24:50'); INSERT INTO `sys_oper_log` VALUES (6783, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:24:50'); INSERT INTO `sys_oper_log` VALUES (6784, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:25:02'); INSERT INTO `sys_oper_log` VALUES (6785, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:25:02'); INSERT INTO `sys_oper_log` VALUES (6786, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:25:21'); INSERT INTO `sys_oper_log` VALUES (6787, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:25:22'); INSERT INTO `sys_oper_log` VALUES (6788, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:26:10'); INSERT INTO `sys_oper_log` VALUES (6789, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:26:10'); INSERT INTO `sys_oper_log` VALUES (6790, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:28:58'); INSERT INTO `sys_oper_log` VALUES (6791, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:28:58'); INSERT INTO `sys_oper_log` VALUES (6792, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:29:00'); INSERT INTO `sys_oper_log` VALUES (6793, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:29:01'); INSERT INTO `sys_oper_log` VALUES (6794, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:29:40'); INSERT INTO `sys_oper_log` VALUES (6795, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:29:40'); INSERT INTO `sys_oper_log` VALUES (6796, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:30:17'); INSERT INTO `sys_oper_log` VALUES (6797, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:30:17'); INSERT INTO `sys_oper_log` VALUES (6798, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645103316000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 21:31:37'); INSERT INTO `sys_oper_log` VALUES (6799, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:08:37\"}}', 0, '', '2022-02-17 21:31:38'); INSERT INTO `sys_oper_log` VALUES (6800, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In life, it\'s important to distinguish between need and want.\",\"createTime\":1645104758471,\"dataId\":3813,\"date\":1593792000000,\"id\":1494303779321937922,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/124523780a8b6bdf7e346f57e6b66fe5.png\",\"note\":\"生活中要分清楚什么是自己想要的,什么是自己需要的。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/6eeefa56f1a1ebab09fe540ae687eea7.mp3\"}}', 0, '', '2022-02-17 21:32:38'); INSERT INTO `sys_oper_log` VALUES (6801, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天打单子赚了56 给你转了52自己留了4块钱 我花两块买了两包泡面 用剩下的两块钱买了一瓶矿泉水 自己烧水泡面吃 而你用那52块钱想都没想的给你别的哥哥买了皮肤 我太开心了 因为你用上我的钱了 以后我要赚更多的钱给你\",\"createTime\":1645104758770,\"id\":1494303780580229121,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-17 21:32:38'); INSERT INTO `sys_oper_log` VALUES (6802, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"今天打单子赚了56 给你转了52自己留了4块钱 我花两块买了两包泡面 用剩下的两块钱买了一瓶矿泉水 自己烧水泡面吃 而你用那52块钱想都没想的给你别的哥哥买了皮肤 我太开心了 因为你用上我的钱了 以后我要赚更多的钱给你\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Today, I earned 56 yuan from making the list, transferred 52 yuan to you, and left 4 yuan for myself. I spent two yuan on two bags of instant noodles, and used the remaining two yuan to buy a bottle of mineral water to cook instant noodles by myself. But you used the 52 yuan to buy skin for your other brothers. I\'m so happy because I want to make more money for you after you use my money\",\"src\":\"今天打单子赚了56 给你转了52自己留了4块钱 我花两块买了两包泡面 用剩下的两块钱买了一瓶矿泉水 自己烧水泡面吃 而你用那52块钱想都没想的给你别的哥哥买了皮肤 我太开心了 因为你用上我的钱了 以后我要赚更多的钱给你\"}]}}', 0, '', '2022-02-17 21:32:47'); INSERT INTO `sys_oper_log` VALUES (6803, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"看背影迷倒千军万马,转过头吓退百万雄师。\",\"createTime\":1645104771703,\"id\":1494303834779025409,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-17 21:32:51'); INSERT INTO `sys_oper_log` VALUES (6804, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"看背影迷倒千军万马,转过头吓退百万雄师。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Looking at his back, he dazzled thousands of troops and horses, turned his head and scared away millions of heroes.\",\"src\":\"看背影迷倒千军万马,转过头吓退百万雄师。\"}]}}', 0, '', '2022-02-17 21:32:56'); INSERT INTO `sys_oper_log` VALUES (6805, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"中英文\",\"top\":2,\"createTime\":1645104859840,\"englishWord\":\"Chinese and English\",\"isCollect\":1,\"id\":1494304204494385154,\"sort\":0,\"content\":\"中英文\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:34:19'); INSERT INTO `sys_oper_log` VALUES (6806, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494304204494385154', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:34:44'); INSERT INTO `sys_oper_log` VALUES (6807, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"单词\",\"top\":2,\"createTime\":1645104893221,\"englishWord\":\"The word\",\"isCollect\":1,\"id\":1494304344504446978,\"sort\":0,\"content\":\"单词\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:34:53'); INSERT INTO `sys_oper_log` VALUES (6808, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645104895186,\"en\":\"Enjoy your meal\",\"id\":1494304352750403586,\"zh\":\"请慢慢享用吧。\"}}', 0, '', '2022-02-17 21:34:55'); INSERT INTO `sys_oper_log` VALUES (6809, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"单词\",\"top\":2,\"createTime\":1645104893000,\"englishWord\":\"The word\",\"isCollect\":1,\"id\":1494304344504446978,\"sort\":2,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:34:59'); INSERT INTO `sys_oper_log` VALUES (6810, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494304344504446978', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:35:01'); INSERT INTO `sys_oper_log` VALUES (6811, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":4,\"content\":\"排序 4\"}', '', 1, '不能包含其他符号!!!', '2022-02-17 21:35:08'); INSERT INTO `sys_oper_log` VALUES (6812, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":4,\"content\":\"排序 \"}', '', 1, '不能包含其他符号!!!', '2022-02-17 21:35:11'); INSERT INTO `sys_oper_log` VALUES (6813, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"排序\",\"top\":2,\"createTime\":1645104914931,\"englishWord\":\"sort\",\"isCollect\":1,\"id\":1494304435537620994,\"sort\":4,\"content\":\"排序\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:35:14'); INSERT INTO `sys_oper_log` VALUES (6814, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"制定\",\"top\":2,\"createTime\":1645104938953,\"englishWord\":\"formulate\",\"isCollect\":1,\"id\":1494304536318357506,\"sort\":100,\"content\":\"制定\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:35:38'); INSERT INTO `sys_oper_log` VALUES (6815, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"createTime\":1645104947101,\"englishWord\":\"good\",\"isCollect\":1,\"id\":1494304570489352194,\"sort\":0,\"content\":\"好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:35:47'); INSERT INTO `sys_oper_log` VALUES (6816, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:33:57\"}}', 0, '', '2022-02-17 21:35:54'); INSERT INTO `sys_oper_log` VALUES (6817, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645104954732,\"humidity\":\"93\",\"id\":1494304602475069442,\"province\":\"江西\",\"reporttime\":1645104837000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 21:35:54'); INSERT INTO `sys_oper_log` VALUES (6818, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"createTime\":1645104967438,\"englishWord\":\"good\",\"isCollect\":1,\"id\":1494304655780524034,\"sort\":100,\"content\":\"好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:36:07'); INSERT INTO `sys_oper_log` VALUES (6819, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494304536318357506', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:36:18'); INSERT INTO `sys_oper_log` VALUES (6820, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 21:33:57\"}}', 0, '', '2022-02-17 21:36:20'); INSERT INTO `sys_oper_log` VALUES (6821, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645104954732,\"humidity\":\"93\",\"id\":1494304602475069442,\"province\":\"江西\",\"reporttime\":1645104837000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-02-17 21:36:20'); INSERT INTO `sys_oper_log` VALUES (6822, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"排序\",\"top\":2,\"createTime\":1645104915000,\"englishWord\":\"sort\",\"isCollect\":1,\"id\":1494304435537620994,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:36:31'); INSERT INTO `sys_oper_log` VALUES (6823, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494304570489352194', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:36:35'); INSERT INTO `sys_oper_log` VALUES (6824, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"createTime\":1645105003243,\"englishWord\":\"good\",\"isCollect\":1,\"id\":1494304805965967362,\"sort\":0,\"content\":\"好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:36:43'); INSERT INTO `sys_oper_log` VALUES (6825, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494304655780524034', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:36:47'); INSERT INTO `sys_oper_log` VALUES (6826, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"createTime\":1645105014120,\"englishWord\":\"good\",\"isCollect\":1,\"id\":1494304851541274625,\"sort\":0,\"content\":\"好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:36:54'); INSERT INTO `sys_oper_log` VALUES (6827, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494304851541274625', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-17 21:36:57'); INSERT INTO `sys_oper_log` VALUES (6828, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"good\"}', '', 1, '该单词已存在!!!!', '2022-02-17 21:37:03'); INSERT INTO `sys_oper_log` VALUES (6829, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"good\"}', '', 1, '该单词已存在!!!!', '2022-02-17 21:37:09'); INSERT INTO `sys_oper_log` VALUES (6830, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1494310691134988289', '127.0.0.1', '', '1494310691134988289', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-17 22:02:58'); INSERT INTO `sys_oper_log` VALUES (6831, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-17\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-17 22:03:49\"}}', 0, '', '2022-02-17 22:04:36'); INSERT INTO `sys_oper_log` VALUES (6832, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645106676469,\"humidity\":\"93\",\"id\":1494311823970304001,\"province\":\"江西\",\"reporttime\":1645106629000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-17 22:04:36'); INSERT INTO `sys_oper_log` VALUES (6833, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":104,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-17 22:29:42'); INSERT INTO `sys_oper_log` VALUES (6834, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 08:03:50\"}}', 0, '', '2022-02-18 08:34:44'); INSERT INTO `sys_oper_log` VALUES (6835, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645144485047,\"humidity\":\"94\",\"id\":1494470404662792193,\"province\":\"江西\",\"reporttime\":1645142630000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 08:34:45'); INSERT INTO `sys_oper_log` VALUES (6836, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":104,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-18 08:37:34'); INSERT INTO `sys_oper_log` VALUES (6837, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645144724589,\"en\":\"It is while you are patiently toiling at the little tasks of life that the meaning and shape of great whole of life dawn on you.\",\"id\":1494471409349595138,\"zh\":\"在你耐心地操劳于生活的琐事的过程中,你才能领悟整个生活的伟大意义和形象.\"}}', 0, '', '2022-02-18 08:38:44'); INSERT INTO `sys_oper_log` VALUES (6838, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645144485047,\"humidity\":\"94\",\"id\":1494470404662792193,\"province\":\"江西\",\"reporttime\":1645142630000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 08:41:10'); INSERT INTO `sys_oper_log` VALUES (6839, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 08:03:50\"}}', 0, '', '2022-02-18 08:41:10'); INSERT INTO `sys_oper_log` VALUES (6840, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有了面包和房子以后 两个人扶持走过一生 这就是爱情。\",\"createTime\":1645144907302,\"id\":1494472175724433410,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-18 08:41:47'); INSERT INTO `sys_oper_log` VALUES (6841, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"At this moment, I miss you more than usual.\",\"dataId\":4289,\"date\":1634918400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/51137c1997b116d87e5fb03f97520155.png\",\"note\":\"在这一刻,我比平时更想你。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/74737bb1b424cb23e845c23e15cc19a4.mp3\"}}', 0, '', '2022-02-18 08:41:48'); INSERT INTO `sys_oper_log` VALUES (6842, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 08:03:50\"}}', 0, '', '2022-02-18 08:42:09'); INSERT INTO `sys_oper_log` VALUES (6843, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645144485047,\"humidity\":\"94\",\"id\":1494470404662792193,\"province\":\"江西\",\"reporttime\":1645142630000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 08:42:10'); INSERT INTO `sys_oper_log` VALUES (6844, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"createTime\":1645145566992,\"englishWord\":\"good\",\"isCollect\":1,\"id\":1494474942664843266,\"sort\":0,\"content\":\"好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 08:52:47'); INSERT INTO `sys_oper_log` VALUES (6845, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-02-18 08:52:55'); INSERT INTO `sys_oper_log` VALUES (6846, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-02-18 08:52:55'); INSERT INTO `sys_oper_log` VALUES (6847, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-02-18 08:53:00'); INSERT INTO `sys_oper_log` VALUES (6848, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-02-18 08:53:00'); INSERT INTO `sys_oper_log` VALUES (6849, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 08:38:42\"}}', 0, '', '2022-02-18 08:53:14'); INSERT INTO `sys_oper_log` VALUES (6850, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645144722000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 08:53:15'); INSERT INTO `sys_oper_log` VALUES (6851, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645144722000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 08:55:02'); INSERT INTO `sys_oper_log` VALUES (6852, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 08:38:42\"}}', 0, '', '2022-02-18 08:55:02'); INSERT INTO `sys_oper_log` VALUES (6853, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"好\",\"top\":2,\"createTime\":1645145711987,\"englishWord\":\"good\",\"isCollect\":1,\"id\":1494475550788591618,\"sort\":0,\"content\":\"好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 08:55:11'); INSERT INTO `sys_oper_log` VALUES (6854, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494475550788591618', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 08:55:15'); INSERT INTO `sys_oper_log` VALUES (6855, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645144722000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 08:56:00'); INSERT INTO `sys_oper_log` VALUES (6856, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 08:38:42\"}}', 0, '', '2022-02-18 08:56:00'); INSERT INTO `sys_oper_log` VALUES (6857, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645144722000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 08:56:04'); INSERT INTO `sys_oper_log` VALUES (6858, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 08:38:42\"}}', 0, '', '2022-02-18 08:56:04'); INSERT INTO `sys_oper_log` VALUES (6859, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494474942664843266', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 08:56:06'); INSERT INTO `sys_oper_log` VALUES (6860, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645144722000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 08:56:08'); INSERT INTO `sys_oper_log` VALUES (6861, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 08:38:42\"}}', 0, '', '2022-02-18 08:56:08'); INSERT INTO `sys_oper_log` VALUES (6862, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645144722000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 08:56:10'); INSERT INTO `sys_oper_log` VALUES (6863, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 08:38:42\"}}', 0, '', '2022-02-18 08:56:10'); INSERT INTO `sys_oper_log` VALUES (6864, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"好\"}', '', 1, '该单词已存在!!!!', '2022-02-18 08:56:19'); INSERT INTO `sys_oper_log` VALUES (6865, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"好\"}', '', 1, '该单词已存在!!!!', '2022-02-18 08:56:23'); INSERT INTO `sys_oper_log` VALUES (6866, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"95\",\"province\":\"江西\",\"reporttime\":1645144722000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 08:59:40'); INSERT INTO `sys_oper_log` VALUES (6867, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 08:38:42\"}}', 0, '', '2022-02-18 08:59:40'); INSERT INTO `sys_oper_log` VALUES (6868, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"怒\",\"top\":2,\"createTime\":1645145991952,\"englishWord\":\"anger\",\"isCollect\":1,\"id\":1494476725021745153,\"sort\":100,\"content\":\"怒\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 08:59:51'); INSERT INTO `sys_oper_log` VALUES (6869, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494304805965967362', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 08:59:56'); INSERT INTO `sys_oper_log` VALUES (6870, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645146000751,\"en\":\"What is bred in the bone will never come out of the flesh.\",\"id\":1494476761927421954,\"zh\":\"江山好改,本性难移。\"}}', 0, '', '2022-02-18 09:00:00'); INSERT INTO `sys_oper_log` VALUES (6871, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494476725021745153', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 09:00:05'); INSERT INTO `sys_oper_log` VALUES (6872, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"排序\",\"top\":2,\"createTime\":1645104915000,\"englishWord\":\"sort\",\"isCollect\":1,\"id\":1494304435537620994,\"sort\":1,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 09:00:22'); INSERT INTO `sys_oper_log` VALUES (6873, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"排序\",\"top\":2,\"createTime\":1645104915000,\"englishWord\":\"sort\",\"isCollect\":1,\"id\":1494304435537620994,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 09:00:26'); INSERT INTO `sys_oper_log` VALUES (6874, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"不好\",\"top\":2,\"createTime\":1645146037177,\"englishWord\":\"Not good\",\"isCollect\":1,\"id\":1494476914755280898,\"sort\":100,\"content\":\"不好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 09:00:37'); INSERT INTO `sys_oper_log` VALUES (6875, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494476914755280898', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 09:00:43'); INSERT INTO `sys_oper_log` VALUES (6876, '英语单词', 5, 'com.xjs.word.controller.EnglishWordController.export()', 'POST', 1, 'admin', '', '/word/export', '127.0.0.1', '', '{\"englishWord\":\"sort\"}', '', 0, '', '2022-02-18 09:00:51'); INSERT INTO `sys_oper_log` VALUES (6877, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"排序\",\"top\":2,\"createTime\":1645104915000,\"englishWord\":\"sort\",\"isCollect\":1,\"id\":1494304435537620994,\"sort\":1,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 09:01:14'); INSERT INTO `sys_oper_log` VALUES (6878, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"排序\",\"top\":2,\"createTime\":1645104915000,\"englishWord\":\"sort\",\"isCollect\":1,\"id\":1494304435537620994,\"sort\":2,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 09:01:24'); INSERT INTO `sys_oper_log` VALUES (6879, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"排序\",\"top\":2,\"createTime\":1645104915000,\"englishWord\":\"sort\",\"isCollect\":1,\"id\":1494304435537620994,\"sort\":0,\"content\":\"\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 09:01:28'); INSERT INTO `sys_oper_log` VALUES (6880, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":55}}', 0, '', '2022-02-18 09:08:16'); INSERT INTO `sys_oper_log` VALUES (6881, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645146760749,\"humidity\":\"94\",\"id\":1494479949606850561,\"province\":\"江西\",\"reporttime\":1645146531000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 09:12:40'); INSERT INTO `sys_oper_log` VALUES (6882, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:08:51\"}}', 0, '', '2022-02-18 09:12:41'); INSERT INTO `sys_oper_log` VALUES (6883, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645146531000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 09:31:17'); INSERT INTO `sys_oper_log` VALUES (6884, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:08:51\"}}', 0, '', '2022-02-18 09:31:17'); INSERT INTO `sys_oper_log` VALUES (6885, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you think you can, you can. And if you think you can\'t, you\'re right.\",\"createTime\":1645147881658,\"dataId\":3515,\"date\":1568736000000,\"id\":1494484651027369985,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-09-18.jpg\",\"note\":\"如果你认为自己行,你就一定行。如果你认为自己不行,那你是对的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-09-18-day.mp3\"}}', 0, '', '2022-02-18 09:31:21'); INSERT INTO `sys_oper_log` VALUES (6886, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"很多事情、我并不是不知道,不在意,只是不想斤斤计较不想戳穿你。\",\"createTime\":1645147881723,\"id\":1494484651354525698,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-02-18 09:31:21'); INSERT INTO `sys_oper_log` VALUES (6887, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 09:41:33'); INSERT INTO `sys_oper_log` VALUES (6888, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 09:41:34'); INSERT INTO `sys_oper_log` VALUES (6889, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 09:45:14'); INSERT INTO `sys_oper_log` VALUES (6890, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 09:45:15'); INSERT INTO `sys_oper_log` VALUES (6891, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"From my father\'s perspective, the sweep of the sweeping robot is soulless.\",\"createTime\":1645148769323,\"dataId\":4254,\"date\":1631894400000,\"id\":1494488374214561793,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/7e50e55800410350859f5542563481ca.png\",\"note\":\"在我爸看来,扫地机器人扫的地,没有灵魂。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/9c7c21487d4de28400941c84cfefee08.mp3\"}}', 0, '', '2022-02-18 09:46:09'); INSERT INTO `sys_oper_log` VALUES (6892, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"跟你谈钱的老板才是好人,跟你谈理想的,都TM不想给你钱!\",\"createTime\":1645148769746,\"id\":1494488375976169474,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-18 09:46:09'); INSERT INTO `sys_oper_log` VALUES (6893, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 09:49:05'); INSERT INTO `sys_oper_log` VALUES (6894, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 09:49:06'); INSERT INTO `sys_oper_log` VALUES (6895, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 09:49:11'); INSERT INTO `sys_oper_log` VALUES (6896, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 09:49:11'); INSERT INTO `sys_oper_log` VALUES (6897, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 09:50:53'); INSERT INTO `sys_oper_log` VALUES (6898, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 09:50:54'); INSERT INTO `sys_oper_log` VALUES (6899, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"真爱过的人很难再恋爱.\",\"createTime\":1645149085262,\"id\":1494489699321024514,\"source\":\"西雅图夜未眠(Sleepless in Seattle)\",\"type\":3}}', 0, '', '2022-02-18 09:51:25'); INSERT INTO `sys_oper_log` VALUES (6900, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There is a holiness to the heart’s affections.\",\"createTime\":1645149085266,\"dataId\":3965,\"date\":1606924800000,\"id\":1494489699379744769,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3204c710a0c94f5a040b1dffa442a40d.png\",\"note\":\"内心深处的爱意是神圣的。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/9b1437c91206c0803e229fc7f24b19d9.mp3\"}}', 0, '', '2022-02-18 09:51:25'); INSERT INTO `sys_oper_log` VALUES (6901, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 09:52:31'); INSERT INTO `sys_oper_log` VALUES (6902, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 09:52:32'); INSERT INTO `sys_oper_log` VALUES (6903, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 09:54:37'); INSERT INTO `sys_oper_log` VALUES (6904, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 09:54:37'); INSERT INTO `sys_oper_log` VALUES (6905, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 09:57:56'); INSERT INTO `sys_oper_log` VALUES (6906, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 09:57:56'); INSERT INTO `sys_oper_log` VALUES (6907, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 09:59:49'); INSERT INTO `sys_oper_log` VALUES (6908, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 09:59:49'); INSERT INTO `sys_oper_log` VALUES (6909, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 10:01:00'); INSERT INTO `sys_oper_log` VALUES (6910, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 10:01:01'); INSERT INTO `sys_oper_log` VALUES (6911, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645148037000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 10:01:06'); INSERT INTO `sys_oper_log` VALUES (6912, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 09:33:57\"}}', 0, '', '2022-02-18 10:01:06'); INSERT INTO `sys_oper_log` VALUES (6913, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:04:11'); INSERT INTO `sys_oper_log` VALUES (6914, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:04:12'); INSERT INTO `sys_oper_log` VALUES (6915, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:05:05'); INSERT INTO `sys_oper_log` VALUES (6916, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:05:06'); INSERT INTO `sys_oper_log` VALUES (6917, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:06:03'); INSERT INTO `sys_oper_log` VALUES (6918, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:06:03'); INSERT INTO `sys_oper_log` VALUES (6919, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:06:46'); INSERT INTO `sys_oper_log` VALUES (6920, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:06:47'); INSERT INTO `sys_oper_log` VALUES (6921, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:07:08'); INSERT INTO `sys_oper_log` VALUES (6922, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:07:08'); INSERT INTO `sys_oper_log` VALUES (6923, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:07:36'); INSERT INTO `sys_oper_log` VALUES (6924, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:07:36'); INSERT INTO `sys_oper_log` VALUES (6925, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:07:55'); INSERT INTO `sys_oper_log` VALUES (6926, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:07:55'); INSERT INTO `sys_oper_log` VALUES (6927, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:08:04'); INSERT INTO `sys_oper_log` VALUES (6928, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:08:04'); INSERT INTO `sys_oper_log` VALUES (6929, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:08:38'); INSERT INTO `sys_oper_log` VALUES (6930, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:08:38'); INSERT INTO `sys_oper_log` VALUES (6931, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:09:10'); INSERT INTO `sys_oper_log` VALUES (6932, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:09:10'); INSERT INTO `sys_oper_log` VALUES (6933, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:09:38'); INSERT INTO `sys_oper_log` VALUES (6934, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:09:38'); INSERT INTO `sys_oper_log` VALUES (6935, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:09:43'); INSERT INTO `sys_oper_log` VALUES (6936, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:09:43'); INSERT INTO `sys_oper_log` VALUES (6937, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"你好\",\"top\":2,\"createTime\":1645150200296,\"englishWord\":\"hello\",\"isCollect\":1,\"id\":1494494376133566465,\"sort\":0,\"content\":\"你好\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 10:10:00'); INSERT INTO `sys_oper_log` VALUES (6938, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1494494376133566465', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 10:10:10'); INSERT INTO `sys_oper_log` VALUES (6939, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案网-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0 3/4 * * ?\",\"jobId\":105,\"createBy\":\"admin\",\"nextValidTime\":1645153200000,\"createTime\":1645060444000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingNetworkTask.copyWritingNetwork\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-18 10:12:15'); INSERT INTO `sys_oper_log` VALUES (6940, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 10:03:50\"}}', 0, '', '2022-02-18 10:12:30'); INSERT INTO `sys_oper_log` VALUES (6941, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645149851957,\"humidity\":\"94\",\"id\":1494492915064541186,\"province\":\"江西\",\"reporttime\":1645149830000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 10:12:30'); INSERT INTO `sys_oper_log` VALUES (6942, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:33:20'); INSERT INTO `sys_oper_log` VALUES (6943, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:33:21'); INSERT INTO `sys_oper_log` VALUES (6944, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:36:02'); INSERT INTO `sys_oper_log` VALUES (6945, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:36:02'); INSERT INTO `sys_oper_log` VALUES (6946, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:37:44'); INSERT INTO `sys_oper_log` VALUES (6947, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:37:44'); INSERT INTO `sys_oper_log` VALUES (6948, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:38:43'); INSERT INTO `sys_oper_log` VALUES (6949, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:38:43'); INSERT INTO `sys_oper_log` VALUES (6950, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:38:56'); INSERT INTO `sys_oper_log` VALUES (6951, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:38:56'); INSERT INTO `sys_oper_log` VALUES (6952, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:39:08'); INSERT INTO `sys_oper_log` VALUES (6953, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:39:09'); INSERT INTO `sys_oper_log` VALUES (6954, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:39:16'); INSERT INTO `sys_oper_log` VALUES (6955, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:39:16'); INSERT INTO `sys_oper_log` VALUES (6956, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:39:50'); INSERT INTO `sys_oper_log` VALUES (6957, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:39:50'); INSERT INTO `sys_oper_log` VALUES (6958, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:39:57'); INSERT INTO `sys_oper_log` VALUES (6959, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:39:57'); INSERT INTO `sys_oper_log` VALUES (6960, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:40:06'); INSERT INTO `sys_oper_log` VALUES (6961, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:40:06'); INSERT INTO `sys_oper_log` VALUES (6962, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"读书,这个我们习以为常的平凡过程,实际上是人们心灵和上下古今一切民族的伟大智慧相结合的过程。\",\"createTime\":1645155637518,\"id\":1494517181482962945,\"source\":\"高尔基\",\"type\":4}}', 0, '', '2022-02-18 11:40:37'); INSERT INTO `sys_oper_log` VALUES (6963, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"My interest is in the future because I am going to spend the rest of my life there.\",\"createTime\":1645155637524,\"dataId\":3824,\"date\":1594742400000,\"id\":1494517181482962946,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/8efd63372e59c0f2798976dd8aa6d42f.png\",\"note\":\"我只对将来感兴趣,因为我的余生将在那儿度过。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/ff8f70a9310cae06d7253c2be6a41984.mp3\"}}', 0, '', '2022-02-18 11:40:37'); INSERT INTO `sys_oper_log` VALUES (6964, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":55}}', 0, '', '2022-02-18 11:41:05'); INSERT INTO `sys_oper_log` VALUES (6965, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:41:55'); INSERT INTO `sys_oper_log` VALUES (6966, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:41:55'); INSERT INTO `sys_oper_log` VALUES (6967, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":55}}', 0, '', '2022-02-18 11:41:58'); INSERT INTO `sys_oper_log` VALUES (6968, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":55}}', 0, '', '2022-02-18 11:41:58'); INSERT INTO `sys_oper_log` VALUES (6969, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:42:10'); INSERT INTO `sys_oper_log` VALUES (6970, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:42:10'); INSERT INTO `sys_oper_log` VALUES (6971, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:42:19'); INSERT INTO `sys_oper_log` VALUES (6972, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:42:19'); INSERT INTO `sys_oper_log` VALUES (6973, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:42:28'); INSERT INTO `sys_oper_log` VALUES (6974, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:42:28'); INSERT INTO `sys_oper_log` VALUES (6975, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":55}}', 0, '', '2022-02-18 11:42:28'); INSERT INTO `sys_oper_log` VALUES (6976, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":55}}', 0, '', '2022-02-18 11:42:45'); INSERT INTO `sys_oper_log` VALUES (6977, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":55}}', 0, '', '2022-02-18 11:42:45'); INSERT INTO `sys_oper_log` VALUES (6978, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":55}}', 0, '', '2022-02-18 11:42:45'); INSERT INTO `sys_oper_log` VALUES (6979, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:08:28\"}}', 0, '', '2022-02-18 11:43:02'); INSERT INTO `sys_oper_log` VALUES (6980, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:43:02'); INSERT INTO `sys_oper_log` VALUES (6981, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645153708000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 11:43:21'); INSERT INTO `sys_oper_log` VALUES (6982, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:43:22'); INSERT INTO `sys_oper_log` VALUES (6983, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":3,\"records\":[],\"searchCount\":true,\"size\":21,\"total\":55}}', 0, '', '2022-02-18 11:43:27'); INSERT INTO `sys_oper_log` VALUES (6984, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:43:49'); INSERT INTO `sys_oper_log` VALUES (6985, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:43:49'); INSERT INTO `sys_oper_log` VALUES (6986, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":6,\"records\":[{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2},{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":10,\"total\":55}}', 0, '', '2022-02-18 11:43:57'); INSERT INTO `sys_oper_log` VALUES (6987, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":6,\"records\":[],\"searchCount\":true,\"size\":10,\"total\":55}}', 0, '', '2022-02-18 11:43:57'); INSERT INTO `sys_oper_log` VALUES (6988, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":6,\"records\":[],\"searchCount\":true,\"size\":10,\"total\":55}}', 0, '', '2022-02-18 11:43:57'); INSERT INTO `sys_oper_log` VALUES (6989, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:44:05'); INSERT INTO `sys_oper_log` VALUES (6990, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:44:05'); INSERT INTO `sys_oper_log` VALUES (6991, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:05'); INSERT INTO `sys_oper_log` VALUES (6992, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:05'); INSERT INTO `sys_oper_log` VALUES (6993, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:05'); INSERT INTO `sys_oper_log` VALUES (6994, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:18'); INSERT INTO `sys_oper_log` VALUES (6995, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:29'); INSERT INTO `sys_oper_log` VALUES (6996, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:31'); INSERT INTO `sys_oper_log` VALUES (6997, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:32'); INSERT INTO `sys_oper_log` VALUES (6998, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:34'); INSERT INTO `sys_oper_log` VALUES (6999, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:36'); INSERT INTO `sys_oper_log` VALUES (7000, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:37'); INSERT INTO `sys_oper_log` VALUES (7001, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:37'); INSERT INTO `sys_oper_log` VALUES (7002, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:38'); INSERT INTO `sys_oper_log` VALUES (7003, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:41'); INSERT INTO `sys_oper_log` VALUES (7004, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:42'); INSERT INTO `sys_oper_log` VALUES (7005, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:42'); INSERT INTO `sys_oper_log` VALUES (7006, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:42'); INSERT INTO `sys_oper_log` VALUES (7007, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:42'); INSERT INTO `sys_oper_log` VALUES (7008, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:45'); INSERT INTO `sys_oper_log` VALUES (7009, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:45'); INSERT INTO `sys_oper_log` VALUES (7010, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:46'); INSERT INTO `sys_oper_log` VALUES (7011, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:46'); INSERT INTO `sys_oper_log` VALUES (7012, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:47'); INSERT INTO `sys_oper_log` VALUES (7013, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:49'); INSERT INTO `sys_oper_log` VALUES (7014, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:49'); INSERT INTO `sys_oper_log` VALUES (7015, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:49'); INSERT INTO `sys_oper_log` VALUES (7016, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:52'); INSERT INTO `sys_oper_log` VALUES (7017, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:53'); INSERT INTO `sys_oper_log` VALUES (7018, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:53'); INSERT INTO `sys_oper_log` VALUES (7019, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:53'); INSERT INTO `sys_oper_log` VALUES (7020, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:44:53'); INSERT INTO `sys_oper_log` VALUES (7021, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:45:04'); INSERT INTO `sys_oper_log` VALUES (7022, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:45:04'); INSERT INTO `sys_oper_log` VALUES (7023, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:45:04'); INSERT INTO `sys_oper_log` VALUES (7024, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:45:04'); INSERT INTO `sys_oper_log` VALUES (7025, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:45:05'); INSERT INTO `sys_oper_log` VALUES (7026, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:45:37'); INSERT INTO `sys_oper_log` VALUES (7027, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:45:38'); INSERT INTO `sys_oper_log` VALUES (7028, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:45:38'); INSERT INTO `sys_oper_log` VALUES (7029, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:45:47'); INSERT INTO `sys_oper_log` VALUES (7030, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:47:18'); INSERT INTO `sys_oper_log` VALUES (7031, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:47:19'); INSERT INTO `sys_oper_log` VALUES (7032, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:19'); INSERT INTO `sys_oper_log` VALUES (7033, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:19'); INSERT INTO `sys_oper_log` VALUES (7034, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:19'); INSERT INTO `sys_oper_log` VALUES (7035, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:24'); INSERT INTO `sys_oper_log` VALUES (7036, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:24'); INSERT INTO `sys_oper_log` VALUES (7037, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:25'); INSERT INTO `sys_oper_log` VALUES (7038, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:28'); INSERT INTO `sys_oper_log` VALUES (7039, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:28'); INSERT INTO `sys_oper_log` VALUES (7040, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:29'); INSERT INTO `sys_oper_log` VALUES (7041, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:30'); INSERT INTO `sys_oper_log` VALUES (7042, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:32'); INSERT INTO `sys_oper_log` VALUES (7043, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:33'); INSERT INTO `sys_oper_log` VALUES (7044, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:33'); INSERT INTO `sys_oper_log` VALUES (7045, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:34'); INSERT INTO `sys_oper_log` VALUES (7046, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:34'); INSERT INTO `sys_oper_log` VALUES (7047, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:35'); INSERT INTO `sys_oper_log` VALUES (7048, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:46'); INSERT INTO `sys_oper_log` VALUES (7049, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:47'); INSERT INTO `sys_oper_log` VALUES (7050, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:47'); INSERT INTO `sys_oper_log` VALUES (7051, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:47'); INSERT INTO `sys_oper_log` VALUES (7052, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:47:50'); INSERT INTO `sys_oper_log` VALUES (7053, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:47:50'); INSERT INTO `sys_oper_log` VALUES (7054, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:51'); INSERT INTO `sys_oper_log` VALUES (7055, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:51'); INSERT INTO `sys_oper_log` VALUES (7056, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:51'); INSERT INTO `sys_oper_log` VALUES (7057, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:51'); INSERT INTO `sys_oper_log` VALUES (7058, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:55'); INSERT INTO `sys_oper_log` VALUES (7059, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:55'); INSERT INTO `sys_oper_log` VALUES (7060, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:55'); INSERT INTO `sys_oper_log` VALUES (7061, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:55'); INSERT INTO `sys_oper_log` VALUES (7062, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:56'); INSERT INTO `sys_oper_log` VALUES (7063, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:58'); INSERT INTO `sys_oper_log` VALUES (7064, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:47:59'); INSERT INTO `sys_oper_log` VALUES (7065, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:00'); INSERT INTO `sys_oper_log` VALUES (7066, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:01'); INSERT INTO `sys_oper_log` VALUES (7067, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:01'); INSERT INTO `sys_oper_log` VALUES (7068, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:02'); INSERT INTO `sys_oper_log` VALUES (7069, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:03'); INSERT INTO `sys_oper_log` VALUES (7070, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:05'); INSERT INTO `sys_oper_log` VALUES (7071, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:06'); INSERT INTO `sys_oper_log` VALUES (7072, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:06'); INSERT INTO `sys_oper_log` VALUES (7073, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:06'); INSERT INTO `sys_oper_log` VALUES (7074, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:06'); INSERT INTO `sys_oper_log` VALUES (7075, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:37'); INSERT INTO `sys_oper_log` VALUES (7076, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:38'); INSERT INTO `sys_oper_log` VALUES (7077, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:38'); INSERT INTO `sys_oper_log` VALUES (7078, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:38'); INSERT INTO `sys_oper_log` VALUES (7079, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:38'); INSERT INTO `sys_oper_log` VALUES (7080, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:44'); INSERT INTO `sys_oper_log` VALUES (7081, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:45'); INSERT INTO `sys_oper_log` VALUES (7082, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:45'); INSERT INTO `sys_oper_log` VALUES (7083, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:48:46'); INSERT INTO `sys_oper_log` VALUES (7084, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:50:23'); INSERT INTO `sys_oper_log` VALUES (7085, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:50:23'); INSERT INTO `sys_oper_log` VALUES (7086, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:50:37'); INSERT INTO `sys_oper_log` VALUES (7087, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:50:38'); INSERT INTO `sys_oper_log` VALUES (7088, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:38'); INSERT INTO `sys_oper_log` VALUES (7089, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:38'); INSERT INTO `sys_oper_log` VALUES (7090, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:38'); INSERT INTO `sys_oper_log` VALUES (7091, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:44'); INSERT INTO `sys_oper_log` VALUES (7092, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:45'); INSERT INTO `sys_oper_log` VALUES (7093, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:45'); INSERT INTO `sys_oper_log` VALUES (7094, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:45'); INSERT INTO `sys_oper_log` VALUES (7095, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:45'); INSERT INTO `sys_oper_log` VALUES (7096, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:50'); INSERT INTO `sys_oper_log` VALUES (7097, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:50'); INSERT INTO `sys_oper_log` VALUES (7098, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:50'); INSERT INTO `sys_oper_log` VALUES (7099, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":10,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":6,\"total\":55}}', 0, '', '2022-02-18 11:50:50'); INSERT INTO `sys_oper_log` VALUES (7100, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:52:06'); INSERT INTO `sys_oper_log` VALUES (7101, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:52:06'); INSERT INTO `sys_oper_log` VALUES (7102, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:06'); INSERT INTO `sys_oper_log` VALUES (7103, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:06'); INSERT INTO `sys_oper_log` VALUES (7104, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:06'); INSERT INTO `sys_oper_log` VALUES (7105, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:06'); INSERT INTO `sys_oper_log` VALUES (7106, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:09'); INSERT INTO `sys_oper_log` VALUES (7107, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:09'); INSERT INTO `sys_oper_log` VALUES (7108, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:10'); INSERT INTO `sys_oper_log` VALUES (7109, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:10'); INSERT INTO `sys_oper_log` VALUES (7110, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:11'); INSERT INTO `sys_oper_log` VALUES (7111, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:12'); INSERT INTO `sys_oper_log` VALUES (7112, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:12'); INSERT INTO `sys_oper_log` VALUES (7113, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:12'); INSERT INTO `sys_oper_log` VALUES (7114, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:13'); INSERT INTO `sys_oper_log` VALUES (7115, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:14'); INSERT INTO `sys_oper_log` VALUES (7116, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:14'); INSERT INTO `sys_oper_log` VALUES (7117, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:14'); INSERT INTO `sys_oper_log` VALUES (7118, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:15'); INSERT INTO `sys_oper_log` VALUES (7119, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:15'); INSERT INTO `sys_oper_log` VALUES (7120, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:15'); INSERT INTO `sys_oper_log` VALUES (7121, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:16'); INSERT INTO `sys_oper_log` VALUES (7122, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:20'); INSERT INTO `sys_oper_log` VALUES (7123, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:20'); INSERT INTO `sys_oper_log` VALUES (7124, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:20'); INSERT INTO `sys_oper_log` VALUES (7125, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:20'); INSERT INTO `sys_oper_log` VALUES (7126, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:20'); INSERT INTO `sys_oper_log` VALUES (7127, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:52:20'); INSERT INTO `sys_oper_log` VALUES (7128, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:53:03'); INSERT INTO `sys_oper_log` VALUES (7129, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:53:03'); INSERT INTO `sys_oper_log` VALUES (7130, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:03'); INSERT INTO `sys_oper_log` VALUES (7131, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:03'); INSERT INTO `sys_oper_log` VALUES (7132, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:03'); INSERT INTO `sys_oper_log` VALUES (7133, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:03'); INSERT INTO `sys_oper_log` VALUES (7134, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:07'); INSERT INTO `sys_oper_log` VALUES (7135, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:08'); INSERT INTO `sys_oper_log` VALUES (7136, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:08'); INSERT INTO `sys_oper_log` VALUES (7137, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:13'); INSERT INTO `sys_oper_log` VALUES (7138, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:14'); INSERT INTO `sys_oper_log` VALUES (7139, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:15'); INSERT INTO `sys_oper_log` VALUES (7140, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:15'); INSERT INTO `sys_oper_log` VALUES (7141, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:15'); INSERT INTO `sys_oper_log` VALUES (7142, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:16'); INSERT INTO `sys_oper_log` VALUES (7143, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:16'); INSERT INTO `sys_oper_log` VALUES (7144, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:17'); INSERT INTO `sys_oper_log` VALUES (7145, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:17'); INSERT INTO `sys_oper_log` VALUES (7146, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:17'); INSERT INTO `sys_oper_log` VALUES (7147, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:18'); INSERT INTO `sys_oper_log` VALUES (7148, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:18'); INSERT INTO `sys_oper_log` VALUES (7149, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:18'); INSERT INTO `sys_oper_log` VALUES (7150, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:19'); INSERT INTO `sys_oper_log` VALUES (7151, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:20'); INSERT INTO `sys_oper_log` VALUES (7152, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:20'); INSERT INTO `sys_oper_log` VALUES (7153, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:20'); INSERT INTO `sys_oper_log` VALUES (7154, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:23'); INSERT INTO `sys_oper_log` VALUES (7155, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:24'); INSERT INTO `sys_oper_log` VALUES (7156, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:24'); INSERT INTO `sys_oper_log` VALUES (7157, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:24'); INSERT INTO `sys_oper_log` VALUES (7158, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:27'); INSERT INTO `sys_oper_log` VALUES (7159, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:27'); INSERT INTO `sys_oper_log` VALUES (7160, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:28'); INSERT INTO `sys_oper_log` VALUES (7161, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:28'); INSERT INTO `sys_oper_log` VALUES (7162, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:30'); INSERT INTO `sys_oper_log` VALUES (7163, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:31'); INSERT INTO `sys_oper_log` VALUES (7164, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:31'); INSERT INTO `sys_oper_log` VALUES (7165, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:31'); INSERT INTO `sys_oper_log` VALUES (7166, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:31'); INSERT INTO `sys_oper_log` VALUES (7167, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:49'); INSERT INTO `sys_oper_log` VALUES (7168, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:49'); INSERT INTO `sys_oper_log` VALUES (7169, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:49'); INSERT INTO `sys_oper_log` VALUES (7170, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:49'); INSERT INTO `sys_oper_log` VALUES (7171, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:52'); INSERT INTO `sys_oper_log` VALUES (7172, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:52'); INSERT INTO `sys_oper_log` VALUES (7173, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:52'); INSERT INTO `sys_oper_log` VALUES (7174, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:53:55'); INSERT INTO `sys_oper_log` VALUES (7175, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:53:55'); INSERT INTO `sys_oper_log` VALUES (7176, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:56'); INSERT INTO `sys_oper_log` VALUES (7177, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:56'); INSERT INTO `sys_oper_log` VALUES (7178, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:56'); INSERT INTO `sys_oper_log` VALUES (7179, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:53:56'); INSERT INTO `sys_oper_log` VALUES (7180, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:54:32'); INSERT INTO `sys_oper_log` VALUES (7181, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:54:32'); INSERT INTO `sys_oper_log` VALUES (7182, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:32'); INSERT INTO `sys_oper_log` VALUES (7183, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:32'); INSERT INTO `sys_oper_log` VALUES (7184, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:32'); INSERT INTO `sys_oper_log` VALUES (7185, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:32'); INSERT INTO `sys_oper_log` VALUES (7186, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:33'); INSERT INTO `sys_oper_log` VALUES (7187, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:36'); INSERT INTO `sys_oper_log` VALUES (7188, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:36'); INSERT INTO `sys_oper_log` VALUES (7189, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:37'); INSERT INTO `sys_oper_log` VALUES (7190, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:37'); INSERT INTO `sys_oper_log` VALUES (7191, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:37'); INSERT INTO `sys_oper_log` VALUES (7192, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:37'); INSERT INTO `sys_oper_log` VALUES (7193, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:56'); INSERT INTO `sys_oper_log` VALUES (7194, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:57'); INSERT INTO `sys_oper_log` VALUES (7195, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:57'); INSERT INTO `sys_oper_log` VALUES (7196, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:57'); INSERT INTO `sys_oper_log` VALUES (7197, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:57'); INSERT INTO `sys_oper_log` VALUES (7198, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:57'); INSERT INTO `sys_oper_log` VALUES (7199, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:58'); INSERT INTO `sys_oper_log` VALUES (7200, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:54:58'); INSERT INTO `sys_oper_log` VALUES (7201, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:05'); INSERT INTO `sys_oper_log` VALUES (7202, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:06'); INSERT INTO `sys_oper_log` VALUES (7203, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:06'); INSERT INTO `sys_oper_log` VALUES (7204, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:06'); INSERT INTO `sys_oper_log` VALUES (7205, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:06'); INSERT INTO `sys_oper_log` VALUES (7206, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:06'); INSERT INTO `sys_oper_log` VALUES (7207, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:06'); INSERT INTO `sys_oper_log` VALUES (7208, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:07'); INSERT INTO `sys_oper_log` VALUES (7209, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:08'); INSERT INTO `sys_oper_log` VALUES (7210, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:09'); INSERT INTO `sys_oper_log` VALUES (7211, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:09'); INSERT INTO `sys_oper_log` VALUES (7212, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:09'); INSERT INTO `sys_oper_log` VALUES (7213, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:09'); INSERT INTO `sys_oper_log` VALUES (7214, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:10'); INSERT INTO `sys_oper_log` VALUES (7215, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:10'); INSERT INTO `sys_oper_log` VALUES (7216, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:10'); INSERT INTO `sys_oper_log` VALUES (7217, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:19'); INSERT INTO `sys_oper_log` VALUES (7218, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:19'); INSERT INTO `sys_oper_log` VALUES (7219, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:20'); INSERT INTO `sys_oper_log` VALUES (7220, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:20'); INSERT INTO `sys_oper_log` VALUES (7221, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:21'); INSERT INTO `sys_oper_log` VALUES (7222, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:21'); INSERT INTO `sys_oper_log` VALUES (7223, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:22'); INSERT INTO `sys_oper_log` VALUES (7224, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:22'); INSERT INTO `sys_oper_log` VALUES (7225, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:25'); INSERT INTO `sys_oper_log` VALUES (7226, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:26'); INSERT INTO `sys_oper_log` VALUES (7227, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:26'); INSERT INTO `sys_oper_log` VALUES (7228, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:27'); INSERT INTO `sys_oper_log` VALUES (7229, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:27'); INSERT INTO `sys_oper_log` VALUES (7230, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:28'); INSERT INTO `sys_oper_log` VALUES (7231, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:29'); INSERT INTO `sys_oper_log` VALUES (7232, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:30'); INSERT INTO `sys_oper_log` VALUES (7233, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:30'); INSERT INTO `sys_oper_log` VALUES (7234, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:31'); INSERT INTO `sys_oper_log` VALUES (7235, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:32'); INSERT INTO `sys_oper_log` VALUES (7236, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:32'); INSERT INTO `sys_oper_log` VALUES (7237, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:33'); INSERT INTO `sys_oper_log` VALUES (7238, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:46'); INSERT INTO `sys_oper_log` VALUES (7239, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:47'); INSERT INTO `sys_oper_log` VALUES (7240, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:48'); INSERT INTO `sys_oper_log` VALUES (7241, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:48'); INSERT INTO `sys_oper_log` VALUES (7242, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:48'); INSERT INTO `sys_oper_log` VALUES (7243, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:49'); INSERT INTO `sys_oper_log` VALUES (7244, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:49'); INSERT INTO `sys_oper_log` VALUES (7245, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:50'); INSERT INTO `sys_oper_log` VALUES (7246, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (7247, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (7248, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (7249, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (7250, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (7251, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (7252, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (7253, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (7254, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (7255, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:52'); INSERT INTO `sys_oper_log` VALUES (7256, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:53'); INSERT INTO `sys_oper_log` VALUES (7257, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:53'); INSERT INTO `sys_oper_log` VALUES (7258, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:53'); INSERT INTO `sys_oper_log` VALUES (7259, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:54'); INSERT INTO `sys_oper_log` VALUES (7260, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:54'); INSERT INTO `sys_oper_log` VALUES (7261, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:54'); INSERT INTO `sys_oper_log` VALUES (7262, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:55'); INSERT INTO `sys_oper_log` VALUES (7263, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:55'); INSERT INTO `sys_oper_log` VALUES (7264, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:55'); INSERT INTO `sys_oper_log` VALUES (7265, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:55'); INSERT INTO `sys_oper_log` VALUES (7266, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:56'); INSERT INTO `sys_oper_log` VALUES (7267, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:56'); INSERT INTO `sys_oper_log` VALUES (7268, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:55:56'); INSERT INTO `sys_oper_log` VALUES (7269, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 11:34:03\"}}', 0, '', '2022-02-18 11:56:03'); INSERT INTO `sys_oper_log` VALUES (7270, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645155243000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 11:56:03'); INSERT INTO `sys_oper_log` VALUES (7271, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:56:03'); INSERT INTO `sys_oper_log` VALUES (7272, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:56:03'); INSERT INTO `sys_oper_log` VALUES (7273, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:56:03'); INSERT INTO `sys_oper_log` VALUES (7274, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:56:04'); INSERT INTO `sys_oper_log` VALUES (7275, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:56:04'); INSERT INTO `sys_oper_log` VALUES (7276, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:56:04'); INSERT INTO `sys_oper_log` VALUES (7277, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:56:04'); INSERT INTO `sys_oper_log` VALUES (7278, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:56:04'); INSERT INTO `sys_oper_log` VALUES (7279, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:56:06'); INSERT INTO `sys_oper_log` VALUES (7280, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 11:56:07'); INSERT INTO `sys_oper_log` VALUES (7281, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We\'re here to put a dent in the universe. Otherwise why else even be here?\",\"dataId\":3906,\"date\":1601827200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/215285b950240b6c95aad3349a060933.png\",\"note\":\"活着就是为了改变世界,难道还有其他原因吗?\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/ec25b54963a85d981057409308e32d77.mp3\"}}', 0, '', '2022-02-18 11:56:19'); INSERT INTO `sys_oper_log` VALUES (7282, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你回他消息吧!他开心了你就会理我了。\",\"createTime\":1645156580979,\"id\":1494521138649403393,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-02-18 11:56:20'); INSERT INTO `sys_oper_log` VALUES (7283, '爬虫日志', 3, 'com.xjs.reptileLog.controller.WebmagicLogController.remove()', 'DELETE', 1, 'admin', '', '/reptileLog/1494313073373822978', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 13:01:05'); INSERT INTO `sys_oper_log` VALUES (7284, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:38'); INSERT INTO `sys_oper_log` VALUES (7285, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:38'); INSERT INTO `sys_oper_log` VALUES (7286, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:38'); INSERT INTO `sys_oper_log` VALUES (7287, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:38'); INSERT INTO `sys_oper_log` VALUES (7288, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:38'); INSERT INTO `sys_oper_log` VALUES (7289, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:39'); INSERT INTO `sys_oper_log` VALUES (7290, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:39'); INSERT INTO `sys_oper_log` VALUES (7291, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:39'); INSERT INTO `sys_oper_log` VALUES (7292, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:41'); INSERT INTO `sys_oper_log` VALUES (7293, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:42'); INSERT INTO `sys_oper_log` VALUES (7294, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:42'); INSERT INTO `sys_oper_log` VALUES (7295, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:42'); INSERT INTO `sys_oper_log` VALUES (7296, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:42'); INSERT INTO `sys_oper_log` VALUES (7297, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:43'); INSERT INTO `sys_oper_log` VALUES (7298, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:44'); INSERT INTO `sys_oper_log` VALUES (7299, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:44'); INSERT INTO `sys_oper_log` VALUES (7300, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:44'); INSERT INTO `sys_oper_log` VALUES (7301, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:44'); INSERT INTO `sys_oper_log` VALUES (7302, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:45'); INSERT INTO `sys_oper_log` VALUES (7303, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:45'); INSERT INTO `sys_oper_log` VALUES (7304, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 13:03:45'); INSERT INTO `sys_oper_log` VALUES (7305, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Kill the evil out!\",\"createTime\":1645160638435,\"dataId\":4297,\"date\":1635609600000,\"id\":1494538156865916929,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/aa2eb18ce101066b12fe744ead0283b0.png\",\"note\":\"诸邪退散!\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2957f272e2ac459c6853ab00023c39b7.mp3\"}}', 0, '', '2022-02-18 13:03:58'); INSERT INTO `sys_oper_log` VALUES (7306, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"话说我一哥们儿去阳光男科医院(杠杠的)\\r\\n他:\\\"医生,昨天下面出了点问题,能给治么\\r\\n医生:啥问题啊,你给我说说\\r\\n他:医生,这问题恐怕你没见过,我都不好意思说,你可别笑我啊\\r\\n医生一本正经的说:怎么可能,我是我们医院最有素质的了,说,你尽管说!\\r\\n他:医生,我先说好,我下面有点小,你千万别嘲笑我,我可是信任你才给你看的\\r\\n医生:放心吧,你且脱下裤子,我保证不笑!\\r\\n“那好,我脱了”\\r\\n接着,只听传来“哈哈哈哈哈哈哈哈,你他妈的这么小,还没花生米大”\\r\\n他:不是说了不笑,NMD\\r\\n“好了好了,我忍者不笑....”\\r\\n过去了一分钟,医生才强忍着憋住了。\\r\\n接着说:好了,你有什么问题,说说吧\\r\\n我那哥们儿,强忍怒意说道:\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n被蜜蜂蛰了,肿了.................................\\r\\n医生卒\",\"createTime\":1645149002000,\"id\":1494489349360881666,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-02-18 13:04:01'); INSERT INTO `sys_oper_log` VALUES (7307, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"wfsgdg456547hdgfh\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"mlt\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"wfsgdg456547hdgfh\",\"src\":\"wfsgdg456547hdgfh\"}]}}', 0, '', '2022-02-18 13:04:20'); INSERT INTO `sys_oper_log` VALUES (7308, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"wfsgdg456547hdgfhfhgncbvnfghste6e6ehsehsbh\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"spa\",\"to\":\"zh\",\"transResult\":[{\"dst\":\"wfsgd456547hdgfhghgncbvnfghste6e6ehsehsbh\",\"src\":\"wfsgdg456547hdgfhfhgncbvnfghste6e6ehsehsbh\"}]}}', 0, '', '2022-02-18 13:04:27'); INSERT INTO `sys_oper_log` VALUES (7309, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"wfsgdg456547hdgfhfhgncbvnfghste6e6ehsehsbh\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":4,\"errorCode\":0,\"transResult\":[{\"dst\":\"wfsgdg456547hdgfhfhgncbvnfghste6e6ehsehsbh\",\"src\":\"wfsgdg456547hdgfhfhgncbvnfghste6e6ehsehsbh\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-02-18 13:04:29'); INSERT INTO `sys_oper_log` VALUES (7310, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"wfsgdg456547hdgfhfhgncbvnfghste6e6ehsehsbh\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"wfsgdg456547hdgfhfhgncbvnfghste6e6ehsehsbh\",\"src\":\"wfsgdg456547hdgfhfhgncbvnfghste6e6ehsehsbh\"}],\"type\":\"EN2ZH_CN\"}}', 0, '', '2022-02-18 13:04:31'); INSERT INTO `sys_oper_log` VALUES (7311, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"活着就是为了改变世界。\",\"createTime\":1645160674833,\"id\":1494538309505028097,\"source\":\"叉叉\",\"type\":5}}', 0, '', '2022-02-18 13:04:34'); INSERT INTO `sys_oper_log` VALUES (7312, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645159128000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 13:05:49'); INSERT INTO `sys_oper_log` VALUES (7313, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 12:38:48\"}}', 0, '', '2022-02-18 13:05:50'); INSERT INTO `sys_oper_log` VALUES (7314, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 13:34:04\"}}', 0, '', '2022-02-18 13:51:01'); INSERT INTO `sys_oper_log` VALUES (7315, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645162444000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 13:51:01'); INSERT INTO `sys_oper_log` VALUES (7316, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645162444000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 13:51:11'); INSERT INTO `sys_oper_log` VALUES (7317, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 13:34:04\"}}', 0, '', '2022-02-18 13:51:11'); INSERT INTO `sys_oper_log` VALUES (7318, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645164236000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:38:06'); INSERT INTO `sys_oper_log` VALUES (7319, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:03:56\"}}', 0, '', '2022-02-18 14:38:13'); INSERT INTO `sys_oper_log` VALUES (7320, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645164236000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:38:26'); INSERT INTO `sys_oper_log` VALUES (7321, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:03:56\"}}', 0, '', '2022-02-18 14:38:27'); INSERT INTO `sys_oper_log` VALUES (7322, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645164236000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:39:34'); INSERT INTO `sys_oper_log` VALUES (7323, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:03:56\"}}', 0, '', '2022-02-18 14:39:34'); INSERT INTO `sys_oper_log` VALUES (7324, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645164236000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:41:01'); INSERT INTO `sys_oper_log` VALUES (7325, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:03:56\"}}', 0, '', '2022-02-18 14:41:01'); INSERT INTO `sys_oper_log` VALUES (7326, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645164236000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:42:23'); INSERT INTO `sys_oper_log` VALUES (7327, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:03:56\"}}', 0, '', '2022-02-18 14:42:23'); INSERT INTO `sys_oper_log` VALUES (7328, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:03:56\"}}', 0, '', '2022-02-18 14:43:30'); INSERT INTO `sys_oper_log` VALUES (7329, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645164236000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:43:30'); INSERT INTO `sys_oper_log` VALUES (7330, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645164236000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:44:00'); INSERT INTO `sys_oper_log` VALUES (7331, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:03:56\"}}', 0, '', '2022-02-18 14:44:00'); INSERT INTO `sys_oper_log` VALUES (7332, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:03:56\"}}', 0, '', '2022-02-18 14:46:27'); INSERT INTO `sys_oper_log` VALUES (7333, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645164236000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:46:27'); INSERT INTO `sys_oper_log` VALUES (7334, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645164236000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:46:40'); INSERT INTO `sys_oper_log` VALUES (7335, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:03:56\"}}', 0, '', '2022-02-18 14:46:40'); INSERT INTO `sys_oper_log` VALUES (7336, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 14:48:36'); INSERT INTO `sys_oper_log` VALUES (7337, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:48:36'); INSERT INTO `sys_oper_log` VALUES (7338, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 14:48:36'); INSERT INTO `sys_oper_log` VALUES (7339, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 14:48:36'); INSERT INTO `sys_oper_log` VALUES (7340, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:05:54'); INSERT INTO `sys_oper_log` VALUES (7341, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:05:54'); INSERT INTO `sys_oper_log` VALUES (7342, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:06:12'); INSERT INTO `sys_oper_log` VALUES (7343, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:06:12'); INSERT INTO `sys_oper_log` VALUES (7344, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:06:37'); INSERT INTO `sys_oper_log` VALUES (7345, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:06:37'); INSERT INTO `sys_oper_log` VALUES (7346, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:07:17'); INSERT INTO `sys_oper_log` VALUES (7347, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:07:17'); INSERT INTO `sys_oper_log` VALUES (7348, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:07:19'); INSERT INTO `sys_oper_log` VALUES (7349, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:07:19'); INSERT INTO `sys_oper_log` VALUES (7350, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:10:48'); INSERT INTO `sys_oper_log` VALUES (7351, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:10:48'); INSERT INTO `sys_oper_log` VALUES (7352, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:11:50'); INSERT INTO `sys_oper_log` VALUES (7353, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:11:50'); INSERT INTO `sys_oper_log` VALUES (7354, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:12:00'); INSERT INTO `sys_oper_log` VALUES (7355, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:12:01'); INSERT INTO `sys_oper_log` VALUES (7356, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:12:33'); INSERT INTO `sys_oper_log` VALUES (7357, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:12:33'); INSERT INTO `sys_oper_log` VALUES (7358, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:12:55'); INSERT INTO `sys_oper_log` VALUES (7359, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:12:56'); INSERT INTO `sys_oper_log` VALUES (7360, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645166322000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:13:30'); INSERT INTO `sys_oper_log` VALUES (7361, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 14:38:42\"}}', 0, '', '2022-02-18 15:13:30'); INSERT INTO `sys_oper_log` VALUES (7362, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:08:30\"}}', 0, '', '2022-02-18 15:17:05'); INSERT INTO `sys_oper_log` VALUES (7363, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645168625995,\"humidity\":\"92\",\"id\":1494571659083026434,\"province\":\"江西\",\"reporttime\":1645168110000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:17:06'); INSERT INTO `sys_oper_log` VALUES (7364, '爬虫日志', 5, 'com.xjs.reptileLog.controller.WebmagicLogController.export()', 'POST', 1, 'admin', '', '/reptileLog/export', '127.0.0.1', '', '{}', '', 0, '', '2022-02-18 15:23:20'); INSERT INTO `sys_oper_log` VALUES (7365, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645168625995,\"humidity\":\"92\",\"id\":1494571659083026434,\"province\":\"江西\",\"reporttime\":1645168110000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 15:26:30'); INSERT INTO `sys_oper_log` VALUES (7366, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:08:30\"}}', 0, '', '2022-02-18 15:26:30'); INSERT INTO `sys_oper_log` VALUES (7367, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645169632000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 15:41:13'); INSERT INTO `sys_oper_log` VALUES (7368, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:33:52\"}}', 0, '', '2022-02-18 15:41:14'); INSERT INTO `sys_oper_log` VALUES (7369, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645169632000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 15:41:42'); INSERT INTO `sys_oper_log` VALUES (7370, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:33:52\"}}', 0, '', '2022-02-18 15:41:42'); INSERT INTO `sys_oper_log` VALUES (7371, '获取历史热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.getHistoryTopSearchByDate()', 'GET', 1, 'admin', '', '/topsearch/getHistoryTopSearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"douyinList\":[],\"baiduList\":[],\"wechatList\":[],\"allnetworkList\":[],\"weiboList\":[]}}', 0, '', '2022-02-18 15:41:44'); INSERT INTO `sys_oper_log` VALUES (7372, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645169632000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 15:43:24'); INSERT INTO `sys_oper_log` VALUES (7373, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:33:52\"}}', 0, '', '2022-02-18 15:43:24'); INSERT INTO `sys_oper_log` VALUES (7374, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645169632000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 15:43:42'); INSERT INTO `sys_oper_log` VALUES (7375, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:33:52\"}}', 0, '', '2022-02-18 15:43:42'); INSERT INTO `sys_oper_log` VALUES (7376, '获取历史热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.getHistoryTopSearchByDate()', 'GET', 1, 'admin', '', '/topsearch/getHistoryTopSearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"douyinList\":[],\"baiduList\":[],\"wechatList\":[],\"allnetworkList\":[],\"weiboList\":[]}}', 0, '', '2022-02-18 15:43:44'); INSERT INTO `sys_oper_log` VALUES (7377, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645169632000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 15:44:01'); INSERT INTO `sys_oper_log` VALUES (7378, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:33:52\"}}', 0, '', '2022-02-18 15:44:01'); INSERT INTO `sys_oper_log` VALUES (7379, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you wish to survive, you need to cultivate a strong mental attitude.\",\"createTime\":1645170345069,\"dataId\":3431,\"date\":1561305600000,\"id\":1494578869427146753,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-24.jpg\",\"note\":\"如果你想活着,你需要培养一种坚强的精神态度\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-24-day.mp3\"}}', 0, '', '2022-02-18 15:45:45'); INSERT INTO `sys_oper_log` VALUES (7380, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"问:“老王为什么那么牛掰,搞了那么多邻居少妇!” 答:“老王有那么多邻居,说明他有很多房子,这又说明他很有钱,你明白了吗?”\",\"createTime\":1645170345148,\"id\":1494578869729136642,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-02-18 15:45:45'); INSERT INTO `sys_oper_log` VALUES (7381, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645169632000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 15:51:12'); INSERT INTO `sys_oper_log` VALUES (7382, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:33:52\"}}', 0, '', '2022-02-18 15:51:12'); INSERT INTO `sys_oper_log` VALUES (7383, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:33:52\"}}', 0, '', '2022-02-18 15:52:13'); INSERT INTO `sys_oper_log` VALUES (7384, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645169632000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 15:52:13'); INSERT INTO `sys_oper_log` VALUES (7385, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645169632000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 15:52:20'); INSERT INTO `sys_oper_log` VALUES (7386, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:33:52\"}}', 0, '', '2022-02-18 15:52:20'); INSERT INTO `sys_oper_log` VALUES (7387, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645169632000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 16:00:35'); INSERT INTO `sys_oper_log` VALUES (7388, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:33:52\"}}', 0, '', '2022-02-18 16:00:35'); INSERT INTO `sys_oper_log` VALUES (7389, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 15:33:52\"}}', 0, '', '2022-02-18 16:01:35'); INSERT INTO `sys_oper_log` VALUES (7390, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645169632000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-18 16:01:35'); INSERT INTO `sys_oper_log` VALUES (7391, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:03:55\"}}', 0, '', '2022-02-18 16:04:05'); INSERT INTO `sys_oper_log` VALUES (7392, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645171445931,\"humidity\":\"93\",\"id\":1494583486764453889,\"province\":\"江西\",\"reporttime\":1645171435000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:04:05'); INSERT INTO `sys_oper_log` VALUES (7393, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645171445931,\"humidity\":\"93\",\"id\":1494583486764453889,\"province\":\"江西\",\"reporttime\":1645171435000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:04:14'); INSERT INTO `sys_oper_log` VALUES (7394, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:03:55\"}}', 0, '', '2022-02-18 16:04:14'); INSERT INTO `sys_oper_log` VALUES (7395, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645171445931,\"humidity\":\"93\",\"id\":1494583486764453889,\"province\":\"江西\",\"reporttime\":1645171435000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:05:35'); INSERT INTO `sys_oper_log` VALUES (7396, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:03:55\"}}', 0, '', '2022-02-18 16:05:35'); INSERT INTO `sys_oper_log` VALUES (7397, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645171445931,\"humidity\":\"93\",\"id\":1494583486764453889,\"province\":\"江西\",\"reporttime\":1645171435000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:06:50'); INSERT INTO `sys_oper_log` VALUES (7398, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:03:55\"}}', 0, '', '2022-02-18 16:06:50'); INSERT INTO `sys_oper_log` VALUES (7399, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Miracles sometimes occur, but one has to work terribly for them.\",\"createTime\":1645171644961,\"dataId\":3489,\"date\":1566144000000,\"id\":1494584321581944834,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-19.jpg\",\"note\":\"奇迹有时候是会发生的,但是你得为之拼命。 \",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-19-day.mp3\"}}', 0, '', '2022-02-18 16:07:24'); INSERT INTO `sys_oper_log` VALUES (7400, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"总有一天你会明白,我是对的!\",\"createTime\":1645171644955,\"id\":1494584321519030274,\"source\":\"投名状\",\"type\":3}}', 0, '', '2022-02-18 16:07:24'); INSERT INTO `sys_oper_log` VALUES (7401, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:03:55\"}}', 0, '', '2022-02-18 16:08:55'); INSERT INTO `sys_oper_log` VALUES (7402, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645171445931,\"humidity\":\"93\",\"id\":1494583486764453889,\"province\":\"江西\",\"reporttime\":1645171435000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:08:55'); INSERT INTO `sys_oper_log` VALUES (7403, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:03:55\"}}', 0, '', '2022-02-18 16:13:35'); INSERT INTO `sys_oper_log` VALUES (7404, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645171445931,\"humidity\":\"93\",\"id\":1494583486764453889,\"province\":\"江西\",\"reporttime\":1645171435000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:13:35'); INSERT INTO `sys_oper_log` VALUES (7405, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645171435000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:19:36'); INSERT INTO `sys_oper_log` VALUES (7406, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:03:55\"}}', 0, '', '2022-02-18 16:19:36'); INSERT INTO `sys_oper_log` VALUES (7407, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-02-18 16:21:53'); INSERT INTO `sys_oper_log` VALUES (7408, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:03:55\"}}', 0, '', '2022-02-18 16:24:29'); INSERT INTO `sys_oper_log` VALUES (7409, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645171435000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:24:29'); INSERT INTO `sys_oper_log` VALUES (7410, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-02-18 16:24:45'); INSERT INTO `sys_oper_log` VALUES (7411, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645171435000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:28:05'); INSERT INTO `sys_oper_log` VALUES (7412, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:03:55\"}}', 0, '', '2022-02-18 16:28:05'); INSERT INTO `sys_oper_log` VALUES (7413, '每日一句', 3, 'com.xjs.aword.controller.ApiAWordController.remove()', 'DELETE', 1, 'admin', '', '/aword/1480081658906095618', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 16:37:43'); INSERT INTO `sys_oper_log` VALUES (7414, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:42:26'); INSERT INTO `sys_oper_log` VALUES (7415, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:42:26'); INSERT INTO `sys_oper_log` VALUES (7416, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:43:55'); INSERT INTO `sys_oper_log` VALUES (7417, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:43:55'); INSERT INTO `sys_oper_log` VALUES (7418, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:44:02'); INSERT INTO `sys_oper_log` VALUES (7419, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:44:02'); INSERT INTO `sys_oper_log` VALUES (7420, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:46:19'); INSERT INTO `sys_oper_log` VALUES (7421, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:46:19'); INSERT INTO `sys_oper_log` VALUES (7422, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:46:51'); INSERT INTO `sys_oper_log` VALUES (7423, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:46:51'); INSERT INTO `sys_oper_log` VALUES (7424, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:47:24'); INSERT INTO `sys_oper_log` VALUES (7425, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:47:24'); INSERT INTO `sys_oper_log` VALUES (7426, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:48:18'); INSERT INTO `sys_oper_log` VALUES (7427, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:48:18'); INSERT INTO `sys_oper_log` VALUES (7428, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:48:53'); INSERT INTO `sys_oper_log` VALUES (7429, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:48:53'); INSERT INTO `sys_oper_log` VALUES (7430, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:49:42'); INSERT INTO `sys_oper_log` VALUES (7431, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:49:42'); INSERT INTO `sys_oper_log` VALUES (7432, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:49:49'); INSERT INTO `sys_oper_log` VALUES (7433, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:49:50'); INSERT INTO `sys_oper_log` VALUES (7434, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:50:35'); INSERT INTO `sys_oper_log` VALUES (7435, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:50:35'); INSERT INTO `sys_oper_log` VALUES (7436, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 16:38:46\"}}', 0, '', '2022-02-18 16:50:54'); INSERT INTO `sys_oper_log` VALUES (7437, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645173526000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 16:50:54'); INSERT INTO `sys_oper_log` VALUES (7438, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":188,\"apiName\":\"ROLL-搞笑段子\",\"dayCount\":41,\"apiUrl\":\"https://www.mxnzp.com/api/jokes/list/random\",\"createTime\":1644890438000,\"limitCount\":31,\"updateTime\":1645174200000,\"id\":1493404855193788418,\"totalCount\":151}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 16:53:06'); INSERT INTO `sys_oper_log` VALUES (7439, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":188,\"apiName\":\"ROLL-搞笑段子\",\"dayCount\":41,\"apiUrl\":\"https://www.mxnzp.com/api/jokes/list/random\",\"createTime\":1644890438000,\"limitCount\":30,\"updateTime\":1645174200000,\"id\":1493404855193788418,\"totalCount\":151}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 16:53:10'); INSERT INTO `sys_oper_log` VALUES (7440, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1494597557891002369', '127.0.0.1', '', '1494597557891002369', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-18 17:04:32'); INSERT INTO `sys_oper_log` VALUES (7441, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645175515949,\"humidity\":\"92\",\"id\":1494600557657231362,\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:11:56'); INSERT INTO `sys_oper_log` VALUES (7442, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:11:56'); INSERT INTO `sys_oper_log` VALUES (7443, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645175515949,\"humidity\":\"92\",\"id\":1494600557657231362,\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:14:14'); INSERT INTO `sys_oper_log` VALUES (7444, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:14:14'); INSERT INTO `sys_oper_log` VALUES (7445, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645175515949,\"humidity\":\"92\",\"id\":1494600557657231362,\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:14:47'); INSERT INTO `sys_oper_log` VALUES (7446, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:14:47'); INSERT INTO `sys_oper_log` VALUES (7447, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645175515949,\"humidity\":\"92\",\"id\":1494600557657231362,\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:15:59'); INSERT INTO `sys_oper_log` VALUES (7448, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:15:59'); INSERT INTO `sys_oper_log` VALUES (7449, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645175515949,\"humidity\":\"92\",\"id\":1494600557657231362,\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:16:18'); INSERT INTO `sys_oper_log` VALUES (7450, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:16:18'); INSERT INTO `sys_oper_log` VALUES (7451, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645175515949,\"humidity\":\"92\",\"id\":1494600557657231362,\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:16:29'); INSERT INTO `sys_oper_log` VALUES (7452, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:16:30'); INSERT INTO `sys_oper_log` VALUES (7453, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645175515949,\"humidity\":\"92\",\"id\":1494600557657231362,\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:16:40'); INSERT INTO `sys_oper_log` VALUES (7454, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:16:40'); INSERT INTO `sys_oper_log` VALUES (7455, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645175515949,\"humidity\":\"92\",\"id\":1494600557657231362,\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:17:38'); INSERT INTO `sys_oper_log` VALUES (7456, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:17:38'); INSERT INTO `sys_oper_log` VALUES (7457, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645175515949,\"humidity\":\"92\",\"id\":1494600557657231362,\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:17:45'); INSERT INTO `sys_oper_log` VALUES (7458, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:17:45'); INSERT INTO `sys_oper_log` VALUES (7459, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":188,\"apiName\":\"ROLL-搞笑段子\",\"dayCount\":41,\"apiUrl\":\"https://www.mxnzp.com/api/jokes/list/random\",\"createTime\":1644890438000,\"updateTime\":1645174200000,\"id\":1493404855193788418,\"totalCount\":151}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 17:18:25'); INSERT INTO `sys_oper_log` VALUES (7460, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":188,\"apiName\":\"ROLL-搞笑段子\",\"dayCount\":41,\"apiUrl\":\"https://www.mxnzp.com/api/jokes/list/random\",\"createTime\":1644890438000,\"updateTime\":1645174200000,\"id\":1493404855193788418,\"totalCount\":151}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 17:18:31'); INSERT INTO `sys_oper_log` VALUES (7461, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645175515949,\"humidity\":\"92\",\"id\":1494600557657231362,\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:21:25'); INSERT INTO `sys_oper_log` VALUES (7462, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:21:25'); INSERT INTO `sys_oper_log` VALUES (7463, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:21:57'); INSERT INTO `sys_oper_log` VALUES (7464, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:21:57'); INSERT INTO `sys_oper_log` VALUES (7465, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:22:32'); INSERT INTO `sys_oper_log` VALUES (7466, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:22:32'); INSERT INTO `sys_oper_log` VALUES (7467, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:23:43'); INSERT INTO `sys_oper_log` VALUES (7468, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:23:44'); INSERT INTO `sys_oper_log` VALUES (7469, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":50,\"apiName\":\"ROLL-搞笑段子\",\"dayCount\":42,\"apiUrl\":\"https://www.mxnzp.com/api/jokes/list/random\",\"createTime\":1644890438000,\"limitCount\":9000,\"updateTime\":1645176005000,\"id\":1493404855193788418,\"totalCount\":152}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 17:24:17'); INSERT INTO `sys_oper_log` VALUES (7470, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":50,\"apiName\":\"ROLL-搞笑段子\",\"dayCount\":42,\"apiUrl\":\"https://www.mxnzp.com/api/jokes/list/random\",\"createTime\":1644890438000,\"limitCount\":30,\"updateTime\":1645176005000,\"id\":1493404855193788418,\"totalCount\":152}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 17:24:23'); INSERT INTO `sys_oper_log` VALUES (7471, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:28:46'); INSERT INTO `sys_oper_log` VALUES (7472, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:28:46'); INSERT INTO `sys_oper_log` VALUES (7473, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645175315000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 17:29:15'); INSERT INTO `sys_oper_log` VALUES (7474, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 17:08:35\"}}', 0, '', '2022-02-18 17:29:15'); INSERT INTO `sys_oper_log` VALUES (7475, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":50,\"apiName\":\"ROLL-搞笑段子\",\"dayCount\":42,\"apiUrl\":\"https://www.mxnzp.com/api/jokes/list/random\",\"createTime\":1644890438000,\"limitCount\":1,\"updateTime\":1645176005000,\"id\":1493404855193788418,\"totalCount\":152}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 17:33:06'); INSERT INTO `sys_oper_log` VALUES (7476, 'API预警', 2, 'com.xjs.controller.ApiWarningController.edit()', 'PUT', 1, 'admin', '', '/apiwarning/edit', '127.0.0.1', '', '{\"requestTime\":50,\"apiName\":\"ROLL-搞笑段子\",\"dayCount\":42,\"apiUrl\":\"https://www.mxnzp.com/api/jokes/list/random\",\"createTime\":1644890438000,\"limitCount\":30,\"updateTime\":1645176005000,\"id\":1493404855193788418,\"totalCount\":152}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 17:33:09'); INSERT INTO `sys_oper_log` VALUES (7477, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 20:38:45\"}}', 0, '', '2022-02-18 21:00:43'); INSERT INTO `sys_oper_log` VALUES (7478, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 20:38:45\"}}', 0, '', '2022-02-18 21:00:43'); INSERT INTO `sys_oper_log` VALUES (7479, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645189244331,\"humidity\":\"91\",\"id\":1494658138709397505,\"province\":\"江西\",\"reporttime\":1645187924000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 21:00:44'); INSERT INTO `sys_oper_log` VALUES (7480, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1494660478397038593', '127.0.0.1', '', '1494660478397038593', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-18 21:17:18'); INSERT INTO `sys_oper_log` VALUES (7481, 'API预警', 5, 'com.xjs.controller.ApiWarningController.export()', 'POST', 1, 'admin', '', '/apiwarning/export', '127.0.0.1', '', '{\"apiName\":\"ROLL-搞笑段子\"}', '', 0, '', '2022-02-18 21:47:44'); INSERT INTO `sys_oper_log` VALUES (7482, 'api预警', 3, 'com.xjs.controller.ApiWarningController.clearAll()', 'DELETE', 1, 'admin', '', '/apiwarning/all', '127.0.0.1', '', '', '{\"code\":200,\"data\":563,\"msg\":\"操作成功\"}', 0, '', '2022-02-18 21:48:53'); INSERT INTO `sys_oper_log` VALUES (7483, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 21:33:46\"}}', 0, '', '2022-02-18 21:59:50'); INSERT INTO `sys_oper_log` VALUES (7484, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1645191226000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 21:59:50'); INSERT INTO `sys_oper_log` VALUES (7485, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 21:33:46\"}}', 0, '', '2022-02-18 22:06:52'); INSERT INTO `sys_oper_log` VALUES (7486, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1645191226000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 22:06:52'); INSERT INTO `sys_oper_log` VALUES (7487, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 21:33:46\"}}', 0, '', '2022-02-18 22:08:33'); INSERT INTO `sys_oper_log` VALUES (7488, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1645191226000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"5\"}}', 0, '', '2022-02-18 22:08:33'); INSERT INTO `sys_oper_log` VALUES (7489, '文案网', 5, 'com.xjs.copywritingNetwork.controller.CopyWritingNetworkController.export()', 'POST', 1, 'admin', '', '/copyWritingNetwork/export', '127.0.0.1', '', '{\"type\":\"可爱\"}', '', 0, '', '2022-02-18 22:08:56'); INSERT INTO `sys_oper_log` VALUES (7490, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645193552372,\"humidity\":\"87\",\"id\":1494676207888470018,\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:12:32'); INSERT INTO `sys_oper_log` VALUES (7491, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:12:32'); INSERT INTO `sys_oper_log` VALUES (7492, '文案网', 3, 'com.xjs.copywritingNetwork.controller.CopyWritingNetworkController.remove()', 'DELETE', 1, 'admin', '', '/copyWritingNetwork/1494567480218226714', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-18 22:13:41'); INSERT INTO `sys_oper_log` VALUES (7493, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645193552372,\"humidity\":\"87\",\"id\":1494676207888470018,\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:16:49'); INSERT INTO `sys_oper_log` VALUES (7494, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:16:49'); INSERT INTO `sys_oper_log` VALUES (7495, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645193552372,\"humidity\":\"87\",\"id\":1494676207888470018,\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:19:02'); INSERT INTO `sys_oper_log` VALUES (7496, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:19:02'); INSERT INTO `sys_oper_log` VALUES (7497, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645193552372,\"humidity\":\"87\",\"id\":1494676207888470018,\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:19:10'); INSERT INTO `sys_oper_log` VALUES (7498, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:19:10'); INSERT INTO `sys_oper_log` VALUES (7499, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645193552372,\"humidity\":\"87\",\"id\":1494676207888470018,\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:19:31'); INSERT INTO `sys_oper_log` VALUES (7500, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:19:31'); INSERT INTO `sys_oper_log` VALUES (7501, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:20:34'); INSERT INTO `sys_oper_log` VALUES (7502, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645193552372,\"humidity\":\"87\",\"id\":1494676207888470018,\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:20:34'); INSERT INTO `sys_oper_log` VALUES (7503, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:21:29'); INSERT INTO `sys_oper_log` VALUES (7504, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645193552372,\"humidity\":\"87\",\"id\":1494676207888470018,\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:21:29'); INSERT INTO `sys_oper_log` VALUES (7505, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:24:51'); INSERT INTO `sys_oper_log` VALUES (7506, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:24:51'); INSERT INTO `sys_oper_log` VALUES (7507, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:25:14'); INSERT INTO `sys_oper_log` VALUES (7508, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:25:14'); INSERT INTO `sys_oper_log` VALUES (7509, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:28:44'); INSERT INTO `sys_oper_log` VALUES (7510, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:28:44'); INSERT INTO `sys_oper_log` VALUES (7511, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 22:29:32'); INSERT INTO `sys_oper_log` VALUES (7512, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 22:29:32'); INSERT INTO `sys_oper_log` VALUES (7513, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 22:29:33'); INSERT INTO `sys_oper_log` VALUES (7514, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 22:29:33'); INSERT INTO `sys_oper_log` VALUES (7515, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 22:29:33'); INSERT INTO `sys_oper_log` VALUES (7516, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 22:29:33'); INSERT INTO `sys_oper_log` VALUES (7517, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 22:29:33'); INSERT INTO `sys_oper_log` VALUES (7518, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-18 22:29:33'); INSERT INTO `sys_oper_log` VALUES (7519, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:30:05'); INSERT INTO `sys_oper_log` VALUES (7520, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:30:05'); INSERT INTO `sys_oper_log` VALUES (7521, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645194615128,\"en\":\"Man\'s extremity is God\'s opportunity.\",\"id\":1494680665443766273,\"zh\":\"逆境是上帝考验人的良机.\"}}', 0, '', '2022-02-18 22:30:15'); INSERT INTO `sys_oper_log` VALUES (7522, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年02月19日\",\"holidayName\":\"雨水\",\"lunarDate\":\"2022年01月19日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"辛丑牛年 腊月十七\"},{\"date\":\"2022年02月21日\",\"holidayName\":\"国际母语日\",\"lunarDate\":\"2022年01月21日\",\"lunarHoliday\":false,\"residueDays\":2,\"returnDate\":\"2022年02月21日\"},{\"date\":\"2022年02月24日\",\"holidayName\":\"第三世界青年日\",\"lunarDate\":\"2022年01月24日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年02月24日\"},{\"date\":\"2022年02月28日\",\"holidayName\":\"国际罕见病日\",\"lunarDate\":\"2022年01月28日\",\"lunarHoliday\":false,\"residueDays\":9,\"returnDate\":\"2022年02月28日\"},{\"date\":\"2022年03月01日\",\"holidayName\":\"国际海豹日\",\"lunarDate\":\"2022年01月29日\",\"lunarHoliday\":false,\"residueDays\":10,\"returnDate\":\"2022年03月01日\"},{\"date\":\"2022年03月03日\",\"holidayName\":\"全国爱耳日\",\"lunarDate\":\"2022年02月01日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年03月03日\"},{\"date\":\"2022年03月04日\",\"holidayName\":\"龙抬头\",\"lunarDate\":\"2022年02月02日\",\"lunarHoliday\":true,\"residueDays\":13,\"returnDate\":\"壬寅虎年 正月初二\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-18 22:32:59'); INSERT INTO `sys_oper_log` VALUES (7523, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:34:18'); INSERT INTO `sys_oper_log` VALUES (7524, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:34:18'); INSERT INTO `sys_oper_log` VALUES (7525, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:34:23'); INSERT INTO `sys_oper_log` VALUES (7526, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:34:23'); INSERT INTO `sys_oper_log` VALUES (7527, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:34:38'); INSERT INTO `sys_oper_log` VALUES (7528, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:34:38'); INSERT INTO `sys_oper_log` VALUES (7529, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:35:52'); INSERT INTO `sys_oper_log` VALUES (7530, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:35:52'); INSERT INTO `sys_oper_log` VALUES (7531, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:36:08'); INSERT INTO `sys_oper_log` VALUES (7532, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:36:09'); INSERT INTO `sys_oper_log` VALUES (7533, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:36:12'); INSERT INTO `sys_oper_log` VALUES (7534, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:36:13'); INSERT INTO `sys_oper_log` VALUES (7535, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:36:17'); INSERT INTO `sys_oper_log` VALUES (7536, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:36:17'); INSERT INTO `sys_oper_log` VALUES (7537, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:36:24'); INSERT INTO `sys_oper_log` VALUES (7538, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:36:24'); INSERT INTO `sys_oper_log` VALUES (7539, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:37:07'); INSERT INTO `sys_oper_log` VALUES (7540, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:37:07'); INSERT INTO `sys_oper_log` VALUES (7541, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:37:12'); INSERT INTO `sys_oper_log` VALUES (7542, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:37:12'); INSERT INTO `sys_oper_log` VALUES (7543, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:37:29'); INSERT INTO `sys_oper_log` VALUES (7544, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:37:29'); INSERT INTO `sys_oper_log` VALUES (7545, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:37:40'); INSERT INTO `sys_oper_log` VALUES (7546, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:37:40'); INSERT INTO `sys_oper_log` VALUES (7547, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:37:47'); INSERT INTO `sys_oper_log` VALUES (7548, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:37:47'); INSERT INTO `sys_oper_log` VALUES (7549, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:37:54'); INSERT INTO `sys_oper_log` VALUES (7550, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:37:54'); INSERT INTO `sys_oper_log` VALUES (7551, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:38:40'); INSERT INTO `sys_oper_log` VALUES (7552, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:38:40'); INSERT INTO `sys_oper_log` VALUES (7553, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:38:49'); INSERT INTO `sys_oper_log` VALUES (7554, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:38:49'); INSERT INTO `sys_oper_log` VALUES (7555, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:39:06'); INSERT INTO `sys_oper_log` VALUES (7556, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:39:06'); INSERT INTO `sys_oper_log` VALUES (7557, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:39:42'); INSERT INTO `sys_oper_log` VALUES (7558, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:39:42'); INSERT INTO `sys_oper_log` VALUES (7559, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:40:23'); INSERT INTO `sys_oper_log` VALUES (7560, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:40:23'); INSERT INTO `sys_oper_log` VALUES (7561, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1645193034000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-18 22:41:03'); INSERT INTO `sys_oper_log` VALUES (7562, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-18\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-18 22:03:54\"}}', 0, '', '2022-02-18 22:41:03'); INSERT INTO `sys_oper_log` VALUES (7563, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1494686216256995330', '127.0.0.1', '', '1494686216256995330', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-18 22:59:15'); INSERT INTO `sys_oper_log` VALUES (7564, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645231133000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-02-19 09:04:11'); INSERT INTO `sys_oper_log` VALUES (7565, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-19 08:38:53\"}}', 0, '', '2022-02-19 09:04:11'); INSERT INTO `sys_oper_log` VALUES (7566, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1645241644000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-02-19 11:51:54'); INSERT INTO `sys_oper_log` VALUES (7567, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-19 11:34:04\"}}', 0, '', '2022-02-19 11:51:54'); INSERT INTO `sys_oper_log` VALUES (7568, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645262208397,\"humidity\":\"64\",\"id\":1494964172137140226,\"province\":\"江西\",\"reporttime\":1645261715000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-19 17:16:48'); INSERT INTO `sys_oper_log` VALUES (7569, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-19 17:08:35\"}}', 0, '', '2022-02-19 17:16:48'); INSERT INTO `sys_oper_log` VALUES (7570, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645265536378,\"humidity\":\"67\",\"id\":1494978130713743361,\"province\":\"江西\",\"reporttime\":1645265031000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-19 18:12:16'); INSERT INTO `sys_oper_log` VALUES (7571, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-19 18:03:51\"}}', 0, '', '2022-02-19 18:12:16'); INSERT INTO `sys_oper_log` VALUES (7572, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:12'); INSERT INTO `sys_oper_log` VALUES (7573, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:12'); INSERT INTO `sys_oper_log` VALUES (7574, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:13'); INSERT INTO `sys_oper_log` VALUES (7575, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:13'); INSERT INTO `sys_oper_log` VALUES (7576, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:13'); INSERT INTO `sys_oper_log` VALUES (7577, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:13'); INSERT INTO `sys_oper_log` VALUES (7578, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:13'); INSERT INTO `sys_oper_log` VALUES (7579, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:13'); INSERT INTO `sys_oper_log` VALUES (7580, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:15'); INSERT INTO `sys_oper_log` VALUES (7581, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:16'); INSERT INTO `sys_oper_log` VALUES (7582, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:17'); INSERT INTO `sys_oper_log` VALUES (7583, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:17'); INSERT INTO `sys_oper_log` VALUES (7584, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:17'); INSERT INTO `sys_oper_log` VALUES (7585, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:18'); INSERT INTO `sys_oper_log` VALUES (7586, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:18'); INSERT INTO `sys_oper_log` VALUES (7587, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:18'); INSERT INTO `sys_oper_log` VALUES (7588, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:19'); INSERT INTO `sys_oper_log` VALUES (7589, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:19'); INSERT INTO `sys_oper_log` VALUES (7590, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:20'); INSERT INTO `sys_oper_log` VALUES (7591, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:20'); INSERT INTO `sys_oper_log` VALUES (7592, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":19,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":55}}', 0, '', '2022-02-19 18:16:20'); INSERT INTO `sys_oper_log` VALUES (7593, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"壁纸\",\"top\":2,\"createTime\":1645265888824,\"englishWord\":\"wallpaper\",\"isCollect\":1,\"id\":1494979609008787457,\"sort\":0,\"content\":\"壁纸\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-19 18:18:08'); INSERT INTO `sys_oper_log` VALUES (7594, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '', 1, '英语一言接口降级!!!', '2022-02-19 18:18:14'); INSERT INTO `sys_oper_log` VALUES (7595, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645265900892,\"en\":\"Pity is akin to love.\",\"id\":1494979659596271617,\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:18:20'); INSERT INTO `sys_oper_log` VALUES (7596, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645265536378,\"humidity\":\"67\",\"id\":1494978130713743361,\"province\":\"江西\",\"reporttime\":1645265031000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-19 18:18:22'); INSERT INTO `sys_oper_log` VALUES (7597, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-19 18:03:51\"}}', 0, '', '2022-02-19 18:18:22'); INSERT INTO `sys_oper_log` VALUES (7598, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:18:25'); INSERT INTO `sys_oper_log` VALUES (7599, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:18:28'); INSERT INTO `sys_oper_log` VALUES (7600, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645265536378,\"humidity\":\"67\",\"id\":1494978130713743361,\"province\":\"江西\",\"reporttime\":1645265031000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-19 18:18:34'); INSERT INTO `sys_oper_log` VALUES (7601, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-19 18:03:51\"}}', 0, '', '2022-02-19 18:18:34'); INSERT INTO `sys_oper_log` VALUES (7602, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:18:36'); INSERT INTO `sys_oper_log` VALUES (7603, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645265536378,\"humidity\":\"67\",\"id\":1494978130713743361,\"province\":\"江西\",\"reporttime\":1645265031000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-19 18:18:39'); INSERT INTO `sys_oper_log` VALUES (7604, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-19 18:03:51\"}}', 0, '', '2022-02-19 18:18:40'); INSERT INTO `sys_oper_log` VALUES (7605, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:18:43'); INSERT INTO `sys_oper_log` VALUES (7606, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:19:29'); INSERT INTO `sys_oper_log` VALUES (7607, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:20:02'); INSERT INTO `sys_oper_log` VALUES (7608, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:20:04'); INSERT INTO `sys_oper_log` VALUES (7609, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:20:06'); INSERT INTO `sys_oper_log` VALUES (7610, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:20:09'); INSERT INTO `sys_oper_log` VALUES (7611, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:20:11'); INSERT INTO `sys_oper_log` VALUES (7612, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:20:12'); INSERT INTO `sys_oper_log` VALUES (7613, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645265536378,\"humidity\":\"67\",\"id\":1494978130713743361,\"province\":\"江西\",\"reporttime\":1645265031000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-19 18:20:17'); INSERT INTO `sys_oper_log` VALUES (7614, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-19\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-19 18:03:51\"}}', 0, '', '2022-02-19 18:20:17'); INSERT INTO `sys_oper_log` VALUES (7615, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:20:20'); INSERT INTO `sys_oper_log` VALUES (7616, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Pity is akin to love.\",\"zh\":\"怜悯生爱.\"}}', 0, '', '2022-02-19 18:20:27'); INSERT INTO `sys_oper_log` VALUES (7617, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645273549843,\"en\":\"The truth will out.\",\"id\":1495011741651406850,\"zh\":\"真相总会大白.\"}}', 0, '', '2022-02-19 20:25:49'); INSERT INTO `sys_oper_log` VALUES (7618, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"平台\",\"top\":2,\"createTime\":1645274475220,\"englishWord\":\"platform\",\"isCollect\":1,\"id\":1495015622968070145,\"sort\":0,\"content\":\"平台\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-19 20:41:15'); INSERT INTO `sys_oper_log` VALUES (7619, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645274480128,\"en\":\"You cannot burn the candle at both ends.\",\"id\":1495015643536920578,\"zh\":\"蜡烛不能两头点。\"}}', 0, '', '2022-02-19 20:41:20'); INSERT INTO `sys_oper_log` VALUES (7620, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645278515856,\"en\":\"I\'ll do my best\",\"id\":1495032570619596802,\"zh\":\"我将会尽我最大努力。\"}}', 0, '', '2022-02-19 21:48:35'); INSERT INTO `sys_oper_log` VALUES (7621, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I\'ll do my best\",\"zh\":\"我将会尽我最大努力。\"}}', 0, '', '2022-02-19 21:48:38'); INSERT INTO `sys_oper_log` VALUES (7622, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I\'ll do my best\",\"zh\":\"我将会尽我最大努力。\"}}', 0, '', '2022-02-19 21:48:40'); INSERT INTO `sys_oper_log` VALUES (7623, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1645277637000,\"temperature\":\"4\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-19 22:03:46'); INSERT INTO `sys_oper_log` VALUES (7624, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-19\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-19 21:33:57\"}}', 0, '', '2022-02-19 22:03:46'); INSERT INTO `sys_oper_log` VALUES (7625, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'webmagic_job_info', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-19 22:03:54'); INSERT INTO `sys_oper_log` VALUES (7626, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个人经过不同程度的锻炼,就获得不同程度的修养、不同程度的效益。好比香料,捣得愈碎,磨得愈细,香得愈浓烈。\",\"createTime\":1645280410972,\"id\":1495040519287050241,\"source\":\"杨绛\",\"type\":1}}', 0, '', '2022-02-19 22:20:10'); INSERT INTO `sys_oper_log` VALUES (7627, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It is during our darkest moments that we must focus to see the light.\",\"createTime\":1645280411301,\"dataId\":4249,\"date\":1631462400000,\"id\":1495040520671170561,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/116ac1746632f3e4bc6e0a1237f5ced2.png\",\"note\":\"越是至暗时刻,我们越要集中精神去寻找光明。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a3280635f4f9f1b90d22d745433b1a2a.mp3\"}}', 0, '', '2022-02-19 22:20:11'); INSERT INTO `sys_oper_log` VALUES (7628, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"发布\",\"top\":2,\"createTime\":1645280419055,\"englishWord\":\"release\",\"isCollect\":1,\"id\":1495040553210597378,\"sort\":0,\"content\":\"发布\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-19 22:20:19'); INSERT INTO `sys_oper_log` VALUES (7629, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"爬虫\",\"top\":2,\"createTime\":1645281841897,\"englishWord\":\"Reptile\",\"isCollect\":1,\"id\":1495046521038295041,\"sort\":0,\"content\":\"爬虫\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-19 22:44:01'); INSERT INTO `sys_oper_log` VALUES (7630, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 09:34:00\"}}', 0, '', '2022-02-20 09:43:46'); INSERT INTO `sys_oper_log` VALUES (7631, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1645320840000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-20 09:43:46'); INSERT INTO `sys_oper_log` VALUES (7632, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"照片\",\"top\":2,\"createTime\":1645322616897,\"englishWord\":\"Photo\",\"isCollect\":1,\"id\":1495217543792164866,\"sort\":0,\"content\":\"照片\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-20 10:03:36'); INSERT INTO `sys_oper_log` VALUES (7633, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645322621295,\"en\":\"Only a life lived for others is a life worthwhile.\",\"id\":1495217562184269825,\"zh\":\"只有为别人而活,生命才有价值.\"}}', 0, '', '2022-02-20 10:03:41'); INSERT INTO `sys_oper_log` VALUES (7634, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"标签\",\"top\":2,\"createTime\":1645322786463,\"englishWord\":\"The label\",\"isCollect\":1,\"id\":1495218254986739713,\"sort\":0,\"content\":\"标签\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-20 10:06:26'); INSERT INTO `sys_oper_log` VALUES (7635, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1495218254986739713', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-20 10:06:32'); INSERT INTO `sys_oper_log` VALUES (7636, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'webmagic_36wallpaper', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 10:07:32'); INSERT INTO `sys_oper_log` VALUES (7637, '代码生成', 2, 'com.ruoyi.gen.controller.GenController.synchDb()', 'GET', 1, 'admin', NULL, '/gen/synchDb/webmagic_job_info', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 10:07:39'); INSERT INTO `sys_oper_log` VALUES (7638, '代码生成', 3, 'com.ruoyi.gen.controller.GenController.remove()', 'DELETE', 1, 'admin', NULL, '/gen/22', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 10:07:42'); INSERT INTO `sys_oper_log` VALUES (7639, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1645328037000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-20 11:49:46'); INSERT INTO `sys_oper_log` VALUES (7640, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 11:33:57\"}}', 0, '', '2022-02-20 11:49:46'); INSERT INTO `sys_oper_log` VALUES (7641, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1645328037000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-20 11:49:59'); INSERT INTO `sys_oper_log` VALUES (7642, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 11:33:57\"}}', 0, '', '2022-02-20 11:49:59'); INSERT INTO `sys_oper_log` VALUES (7643, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645337564255,\"humidity\":\"49\",\"id\":1495280237509558273,\"province\":\"江西\",\"reporttime\":1645337030000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 14:12:44'); INSERT INTO `sys_oper_log` VALUES (7644, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 14:03:50\"}}', 0, '', '2022-02-20 14:12:44'); INSERT INTO `sys_oper_log` VALUES (7645, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案网-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 10 3/4 * * ?\",\"jobId\":105,\"createBy\":\"admin\",\"nextValidTime\":1645341000000,\"createTime\":1645060444000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingNetworkTask.copyWritingNetwork\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 15:07:43'); INSERT INTO `sys_oper_log` VALUES (7646, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 17:08:34\"}}', 0, '', '2022-02-20 17:18:18'); INSERT INTO `sys_oper_log` VALUES (7647, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645348698546,\"humidity\":\"48\",\"id\":1495326938140196865,\"province\":\"江西\",\"reporttime\":1645348114000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 17:18:18'); INSERT INTO `sys_oper_log` VALUES (7648, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645349906833,\"humidity\":\"47\",\"id\":1495332006084165634,\"province\":\"江西\",\"reporttime\":1645349624000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 17:38:26'); INSERT INTO `sys_oper_log` VALUES (7649, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 17:33:44\"}}', 0, '', '2022-02-20 17:38:26'); INSERT INTO `sys_oper_log` VALUES (7650, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 17:33:44\"}}', 0, '', '2022-02-20 17:59:28'); INSERT INTO `sys_oper_log` VALUES (7651, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"47\",\"province\":\"江西\",\"reporttime\":1645349624000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 17:59:28'); INSERT INTO `sys_oper_log` VALUES (7652, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 17:33:44\"}}', 0, '', '2022-02-20 18:00:26'); INSERT INTO `sys_oper_log` VALUES (7653, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"47\",\"province\":\"江西\",\"reporttime\":1645349624000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 18:00:26'); INSERT INTO `sys_oper_log` VALUES (7654, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"47\",\"province\":\"江西\",\"reporttime\":1645349624000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 18:08:19'); INSERT INTO `sys_oper_log` VALUES (7655, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 17:33:44\"}}', 0, '', '2022-02-20 18:08:19'); INSERT INTO `sys_oper_log` VALUES (7656, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 18:03:50\"}}', 0, '', '2022-02-20 18:09:50'); INSERT INTO `sys_oper_log` VALUES (7657, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645351790711,\"humidity\":\"49\",\"id\":1495339907632807937,\"province\":\"江西\",\"reporttime\":1645351430000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 18:09:50'); INSERT INTO `sys_oper_log` VALUES (7658, '定时任务', 1, 'com.ruoyi.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"36壁纸网-爬虫-定时任务\",\"concurrent\":\"1\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 10 3/4 * * ?\",\"jobId\":106,\"createBy\":\"admin\",\"nextValidTime\":1645355400000,\"invokeTarget\":\"Wallpaper_36Task._36wallpaper\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 18:27:18'); INSERT INTO `sys_oper_log` VALUES (7659, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"36壁纸网-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 20 4/4 * * ?\",\"jobId\":106,\"createBy\":\"admin\",\"nextValidTime\":1645359600000,\"createTime\":1645352838000,\"updateBy\":\"admin\",\"invokeTarget\":\"Wallpaper_36Task._36wallpaper\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 18:27:51'); INSERT INTO `sys_oper_log` VALUES (7660, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 18:27:53'); INSERT INTO `sys_oper_log` VALUES (7661, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 18:28:55'); INSERT INTO `sys_oper_log` VALUES (7662, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 18:03:50\"}}', 0, '', '2022-02-20 18:32:02'); INSERT INTO `sys_oper_log` VALUES (7663, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"49\",\"province\":\"江西\",\"reporttime\":1645351430000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 18:32:02'); INSERT INTO `sys_oper_log` VALUES (7664, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 18:32:53'); INSERT INTO `sys_oper_log` VALUES (7665, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 18:03:50\"}}', 0, '', '2022-02-20 18:33:57'); INSERT INTO `sys_oper_log` VALUES (7666, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"49\",\"province\":\"江西\",\"reporttime\":1645351430000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 18:33:57'); INSERT INTO `sys_oper_log` VALUES (7667, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 18:34:26'); INSERT INTO `sys_oper_log` VALUES (7668, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"49\",\"province\":\"江西\",\"reporttime\":1645351430000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 18:37:38'); INSERT INTO `sys_oper_log` VALUES (7669, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 18:03:50\"}}', 0, '', '2022-02-20 18:37:38'); INSERT INTO `sys_oper_log` VALUES (7670, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 18:37:55'); INSERT INTO `sys_oper_log` VALUES (7671, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 18:39:49'); INSERT INTO `sys_oper_log` VALUES (7672, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 18:46:56'); INSERT INTO `sys_oper_log` VALUES (7673, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645353527000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 18:48:17'); INSERT INTO `sys_oper_log` VALUES (7674, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 18:38:47\"}}', 0, '', '2022-02-20 18:48:17'); INSERT INTO `sys_oper_log` VALUES (7675, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1495355056116703234', '127.0.0.1', '', '1495355056116703234', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-20 19:17:31'); INSERT INTO `sys_oper_log` VALUES (7676, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 19:08:46\"}}', 0, '', '2022-02-20 19:18:44'); INSERT INTO `sys_oper_log` VALUES (7677, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645355924941,\"humidity\":\"51\",\"id\":1495357247833456642,\"province\":\"江西\",\"reporttime\":1645355326000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 19:18:44'); INSERT INTO `sys_oper_log` VALUES (7678, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645355924941,\"humidity\":\"51\",\"id\":1495357247833456642,\"province\":\"江西\",\"reporttime\":1645355326000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 19:18:47'); INSERT INTO `sys_oper_log` VALUES (7679, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 19:08:46\"}}', 0, '', '2022-02-20 19:18:47'); INSERT INTO `sys_oper_log` VALUES (7680, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1495217543792164866', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-20 19:24:29'); INSERT INTO `sys_oper_log` VALUES (7681, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"图片\"}', '', 1, '该词汇已存在!!!!', '2022-02-20 19:24:33'); INSERT INTO `sys_oper_log` VALUES (7682, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645356283557,\"en\":\"Honour lies in honest toil.\",\"id\":1495358752003145729,\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:24:43'); INSERT INTO `sys_oper_log` VALUES (7683, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"爬虫\",\"top\":2,\"createTime\":1645281842000,\"englishWord\":\"reptile\",\"isCollect\":1,\"id\":1495046521038295041,\"sort\":0,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-20 19:24:48'); INSERT INTO `sys_oper_log` VALUES (7684, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:24:50'); INSERT INTO `sys_oper_log` VALUES (7685, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:24:54'); INSERT INTO `sys_oper_log` VALUES (7686, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:24:56'); INSERT INTO `sys_oper_log` VALUES (7687, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:24:58'); INSERT INTO `sys_oper_log` VALUES (7688, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:25:01'); INSERT INTO `sys_oper_log` VALUES (7689, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:25:03'); INSERT INTO `sys_oper_log` VALUES (7690, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:25:05'); INSERT INTO `sys_oper_log` VALUES (7691, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:25:08'); INSERT INTO `sys_oper_log` VALUES (7692, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:25:10'); INSERT INTO `sys_oper_log` VALUES (7693, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:25:12'); INSERT INTO `sys_oper_log` VALUES (7694, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:25:14'); INSERT INTO `sys_oper_log` VALUES (7695, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Honour lies in honest toil.\",\"zh\":\"光荣在于诚恳地劳动.\"}}', 0, '', '2022-02-20 19:25:16'); INSERT INTO `sys_oper_log` VALUES (7696, '获取历史今天', 0, 'com.xjs.apitools.controller.ApiToolsController.getHistoryTodayApiData()', 'GET', 1, 'admin', '', '/apitools/historytoday', '127.0.0.1', '', '', '', 1, '获取历史上的今天api调用异常!!!', '2022-02-20 19:26:14'); INSERT INTO `sys_oper_log` VALUES (7697, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年02月21日\",\"holidayName\":\"国际母语日\",\"lunarDate\":\"2022年01月21日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年02月21日\"},{\"date\":\"2022年02月24日\",\"holidayName\":\"第三世界青年日\",\"lunarDate\":\"2022年01月24日\",\"lunarHoliday\":false,\"residueDays\":3,\"returnDate\":\"2022年02月24日\"},{\"date\":\"2022年02月28日\",\"holidayName\":\"国际罕见病日\",\"lunarDate\":\"2022年01月28日\",\"lunarHoliday\":false,\"residueDays\":7,\"returnDate\":\"2022年02月28日\"},{\"date\":\"2022年03月01日\",\"holidayName\":\"国际海豹日\",\"lunarDate\":\"2022年01月29日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年03月01日\"},{\"date\":\"2022年03月03日\",\"holidayName\":\"全国爱耳日\",\"lunarDate\":\"2022年02月01日\",\"lunarHoliday\":false,\"residueDays\":10,\"returnDate\":\"2022年03月03日\"},{\"date\":\"2022年03月04日\",\"holidayName\":\"龙抬头\",\"lunarDate\":\"2022年02月02日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"壬寅虎年 正月初二\"},{\"date\":\"2022年03月05日\",\"holidayName\":\"学雷锋纪念日\",\"lunarDate\":\"2022年02月03日\",\"lunarHoliday\":false,\"residueDays\":12,\"returnDate\":\"2022年03月05日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-20 19:26:15'); INSERT INTO `sys_oper_log` VALUES (7698, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"216KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb7w0d8j31c00u0dm1.jpg\"},{\"imageFileLength\":\"240KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8fsmh2j31hc0u0wkv.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursr502dj31c00u0drv.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqjzy4vj31c00u0x36.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1ep5icj31hc0u00vc.jpg\"},{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28eod61v0j31c00u0kjl.jpg\"},{\"imageFileLength\":\"136KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut472oezj31c00u0420.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaktz2bj31c00u043b.jpg\"},{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvuelq1j31c00u0h0p.jpg\"},{\"imageFileLength\":\"540KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ij0kdj31hc0u017i.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-20 19:26:21'); INSERT INTO `sys_oper_log` VALUES (7699, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1495357573080784897', '127.0.0.1', '', '1495357573080784897', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-20 19:26:29'); INSERT INTO `sys_oper_log` VALUES (7700, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 20:24:23'); INSERT INTO `sys_oper_log` VALUES (7701, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645360348998,\"humidity\":\"48\",\"id\":1495375803677622274,\"province\":\"江西\",\"reporttime\":1645358628000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 20:32:29'); INSERT INTO `sys_oper_log` VALUES (7702, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"4\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 20:03:48\"}}', 0, '', '2022-02-20 20:32:29'); INSERT INTO `sys_oper_log` VALUES (7703, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 20:32:37'); INSERT INTO `sys_oper_log` VALUES (7704, '参数管理', 3, 'com.ruoyi.system.controller.SysConfigController.remove()', 'DELETE', 1, 'admin', NULL, '/config/3', '127.0.0.1', '', NULL, NULL, 1, '内置参数【sys.index.sideTheme】不能删除 ', '2022-02-20 20:53:34'); INSERT INTO `sys_oper_log` VALUES (7705, '参数管理', 1, 'com.ruoyi.system.controller.SysConfigController.add()', 'POST', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"36壁纸网参数配置\",\"configKey\":\"xjs:webmagic:_36wallpaper\",\"createBy\":\"admin\",\"remark\":\"json格式值\",\"configType\":\"Y\",\"configValue\":\"{}\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 20:54:17'); INSERT INTO `sys_oper_log` VALUES (7706, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"36壁纸网参数配置\",\"configKey\":\"xjs.webmagic._36wallpaper\",\"createBy\":\"admin\",\"createTime\":1645361657000,\"updateBy\":\"admin\",\"configId\":100,\"remark\":\"json格式值\",\"configType\":\"Y\",\"configValue\":\"{}\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 20:54:32'); INSERT INTO `sys_oper_log` VALUES (7707, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"36壁纸网参数配置\",\"configKey\":\"xjs.webmagic._36wallpaper\",\"createBy\":\"admin\",\"createTime\":1645361657000,\"updateBy\":\"admin\",\"configId\":100,\"remark\":\"json格式值\",\"updateTime\":1645361672000,\"configType\":\"Y\",\"configValue\":\"{\\\"init\\\":false,\\\"downloadImg\\\":false,\\\"path\\\":\\\"D:\\\\\\\\Dev\\\\\\\\WebCrawler\\\\\\\\36wallpaper\\\"}\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 20:57:26'); INSERT INTO `sys_oper_log` VALUES (7708, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645364188476,\"humidity\":\"50\",\"id\":1495391907619749890,\"province\":\"江西\",\"reporttime\":1645364025000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-20 21:36:28'); INSERT INTO `sys_oper_log` VALUES (7709, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-20\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-20 21:33:46\"}}', 0, '', '2022-02-20 21:36:28'); INSERT INTO `sys_oper_log` VALUES (7710, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 21:36:45'); INSERT INTO `sys_oper_log` VALUES (7711, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 21:40:48'); INSERT INTO `sys_oper_log` VALUES (7712, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"36壁纸网参数配置\",\"configKey\":\"xjs.webmagic._36wallpaper\",\"createBy\":\"admin\",\"createTime\":1645361657000,\"updateBy\":\"admin\",\"configId\":100,\"remark\":\"json格式值\",\"updateTime\":1645361846000,\"configType\":\"Y\",\"configValue\":\"{\\\"init\\\":false,\\\"downloadImg\\\":true,\\\"path\\\":\\\"D:\\\\\\\\Dev\\\\\\\\WebCrawler\\\\\\\\36wallpaper_copy\\\"}\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 21:55:09'); INSERT INTO `sys_oper_log` VALUES (7713, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"36壁纸网参数配置\",\"configKey\":\"xjs.webmagic._36wallpaper\",\"createBy\":\"admin\",\"createTime\":1645361657000,\"updateBy\":\"admin\",\"configId\":100,\"remark\":\"json格式值\",\"updateTime\":1645365309000,\"configType\":\"Y\",\"configValue\":\"{\\\"init\\\":false,\\\"downloadImg\\\":false,\\\"path\\\":\\\"D:\\\\\\\\Dev\\\\\\\\WebCrawler\\\\\\\\36wallpaper\\\"}\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 22:17:57'); INSERT INTO `sys_oper_log` VALUES (7714, '参数管理', 3, 'com.ruoyi.system.controller.SysConfigController.remove()', 'DELETE', 1, 'admin', NULL, '/config/100', '127.0.0.1', '', NULL, NULL, 1, '内置参数【xjs.webmagic._36wallpaper】不能删除 ', '2022-02-20 22:18:00'); INSERT INTO `sys_oper_log` VALUES (7715, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-20 22:51:37'); INSERT INTO `sys_oper_log` VALUES (7716, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All is riddle, and the key to a riddle…is another riddle.\",\"createTime\":1645368923724,\"dataId\":3683,\"date\":1582560000000,\"id\":1495411768672600065,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/a0d10ed5e69dbb37003c49210a8fa99d.png\",\"note\":\"所有的事物都是谜团,而解开一个谜的钥匙……是另一个谜。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/04781de6b600dc9e1bb0a93add1312b4.mp3\"}}', 0, '', '2022-02-20 22:55:23'); INSERT INTO `sys_oper_log` VALUES (7717, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"环境愈艰难困苦,就愈需要坚定的毅力和信心,而且,懈怠的害处就愈大。\",\"createTime\":1645368923746,\"id\":1495411768798429186,\"source\":\"列夫·托尔斯泰\",\"type\":4}}', 0, '', '2022-02-20 22:55:23'); INSERT INTO `sys_oper_log` VALUES (7718, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"环境愈艰难困苦,就愈需要坚定的毅力和信心,而且,懈怠的害处就愈大。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":38,\"errorCode\":0,\"transResult\":[{\"dst\":\"Environment more hardship, more need strong perseverance and confidence, and the harm of slack is big.\",\"src\":\"环境愈艰难困苦,就愈需要坚定的毅力和信心,而且,懈怠的害处就愈大。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-02-20 22:55:31'); INSERT INTO `sys_oper_log` VALUES (7719, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"小雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 08:38:49\"}}', 0, '', '2022-02-21 08:58:03'); INSERT INTO `sys_oper_log` VALUES (7720, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645405083642,\"humidity\":\"60\",\"id\":1495563434354442241,\"province\":\"江西\",\"reporttime\":1645403929000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 08:58:03'); INSERT INTO `sys_oper_log` VALUES (7721, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"注解\",\"top\":2,\"createTime\":1645406032150,\"englishWord\":\"annotation\",\"isCollect\":1,\"id\":1495567412718903297,\"sort\":0,\"content\":\"注解\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-21 09:13:52'); INSERT INTO `sys_oper_log` VALUES (7722, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645405731000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:30:02'); INSERT INTO `sys_oper_log` VALUES (7723, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:08:51\"}}', 0, '', '2022-02-21 09:30:02'); INSERT INTO `sys_oper_log` VALUES (7724, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"做一件事所需的时间,可能只是你口中的等一会儿。\",\"createTime\":1645407306302,\"id\":1495572756849389570,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-21 09:35:06'); INSERT INTO `sys_oper_log` VALUES (7725, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Strength alone knows conflict, weakness is below even defeat, and is born vanquished.\",\"createTime\":1645407306317,\"dataId\":3459,\"date\":1563552000000,\"id\":1495572756912304130,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-20.jpg\",\"note\":\"只有强者才懂得争斗;弱者甚至失败都不够资格,而是生来就是被征服的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-20-day.mp3\"}}', 0, '', '2022-02-21 09:35:06'); INSERT INTO `sys_oper_log` VALUES (7726, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"无法心想事成,是人之常情。\\\"\",\"createTime\":1645407340132,\"id\":1495572898772054017,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-21 09:35:40'); INSERT INTO `sys_oper_log` VALUES (7727, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645405731000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:37:32'); INSERT INTO `sys_oper_log` VALUES (7728, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:08:51\"}}', 0, '', '2022-02-21 09:37:33'); INSERT INTO `sys_oper_log` VALUES (7729, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In every person who comes near you, look for what is good and strong.\",\"createTime\":1645407456231,\"dataId\":4074,\"date\":1616342400000,\"id\":1495573385718165506,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/062c192e4df7a80457fb5d7119e82c46.png\",\"note\":\"对于你遇见的每一个人,寻找他的优点及强项。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/f38dbbb40174584da594c9354776993c.mp3\"}}', 0, '', '2022-02-21 09:37:36'); INSERT INTO `sys_oper_log` VALUES (7730, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你必须知道,人总有一天会死,没什么好怕的。除非你知道这个道理并且坦然接受,否则一辈子没出息。\",\"createTime\":1645407456228,\"id\":1495573385718165505,\"source\":\"斗阵俱乐部(搏击俱乐部)Fight Club\",\"type\":3}}', 0, '', '2022-02-21 09:37:36'); INSERT INTO `sys_oper_log` VALUES (7731, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:08:51\"}}', 0, '', '2022-02-21 09:38:43'); INSERT INTO `sys_oper_log` VALUES (7732, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645405731000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:38:43'); INSERT INTO `sys_oper_log` VALUES (7733, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Witnesses pass, but history is eternal. - From China Daily\",\"createTime\":1645407523491,\"dataId\":4340,\"date\":1639324800000,\"id\":1495573667860606978,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/aa39ff578934c5b2828bc1c8c4b5781a.png\",\"note\":\"逝者长已矣,历史永铭记。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/34b833b4b03c810a7f668fbe5fdb708d.mp3\"}}', 0, '', '2022-02-21 09:38:43'); INSERT INTO `sys_oper_log` VALUES (7734, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"找不到路,就自己走一条出来。\",\"createTime\":1645407523850,\"id\":1495573669362167809,\"source\":\"魅影陌客\",\"type\":5}}', 0, '', '2022-02-21 09:38:43'); INSERT INTO `sys_oper_log` VALUES (7735, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645407221000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:40:17'); INSERT INTO `sys_oper_log` VALUES (7736, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:33:41\"}}', 0, '', '2022-02-21 09:40:17'); INSERT INTO `sys_oper_log` VALUES (7737, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645407221000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:40:37'); INSERT INTO `sys_oper_log` VALUES (7738, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:33:41\"}}', 0, '', '2022-02-21 09:40:37'); INSERT INTO `sys_oper_log` VALUES (7739, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:33:41\"}}', 0, '', '2022-02-21 09:40:56'); INSERT INTO `sys_oper_log` VALUES (7740, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645407221000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:40:56'); INSERT INTO `sys_oper_log` VALUES (7741, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645407221000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:43:25'); INSERT INTO `sys_oper_log` VALUES (7742, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:33:41\"}}', 0, '', '2022-02-21 09:43:25'); INSERT INTO `sys_oper_log` VALUES (7743, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645407221000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:43:36'); INSERT INTO `sys_oper_log` VALUES (7744, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:33:41\"}}', 0, '', '2022-02-21 09:43:36'); INSERT INTO `sys_oper_log` VALUES (7745, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645407221000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:44:09'); INSERT INTO `sys_oper_log` VALUES (7746, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:33:41\"}}', 0, '', '2022-02-21 09:44:09'); INSERT INTO `sys_oper_log` VALUES (7747, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645407221000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:46:56'); INSERT INTO `sys_oper_log` VALUES (7748, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:33:41\"}}', 0, '', '2022-02-21 09:46:56'); INSERT INTO `sys_oper_log` VALUES (7749, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645407221000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:48:19'); INSERT INTO `sys_oper_log` VALUES (7750, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:33:41\"}}', 0, '', '2022-02-21 09:48:19'); INSERT INTO `sys_oper_log` VALUES (7751, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:33:41\"}}', 0, '', '2022-02-21 09:52:48'); INSERT INTO `sys_oper_log` VALUES (7752, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645407221000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:52:48'); INSERT INTO `sys_oper_log` VALUES (7753, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645407221000,\"temperature\":\"4\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 09:54:45'); INSERT INTO `sys_oper_log` VALUES (7754, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 09:33:41\"}}', 0, '', '2022-02-21 09:54:46'); INSERT INTO `sys_oper_log` VALUES (7755, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"不就是打输了,别这么垂头丧气。我们是妖精的尾巴,永不停歇的公会。只要活着就要勇往直前的奔跑去。\\\"\",\"createTime\":1645411421540,\"id\":1495590017458958338,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-21 10:43:41'); INSERT INTO `sys_oper_log` VALUES (7756, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"No matter how dark the moment, love and hope are always possible.\",\"dataId\":3757,\"date\":1588953600000,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/f1b48c83862187185cd85223f1e14065.png\",\"note\":\"无论眼前有多黑暗,爱和希望总有可能。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/54e2d8e94a1f1b209768b9e9c376cbff.mp3\"}}', 0, '', '2022-02-21 10:43:41'); INSERT INTO `sys_oper_log` VALUES (7757, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"\\\"不就是打输了,别这么垂头丧气。我们是妖精的尾巴,永不停歇的公会。只要活着就要勇往直前的奔跑去。\\\"\",\"translationType\":1}', '', 1, '百度翻译接口调用异常', '2022-02-21 10:43:48'); INSERT INTO `sys_oper_log` VALUES (7758, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"\\\"不就是打输了,别这么垂头丧气。我们是妖精的尾巴,永不停歇的公会。只要活着就要勇往直前的奔跑去。\\\"\",\"translationType\":1}', '', 1, '百度翻译接口调用异常', '2022-02-21 10:45:21'); INSERT INTO `sys_oper_log` VALUES (7759, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The soul selects her own society, then shuts the door, to her divine majority, present no more.\",\"dataId\":3795,\"date\":1592236800000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/88e11aef0e9287cf69bdea3eaf8e0f80.png\",\"note\":\"灵魂选择自己的伴侣,然后,把门紧闭,她神圣的决定,再不容干预。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f87fe256997301d115898eb649a34063.mp3\"}}', 0, '', '2022-02-21 10:46:07'); INSERT INTO `sys_oper_log` VALUES (7760, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 10:39:02\"}}', 0, '', '2022-02-21 10:46:07'); INSERT INTO `sys_oper_log` VALUES (7761, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645411142000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 10:46:07'); INSERT INTO `sys_oper_log` VALUES (7762, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有时你会觉得自己就是个SB,别灰心,至少感觉是对的。\",\"createTime\":1645411567301,\"id\":1495590628812320769,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-21 10:46:07'); INSERT INTO `sys_oper_log` VALUES (7763, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"有时你会觉得自己就是个SB,别灰心,至少感觉是对的。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Sometimes you feel like an sb. Don\'t lose heart. At least you feel right.\",\"src\":\"有时你会觉得自己就是个SB,别灰心,至少感觉是对的。\"}]}}', 0, '', '2022-02-21 10:46:12'); INSERT INTO `sys_oper_log` VALUES (7764, '定时任务', 1, 'com.ruoyi.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"检查API状态定时任务\",\"concurrent\":\"1\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0 22 * * ?\",\"jobId\":107,\"createBy\":\"admin\",\"nextValidTime\":1645452000000,\"invokeTarget\":\"CheckApiStatusTask.checkApiStatus\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 11:01:13'); INSERT INTO `sys_oper_log` VALUES (7765, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 11:02:09'); INSERT INTO `sys_oper_log` VALUES (7766, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 11:02:11'); INSERT INTO `sys_oper_log` VALUES (7767, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 11:04:45'); INSERT INTO `sys_oper_log` VALUES (7768, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 11:06:51'); INSERT INTO `sys_oper_log` VALUES (7769, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"三五好友出去旅行是最幸福的事。。。\",\"createTime\":1645413032564,\"id\":1495596774562394113,\"source\":\"VILIN\",\"type\":5}}', 0, '', '2022-02-21 11:10:32'); INSERT INTO `sys_oper_log` VALUES (7770, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 11:08:49\"}}', 0, '', '2022-02-21 11:10:32'); INSERT INTO `sys_oper_log` VALUES (7771, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We are going forward to the future, not back into the past.\",\"createTime\":1645413032820,\"dataId\":4326,\"date\":1638115200000,\"id\":1495596775644524545,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/a92a253431ac3205b2a5fe1715d51efc.png\",\"note\":\"我们要迈向未来,而不是沉湎于过去。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/90a55c6e4d5400c8aa30c3c23a72b1e6.mp3\"}}', 0, '', '2022-02-21 11:10:32'); INSERT INTO `sys_oper_log` VALUES (7772, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645413032822,\"humidity\":\"48\",\"id\":1495596775644524546,\"province\":\"江西\",\"reporttime\":1645412929000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 11:10:32'); INSERT INTO `sys_oper_log` VALUES (7773, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"time\",\"orderNum\":\"3\",\"menuName\":\"36壁纸\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"_36wallpaper\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 11:19:06'); INSERT INTO `sys_oper_log` VALUES (7774, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tool\",\"orderNum\":\"2\",\"menuName\":\"配置\",\"params\":{},\"parentId\":2084,\"isCache\":\"0\",\"path\":\"settings\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 11:19:51'); INSERT INTO `sys_oper_log` VALUES (7775, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"设置\",\"top\":2,\"createTime\":1645413604042,\"englishWord\":\"settings\",\"isCollect\":1,\"id\":1495599171498057730,\"sort\":0,\"content\":\"settings\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-21 11:20:04'); INSERT INTO `sys_oper_log` VALUES (7776, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645413032822,\"humidity\":\"48\",\"id\":1495596775644524546,\"province\":\"江西\",\"reporttime\":1645412929000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 11:20:15'); INSERT INTO `sys_oper_log` VALUES (7777, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 11:08:49\"}}', 0, '', '2022-02-21 11:20:15'); INSERT INTO `sys_oper_log` VALUES (7778, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tab\",\"orderNum\":\"1\",\"menuName\":\"壁纸\",\"params\":{},\"parentId\":2084,\"isCache\":\"0\",\"path\":\"show\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 11:21:20'); INSERT INTO `sys_oper_log` VALUES (7779, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 11:08:49\"}}', 0, '', '2022-02-21 11:21:27'); INSERT INTO `sys_oper_log` VALUES (7780, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1645412929000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 11:21:27'); INSERT INTO `sys_oper_log` VALUES (7781, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1645412929000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 11:23:52'); INSERT INTO `sys_oper_log` VALUES (7782, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 11:08:49\"}}', 0, '', '2022-02-21 11:23:52'); INSERT INTO `sys_oper_log` VALUES (7783, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tool\",\"orderNum\":\"2\",\"menuName\":\"配置\",\"params\":{},\"parentId\":2084,\"isCache\":\"0\",\"path\":\"settings\",\"component\":\"business/webmagic/_36wallpaper/settings/index\",\"children\":[],\"createTime\":1645413591000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2085,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 11:24:35'); INSERT INTO `sys_oper_log` VALUES (7784, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 11:08:49\"}}', 0, '', '2022-02-21 11:24:38'); INSERT INTO `sys_oper_log` VALUES (7785, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1645412929000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 11:24:38'); INSERT INTO `sys_oper_log` VALUES (7786, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1645412929000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 11:24:44'); INSERT INTO `sys_oper_log` VALUES (7787, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 11:08:49\"}}', 0, '', '2022-02-21 11:24:45'); INSERT INTO `sys_oper_log` VALUES (7788, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 11:08:49\"}}', 0, '', '2022-02-21 11:25:07'); INSERT INTO `sys_oper_log` VALUES (7789, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1645412929000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 11:25:07'); INSERT INTO `sys_oper_log` VALUES (7790, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1645412929000,\"temperature\":\"5\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 11:25:28'); INSERT INTO `sys_oper_log` VALUES (7791, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 11:08:49\"}}', 0, '', '2022-02-21 11:25:28'); INSERT INTO `sys_oper_log` VALUES (7792, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"36壁纸网-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 20 5/4 * * ?\",\"jobId\":106,\"createBy\":\"admin\",\"nextValidTime\":1645420800000,\"createTime\":1645352838000,\"updateBy\":\"admin\",\"invokeTarget\":\"Wallpaper_36Task._36wallpaper\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 12:23:38'); INSERT INTO `sys_oper_log` VALUES (7793, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"46\",\"province\":\"江西\",\"reporttime\":1645421647000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-02-21 13:51:37'); INSERT INTO `sys_oper_log` VALUES (7794, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 13:34:07\"}}', 0, '', '2022-02-21 13:51:37'); INSERT INTO `sys_oper_log` VALUES (7795, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645425582451,\"humidity\":\"45\",\"id\":1495649412632997889,\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:39:42'); INSERT INTO `sys_oper_log` VALUES (7796, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:39:42'); INSERT INTO `sys_oper_log` VALUES (7797, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:43:08'); INSERT INTO `sys_oper_log` VALUES (7798, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645425582451,\"humidity\":\"45\",\"id\":1495649412632997889,\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:43:08'); INSERT INTO `sys_oper_log` VALUES (7799, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645425582451,\"humidity\":\"45\",\"id\":1495649412632997889,\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:43:23'); INSERT INTO `sys_oper_log` VALUES (7800, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:43:23'); INSERT INTO `sys_oper_log` VALUES (7801, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645425582451,\"humidity\":\"45\",\"id\":1495649412632997889,\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:45:11'); INSERT INTO `sys_oper_log` VALUES (7802, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:45:11'); INSERT INTO `sys_oper_log` VALUES (7803, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645425582451,\"humidity\":\"45\",\"id\":1495649412632997889,\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:46:00'); INSERT INTO `sys_oper_log` VALUES (7804, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:46:00'); INSERT INTO `sys_oper_log` VALUES (7805, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645425582451,\"humidity\":\"45\",\"id\":1495649412632997889,\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:46:08'); INSERT INTO `sys_oper_log` VALUES (7806, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:46:08'); INSERT INTO `sys_oper_log` VALUES (7807, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:52:06'); INSERT INTO `sys_oper_log` VALUES (7808, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:52:06'); INSERT INTO `sys_oper_log` VALUES (7809, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:52:46'); INSERT INTO `sys_oper_log` VALUES (7810, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:52:46'); INSERT INTO `sys_oper_log` VALUES (7811, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:53:02'); INSERT INTO `sys_oper_log` VALUES (7812, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:53:02'); INSERT INTO `sys_oper_log` VALUES (7813, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:53:20'); INSERT INTO `sys_oper_log` VALUES (7814, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:53:20'); INSERT INTO `sys_oper_log` VALUES (7815, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:53:29'); INSERT INTO `sys_oper_log` VALUES (7816, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:53:29'); INSERT INTO `sys_oper_log` VALUES (7817, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:54:02'); INSERT INTO `sys_oper_log` VALUES (7818, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:54:02'); INSERT INTO `sys_oper_log` VALUES (7819, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:54:09'); INSERT INTO `sys_oper_log` VALUES (7820, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:54:09'); INSERT INTO `sys_oper_log` VALUES (7821, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:54:15'); INSERT INTO `sys_oper_log` VALUES (7822, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:54:16'); INSERT INTO `sys_oper_log` VALUES (7823, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:54:27'); INSERT INTO `sys_oper_log` VALUES (7824, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:54:27'); INSERT INTO `sys_oper_log` VALUES (7825, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:54:47'); INSERT INTO `sys_oper_log` VALUES (7826, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:54:47'); INSERT INTO `sys_oper_log` VALUES (7827, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:55:43'); INSERT INTO `sys_oper_log` VALUES (7828, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:55:43'); INSERT INTO `sys_oper_log` VALUES (7829, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:56:07'); INSERT INTO `sys_oper_log` VALUES (7830, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:56:07'); INSERT INTO `sys_oper_log` VALUES (7831, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:56:58'); INSERT INTO `sys_oper_log` VALUES (7832, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:56:58'); INSERT INTO `sys_oper_log` VALUES (7833, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:57:10'); INSERT INTO `sys_oper_log` VALUES (7834, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:57:10'); INSERT INTO `sys_oper_log` VALUES (7835, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:57:49'); INSERT INTO `sys_oper_log` VALUES (7836, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:57:49'); INSERT INTO `sys_oper_log` VALUES (7837, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 14:57:59'); INSERT INTO `sys_oper_log` VALUES (7838, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 14:57:59'); INSERT INTO `sys_oper_log` VALUES (7839, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:03:08'); INSERT INTO `sys_oper_log` VALUES (7840, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 15:03:08'); INSERT INTO `sys_oper_log` VALUES (7841, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:04:29'); INSERT INTO `sys_oper_log` VALUES (7842, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 15:04:29'); INSERT INTO `sys_oper_log` VALUES (7843, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 15:04:50'); INSERT INTO `sys_oper_log` VALUES (7844, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:04:50'); INSERT INTO `sys_oper_log` VALUES (7845, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:10:23'); INSERT INTO `sys_oper_log` VALUES (7846, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 15:10:23'); INSERT INTO `sys_oper_log` VALUES (7847, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:10:43'); INSERT INTO `sys_oper_log` VALUES (7848, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 15:10:43'); INSERT INTO `sys_oper_log` VALUES (7849, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:11:28'); INSERT INTO `sys_oper_log` VALUES (7850, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 15:11:28'); INSERT INTO `sys_oper_log` VALUES (7851, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 14:38:56\"}}', 0, '', '2022-02-21 15:12:20'); INSERT INTO `sys_oper_log` VALUES (7852, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645425535000,\"temperature\":\"6\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:12:20'); INSERT INTO `sys_oper_log` VALUES (7853, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645427673077,\"humidity\":\"48\",\"id\":1495658181328826370,\"province\":\"江西\",\"reporttime\":1645427307000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:14:33'); INSERT INTO `sys_oper_log` VALUES (7854, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:08:27\"}}', 0, '', '2022-02-21 15:14:33'); INSERT INTO `sys_oper_log` VALUES (7855, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"新浪新闻-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0 0/2 * * ?\",\"jobId\":104,\"createBy\":\"admin\",\"nextValidTime\":1645430400000,\"createTime\":1644927123000,\"updateBy\":\"admin\",\"invokeTarget\":\"SinaTask.sinaNews\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 15:17:02'); INSERT INTO `sys_oper_log` VALUES (7856, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:08:27\"}}', 0, '', '2022-02-21 15:18:18'); INSERT INTO `sys_oper_log` VALUES (7857, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645427673077,\"humidity\":\"48\",\"id\":1495658181328826370,\"province\":\"江西\",\"reporttime\":1645427307000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:18:18'); INSERT INTO `sys_oper_log` VALUES (7858, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645427673077,\"humidity\":\"48\",\"id\":1495658181328826370,\"province\":\"江西\",\"reporttime\":1645427307000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:19:33'); INSERT INTO `sys_oper_log` VALUES (7859, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:08:27\"}}', 0, '', '2022-02-21 15:19:33'); INSERT INTO `sys_oper_log` VALUES (7860, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:08:27\"}}', 0, '', '2022-02-21 15:20:08'); INSERT INTO `sys_oper_log` VALUES (7861, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645427673077,\"humidity\":\"48\",\"id\":1495658181328826370,\"province\":\"江西\",\"reporttime\":1645427307000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:20:08'); INSERT INTO `sys_oper_log` VALUES (7862, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645427673077,\"humidity\":\"48\",\"id\":1495658181328826370,\"province\":\"江西\",\"reporttime\":1645427307000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:21:03'); INSERT INTO `sys_oper_log` VALUES (7863, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:08:27\"}}', 0, '', '2022-02-21 15:21:03'); INSERT INTO `sys_oper_log` VALUES (7864, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:08:27\"}}', 0, '', '2022-02-21 15:24:09'); INSERT INTO `sys_oper_log` VALUES (7865, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645427673077,\"humidity\":\"48\",\"id\":1495658181328826370,\"province\":\"江西\",\"reporttime\":1645427307000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:24:10'); INSERT INTO `sys_oper_log` VALUES (7866, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1645427307000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:25:21'); INSERT INTO `sys_oper_log` VALUES (7867, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:08:27\"}}', 0, '', '2022-02-21 15:25:21'); INSERT INTO `sys_oper_log` VALUES (7868, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1645427307000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:26:31'); INSERT INTO `sys_oper_log` VALUES (7869, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:08:27\"}}', 0, '', '2022-02-21 15:26:31'); INSERT INTO `sys_oper_log` VALUES (7870, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"重置\",\"top\":2,\"createTime\":1645428992298,\"englishWord\":\"reset\",\"isCollect\":1,\"id\":1495663714559500290,\"sort\":0,\"content\":\"重置\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-21 15:36:32'); INSERT INTO `sys_oper_log` VALUES (7871, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645428827000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:50:35'); INSERT INTO `sys_oper_log` VALUES (7872, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:33:47\"}}', 0, '', '2022-02-21 15:50:36'); INSERT INTO `sys_oper_log` VALUES (7873, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:33:47\"}}', 0, '', '2022-02-21 15:50:56'); INSERT INTO `sys_oper_log` VALUES (7874, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645428827000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:50:56'); INSERT INTO `sys_oper_log` VALUES (7875, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:33:47\"}}', 0, '', '2022-02-21 15:52:34'); INSERT INTO `sys_oper_log` VALUES (7876, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645428827000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:52:34'); INSERT INTO `sys_oper_log` VALUES (7877, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645428827000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 15:52:57'); INSERT INTO `sys_oper_log` VALUES (7878, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:33:47\"}}', 0, '', '2022-02-21 15:52:57'); INSERT INTO `sys_oper_log` VALUES (7879, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 15:53:26'); INSERT INTO `sys_oper_log` VALUES (7880, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 15:33:47\"}}', 0, '', '2022-02-21 16:03:11'); INSERT INTO `sys_oper_log` VALUES (7881, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645428827000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:03:12'); INSERT INTO `sys_oper_log` VALUES (7882, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"True masters are those who have chosen to make a life rather than a living.\",\"createTime\":1645430701622,\"dataId\":3908,\"date\":1602000000000,\"id\":1495670883979816961,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/c857a49feedc6cb334cd130a6b17219a.png\",\"note\":\"开创生活,而不是维持生命,这才是生命真正的主人。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/90b47d68162d416927830b2113571f8c.mp3\"}}', 0, '', '2022-02-21 16:05:01'); INSERT INTO `sys_oper_log` VALUES (7883, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"长得好看的才叫吃货,长得不好看的那叫饭桶!\",\"createTime\":1645430702154,\"id\":1495670886181826562,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-21 16:05:02'); INSERT INTO `sys_oper_log` VALUES (7884, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645430708801,\"en\":\"Very often a change of self is needed more than a change of scene.\",\"id\":1495670914073948162,\"zh\":\"改变自己往往比改变环境更为需要。\"}}', 0, '', '2022-02-21 16:05:08'); INSERT INTO `sys_oper_log` VALUES (7885, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:14:22'); INSERT INTO `sys_oper_log` VALUES (7886, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:14:23'); INSERT INTO `sys_oper_log` VALUES (7887, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tab\",\"orderNum\":\"1\",\"menuName\":\"壁纸\",\"params\":{},\"parentId\":2084,\"isCache\":\"0\",\"path\":\"show\",\"component\":\"business/webmagic/_36wallpaper/show/index\",\"children\":[],\"createTime\":1645413680000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2086,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 16:15:05'); INSERT INTO `sys_oper_log` VALUES (7888, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tool\",\"orderNum\":\"2\",\"menuName\":\"配置\",\"params\":{},\"parentId\":2084,\"isCache\":\"0\",\"path\":\"settings\",\"component\":\"business/webmagic/_36wallpaper/settings/index\",\"children\":[],\"createTime\":1645413591000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2085,\"menuType\":\"C\",\"perms\":\"webmagic:_36wallpaper:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-21 16:16:55'); INSERT INTO `sys_oper_log` VALUES (7889, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:19:11'); INSERT INTO `sys_oper_log` VALUES (7890, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:19:11'); INSERT INTO `sys_oper_log` VALUES (7891, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:19:52'); INSERT INTO `sys_oper_log` VALUES (7892, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:19:52'); INSERT INTO `sys_oper_log` VALUES (7893, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:20:20'); INSERT INTO `sys_oper_log` VALUES (7894, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:20:20'); INSERT INTO `sys_oper_log` VALUES (7895, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:20:55'); INSERT INTO `sys_oper_log` VALUES (7896, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:20:55'); INSERT INTO `sys_oper_log` VALUES (7897, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:22:02'); INSERT INTO `sys_oper_log` VALUES (7898, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:22:02'); INSERT INTO `sys_oper_log` VALUES (7899, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:22:08'); INSERT INTO `sys_oper_log` VALUES (7900, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:22:08'); INSERT INTO `sys_oper_log` VALUES (7901, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:22:19'); INSERT INTO `sys_oper_log` VALUES (7902, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:22:19'); INSERT INTO `sys_oper_log` VALUES (7903, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:22:39'); INSERT INTO `sys_oper_log` VALUES (7904, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:22:39'); INSERT INTO `sys_oper_log` VALUES (7905, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:22:48'); INSERT INTO `sys_oper_log` VALUES (7906, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:22:48'); INSERT INTO `sys_oper_log` VALUES (7907, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:23:47'); INSERT INTO `sys_oper_log` VALUES (7908, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:23:47'); INSERT INTO `sys_oper_log` VALUES (7909, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:23:57'); INSERT INTO `sys_oper_log` VALUES (7910, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:23:57'); INSERT INTO `sys_oper_log` VALUES (7911, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:24:07'); INSERT INTO `sys_oper_log` VALUES (7912, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645431263124,\"humidity\":\"50\",\"id\":1495673239031181313,\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:24:07'); INSERT INTO `sys_oper_log` VALUES (7913, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:26:56'); INSERT INTO `sys_oper_log` VALUES (7914, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:26:56'); INSERT INTO `sys_oper_log` VALUES (7915, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:29:46'); INSERT INTO `sys_oper_log` VALUES (7916, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:29:46'); INSERT INTO `sys_oper_log` VALUES (7917, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:30:26'); INSERT INTO `sys_oper_log` VALUES (7918, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:30:26'); INSERT INTO `sys_oper_log` VALUES (7919, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:31:59'); INSERT INTO `sys_oper_log` VALUES (7920, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:31:59'); INSERT INTO `sys_oper_log` VALUES (7921, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:32:11'); INSERT INTO `sys_oper_log` VALUES (7922, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:32:11'); INSERT INTO `sys_oper_log` VALUES (7923, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:32:19'); INSERT INTO `sys_oper_log` VALUES (7924, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:32:19'); INSERT INTO `sys_oper_log` VALUES (7925, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:32:33'); INSERT INTO `sys_oper_log` VALUES (7926, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:32:34'); INSERT INTO `sys_oper_log` VALUES (7927, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:32:42'); INSERT INTO `sys_oper_log` VALUES (7928, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:32:42'); INSERT INTO `sys_oper_log` VALUES (7929, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:32:53'); INSERT INTO `sys_oper_log` VALUES (7930, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:32:53'); INSERT INTO `sys_oper_log` VALUES (7931, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:33:00'); INSERT INTO `sys_oper_log` VALUES (7932, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:33:00'); INSERT INTO `sys_oper_log` VALUES (7933, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:33:10'); INSERT INTO `sys_oper_log` VALUES (7934, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:33:10'); INSERT INTO `sys_oper_log` VALUES (7935, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:33:30'); INSERT INTO `sys_oper_log` VALUES (7936, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:33:30'); INSERT INTO `sys_oper_log` VALUES (7937, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:34:01'); INSERT INTO `sys_oper_log` VALUES (7938, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:34:01'); INSERT INTO `sys_oper_log` VALUES (7939, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"50\",\"province\":\"江西\",\"reporttime\":1645430629000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 16:34:34'); INSERT INTO `sys_oper_log` VALUES (7940, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 16:03:49\"}}', 0, '', '2022-02-21 16:34:34'); INSERT INTO `sys_oper_log` VALUES (7941, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 17:08:30\"}}', 0, '', '2022-02-21 17:28:42'); INSERT INTO `sys_oper_log` VALUES (7942, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"47\",\"province\":\"江西\",\"reporttime\":1645434510000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 17:28:42'); INSERT INTO `sys_oper_log` VALUES (7943, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1645439923000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 18:48:30'); INSERT INTO `sys_oper_log` VALUES (7944, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 18:38:43\"}}', 0, '', '2022-02-21 18:48:31'); INSERT INTO `sys_oper_log` VALUES (7945, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1645439923000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 18:49:08'); INSERT INTO `sys_oper_log` VALUES (7946, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 18:38:43\"}}', 0, '', '2022-02-21 18:49:08'); INSERT INTO `sys_oper_log` VALUES (7947, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人活着,从来就不是自己一个人的事\",\"createTime\":1645440982604,\"id\":1495714005514383362,\"source\":\"霍元甲\",\"type\":3}}', 0, '', '2022-02-21 18:56:22'); INSERT INTO `sys_oper_log` VALUES (7948, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\" We all deserve a standing ovation at least once in our lives.\",\"createTime\":1645440982610,\"dataId\":4012,\"date\":1610985600000,\"id\":1495714005577297922,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/6ac81e229214bed9d0ef805821805068.png\",\"note\":\"每个人都值得大家站起来为他鼓掌一次。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/aeab74f84ba6766e6a77c6902ef13455.mp3\"}}', 0, '', '2022-02-21 18:56:22'); INSERT INTO `sys_oper_log` VALUES (7949, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"活着,从来就不是自己一个人的事\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Living is never your own business\",\"src\":\"活着,从来就不是自己一个人的事\"}]}}', 0, '', '2022-02-21 18:56:27'); INSERT INTO `sys_oper_log` VALUES (7950, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1495712409682419713', '127.0.0.1', '', '1495712409682419713', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-21 18:58:34'); INSERT INTO `sys_oper_log` VALUES (7951, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 19:08:36\"}}', 0, '', '2022-02-21 19:11:43'); INSERT INTO `sys_oper_log` VALUES (7952, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645441903439,\"humidity\":\"78\",\"id\":1495717867763724289,\"province\":\"江西\",\"reporttime\":1645441716000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 19:11:43'); INSERT INTO `sys_oper_log` VALUES (7953, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645441903439,\"humidity\":\"78\",\"id\":1495717867763724289,\"province\":\"江西\",\"reporttime\":1645441716000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 19:11:44'); INSERT INTO `sys_oper_log` VALUES (7954, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 19:08:36\"}}', 0, '', '2022-02-21 19:11:44'); INSERT INTO `sys_oper_log` VALUES (7955, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"3\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"8\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 19:08:36\"}}', 0, '', '2022-02-21 19:16:26'); INSERT INTO `sys_oper_log` VALUES (7956, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645441903439,\"humidity\":\"78\",\"id\":1495717867763724289,\"province\":\"江西\",\"reporttime\":1645441716000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 19:16:26'); INSERT INTO `sys_oper_log` VALUES (7957, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"273KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvka0b2j31hc0u0aol.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut552qkqj31c00u0djz.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut83ter0j31c00u043q.jpg\"},{\"imageFileLength\":\"319KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9e4898j31hc0u0do7.jpg\"},{\"imageFileLength\":\"296KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28en64bi8j31hc0u0dot.jpg\"},{\"imageFileLength\":\"157KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uico4dxpj31920u078g.jpg\"},{\"imageFileLength\":\"199KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8ta69gj31c00u0n2q.jpg\"},{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1us9f6n9wj31c00u079b.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8qqzk4j31c00u0dlb.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5ebf80j31c00u0tdo.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-21 19:17:15'); INSERT INTO `sys_oper_log` VALUES (7958, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 21:08:31\"}}', 0, '', '2022-02-21 21:19:14'); INSERT INTO `sys_oper_log` VALUES (7959, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 21:08:31\"}}', 0, '', '2022-02-21 21:19:14'); INSERT INTO `sys_oper_log` VALUES (7960, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645449554944,\"humidity\":\"85\",\"id\":1495749960554754049,\"province\":\"江西\",\"reporttime\":1645448911000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 21:19:14'); INSERT INTO `sys_oper_log` VALUES (7961, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645449554944,\"humidity\":\"85\",\"id\":1495749960554754049,\"province\":\"江西\",\"reporttime\":1645448911000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 21:19:17'); INSERT INTO `sys_oper_log` VALUES (7962, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 21:08:31\"}}', 0, '', '2022-02-21 21:19:17'); INSERT INTO `sys_oper_log` VALUES (7963, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1645448911000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 21:19:18'); INSERT INTO `sys_oper_log` VALUES (7964, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1645456111000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-21 23:20:26'); INSERT INTO `sys_oper_log` VALUES (7965, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-21\",\"daypower\":\"4\",\"daytemp\":\"7\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"雨夹雪\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-21 23:08:31\"}}', 0, '', '2022-02-21 23:20:27'); INSERT INTO `sys_oper_log` VALUES (7966, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It may not be pretty, but we headed to the city.\",\"dataId\":4063,\"date\":1615392000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4fad1d19a9fe5580c1a552a2e335f27d.png\",\"note\":\"其貌虽不扬,扬帆亦远航。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/53ccc74fd59abea209a70c8380f6b855.mp3\"}}', 0, '', '2022-02-21 23:21:40'); INSERT INTO `sys_oper_log` VALUES (7967, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"妹妹你坐船头,哥哥我在岸上走。看这句的99%都是唱出来的。\",\"createTime\":1645456900421,\"id\":1495780769680568321,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-21 23:21:40'); INSERT INTO `sys_oper_log` VALUES (7968, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1645490416113,\"englishWord\":\"source\",\"isCollect\":1,\"id\":1495921344716607490,\"sort\":0,\"content\":\"source\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-22 08:40:16'); INSERT INTO `sys_oper_log` VALUES (7969, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645490429230,\"en\":\"The jealous are troublesome to others, but a torment to themselves.\",\"id\":1495921399691354114,\"zh\":\"妒忌者对别人是烦恼,对他们自己却是折磨。\"}}', 0, '', '2022-02-22 08:40:29'); INSERT INTO `sys_oper_log` VALUES (7970, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"资源\",\"top\":2,\"createTime\":1645490416000,\"englishWord\":\"source\",\"isCollect\":1,\"id\":1495921344716607490,\"sort\":0,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-22 08:40:36'); INSERT INTO `sys_oper_log` VALUES (7971, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'webmagic_weixin_sougou', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 08:46:43'); INSERT INTO `sys_oper_log` VALUES (7972, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"36壁纸网-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 20 5/4 1/2 * ?\",\"jobId\":106,\"createBy\":\"admin\",\"nextValidTime\":1645564800000,\"createTime\":1645352838000,\"updateBy\":\"admin\",\"invokeTarget\":\"Wallpaper_36Task._36wallpaper\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:13:22'); INSERT INTO `sys_oper_log` VALUES (7973, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '', '{\"msg\":\"修改任务\'36壁纸网-爬虫-定时任务\'失败,Cron表达式不正确\",\"code\":500}', 0, NULL, '2022-02-22 09:13:51'); INSERT INTO `sys_oper_log` VALUES (7974, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '', '{\"msg\":\"修改任务\'36壁纸网-爬虫-定时任务\'失败,Cron表达式不正确\",\"code\":500}', 0, NULL, '2022-02-22 09:13:59'); INSERT INTO `sys_oper_log` VALUES (7975, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"36壁纸网-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 20 20 * * ?\",\"jobId\":106,\"createBy\":\"admin\",\"nextValidTime\":1645532400000,\"createTime\":1645352838000,\"updateBy\":\"admin\",\"invokeTarget\":\"Wallpaper_36Task._36wallpaper\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:14:47'); INSERT INTO `sys_oper_log` VALUES (7976, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"新浪新闻-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 0 0/3 * * ?\",\"jobId\":104,\"createBy\":\"admin\",\"nextValidTime\":1645502400000,\"createTime\":1644927123000,\"updateBy\":\"admin\",\"invokeTarget\":\"SinaTask.sinaNews\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:15:12'); INSERT INTO `sys_oper_log` VALUES (7977, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案网-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"0 10 3/6 * * ?\",\"jobId\":105,\"createBy\":\"admin\",\"nextValidTime\":1645513800000,\"createTime\":1645060444000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingNetworkTask.copyWritingNetwork\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:15:38'); INSERT INTO `sys_oper_log` VALUES (7978, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 09:08:36\"}}', 0, '', '2022-02-22 09:26:44'); INSERT INTO `sys_oper_log` VALUES (7979, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645492116000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 09:26:44'); INSERT INTO `sys_oper_log` VALUES (7980, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645492116000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 09:36:31'); INSERT INTO `sys_oper_log` VALUES (7981, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 09:08:36\"}}', 0, '', '2022-02-22 09:36:31'); INSERT INTO `sys_oper_log` VALUES (7982, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645493878531,\"humidity\":\"93\",\"id\":1495935867137695746,\"province\":\"江西\",\"reporttime\":1645493627000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 09:37:58'); INSERT INTO `sys_oper_log` VALUES (7983, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 09:33:47\"}}', 0, '', '2022-02-22 09:37:58'); INSERT INTO `sys_oper_log` VALUES (7984, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 09:33:47\"}}', 0, '', '2022-02-22 09:54:31'); INSERT INTO `sys_oper_log` VALUES (7985, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645493627000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 09:54:31'); INSERT INTO `sys_oper_log` VALUES (7986, '定时任务', 1, 'com.ruoyi.job.controller.SysJobController.add()', 'POST', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"微信搜狗-爬虫-定时任务\",\"concurrent\":\"1\",\"jobGroup\":\"SYSTEM\",\"params\":{},\"cronExpression\":\"30 15 0/3 * * ?\",\"jobId\":108,\"createBy\":\"admin\",\"nextValidTime\":1645503330000,\"invokeTarget\":\"WeiXinSouGouTask.weiXinSouGou\",\"misfirePolicy\":\"1\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:55:34'); INSERT INTO `sys_oper_log` VALUES (7987, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.changeStatus()', 'PUT', 1, 'admin', NULL, '/job/changeStatus', '127.0.0.1', '', '{\"params\":{},\"jobId\":108,\"misfirePolicy\":\"0\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:55:37'); INSERT INTO `sys_oper_log` VALUES (7988, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":108,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:55:52'); INSERT INTO `sys_oper_log` VALUES (7989, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"REPTILE\",\"listClass\":\"warning\",\"dictSort\":1,\"remark\":\"爬虫\",\"params\":{},\"dictType\":\"sys_job_group\",\"dictLabel\":\"爬虫\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:57:41'); INSERT INTO `sys_oper_log` VALUES (7990, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"REPTILE\",\"listClass\":\"warning\",\"dictSort\":1,\"remark\":\"爬虫分组\",\"params\":{},\"dictType\":\"sys_job_group\",\"dictLabel\":\"爬虫\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1645495061000,\"dictCode\":126,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:57:50'); INSERT INTO `sys_oper_log` VALUES (7991, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"API\",\"listClass\":\"primary\",\"dictSort\":2,\"remark\":\"第三方API分组\",\"params\":{},\"dictType\":\"sys_job_group\",\"dictLabel\":\"API\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:58:11'); INSERT INTO `sys_oper_log` VALUES (7992, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 09:33:47\"}}', 0, '', '2022-02-22 09:58:18'); INSERT INTO `sys_oper_log` VALUES (7993, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645493627000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 09:58:18'); INSERT INTO `sys_oper_log` VALUES (7994, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案调用任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"API\",\"params\":{},\"cronExpression\":\"0 0/10 * * * ?\",\"jobId\":100,\"createBy\":\"admin\",\"nextValidTime\":1645495200000,\"createTime\":1640620725000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:58:25'); INSERT INTO `sys_oper_log` VALUES (7995, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"天气预报定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"API\",\"params\":{},\"cronExpression\":\"0 0/20 * 1/1 * ?\",\"jobId\":101,\"createBy\":\"admin\",\"nextValidTime\":1645495200000,\"createTime\":1642341475000,\"updateBy\":\"admin\",\"invokeTarget\":\"WeatherTask.execute\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:58:33'); INSERT INTO `sys_oper_log` VALUES (7996, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"热搜榜定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"API\",\"params\":{},\"cronExpression\":\"0 0/10 * * * ?\",\"jobId\":103,\"createBy\":\"admin\",\"nextValidTime\":1645495200000,\"createTime\":1643158671000,\"updateBy\":\"admin\",\"invokeTarget\":\"TopSearchTask.getTopSearch\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:58:39'); INSERT INTO `sys_oper_log` VALUES (7997, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"新浪新闻-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"REPTILE\",\"params\":{},\"cronExpression\":\"0 0 0/3 * * ?\",\"jobId\":104,\"createBy\":\"admin\",\"nextValidTime\":1645502400000,\"createTime\":1644927123000,\"updateBy\":\"admin\",\"invokeTarget\":\"SinaTask.sinaNews\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:58:43'); INSERT INTO `sys_oper_log` VALUES (7998, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"文案网-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"REPTILE\",\"params\":{},\"cronExpression\":\"0 10 3/6 * * ?\",\"jobId\":105,\"createBy\":\"admin\",\"nextValidTime\":1645513800000,\"createTime\":1645060444000,\"updateBy\":\"admin\",\"invokeTarget\":\"CopyWritingNetworkTask.copyWritingNetwork\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:58:48'); INSERT INTO `sys_oper_log` VALUES (7999, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"36壁纸网-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"REPTILE\",\"params\":{},\"cronExpression\":\"0 20 20 * * ?\",\"jobId\":106,\"createBy\":\"admin\",\"nextValidTime\":1645532400000,\"createTime\":1645352838000,\"updateBy\":\"admin\",\"invokeTarget\":\"Wallpaper_36Task._36wallpaper\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:58:52'); INSERT INTO `sys_oper_log` VALUES (8000, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"微信搜狗-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"REPTILE\",\"params\":{},\"cronExpression\":\"30 15 0/3 * * ?\",\"jobId\":108,\"createBy\":\"admin\",\"nextValidTime\":1645503330000,\"createTime\":1645494934000,\"updateBy\":\"admin\",\"invokeTarget\":\"WeiXinSouGouTask.weiXinSouGou\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 09:58:58'); INSERT INTO `sys_oper_log` VALUES (8001, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"time\",\"orderNum\":\"2\",\"menuName\":\"微信搜狗\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"weixin_sougou\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 10:04:36'); INSERT INTO `sys_oper_log` VALUES (8002, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645495540544,\"humidity\":\"94\",\"id\":1495942838129664001,\"province\":\"江西\",\"reporttime\":1645495427000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:05:40'); INSERT INTO `sys_oper_log` VALUES (8003, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:03:47\"}}', 0, '', '2022-02-22 10:05:40'); INSERT INTO `sys_oper_log` VALUES (8004, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"time\",\"orderNum\":\"2\",\"menuName\":\"微信搜狗\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"weixin_sougou\",\"component\":\"business/webmagic/weixinsougou/index\",\"children\":[],\"createTime\":1645495476000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2087,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 10:06:02'); INSERT INTO `sys_oper_log` VALUES (8005, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:03:47\"}}', 0, '', '2022-02-22 10:21:18'); INSERT INTO `sys_oper_log` VALUES (8006, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645495427000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:21:19'); INSERT INTO `sys_oper_log` VALUES (8007, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645495427000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:22:25'); INSERT INTO `sys_oper_log` VALUES (8008, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:03:47\"}}', 0, '', '2022-02-22 10:22:25'); INSERT INTO `sys_oper_log` VALUES (8009, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645495427000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:29:25'); INSERT INTO `sys_oper_log` VALUES (8010, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:03:47\"}}', 0, '', '2022-02-22 10:29:25'); INSERT INTO `sys_oper_log` VALUES (8011, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645495427000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:29:44'); INSERT INTO `sys_oper_log` VALUES (8012, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:03:47\"}}', 0, '', '2022-02-22 10:29:44'); INSERT INTO `sys_oper_log` VALUES (8013, '爬虫微信搜狗搜索', 3, 'com.xjs.weixin.controller.WeiXinSouGouController.remove()', 'DELETE', 1, 'admin', '', '/weixin_sougou/1495934673883430921', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-22 10:29:57'); INSERT INTO `sys_oper_log` VALUES (8014, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645495427000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:33:08'); INSERT INTO `sys_oper_log` VALUES (8015, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:03:47\"}}', 0, '', '2022-02-22 10:33:12'); INSERT INTO `sys_oper_log` VALUES (8016, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645495427000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:34:32'); INSERT INTO `sys_oper_log` VALUES (8017, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:03:47\"}}', 0, '', '2022-02-22 10:34:32'); INSERT INTO `sys_oper_log` VALUES (8018, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:03:47\"}}', 0, '', '2022-02-22 10:38:05'); INSERT INTO `sys_oper_log` VALUES (8019, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645495427000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:38:05'); INSERT INTO `sys_oper_log` VALUES (8020, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645495427000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:39:24'); INSERT INTO `sys_oper_log` VALUES (8021, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:03:47\"}}', 0, '', '2022-02-22 10:39:24'); INSERT INTO `sys_oper_log` VALUES (8022, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"An eye for an eye makes the whole world blind.\",\"createTime\":1645497821035,\"dataId\":4208,\"date\":1627920000000,\"id\":1495952403172827137,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/6cda48c19057ca58f914ca211a745f5a.png\",\"note\":\"冤冤相报,会让整个世界暗无天日。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6475df4aa0c69f7cc04355577429d266.mp3\"}}', 0, '', '2022-02-22 10:43:41'); INSERT INTO `sys_oper_log` VALUES (8023, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"你就这么憎恨我吗,挚友啊……即使变成这副模样也恨著我吗,湖之骑士!\\\"\",\"createTime\":1645497821233,\"id\":1495952403994910721,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-22 10:43:41'); INSERT INTO `sys_oper_log` VALUES (8024, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"条件\",\"top\":2,\"createTime\":1645497826475,\"englishWord\":\"conditions\",\"isCollect\":1,\"id\":1495952426027585537,\"sort\":0,\"content\":\"条件\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-22 10:43:46'); INSERT INTO `sys_oper_log` VALUES (8025, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:45:09'); INSERT INTO `sys_oper_log` VALUES (8026, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:45:09'); INSERT INTO `sys_oper_log` VALUES (8027, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:45:32'); INSERT INTO `sys_oper_log` VALUES (8028, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:45:32'); INSERT INTO `sys_oper_log` VALUES (8029, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:45:41'); INSERT INTO `sys_oper_log` VALUES (8030, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:45:41'); INSERT INTO `sys_oper_log` VALUES (8031, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:45:47'); INSERT INTO `sys_oper_log` VALUES (8032, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:45:47'); INSERT INTO `sys_oper_log` VALUES (8033, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:47:42'); INSERT INTO `sys_oper_log` VALUES (8034, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:47:42'); INSERT INTO `sys_oper_log` VALUES (8035, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:47:47'); INSERT INTO `sys_oper_log` VALUES (8036, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:47:47'); INSERT INTO `sys_oper_log` VALUES (8037, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:48:17'); INSERT INTO `sys_oper_log` VALUES (8038, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:48:17'); INSERT INTO `sys_oper_log` VALUES (8039, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:48:31'); INSERT INTO `sys_oper_log` VALUES (8040, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:48:31'); INSERT INTO `sys_oper_log` VALUES (8041, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:48:49'); INSERT INTO `sys_oper_log` VALUES (8042, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:48:49'); INSERT INTO `sys_oper_log` VALUES (8043, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:49:15'); INSERT INTO `sys_oper_log` VALUES (8044, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:49:15'); INSERT INTO `sys_oper_log` VALUES (8045, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:49:52'); INSERT INTO `sys_oper_log` VALUES (8046, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:49:52'); INSERT INTO `sys_oper_log` VALUES (8047, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:56:10'); INSERT INTO `sys_oper_log` VALUES (8048, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:56:10'); INSERT INTO `sys_oper_log` VALUES (8049, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 10:57:27'); INSERT INTO `sys_oper_log` VALUES (8050, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 10:57:27'); INSERT INTO `sys_oper_log` VALUES (8051, '爬虫微信搜狗搜索', 3, 'com.xjs.weixin.controller.WeiXinSouGouController.remove()', 'DELETE', 1, 'admin', '', '/weixin_sougou/1495934673921179649', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-22 10:57:36'); INSERT INTO `sys_oper_log` VALUES (8052, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 11:02:45'); INSERT INTO `sys_oper_log` VALUES (8053, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 11:02:45'); INSERT INTO `sys_oper_log` VALUES (8054, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"≤3\",\"daytemp\":\"4\",\"dayweather\":\"雨夹雪\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 10:38:38\"}}', 0, '', '2022-02-22 11:03:56'); INSERT INTO `sys_oper_log` VALUES (8055, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645497518000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 11:03:56'); INSERT INTO `sys_oper_log` VALUES (8056, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:42:50'); INSERT INTO `sys_oper_log` VALUES (8057, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:42:50'); INSERT INTO `sys_oper_log` VALUES (8058, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645501371200,\"humidity\":\"93\",\"id\":1495967293681848323,\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:42:51'); INSERT INTO `sys_oper_log` VALUES (8059, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645501371200,\"humidity\":\"93\",\"id\":1495967293681848322,\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:42:51'); INSERT INTO `sys_oper_log` VALUES (8060, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645501371200,\"humidity\":\"93\",\"id\":1495967293681848323,\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:43:41'); INSERT INTO `sys_oper_log` VALUES (8061, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:43:41'); INSERT INTO `sys_oper_log` VALUES (8062, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645501371200,\"humidity\":\"93\",\"id\":1495967293681848323,\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:47:11'); INSERT INTO `sys_oper_log` VALUES (8063, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:47:12'); INSERT INTO `sys_oper_log` VALUES (8064, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645501371200,\"humidity\":\"93\",\"id\":1495967293681848323,\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:48:58'); INSERT INTO `sys_oper_log` VALUES (8065, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:48:59'); INSERT INTO `sys_oper_log` VALUES (8066, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645501371200,\"humidity\":\"93\",\"id\":1495967293681848323,\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:49:36'); INSERT INTO `sys_oper_log` VALUES (8067, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:49:36'); INSERT INTO `sys_oper_log` VALUES (8068, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645501371200,\"humidity\":\"93\",\"id\":1495967293681848323,\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:51:41'); INSERT INTO `sys_oper_log` VALUES (8069, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:51:41'); INSERT INTO `sys_oper_log` VALUES (8070, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645501371200,\"humidity\":\"93\",\"id\":1495967293681848323,\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:51:48'); INSERT INTO `sys_oper_log` VALUES (8071, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:51:49'); INSERT INTO `sys_oper_log` VALUES (8072, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:52:52'); INSERT INTO `sys_oper_log` VALUES (8073, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:52:52'); INSERT INTO `sys_oper_log` VALUES (8074, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:54:51'); INSERT INTO `sys_oper_log` VALUES (8075, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:54:51'); INSERT INTO `sys_oper_log` VALUES (8076, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645500833000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 11:56:21'); INSERT INTO `sys_oper_log` VALUES (8077, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 11:33:53\"}}', 0, '', '2022-02-22 11:56:22'); INSERT INTO `sys_oper_log` VALUES (8078, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645502640000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 12:29:36'); INSERT INTO `sys_oper_log` VALUES (8079, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 12:04:00\"}}', 0, '', '2022-02-22 12:29:36'); INSERT INTO `sys_oper_log` VALUES (8080, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645502640000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 12:33:18'); INSERT INTO `sys_oper_log` VALUES (8081, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 12:04:00\"}}', 0, '', '2022-02-22 12:33:19'); INSERT INTO `sys_oper_log` VALUES (8082, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645506509000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 13:20:58'); INSERT INTO `sys_oper_log` VALUES (8083, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:08:30\"}}', 0, '', '2022-02-22 13:20:58'); INSERT INTO `sys_oper_log` VALUES (8084, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:08:30\"}}', 0, '', '2022-02-22 13:22:47'); INSERT INTO `sys_oper_log` VALUES (8085, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645506509000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 13:22:47'); INSERT INTO `sys_oper_log` VALUES (8086, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645506509000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 13:22:54'); INSERT INTO `sys_oper_log` VALUES (8087, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:08:30\"}}', 0, '', '2022-02-22 13:22:54'); INSERT INTO `sys_oper_log` VALUES (8088, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:08:30\"}}', 0, '', '2022-02-22 13:26:44'); INSERT INTO `sys_oper_log` VALUES (8089, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645506509000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 13:26:44'); INSERT INTO `sys_oper_log` VALUES (8090, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645506509000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 13:27:08'); INSERT INTO `sys_oper_log` VALUES (8091, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:08:30\"}}', 0, '', '2022-02-22 13:27:09'); INSERT INTO `sys_oper_log` VALUES (8092, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645506509000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 13:31:37'); INSERT INTO `sys_oper_log` VALUES (8093, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:08:30\"}}', 0, '', '2022-02-22 13:31:37'); INSERT INTO `sys_oper_log` VALUES (8094, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:08:30\"}}', 0, '', '2022-02-22 13:32:57'); INSERT INTO `sys_oper_log` VALUES (8095, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645506509000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 13:32:57'); INSERT INTO `sys_oper_log` VALUES (8096, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 13:54:31'); INSERT INTO `sys_oper_log` VALUES (8097, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 13:54:31'); INSERT INTO `sys_oper_log` VALUES (8098, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 13:54:54'); INSERT INTO `sys_oper_log` VALUES (8099, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 13:54:54'); INSERT INTO `sys_oper_log` VALUES (8100, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 13:58:24'); INSERT INTO `sys_oper_log` VALUES (8101, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 13:58:25'); INSERT INTO `sys_oper_log` VALUES (8102, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 13:58:30'); INSERT INTO `sys_oper_log` VALUES (8103, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 13:58:30'); INSERT INTO `sys_oper_log` VALUES (8104, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 13:59:15'); INSERT INTO `sys_oper_log` VALUES (8105, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 13:59:15'); INSERT INTO `sys_oper_log` VALUES (8106, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 13:59:41'); INSERT INTO `sys_oper_log` VALUES (8107, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 13:59:41'); INSERT INTO `sys_oper_log` VALUES (8108, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 14:00:15'); INSERT INTO `sys_oper_log` VALUES (8109, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 14:00:15'); INSERT INTO `sys_oper_log` VALUES (8110, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 14:00:37'); INSERT INTO `sys_oper_log` VALUES (8111, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 14:00:37'); INSERT INTO `sys_oper_log` VALUES (8112, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 14:00:42'); INSERT INTO `sys_oper_log` VALUES (8113, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 14:00:42'); INSERT INTO `sys_oper_log` VALUES (8114, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 14:01:14'); INSERT INTO `sys_oper_log` VALUES (8115, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 14:01:15'); INSERT INTO `sys_oper_log` VALUES (8116, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 14:03:16'); INSERT INTO `sys_oper_log` VALUES (8117, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 14:03:16'); INSERT INTO `sys_oper_log` VALUES (8118, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 14:04:03'); INSERT INTO `sys_oper_log` VALUES (8119, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 14:04:03'); INSERT INTO `sys_oper_log` VALUES (8120, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645508025000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-22 14:04:20'); INSERT INTO `sys_oper_log` VALUES (8121, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 13:33:45\"}}', 0, '', '2022-02-22 14:04:21'); INSERT INTO `sys_oper_log` VALUES (8122, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:04:53'); INSERT INTO `sys_oper_log` VALUES (8123, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645509893875,\"humidity\":\"90\",\"id\":1496003040321359874,\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:04:53'); INSERT INTO `sys_oper_log` VALUES (8124, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645509893875,\"humidity\":\"90\",\"id\":1496003040321359874,\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:05:33'); INSERT INTO `sys_oper_log` VALUES (8125, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:05:33'); INSERT INTO `sys_oper_log` VALUES (8126, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:05:39'); INSERT INTO `sys_oper_log` VALUES (8127, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645509893875,\"humidity\":\"90\",\"id\":1496003040321359874,\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:05:39'); INSERT INTO `sys_oper_log` VALUES (8128, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:18:15'); INSERT INTO `sys_oper_log` VALUES (8129, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:18:15'); INSERT INTO `sys_oper_log` VALUES (8130, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:18:57'); INSERT INTO `sys_oper_log` VALUES (8131, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:18:57'); INSERT INTO `sys_oper_log` VALUES (8132, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:19:46'); INSERT INTO `sys_oper_log` VALUES (8133, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:19:46'); INSERT INTO `sys_oper_log` VALUES (8134, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:25:42'); INSERT INTO `sys_oper_log` VALUES (8135, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:25:42'); INSERT INTO `sys_oper_log` VALUES (8136, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:31:24'); INSERT INTO `sys_oper_log` VALUES (8137, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:31:24'); INSERT INTO `sys_oper_log` VALUES (8138, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:32:57'); INSERT INTO `sys_oper_log` VALUES (8139, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:32:57'); INSERT INTO `sys_oper_log` VALUES (8140, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:33:30'); INSERT INTO `sys_oper_log` VALUES (8141, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:33:30'); INSERT INTO `sys_oper_log` VALUES (8142, '微信搜狗', 5, 'com.xjs.weixin.controller.WeiXinSouGouController.export()', 'POST', 1, 'admin', '', '/weixin_sougou/export', '127.0.0.1', '', '{\"title\":\"最新公告:暂缓施行!\"}', '', 0, '', '2022-02-22 14:33:39'); INSERT INTO `sys_oper_log` VALUES (8143, '爬虫微信搜狗搜索', 3, 'com.xjs.weixin.controller.WeiXinSouGouController.remove()', 'DELETE', 1, 'admin', '', '/weixin_sougou/1495975511724335113', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-22 14:34:22'); INSERT INTO `sys_oper_log` VALUES (8144, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:39:20'); INSERT INTO `sys_oper_log` VALUES (8145, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:39:20'); INSERT INTO `sys_oper_log` VALUES (8146, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1645509831000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:40:07'); INSERT INTO `sys_oper_log` VALUES (8147, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:03:51\"}}', 0, '', '2022-02-22 14:40:07'); INSERT INTO `sys_oper_log` VALUES (8148, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:42:01'); INSERT INTO `sys_oper_log` VALUES (8149, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:42:01'); INSERT INTO `sys_oper_log` VALUES (8150, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:42:29'); INSERT INTO `sys_oper_log` VALUES (8151, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:42:29'); INSERT INTO `sys_oper_log` VALUES (8152, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:43:44'); INSERT INTO `sys_oper_log` VALUES (8153, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:43:44'); INSERT INTO `sys_oper_log` VALUES (8154, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:44:28'); INSERT INTO `sys_oper_log` VALUES (8155, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:44:29'); INSERT INTO `sys_oper_log` VALUES (8156, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:44:49'); INSERT INTO `sys_oper_log` VALUES (8157, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:44:49'); INSERT INTO `sys_oper_log` VALUES (8158, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:45:32'); INSERT INTO `sys_oper_log` VALUES (8159, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:45:32'); INSERT INTO `sys_oper_log` VALUES (8160, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:46:11'); INSERT INTO `sys_oper_log` VALUES (8161, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:46:11'); INSERT INTO `sys_oper_log` VALUES (8162, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:46:32'); INSERT INTO `sys_oper_log` VALUES (8163, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:46:32'); INSERT INTO `sys_oper_log` VALUES (8164, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:46:50'); INSERT INTO `sys_oper_log` VALUES (8165, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:46:51'); INSERT INTO `sys_oper_log` VALUES (8166, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:47:59'); INSERT INTO `sys_oper_log` VALUES (8167, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:47:59'); INSERT INTO `sys_oper_log` VALUES (8168, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:50:08'); INSERT INTO `sys_oper_log` VALUES (8169, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:50:08'); INSERT INTO `sys_oper_log` VALUES (8170, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:50:40'); INSERT INTO `sys_oper_log` VALUES (8171, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:50:40'); INSERT INTO `sys_oper_log` VALUES (8172, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:50:57'); INSERT INTO `sys_oper_log` VALUES (8173, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:50:57'); INSERT INTO `sys_oper_log` VALUES (8174, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:51:36'); INSERT INTO `sys_oper_log` VALUES (8175, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:51:36'); INSERT INTO `sys_oper_log` VALUES (8176, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:51:49'); INSERT INTO `sys_oper_log` VALUES (8177, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:51:49'); INSERT INTO `sys_oper_log` VALUES (8178, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:52:18'); INSERT INTO `sys_oper_log` VALUES (8179, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:52:19'); INSERT INTO `sys_oper_log` VALUES (8180, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:55:23'); INSERT INTO `sys_oper_log` VALUES (8181, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:55:23'); INSERT INTO `sys_oper_log` VALUES (8182, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:57:59'); INSERT INTO `sys_oper_log` VALUES (8183, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:57:59'); INSERT INTO `sys_oper_log` VALUES (8184, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:58:13'); INSERT INTO `sys_oper_log` VALUES (8185, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:58:13'); INSERT INTO `sys_oper_log` VALUES (8186, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 14:59:10'); INSERT INTO `sys_oper_log` VALUES (8187, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 14:59:10'); INSERT INTO `sys_oper_log` VALUES (8188, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:02:31'); INSERT INTO `sys_oper_log` VALUES (8189, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:02:31'); INSERT INTO `sys_oper_log` VALUES (8190, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:02:39'); INSERT INTO `sys_oper_log` VALUES (8191, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:02:39'); INSERT INTO `sys_oper_log` VALUES (8192, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:03:37'); INSERT INTO `sys_oper_log` VALUES (8193, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:03:37'); INSERT INTO `sys_oper_log` VALUES (8194, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:05:21'); INSERT INTO `sys_oper_log` VALUES (8195, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:05:22'); INSERT INTO `sys_oper_log` VALUES (8196, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:05:50'); INSERT INTO `sys_oper_log` VALUES (8197, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:05:50'); INSERT INTO `sys_oper_log` VALUES (8198, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:06:53'); INSERT INTO `sys_oper_log` VALUES (8199, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:06:54'); INSERT INTO `sys_oper_log` VALUES (8200, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:07:06'); INSERT INTO `sys_oper_log` VALUES (8201, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:07:06'); INSERT INTO `sys_oper_log` VALUES (8202, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:09:31'); INSERT INTO `sys_oper_log` VALUES (8203, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:09:31'); INSERT INTO `sys_oper_log` VALUES (8204, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:10:01'); INSERT INTO `sys_oper_log` VALUES (8205, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:10:02'); INSERT INTO `sys_oper_log` VALUES (8206, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:10:12'); INSERT INTO `sys_oper_log` VALUES (8207, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:10:12'); INSERT INTO `sys_oper_log` VALUES (8208, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:11:51'); INSERT INTO `sys_oper_log` VALUES (8209, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:11:51'); INSERT INTO `sys_oper_log` VALUES (8210, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:12:02'); INSERT INTO `sys_oper_log` VALUES (8211, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:12:02'); INSERT INTO `sys_oper_log` VALUES (8212, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:12:18'); INSERT INTO `sys_oper_log` VALUES (8213, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:12:18'); INSERT INTO `sys_oper_log` VALUES (8214, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1645511924000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:12:27'); INSERT INTO `sys_oper_log` VALUES (8215, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"6\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"9\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 14:38:44\"}}', 0, '', '2022-02-22 15:12:27'); INSERT INTO `sys_oper_log` VALUES (8216, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Maybe life has no meaning, and the best we can hope for is just being nice.\",\"dataId\":3831,\"date\":1595347200000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/dd53655f27bd46653597c5afb2a96e79.png\",\"note\":\"可能生活本来就没什么意义,我们能做到最好的就是友善对待身边的一切。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/e474451fa937d7c0c24215c759a1e7fa.mp3\"}}', 0, '', '2022-02-22 15:15:36'); INSERT INTO `sys_oper_log` VALUES (8217, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"安慰别人的时候一套一套的,安慰自己的时候,只想找根绳子一套。\",\"createTime\":1645514137939,\"id\":1496020841245331458,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-02-22 15:15:37'); INSERT INTO `sys_oper_log` VALUES (8218, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645514316955,\"humidity\":\"92\",\"id\":1496021592080273410,\"province\":\"江西\",\"reporttime\":1645513709000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 15:18:36'); INSERT INTO `sys_oper_log` VALUES (8219, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 15:08:29\"}}', 0, '', '2022-02-22 15:18:44'); INSERT INTO `sys_oper_log` VALUES (8220, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.edit()', 'PUT', 1, 'admin', NULL, '/job', '127.0.0.1', '', '{\"jobName\":\"微信搜狗-爬虫-定时任务\",\"concurrent\":\"1\",\"remark\":\"\",\"jobGroup\":\"REPTILE\",\"params\":{},\"cronExpression\":\"30 15 0/1 * * ?\",\"jobId\":108,\"createBy\":\"admin\",\"nextValidTime\":1645517730000,\"createTime\":1645494934000,\"updateBy\":\"admin\",\"invokeTarget\":\"WeiXinSouGouTask.weiXinSouGou\",\"misfirePolicy\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 15:19:45'); INSERT INTO `sys_oper_log` VALUES (8221, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It may not be pretty, but we headed to the city.\",\"dataId\":4063,\"date\":1615392000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4fad1d19a9fe5580c1a552a2e335f27d.png\",\"note\":\"其貌虽不扬,扬帆亦远航。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/53ccc74fd59abea209a70c8380f6b855.mp3\"}}', 0, '', '2022-02-22 15:20:52'); INSERT INTO `sys_oper_log` VALUES (8222, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"无论发生什么,都请不要后悔与我的相遇⋯⋯\",\"createTime\":1645514452738,\"id\":1496022161620619265,\"source\":\"da-h\",\"type\":5}}', 0, '', '2022-02-22 15:20:52'); INSERT INTO `sys_oper_log` VALUES (8223, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:07:14'); INSERT INTO `sys_oper_log` VALUES (8224, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645517234897,\"humidity\":\"93\",\"id\":1496033830841241602,\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:07:14'); INSERT INTO `sys_oper_log` VALUES (8225, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:10:42'); INSERT INTO `sys_oper_log` VALUES (8226, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645517234897,\"humidity\":\"93\",\"id\":1496033830841241602,\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:10:42'); INSERT INTO `sys_oper_log` VALUES (8227, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645517234897,\"humidity\":\"93\",\"id\":1496033830841241602,\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:10:51'); INSERT INTO `sys_oper_log` VALUES (8228, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:10:51'); INSERT INTO `sys_oper_log` VALUES (8229, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:12:49'); INSERT INTO `sys_oper_log` VALUES (8230, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645517234897,\"humidity\":\"93\",\"id\":1496033830841241602,\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:12:49'); INSERT INTO `sys_oper_log` VALUES (8231, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645517234897,\"humidity\":\"93\",\"id\":1496033830841241602,\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:14:47'); INSERT INTO `sys_oper_log` VALUES (8232, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:14:47'); INSERT INTO `sys_oper_log` VALUES (8233, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:24:24'); INSERT INTO `sys_oper_log` VALUES (8234, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:24:24'); INSERT INTO `sys_oper_log` VALUES (8235, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:26:39'); INSERT INTO `sys_oper_log` VALUES (8236, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:26:39'); INSERT INTO `sys_oper_log` VALUES (8237, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:26:46'); INSERT INTO `sys_oper_log` VALUES (8238, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:26:46'); INSERT INTO `sys_oper_log` VALUES (8239, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:26:50'); INSERT INTO `sys_oper_log` VALUES (8240, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:26:50'); INSERT INTO `sys_oper_log` VALUES (8241, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"条件\",\"createTime\":1645497826000,\"englishWord\":\"conditions\",\"id\":1495952426027585537,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1645490416000,\"englishWord\":\"source\",\"id\":1495921344716607490,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"重置\",\"createTime\":1645428992000,\"englishWord\":\"reset\",\"id\":1495663714559500290,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:45'); INSERT INTO `sys_oper_log` VALUES (8242, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"设置\",\"createTime\":1645413604000,\"englishWord\":\"settings\",\"id\":1495599171498057730,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"注解\",\"createTime\":1645406032000,\"englishWord\":\"annotation\",\"id\":1495567412718903297,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"爬虫\",\"createTime\":1645281842000,\"englishWord\":\"reptile\",\"id\":1495046521038295041,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:45'); INSERT INTO `sys_oper_log` VALUES (8243, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"发布\",\"createTime\":1645280419000,\"englishWord\":\"release\",\"id\":1495040553210597378,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"平台\",\"createTime\":1645274475000,\"englishWord\":\"platform\",\"id\":1495015622968070145,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"壁纸\",\"createTime\":1645265889000,\"englishWord\":\"wallpaper\",\"id\":1494979609008787457,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:45'); INSERT INTO `sys_oper_log` VALUES (8244, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:45'); INSERT INTO `sys_oper_log` VALUES (8245, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:45'); INSERT INTO `sys_oper_log` VALUES (8246, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:45'); INSERT INTO `sys_oper_log` VALUES (8247, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:46'); INSERT INTO `sys_oper_log` VALUES (8248, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:46'); INSERT INTO `sys_oper_log` VALUES (8249, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:47'); INSERT INTO `sys_oper_log` VALUES (8250, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:47'); INSERT INTO `sys_oper_log` VALUES (8251, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:48'); INSERT INTO `sys_oper_log` VALUES (8252, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:48'); INSERT INTO `sys_oper_log` VALUES (8253, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:48'); INSERT INTO `sys_oper_log` VALUES (8254, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:49'); INSERT INTO `sys_oper_log` VALUES (8255, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:49'); INSERT INTO `sys_oper_log` VALUES (8256, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:49'); INSERT INTO `sys_oper_log` VALUES (8257, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:50'); INSERT INTO `sys_oper_log` VALUES (8258, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:50'); INSERT INTO `sys_oper_log` VALUES (8259, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:51'); INSERT INTO `sys_oper_log` VALUES (8260, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:51'); INSERT INTO `sys_oper_log` VALUES (8261, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:51'); INSERT INTO `sys_oper_log` VALUES (8262, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":22,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:52'); INSERT INTO `sys_oper_log` VALUES (8263, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":23,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:52'); INSERT INTO `sys_oper_log` VALUES (8264, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":24,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-22 16:30:53'); INSERT INTO `sys_oper_log` VALUES (8265, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:34:21'); INSERT INTO `sys_oper_log` VALUES (8266, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:34:21'); INSERT INTO `sys_oper_log` VALUES (8267, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:35:05'); INSERT INTO `sys_oper_log` VALUES (8268, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:35:05'); INSERT INTO `sys_oper_log` VALUES (8269, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:36:32'); INSERT INTO `sys_oper_log` VALUES (8270, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:36:32'); INSERT INTO `sys_oper_log` VALUES (8271, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:36:38'); INSERT INTO `sys_oper_log` VALUES (8272, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:36:39'); INSERT INTO `sys_oper_log` VALUES (8273, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:38:36'); INSERT INTO `sys_oper_log` VALUES (8274, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:38:36'); INSERT INTO `sys_oper_log` VALUES (8275, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:44:08'); INSERT INTO `sys_oper_log` VALUES (8276, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:44:08'); INSERT INTO `sys_oper_log` VALUES (8277, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:03:50\"}}', 0, '', '2022-02-22 16:44:14'); INSERT INTO `sys_oper_log` VALUES (8278, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1645517030000,\"temperature\":\"3\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:44:14'); INSERT INTO `sys_oper_log` VALUES (8279, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:51:43'); INSERT INTO `sys_oper_log` VALUES (8280, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 16:51:43'); INSERT INTO `sys_oper_log` VALUES (8281, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 16:51:59'); INSERT INTO `sys_oper_log` VALUES (8282, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:51:59'); INSERT INTO `sys_oper_log` VALUES (8283, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:52:38'); INSERT INTO `sys_oper_log` VALUES (8284, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 16:52:39'); INSERT INTO `sys_oper_log` VALUES (8285, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 16:53:03'); INSERT INTO `sys_oper_log` VALUES (8286, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:53:03'); INSERT INTO `sys_oper_log` VALUES (8287, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 16:53:34'); INSERT INTO `sys_oper_log` VALUES (8288, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:53:34'); INSERT INTO `sys_oper_log` VALUES (8289, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 16:54:01'); INSERT INTO `sys_oper_log` VALUES (8290, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:54:01'); INSERT INTO `sys_oper_log` VALUES (8291, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 16:56:48'); INSERT INTO `sys_oper_log` VALUES (8292, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:56:48'); INSERT INTO `sys_oper_log` VALUES (8293, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:57:18'); INSERT INTO `sys_oper_log` VALUES (8294, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 16:57:18'); INSERT INTO `sys_oper_log` VALUES (8295, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 16:58:31'); INSERT INTO `sys_oper_log` VALUES (8296, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:58:31'); INSERT INTO `sys_oper_log` VALUES (8297, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 16:58:43'); INSERT INTO `sys_oper_log` VALUES (8298, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 16:58:43'); INSERT INTO `sys_oper_log` VALUES (8299, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:00:56'); INSERT INTO `sys_oper_log` VALUES (8300, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:00:56'); INSERT INTO `sys_oper_log` VALUES (8301, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:01:30'); INSERT INTO `sys_oper_log` VALUES (8302, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:01:30'); INSERT INTO `sys_oper_log` VALUES (8303, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:03:24'); INSERT INTO `sys_oper_log` VALUES (8304, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:03:24'); INSERT INTO `sys_oper_log` VALUES (8305, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:03:30'); INSERT INTO `sys_oper_log` VALUES (8306, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:03:30'); INSERT INTO `sys_oper_log` VALUES (8307, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:06:10'); INSERT INTO `sys_oper_log` VALUES (8308, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:06:10'); INSERT INTO `sys_oper_log` VALUES (8309, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:06:17'); INSERT INTO `sys_oper_log` VALUES (8310, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:06:17'); INSERT INTO `sys_oper_log` VALUES (8311, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:07:18'); INSERT INTO `sys_oper_log` VALUES (8312, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:07:18'); INSERT INTO `sys_oper_log` VALUES (8313, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:07:28'); INSERT INTO `sys_oper_log` VALUES (8314, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:07:28'); INSERT INTO `sys_oper_log` VALUES (8315, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:08:16'); INSERT INTO `sys_oper_log` VALUES (8316, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:08:16'); INSERT INTO `sys_oper_log` VALUES (8317, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:08:21'); INSERT INTO `sys_oper_log` VALUES (8318, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:08:21'); INSERT INTO `sys_oper_log` VALUES (8319, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:08:28'); INSERT INTO `sys_oper_log` VALUES (8320, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:08:28'); INSERT INTO `sys_oper_log` VALUES (8321, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:10:54'); INSERT INTO `sys_oper_log` VALUES (8322, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:10:54'); INSERT INTO `sys_oper_log` VALUES (8323, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645519124000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:11:22'); INSERT INTO `sys_oper_log` VALUES (8324, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 16:38:44\"}}', 0, '', '2022-02-22 17:11:22'); INSERT INTO `sys_oper_log` VALUES (8325, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645521243867,\"humidity\":\"94\",\"id\":1496050645638205442,\"province\":\"江西\",\"reporttime\":1645520908000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:14:03'); INSERT INTO `sys_oper_log` VALUES (8326, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 17:08:28\"}}', 0, '', '2022-02-22 17:14:04'); INSERT INTO `sys_oper_log` VALUES (8327, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 17:08:28\"}}', 0, '', '2022-02-22 17:19:22'); INSERT INTO `sys_oper_log` VALUES (8328, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645521243867,\"humidity\":\"94\",\"id\":1496050645638205442,\"province\":\"江西\",\"reporttime\":1645520908000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:19:22'); INSERT INTO `sys_oper_log` VALUES (8329, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 17:08:28\"}}', 0, '', '2022-02-22 17:21:52'); INSERT INTO `sys_oper_log` VALUES (8330, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645521243867,\"humidity\":\"94\",\"id\":1496050645638205442,\"province\":\"江西\",\"reporttime\":1645520908000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:21:52'); INSERT INTO `sys_oper_log` VALUES (8331, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645521243867,\"humidity\":\"94\",\"id\":1496050645638205442,\"province\":\"江西\",\"reporttime\":1645520908000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:22:08'); INSERT INTO `sys_oper_log` VALUES (8332, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 17:08:28\"}}', 0, '', '2022-02-22 17:22:08'); INSERT INTO `sys_oper_log` VALUES (8333, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 17:08:28\"}}', 0, '', '2022-02-22 17:23:29'); INSERT INTO `sys_oper_log` VALUES (8334, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645521243867,\"humidity\":\"94\",\"id\":1496050645638205442,\"province\":\"江西\",\"reporttime\":1645520908000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:23:29'); INSERT INTO `sys_oper_log` VALUES (8335, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 17:08:28\"}}', 0, '', '2022-02-22 17:24:17'); INSERT INTO `sys_oper_log` VALUES (8336, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645520908000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:24:17'); INSERT INTO `sys_oper_log` VALUES (8337, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645520908000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:24:55'); INSERT INTO `sys_oper_log` VALUES (8338, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 17:08:28\"}}', 0, '', '2022-02-22 17:24:55'); INSERT INTO `sys_oper_log` VALUES (8339, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645520908000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:25:01'); INSERT INTO `sys_oper_log` VALUES (8340, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 17:08:28\"}}', 0, '', '2022-02-22 17:25:01'); INSERT INTO `sys_oper_log` VALUES (8341, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1645520908000,\"temperature\":\"2\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 17:25:08'); INSERT INTO `sys_oper_log` VALUES (8342, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 17:08:28\"}}', 0, '', '2022-02-22 17:25:08'); INSERT INTO `sys_oper_log` VALUES (8343, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645522238815,\"en\":\"Too muh spoils, too little is nothing.\",\"id\":1496054818773553153,\"zh\":\"饭多会馊,饭少不饱\"}}', 0, '', '2022-02-22 17:30:38'); INSERT INTO `sys_oper_log` VALUES (8344, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645528119000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 19:30:47'); INSERT INTO `sys_oper_log` VALUES (8345, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 19:08:39\"}}', 0, '', '2022-02-22 19:30:47'); INSERT INTO `sys_oper_log` VALUES (8346, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Success is not final, failure is not fatal: it is the courage to continue that counts.\",\"createTime\":1645529449335,\"dataId\":3638,\"date\":1578844800000,\"id\":1496085061872349186,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/975c07112634b225f842f2624b7c75f4.png\",\"note\":\"成功不是终点,失败也不是:重要的是继续前进的勇气。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/941e4972d684dc8c330bef9992bdc8ac.mp3\"}}', 0, '', '2022-02-22 19:30:49'); INSERT INTO `sys_oper_log` VALUES (8347, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有人问我:这个反着的b是怎么打出来的啊?我也懵哔了,反着的b?一看才知道他说的是d\",\"createTime\":1645529449451,\"id\":1496085062405025793,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-02-22 19:30:49'); INSERT INTO `sys_oper_log` VALUES (8348, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645528119000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 19:33:34'); INSERT INTO `sys_oper_log` VALUES (8349, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 19:08:39\"}}', 0, '', '2022-02-22 19:33:34'); INSERT INTO `sys_oper_log` VALUES (8350, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645529734232,\"en\":\"Affairs that are done by due degress are soon ended.\",\"id\":1496086256850530306,\"zh\":\"按部就班,只快不慢.\"}}', 0, '', '2022-02-22 19:35:34'); INSERT INTO `sys_oper_log` VALUES (8351, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645529623000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 19:47:54'); INSERT INTO `sys_oper_log` VALUES (8352, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 19:33:43\"}}', 0, '', '2022-02-22 19:47:54'); INSERT INTO `sys_oper_log` VALUES (8353, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 19:33:43\"}}', 0, '', '2022-02-22 19:59:37'); INSERT INTO `sys_oper_log` VALUES (8354, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645529623000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 19:59:37'); INSERT INTO `sys_oper_log` VALUES (8355, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 19:33:43\"}}', 0, '', '2022-02-22 19:59:53'); INSERT INTO `sys_oper_log` VALUES (8356, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645529623000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 19:59:53'); INSERT INTO `sys_oper_log` VALUES (8357, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645529623000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:01:17'); INSERT INTO `sys_oper_log` VALUES (8358, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 19:33:43\"}}', 0, '', '2022-02-22 20:01:17'); INSERT INTO `sys_oper_log` VALUES (8359, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645529623000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:02:59'); INSERT INTO `sys_oper_log` VALUES (8360, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 19:33:43\"}}', 0, '', '2022-02-22 20:02:59'); INSERT INTO `sys_oper_log` VALUES (8361, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 19:33:43\"}}', 0, '', '2022-02-22 20:04:14'); INSERT INTO `sys_oper_log` VALUES (8362, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645529623000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:04:14'); INSERT INTO `sys_oper_log` VALUES (8363, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645531522269,\"en\":\"A day is a miniature of eternity.\",\"id\":1496093756391911426,\"zh\":\"一天是永恒的缩影.\"}}', 0, '', '2022-02-22 20:05:22'); INSERT INTO `sys_oper_log` VALUES (8364, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645529623000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:06:20'); INSERT INTO `sys_oper_log` VALUES (8365, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 19:33:43\"}}', 0, '', '2022-02-22 20:06:20'); INSERT INTO `sys_oper_log` VALUES (8366, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645529623000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:07:15'); INSERT INTO `sys_oper_log` VALUES (8367, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"4\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 19:33:43\"}}', 0, '', '2022-02-22 20:07:15'); INSERT INTO `sys_oper_log` VALUES (8368, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645532035850,\"humidity\":\"96\",\"id\":1496095910498365442,\"province\":\"江西\",\"reporttime\":1645531428000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:13:55'); INSERT INTO `sys_oper_log` VALUES (8369, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:03:48\"}}', 0, '', '2022-02-22 20:13:57'); INSERT INTO `sys_oper_log` VALUES (8370, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:03:48\"}}', 0, '', '2022-02-22 20:21:16'); INSERT INTO `sys_oper_log` VALUES (8371, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645532035850,\"humidity\":\"96\",\"id\":1496095910498365442,\"province\":\"江西\",\"reporttime\":1645531428000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:21:16'); INSERT INTO `sys_oper_log` VALUES (8372, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645532035850,\"humidity\":\"96\",\"id\":1496095910498365442,\"province\":\"江西\",\"reporttime\":1645531428000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:22:52'); INSERT INTO `sys_oper_log` VALUES (8373, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:03:48\"}}', 0, '', '2022-02-22 20:22:52'); INSERT INTO `sys_oper_log` VALUES (8374, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645531428000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:25:44'); INSERT INTO `sys_oper_log` VALUES (8375, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:03:48\"}}', 0, '', '2022-02-22 20:25:44'); INSERT INTO `sys_oper_log` VALUES (8376, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645531428000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:26:00'); INSERT INTO `sys_oper_log` VALUES (8377, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:03:48\"}}', 0, '', '2022-02-22 20:26:00'); INSERT INTO `sys_oper_log` VALUES (8378, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:03:48\"}}', 0, '', '2022-02-22 20:29:13'); INSERT INTO `sys_oper_log` VALUES (8379, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645531428000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:29:13'); INSERT INTO `sys_oper_log` VALUES (8380, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"96\",\"province\":\"江西\",\"reporttime\":1645531428000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:30:55'); INSERT INTO `sys_oper_log` VALUES (8381, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:03:48\"}}', 0, '', '2022-02-22 20:30:55'); INSERT INTO `sys_oper_log` VALUES (8382, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645533555767,\"humidity\":\"97\",\"id\":1496102285542649857,\"province\":\"江西\",\"reporttime\":1645533525000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:39:15'); INSERT INTO `sys_oper_log` VALUES (8383, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:38:45\"}}', 0, '', '2022-02-22 20:39:15'); INSERT INTO `sys_oper_log` VALUES (8384, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"接口\",\"condition\":\"\",\"top\":2,\"createTime\":1640859782000,\"englishWord\":\"interface\",\"isCollect\":1,\"id\":1476499056043425794,\"sort\":18,\"content\":\"\",\"lookCount\":41}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-22 20:39:57'); INSERT INTO `sys_oper_log` VALUES (8385, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:38:45\"}}', 0, '', '2022-02-22 20:41:54'); INSERT INTO `sys_oper_log` VALUES (8386, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645533555767,\"humidity\":\"97\",\"id\":1496102285542649857,\"province\":\"江西\",\"reporttime\":1645533525000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:41:54'); INSERT INTO `sys_oper_log` VALUES (8387, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645533777032,\"en\":\"Only three days.\",\"id\":1496103213578547202,\"zh\":\" 仅三天。\"}}', 0, '', '2022-02-22 20:42:57'); INSERT INTO `sys_oper_log` VALUES (8388, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Only three days.\",\"zh\":\" 仅三天。\"}}', 0, '', '2022-02-22 20:43:25'); INSERT INTO `sys_oper_log` VALUES (8389, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Only three days.\",\"zh\":\" 仅三天。\"}}', 0, '', '2022-02-22 20:43:30'); INSERT INTO `sys_oper_log` VALUES (8390, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Only three days.\",\"zh\":\" 仅三天。\"}}', 0, '', '2022-02-22 20:43:33'); INSERT INTO `sys_oper_log` VALUES (8391, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It may not be pretty, but we headed to the city.\",\"dataId\":4063,\"date\":1615392000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4fad1d19a9fe5580c1a552a2e335f27d.png\",\"note\":\"其貌虽不扬,扬帆亦远航。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/53ccc74fd59abea209a70c8380f6b855.mp3\"}}', 0, '', '2022-02-22 20:43:37'); INSERT INTO `sys_oper_log` VALUES (8392, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"自己的感觉,不说出来,别人也不会懂,如果不懂,就应该互相沟通。\",\"createTime\":1645533817307,\"id\":1496103382478974978,\"source\":\"Sai\",\"type\":5}}', 0, '', '2022-02-22 20:43:37'); INSERT INTO `sys_oper_log` VALUES (8393, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"自己的感觉,不说出来,别人也不会懂,如果不懂,就应该互相沟通。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"If you don\'t say what you feel, others won\'t understand. If you don\'t understand, you should communicate with each other.\",\"src\":\"自己的感觉,不说出来,别人也不会懂,如果不懂,就应该互相沟通。\"}]}}', 0, '', '2022-02-22 20:43:44'); INSERT INTO `sys_oper_log` VALUES (8394, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":20}', 0, '', '2022-02-22 20:44:36'); INSERT INTO `sys_oper_log` VALUES (8395, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645533555767,\"humidity\":\"97\",\"id\":1496102285542649857,\"province\":\"江西\",\"reporttime\":1645533525000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:45:10'); INSERT INTO `sys_oper_log` VALUES (8396, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:38:45\"}}', 0, '', '2022-02-22 20:45:11'); INSERT INTO `sys_oper_log` VALUES (8397, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645533555767,\"humidity\":\"97\",\"id\":1496102285542649857,\"province\":\"江西\",\"reporttime\":1645533525000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:45:59'); INSERT INTO `sys_oper_log` VALUES (8398, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:38:45\"}}', 0, '', '2022-02-22 20:45:59'); INSERT INTO `sys_oper_log` VALUES (8399, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645533555767,\"humidity\":\"97\",\"id\":1496102285542649857,\"province\":\"江西\",\"reporttime\":1645533525000,\"temperature\":\"1\",\"weather\":\"雨夹雪\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-22 20:46:24'); INSERT INTO `sys_oper_log` VALUES (8400, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:38:45\"}}', 0, '', '2022-02-22 20:46:24'); INSERT INTO `sys_oper_log` VALUES (8401, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1496104165865902081', '127.0.0.1', '', '1496104165865902081', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-22 20:47:27'); INSERT INTO `sys_oper_log` VALUES (8402, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"雨夹雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 20:38:45\"}}', 0, '', '2022-02-22 20:49:09'); INSERT INTO `sys_oper_log` VALUES (8403, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 21:08:26\"}}', 0, '', '2022-02-22 21:09:25'); INSERT INTO `sys_oper_log` VALUES (8404, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 21:08:26\"}}', 0, '', '2022-02-22 21:09:25'); INSERT INTO `sys_oper_log` VALUES (8405, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 21:08:26\"}}', 0, '', '2022-02-22 21:09:25'); INSERT INTO `sys_oper_log` VALUES (8406, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-22\",\"daypower\":\"4\",\"daytemp\":\"3\",\"dayweather\":\"小雪\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"1\",\"nightweather\":\"中雪\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-22 21:08:26\"}}', 0, '', '2022-02-22 21:09:26'); INSERT INTO `sys_oper_log` VALUES (8407, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"REPTILE\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-22 22:30:42'); INSERT INTO `sys_oper_log` VALUES (8408, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-23 08:38:47\"}}', 0, '', '2022-02-23 08:45:15'); INSERT INTO `sys_oper_log` VALUES (8409, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-23 08:38:47\"}}', 0, '', '2022-02-23 08:45:16'); INSERT INTO `sys_oper_log` VALUES (8410, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645577117167,\"humidity\":\"94\",\"id\":1496284995294228482,\"province\":\"江西\",\"reporttime\":1645576727000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-23 08:45:17'); INSERT INTO `sys_oper_log` VALUES (8411, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645577117167,\"humidity\":\"94\",\"id\":1496284995294228482,\"province\":\"江西\",\"reporttime\":1645576727000,\"temperature\":\"2\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-23 08:45:28'); INSERT INTO `sys_oper_log` VALUES (8412, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-23 08:38:47\"}}', 0, '', '2022-02-23 08:45:28'); INSERT INTO `sys_oper_log` VALUES (8413, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"API\",\"params\":{},\"jobId\":100,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 09:11:28'); INSERT INTO `sys_oper_log` VALUES (8414, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 09:13:19'); INSERT INTO `sys_oper_log` VALUES (8415, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 09:15:09'); INSERT INTO `sys_oper_log` VALUES (8416, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"REPTILE\",\"params\":{},\"jobId\":108,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 09:26:17'); INSERT INTO `sys_oper_log` VALUES (8417, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 09:41:47'); INSERT INTO `sys_oper_log` VALUES (8418, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 09:49:47'); INSERT INTO `sys_oper_log` VALUES (8419, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 09:50:52'); INSERT INTO `sys_oper_log` VALUES (8420, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 09:56:14'); INSERT INTO `sys_oper_log` VALUES (8421, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 09:57:26'); INSERT INTO `sys_oper_log` VALUES (8422, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 10:02:04'); INSERT INTO `sys_oper_log` VALUES (8423, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-23 10:03:47\"}}', 0, '', '2022-02-23 10:16:30'); INSERT INTO `sys_oper_log` VALUES (8424, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645582590852,\"humidity\":\"92\",\"id\":1496307953588948993,\"province\":\"江西\",\"reporttime\":1645581827000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-23 10:16:30'); INSERT INTO `sys_oper_log` VALUES (8425, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"早上睡懒觉,老爸就蹿到屋子里叫我起床。\\r\\n\\r\\n我没理,这时候老妈出现一把拽住老爸小声说:你叫她干吗!叫醒了还得给她做早饭。。。\",\"createTime\":1645582593982,\"id\":1496307966691954689,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-02-23 10:16:34'); INSERT INTO `sys_oper_log` VALUES (8426, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Youth, even in its sorrows, always has a brilliancy of its own.\",\"createTime\":1645582594215,\"dataId\":3791,\"date\":1591891200000,\"id\":1496307967656644609,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/257bd3574a9d959b7df24cb6d7784f73.png\",\"note\":\"青春,即使在它的悲哀时也是辉煌的。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/dafd6ef1ef31755b40c5ed63602534fb.mp3\"}}', 0, '', '2022-02-23 10:16:34'); INSERT INTO `sys_oper_log` VALUES (8427, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1645581827000,\"temperature\":\"3\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-23 10:35:30'); INSERT INTO `sys_oper_log` VALUES (8428, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-23 10:03:47\"}}', 0, '', '2022-02-23 10:35:30'); INSERT INTO `sys_oper_log` VALUES (8429, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-23 10:38:45\"}}', 0, '', '2022-02-23 10:47:10'); INSERT INTO `sys_oper_log` VALUES (8430, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1645585715000,\"temperature\":\"4\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-23 11:21:43'); INSERT INTO `sys_oper_log` VALUES (8431, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-23 11:08:35\"}}', 0, '', '2022-02-23 11:21:44'); INSERT INTO `sys_oper_log` VALUES (8432, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我打你应该,不打你悲哀!\",\"createTime\":1645586510502,\"id\":1496324393780039682,\"source\":\"少林足球\",\"type\":3}}', 0, '', '2022-02-23 11:21:50'); INSERT INTO `sys_oper_log` VALUES (8433, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"He who does not punish evil commands it to be done.\",\"dataId\":3755,\"date\":1588780800000,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/d1c2cb3cdd77329bb13d5305b29954e8.png\",\"note\":\"不惩罪恶,无异于鼓动他人作恶。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/b48ad9c6bd596223adf483619925537a.mp3\"}}', 0, '', '2022-02-23 11:21:50'); INSERT INTO `sys_oper_log` VALUES (8434, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1645594433000,\"temperature\":\"6\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"4\"}}', 0, '', '2022-02-23 13:40:13'); INSERT INTO `sys_oper_log` VALUES (8435, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-23\",\"daypower\":\"≤3\",\"daytemp\":\"5\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"0\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"10\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-23 13:33:53\"}}', 0, '', '2022-02-23 13:40:13'); INSERT INTO `sys_oper_log` VALUES (8436, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一天跟一未婚女性朋友聊天,我: 妳希望妳将来的老公是怎样的人?朋友:我希望他又大又粗又硬…我:额……朋友:你想多了,是财大气粗腰板硬~~\",\"createTime\":1645594817306,\"id\":1496359235049639937,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-02-23 13:40:17'); INSERT INTO `sys_oper_log` VALUES (8437, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"We can only see a short distance ahead, but we can see plenty there that needs to be done.\",\"createTime\":1645594817526,\"dataId\":4045,\"date\":1613836800000,\"id\":1496359235980775425,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/e8438833fa22a904a595a34484c06da9.png\",\"note\":\"吾等目力短亦浅,能见百事待践行。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6d22033b438ca52c2947ad493b24fa33.mp3\"}}', 0, '', '2022-02-23 13:40:17'); INSERT INTO `sys_oper_log` VALUES (8438, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E5%A5%BD', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"好\",\"originContent\":\"好\"},\"msg\":\"操作成功\"}', 0, '', '2022-02-23 13:45:34'); INSERT INTO `sys_oper_log` VALUES (8439, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/test', '127.0.0.1', '', '', '{\"code\":500,\"msg\":\"请输入中文!!!\"}', 0, '', '2022-02-23 13:47:10'); INSERT INTO `sys_oper_log` VALUES (8440, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E6%B5%8B%E8%AF%95', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"測試\",\"originContent\":\"测试\"},\"msg\":\"操作成功\"}', 0, '', '2022-02-23 13:48:04'); INSERT INTO `sys_oper_log` VALUES (8441, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"测试\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"test\",\"src\":\"测试\"}]}}', 0, '', '2022-02-23 13:48:23'); INSERT INTO `sys_oper_log` VALUES (8442, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 14:48:41'); INSERT INTO `sys_oper_log` VALUES (8443, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-23 15:25:44'); INSERT INTO `sys_oper_log` VALUES (8444, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果还有哪个师傅觉得我不够资格的,我随时恭候,但如果只是满足你个人的利益,我不能够接受!\",\"createTime\":1645601955551,\"id\":1496389175027605506,\"source\":\"叶问二\",\"type\":3}}', 0, '', '2022-02-23 15:39:15'); INSERT INTO `sys_oper_log` VALUES (8445, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Real love means giving someone the power to hurt you.\",\"createTime\":1645601955687,\"dataId\":3769,\"date\":1589990400000,\"id\":1496389175556087809,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/f27533100576255d7b23ae0e9c49ba83.png\",\"note\":\"真正的爱意味着给别人伤害你的权利。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/a6c34953cbc1c4f4c9b4f3f365a729aa.mp3\"}}', 0, '', '2022-02-23 15:39:15'); INSERT INTO `sys_oper_log` VALUES (8446, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 08:38:46\"}}', 0, '', '2022-02-24 08:57:05'); INSERT INTO `sys_oper_log` VALUES (8447, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645664226077,\"humidity\":\"96\",\"id\":1496650356543954946,\"province\":\"江西\",\"reporttime\":1645663126000,\"temperature\":\"3\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 08:57:06'); INSERT INTO `sys_oper_log` VALUES (8448, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 08:38:46\"}}', 0, '', '2022-02-24 08:59:53'); INSERT INTO `sys_oper_log` VALUES (8449, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 08:38:46\"}}', 0, '', '2022-02-24 08:59:57'); INSERT INTO `sys_oper_log` VALUES (8450, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"REPTILE\",\"params\":{},\"jobId\":104,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-24 09:01:53'); INSERT INTO `sys_oper_log` VALUES (8451, '字典类型', 9, 'com.ruoyi.system.controller.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/dict/type/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-24 09:43:25'); INSERT INTO `sys_oper_log` VALUES (8452, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 09:58:24'); INSERT INTO `sys_oper_log` VALUES (8453, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 09:58:25'); INSERT INTO `sys_oper_log` VALUES (8454, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 09:58:34'); INSERT INTO `sys_oper_log` VALUES (8455, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 09:58:34'); INSERT INTO `sys_oper_log` VALUES (8456, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 09:58:54'); INSERT INTO `sys_oper_log` VALUES (8457, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 09:58:54'); INSERT INTO `sys_oper_log` VALUES (8458, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 09:58:57'); INSERT INTO `sys_oper_log` VALUES (8459, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 09:58:57'); INSERT INTO `sys_oper_log` VALUES (8460, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 09:58:59'); INSERT INTO `sys_oper_log` VALUES (8461, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 09:58:59'); INSERT INTO `sys_oper_log` VALUES (8462, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 09:59:15'); INSERT INTO `sys_oper_log` VALUES (8463, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 09:59:15'); INSERT INTO `sys_oper_log` VALUES (8464, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:02:05'); INSERT INTO `sys_oper_log` VALUES (8465, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:02:05'); INSERT INTO `sys_oper_log` VALUES (8466, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:02:07'); INSERT INTO `sys_oper_log` VALUES (8467, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:02:07'); INSERT INTO `sys_oper_log` VALUES (8468, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:02:10'); INSERT INTO `sys_oper_log` VALUES (8469, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:02:10'); INSERT INTO `sys_oper_log` VALUES (8470, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:02:11'); INSERT INTO `sys_oper_log` VALUES (8471, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:02:11'); INSERT INTO `sys_oper_log` VALUES (8472, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:02:20'); INSERT INTO `sys_oper_log` VALUES (8473, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:02:20'); INSERT INTO `sys_oper_log` VALUES (8474, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:02:28'); INSERT INTO `sys_oper_log` VALUES (8475, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:02:28'); INSERT INTO `sys_oper_log` VALUES (8476, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:02:46'); INSERT INTO `sys_oper_log` VALUES (8477, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:02:46'); INSERT INTO `sys_oper_log` VALUES (8478, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:02:49'); INSERT INTO `sys_oper_log` VALUES (8479, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:02:49'); INSERT INTO `sys_oper_log` VALUES (8480, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:03:14'); INSERT INTO `sys_oper_log` VALUES (8481, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:03:14'); INSERT INTO `sys_oper_log` VALUES (8482, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:03:16'); INSERT INTO `sys_oper_log` VALUES (8483, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:03:16'); INSERT INTO `sys_oper_log` VALUES (8484, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:03:40'); INSERT INTO `sys_oper_log` VALUES (8485, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:03:40'); INSERT INTO `sys_oper_log` VALUES (8486, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:03:44'); INSERT INTO `sys_oper_log` VALUES (8487, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:03:44'); INSERT INTO `sys_oper_log` VALUES (8488, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:03:47'); INSERT INTO `sys_oper_log` VALUES (8489, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:03:48'); INSERT INTO `sys_oper_log` VALUES (8490, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 09:33:49\"}}', 0, '', '2022-02-24 10:03:49'); INSERT INTO `sys_oper_log` VALUES (8491, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1645666429000,\"temperature\":\"5\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 10:03:49'); INSERT INTO `sys_oper_log` VALUES (8492, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-24 11:52:40'); INSERT INTO `sys_oper_log` VALUES (8493, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Promise yourself to be so strong that nothing can disturb your peace of mind.\",\"createTime\":1645674965146,\"dataId\":4934,\"date\":1596556800000,\"id\":1496695399468212225,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/5d1145737ebe003a6dbbdca37f836028.0881c2f19bc7c2f22699ea6caf2521db.jpeg\",\"note\":\"对自己承诺:要强大到任何事情都无法破坏你内心的平和。 \",\"source\":\"Christian D. Larson\",\"tts\":\"\"}}', 0, '', '2022-02-24 11:56:05'); INSERT INTO `sys_oper_log` VALUES (8494, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"也许正义并非太阳,而是如同星星一般的东西,天空中有无数的星星,彼此不断抵消着其他星星的光芒\\\"\",\"createTime\":1645674965326,\"id\":1496695400189632513,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-24 11:56:05'); INSERT INTO `sys_oper_log` VALUES (8495, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sometimes the most urgent and vital thing you can possibly do is to take a complete rest.\",\"createTime\":1645675163072,\"dataId\":3535,\"date\":1570118400000,\"id\":1496696229579694082,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-04.jpg\",\"note\":\"有时候你能做的最紧急重要的事情就是彻底休息。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-04-day.mp3\"}}', 0, '', '2022-02-24 11:59:23'); INSERT INTO `sys_oper_log` VALUES (8496, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"#笑话# 大一时,因上课说话,我被老师罚扫操场;灰太大了,我就戴个帽子和口罩;这时,一名男生走了过来问道:“你好!我是高三学生,明年就毕业了,合计到各大学校考察一下,请问教学楼在哪!”我摘下口罩,说道:“一直向前,第二个楼就是!”于是男孩边走边打电话!我在后面隐约听道男孩说道:“兄弟们!都选这个学校吧!这个学校保洁都是美女!”\",\"createTime\":1645675163068,\"id\":1496696229579694081,\"source\":\"笑话大全\",\"type\":10}}', 0, '', '2022-02-24 11:59:23'); INSERT INTO `sys_oper_log` VALUES (8497, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 13:33:51\"}}', 0, '', '2022-02-24 13:57:53'); INSERT INTO `sys_oper_log` VALUES (8498, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 13:33:51\"}}', 0, '', '2022-02-24 14:05:23'); INSERT INTO `sys_oper_log` VALUES (8499, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645682724429,\"humidity\":\"53\",\"id\":1496727944226381826,\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:05:24'); INSERT INTO `sys_oper_log` VALUES (8500, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 13:33:51\"}}', 0, '', '2022-02-24 14:05:59'); INSERT INTO `sys_oper_log` VALUES (8501, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645682724429,\"humidity\":\"53\",\"id\":1496727944226381826,\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:05:59'); INSERT INTO `sys_oper_log` VALUES (8502, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 13:33:51\"}}', 0, '', '2022-02-24 14:07:26'); INSERT INTO `sys_oper_log` VALUES (8503, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645682724429,\"humidity\":\"53\",\"id\":1496727944226381826,\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:07:26'); INSERT INTO `sys_oper_log` VALUES (8504, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645682724429,\"humidity\":\"53\",\"id\":1496727944226381826,\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:12:34'); INSERT INTO `sys_oper_log` VALUES (8505, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:12:40'); INSERT INTO `sys_oper_log` VALUES (8506, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645682724429,\"humidity\":\"53\",\"id\":1496727944226381826,\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:12:58'); INSERT INTO `sys_oper_log` VALUES (8507, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:12:58'); INSERT INTO `sys_oper_log` VALUES (8508, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:14:36'); INSERT INTO `sys_oper_log` VALUES (8509, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645682724429,\"humidity\":\"53\",\"id\":1496727944226381826,\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:14:36'); INSERT INTO `sys_oper_log` VALUES (8510, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645682724429,\"humidity\":\"53\",\"id\":1496727944226381826,\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:14:42'); INSERT INTO `sys_oper_log` VALUES (8511, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:14:43'); INSERT INTO `sys_oper_log` VALUES (8512, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:15:09'); INSERT INTO `sys_oper_log` VALUES (8513, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645682724429,\"humidity\":\"53\",\"id\":1496727944226381826,\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:15:09'); INSERT INTO `sys_oper_log` VALUES (8514, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:15:40'); INSERT INTO `sys_oper_log` VALUES (8515, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:15:41'); INSERT INTO `sys_oper_log` VALUES (8516, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:16:43'); INSERT INTO `sys_oper_log` VALUES (8517, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:16:43'); INSERT INTO `sys_oper_log` VALUES (8518, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:16:54'); INSERT INTO `sys_oper_log` VALUES (8519, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:16:54'); INSERT INTO `sys_oper_log` VALUES (8520, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:17:11'); INSERT INTO `sys_oper_log` VALUES (8521, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:17:12'); INSERT INTO `sys_oper_log` VALUES (8522, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:17:35'); INSERT INTO `sys_oper_log` VALUES (8523, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:17:35'); INSERT INTO `sys_oper_log` VALUES (8524, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:17:38'); INSERT INTO `sys_oper_log` VALUES (8525, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:17:38'); INSERT INTO `sys_oper_log` VALUES (8526, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:17:58'); INSERT INTO `sys_oper_log` VALUES (8527, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:17:58'); INSERT INTO `sys_oper_log` VALUES (8528, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:18:34'); INSERT INTO `sys_oper_log` VALUES (8529, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:18:34'); INSERT INTO `sys_oper_log` VALUES (8530, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:18:53'); INSERT INTO `sys_oper_log` VALUES (8531, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:18:53'); INSERT INTO `sys_oper_log` VALUES (8532, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:19:16'); INSERT INTO `sys_oper_log` VALUES (8533, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:19:16'); INSERT INTO `sys_oper_log` VALUES (8534, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:19:31'); INSERT INTO `sys_oper_log` VALUES (8535, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:19:31'); INSERT INTO `sys_oper_log` VALUES (8536, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:19:52'); INSERT INTO `sys_oper_log` VALUES (8537, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:19:52'); INSERT INTO `sys_oper_log` VALUES (8538, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:20:09'); INSERT INTO `sys_oper_log` VALUES (8539, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:20:09'); INSERT INTO `sys_oper_log` VALUES (8540, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:20:16'); INSERT INTO `sys_oper_log` VALUES (8541, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:20:16'); INSERT INTO `sys_oper_log` VALUES (8542, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:20:37'); INSERT INTO `sys_oper_log` VALUES (8543, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:20:37'); INSERT INTO `sys_oper_log` VALUES (8544, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:20:41'); INSERT INTO `sys_oper_log` VALUES (8545, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:20:41'); INSERT INTO `sys_oper_log` VALUES (8546, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:20:58'); INSERT INTO `sys_oper_log` VALUES (8547, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:20:58'); INSERT INTO `sys_oper_log` VALUES (8548, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:21:27'); INSERT INTO `sys_oper_log` VALUES (8549, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:21:27'); INSERT INTO `sys_oper_log` VALUES (8550, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:22:11'); INSERT INTO `sys_oper_log` VALUES (8551, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:22:11'); INSERT INTO `sys_oper_log` VALUES (8552, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:22:46'); INSERT INTO `sys_oper_log` VALUES (8553, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:22:46'); INSERT INTO `sys_oper_log` VALUES (8554, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:24:14'); INSERT INTO `sys_oper_log` VALUES (8555, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:24:15'); INSERT INTO `sys_oper_log` VALUES (8556, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:27:14'); INSERT INTO `sys_oper_log` VALUES (8557, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:27:16'); INSERT INTO `sys_oper_log` VALUES (8558, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:27:51'); INSERT INTO `sys_oper_log` VALUES (8559, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:27:51'); INSERT INTO `sys_oper_log` VALUES (8560, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:28:19'); INSERT INTO `sys_oper_log` VALUES (8561, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:28:19'); INSERT INTO `sys_oper_log` VALUES (8562, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:28:30'); INSERT INTO `sys_oper_log` VALUES (8563, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:28:30'); INSERT INTO `sys_oper_log` VALUES (8564, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"53\",\"province\":\"江西\",\"reporttime\":1645682628000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:28:42'); INSERT INTO `sys_oper_log` VALUES (8565, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:03:48\"}}', 0, '', '2022-02-24 14:28:42'); INSERT INTO `sys_oper_log` VALUES (8566, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"49\",\"province\":\"江西\",\"reporttime\":1645684723000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 14:55:19'); INSERT INTO `sys_oper_log` VALUES (8567, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 14:38:43\"}}', 0, '', '2022-02-24 14:55:19'); INSERT INTO `sys_oper_log` VALUES (8568, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1496740507685105666', '127.0.0.1', '', '1496740507685105666', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-24 14:56:54'); INSERT INTO `sys_oper_log` VALUES (8569, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645686516000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:29:56'); INSERT INTO `sys_oper_log` VALUES (8570, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:08:36\"}}', 0, '', '2022-02-24 15:29:56'); INSERT INTO `sys_oper_log` VALUES (8571, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645686516000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:33:45'); INSERT INTO `sys_oper_log` VALUES (8572, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:08:36\"}}', 0, '', '2022-02-24 15:33:45'); INSERT INTO `sys_oper_log` VALUES (8573, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645686516000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:33:55'); INSERT INTO `sys_oper_log` VALUES (8574, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:08:36\"}}', 0, '', '2022-02-24 15:33:56'); INSERT INTO `sys_oper_log` VALUES (8575, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645686516000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:35:32'); INSERT INTO `sys_oper_log` VALUES (8576, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:08:36\"}}', 0, '', '2022-02-24 15:35:32'); INSERT INTO `sys_oper_log` VALUES (8577, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645686516000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:36:22'); INSERT INTO `sys_oper_log` VALUES (8578, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:08:36\"}}', 0, '', '2022-02-24 15:36:22'); INSERT INTO `sys_oper_log` VALUES (8579, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645686516000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:39:06'); INSERT INTO `sys_oper_log` VALUES (8580, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:08:36\"}}', 0, '', '2022-02-24 15:39:06'); INSERT INTO `sys_oper_log` VALUES (8581, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1645686516000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:39:33'); INSERT INTO `sys_oper_log` VALUES (8582, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:08:36\"}}', 0, '', '2022-02-24 15:39:33'); INSERT INTO `sys_oper_log` VALUES (8583, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:40:54'); INSERT INTO `sys_oper_log` VALUES (8584, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:40:54'); INSERT INTO `sys_oper_log` VALUES (8585, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:46:58'); INSERT INTO `sys_oper_log` VALUES (8586, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:46:59'); INSERT INTO `sys_oper_log` VALUES (8587, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:48:13'); INSERT INTO `sys_oper_log` VALUES (8588, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:48:13'); INSERT INTO `sys_oper_log` VALUES (8589, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:48:34'); INSERT INTO `sys_oper_log` VALUES (8590, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:48:34'); INSERT INTO `sys_oper_log` VALUES (8591, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:48:48'); INSERT INTO `sys_oper_log` VALUES (8592, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:48:48'); INSERT INTO `sys_oper_log` VALUES (8593, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:49:01'); INSERT INTO `sys_oper_log` VALUES (8594, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:49:01'); INSERT INTO `sys_oper_log` VALUES (8595, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:49:20'); INSERT INTO `sys_oper_log` VALUES (8596, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:49:20'); INSERT INTO `sys_oper_log` VALUES (8597, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:49:40'); INSERT INTO `sys_oper_log` VALUES (8598, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:49:40'); INSERT INTO `sys_oper_log` VALUES (8599, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:49:58'); INSERT INTO `sys_oper_log` VALUES (8600, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:49:58'); INSERT INTO `sys_oper_log` VALUES (8601, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:50:53'); INSERT INTO `sys_oper_log` VALUES (8602, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:50:53'); INSERT INTO `sys_oper_log` VALUES (8603, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:51:29'); INSERT INTO `sys_oper_log` VALUES (8604, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:51:29'); INSERT INTO `sys_oper_log` VALUES (8605, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:51:40'); INSERT INTO `sys_oper_log` VALUES (8606, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:51:40'); INSERT INTO `sys_oper_log` VALUES (8607, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:52:02'); INSERT INTO `sys_oper_log` VALUES (8608, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:52:02'); INSERT INTO `sys_oper_log` VALUES (8609, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:52:41'); INSERT INTO `sys_oper_log` VALUES (8610, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:52:41'); INSERT INTO `sys_oper_log` VALUES (8611, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:53:06'); INSERT INTO `sys_oper_log` VALUES (8612, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:53:06'); INSERT INTO `sys_oper_log` VALUES (8613, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:53:31'); INSERT INTO `sys_oper_log` VALUES (8614, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:53:31'); INSERT INTO `sys_oper_log` VALUES (8615, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:53:46'); INSERT INTO `sys_oper_log` VALUES (8616, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:53:46'); INSERT INTO `sys_oper_log` VALUES (8617, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:53:56'); INSERT INTO `sys_oper_log` VALUES (8618, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:53:56'); INSERT INTO `sys_oper_log` VALUES (8619, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:54:02'); INSERT INTO `sys_oper_log` VALUES (8620, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:54:02'); INSERT INTO `sys_oper_log` VALUES (8621, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:54:27'); INSERT INTO `sys_oper_log` VALUES (8622, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:54:27'); INSERT INTO `sys_oper_log` VALUES (8623, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:56:01'); INSERT INTO `sys_oper_log` VALUES (8624, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:56:01'); INSERT INTO `sys_oper_log` VALUES (8625, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:56:17'); INSERT INTO `sys_oper_log` VALUES (8626, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:56:17'); INSERT INTO `sys_oper_log` VALUES (8627, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:56:43'); INSERT INTO `sys_oper_log` VALUES (8628, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:56:43'); INSERT INTO `sys_oper_log` VALUES (8629, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:57:06'); INSERT INTO `sys_oper_log` VALUES (8630, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:57:07'); INSERT INTO `sys_oper_log` VALUES (8631, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 15:57:25'); INSERT INTO `sys_oper_log` VALUES (8632, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 15:57:25'); INSERT INTO `sys_oper_log` VALUES (8633, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:02:31'); INSERT INTO `sys_oper_log` VALUES (8634, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:02:31'); INSERT INTO `sys_oper_log` VALUES (8635, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:02:54'); INSERT INTO `sys_oper_log` VALUES (8636, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:02:54'); INSERT INTO `sys_oper_log` VALUES (8637, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:03:41'); INSERT INTO `sys_oper_log` VALUES (8638, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:03:41'); INSERT INTO `sys_oper_log` VALUES (8639, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:05:56'); INSERT INTO `sys_oper_log` VALUES (8640, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:05:56'); INSERT INTO `sys_oper_log` VALUES (8641, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:06:58'); INSERT INTO `sys_oper_log` VALUES (8642, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:06:58'); INSERT INTO `sys_oper_log` VALUES (8643, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:07:17'); INSERT INTO `sys_oper_log` VALUES (8644, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:07:17'); INSERT INTO `sys_oper_log` VALUES (8645, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:07:33'); INSERT INTO `sys_oper_log` VALUES (8646, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:07:33'); INSERT INTO `sys_oper_log` VALUES (8647, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:07:46'); INSERT INTO `sys_oper_log` VALUES (8648, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:07:46'); INSERT INTO `sys_oper_log` VALUES (8649, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:08:20'); INSERT INTO `sys_oper_log` VALUES (8650, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:08:20'); INSERT INTO `sys_oper_log` VALUES (8651, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:08:29'); INSERT INTO `sys_oper_log` VALUES (8652, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:08:29'); INSERT INTO `sys_oper_log` VALUES (8653, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:09:03'); INSERT INTO `sys_oper_log` VALUES (8654, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:09:03'); INSERT INTO `sys_oper_log` VALUES (8655, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:09:10'); INSERT INTO `sys_oper_log` VALUES (8656, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:09:10'); INSERT INTO `sys_oper_log` VALUES (8657, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:09:45'); INSERT INTO `sys_oper_log` VALUES (8658, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:09:45'); INSERT INTO `sys_oper_log` VALUES (8659, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:10:27'); INSERT INTO `sys_oper_log` VALUES (8660, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:10:27'); INSERT INTO `sys_oper_log` VALUES (8661, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:10:52'); INSERT INTO `sys_oper_log` VALUES (8662, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:10:52'); INSERT INTO `sys_oper_log` VALUES (8663, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:11:53'); INSERT INTO `sys_oper_log` VALUES (8664, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:11:53'); INSERT INTO `sys_oper_log` VALUES (8665, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:12:01'); INSERT INTO `sys_oper_log` VALUES (8666, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:12:01'); INSERT INTO `sys_oper_log` VALUES (8667, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 15:33:50\"}}', 0, '', '2022-02-24 16:12:20'); INSERT INTO `sys_oper_log` VALUES (8668, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1645688030000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:12:20'); INSERT INTO `sys_oper_log` VALUES (8669, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:13:29'); INSERT INTO `sys_oper_log` VALUES (8670, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:13:29'); INSERT INTO `sys_oper_log` VALUES (8671, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:13:57'); INSERT INTO `sys_oper_log` VALUES (8672, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:13:57'); INSERT INTO `sys_oper_log` VALUES (8673, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:14:08'); INSERT INTO `sys_oper_log` VALUES (8674, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:14:08'); INSERT INTO `sys_oper_log` VALUES (8675, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:17:26'); INSERT INTO `sys_oper_log` VALUES (8676, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:17:26'); INSERT INTO `sys_oper_log` VALUES (8677, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:17:51'); INSERT INTO `sys_oper_log` VALUES (8678, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:17:51'); INSERT INTO `sys_oper_log` VALUES (8679, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:18:59'); INSERT INTO `sys_oper_log` VALUES (8680, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:18:59'); INSERT INTO `sys_oper_log` VALUES (8681, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:21:39'); INSERT INTO `sys_oper_log` VALUES (8682, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:21:39'); INSERT INTO `sys_oper_log` VALUES (8683, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:22:15'); INSERT INTO `sys_oper_log` VALUES (8684, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:22:15'); INSERT INTO `sys_oper_log` VALUES (8685, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:22:31'); INSERT INTO `sys_oper_log` VALUES (8686, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:22:31'); INSERT INTO `sys_oper_log` VALUES (8687, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:22:45'); INSERT INTO `sys_oper_log` VALUES (8688, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:22:45'); INSERT INTO `sys_oper_log` VALUES (8689, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645690409983,\"humidity\":\"41\",\"id\":1496760179797237761,\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:23:04'); INSERT INTO `sys_oper_log` VALUES (8690, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:23:04'); INSERT INTO `sys_oper_log` VALUES (8691, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:24:34'); INSERT INTO `sys_oper_log` VALUES (8692, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:24:35'); INSERT INTO `sys_oper_log` VALUES (8693, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:24:50'); INSERT INTO `sys_oper_log` VALUES (8694, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:24:50'); INSERT INTO `sys_oper_log` VALUES (8695, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:25:03'); INSERT INTO `sys_oper_log` VALUES (8696, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:25:03'); INSERT INTO `sys_oper_log` VALUES (8697, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:25:45'); INSERT INTO `sys_oper_log` VALUES (8698, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:25:45'); INSERT INTO `sys_oper_log` VALUES (8699, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:26:13'); INSERT INTO `sys_oper_log` VALUES (8700, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:26:14'); INSERT INTO `sys_oper_log` VALUES (8701, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:26:44'); INSERT INTO `sys_oper_log` VALUES (8702, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:26:44'); INSERT INTO `sys_oper_log` VALUES (8703, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:27:28'); INSERT INTO `sys_oper_log` VALUES (8704, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:27:28'); INSERT INTO `sys_oper_log` VALUES (8705, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:29:13'); INSERT INTO `sys_oper_log` VALUES (8706, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:29:13'); INSERT INTO `sys_oper_log` VALUES (8707, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:30:38'); INSERT INTO `sys_oper_log` VALUES (8708, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:30:38'); INSERT INTO `sys_oper_log` VALUES (8709, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:33:11'); INSERT INTO `sys_oper_log` VALUES (8710, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:33:11'); INSERT INTO `sys_oper_log` VALUES (8711, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:34:19'); INSERT INTO `sys_oper_log` VALUES (8712, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:34:19'); INSERT INTO `sys_oper_log` VALUES (8713, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:35:19'); INSERT INTO `sys_oper_log` VALUES (8714, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:35:24'); INSERT INTO `sys_oper_log` VALUES (8715, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:35:58'); INSERT INTO `sys_oper_log` VALUES (8716, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:35:58'); INSERT INTO `sys_oper_log` VALUES (8717, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:36:20'); INSERT INTO `sys_oper_log` VALUES (8718, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:36:20'); INSERT INTO `sys_oper_log` VALUES (8719, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:36:43'); INSERT INTO `sys_oper_log` VALUES (8720, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:36:43'); INSERT INTO `sys_oper_log` VALUES (8721, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:37:00'); INSERT INTO `sys_oper_log` VALUES (8722, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:37:00'); INSERT INTO `sys_oper_log` VALUES (8723, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:37:18'); INSERT INTO `sys_oper_log` VALUES (8724, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:37:18'); INSERT INTO `sys_oper_log` VALUES (8725, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:37:48'); INSERT INTO `sys_oper_log` VALUES (8726, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:37:48'); INSERT INTO `sys_oper_log` VALUES (8727, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:38:56'); INSERT INTO `sys_oper_log` VALUES (8728, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:38:56'); INSERT INTO `sys_oper_log` VALUES (8729, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:39:28'); INSERT INTO `sys_oper_log` VALUES (8730, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:39:28'); INSERT INTO `sys_oper_log` VALUES (8731, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:41:10'); INSERT INTO `sys_oper_log` VALUES (8732, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:41:10'); INSERT INTO `sys_oper_log` VALUES (8733, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:41:17'); INSERT INTO `sys_oper_log` VALUES (8734, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:41:17'); INSERT INTO `sys_oper_log` VALUES (8735, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:42:04'); INSERT INTO `sys_oper_log` VALUES (8736, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:42:04'); INSERT INTO `sys_oper_log` VALUES (8737, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:42:51'); INSERT INTO `sys_oper_log` VALUES (8738, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:42:52'); INSERT INTO `sys_oper_log` VALUES (8739, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:43:32'); INSERT INTO `sys_oper_log` VALUES (8740, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:43:32'); INSERT INTO `sys_oper_log` VALUES (8741, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:44:04'); INSERT INTO `sys_oper_log` VALUES (8742, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:44:04'); INSERT INTO `sys_oper_log` VALUES (8743, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:03:48\"}}', 0, '', '2022-02-24 16:44:58'); INSERT INTO `sys_oper_log` VALUES (8744, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1645689828000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:44:58'); INSERT INTO `sys_oper_log` VALUES (8745, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"43\",\"province\":\"江西\",\"reporttime\":1645691919000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:51:47'); INSERT INTO `sys_oper_log` VALUES (8746, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:38:39\"}}', 0, '', '2022-02-24 16:51:47'); INSERT INTO `sys_oper_log` VALUES (8747, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"43\",\"province\":\"江西\",\"reporttime\":1645691919000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:52:34'); INSERT INTO `sys_oper_log` VALUES (8748, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:38:39\"}}', 0, '', '2022-02-24 16:52:34'); INSERT INTO `sys_oper_log` VALUES (8749, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"43\",\"province\":\"江西\",\"reporttime\":1645691919000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:52:39'); INSERT INTO `sys_oper_log` VALUES (8750, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:38:39\"}}', 0, '', '2022-02-24 16:52:39'); INSERT INTO `sys_oper_log` VALUES (8751, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"43\",\"province\":\"江西\",\"reporttime\":1645691919000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:53:31'); INSERT INTO `sys_oper_log` VALUES (8752, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:38:39\"}}', 0, '', '2022-02-24 16:53:31'); INSERT INTO `sys_oper_log` VALUES (8753, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 16:38:39\"}}', 0, '', '2022-02-24 16:54:42'); INSERT INTO `sys_oper_log` VALUES (8754, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"43\",\"province\":\"江西\",\"reporttime\":1645691919000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 16:54:42'); INSERT INTO `sys_oper_log` VALUES (8755, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 19:08:30\"}}', 0, '', '2022-02-24 19:14:56'); INSERT INTO `sys_oper_log` VALUES (8756, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645701296952,\"humidity\":\"56\",\"id\":1496805843065872385,\"province\":\"江西\",\"reporttime\":1645700910000,\"temperature\":\"7\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 19:14:56'); INSERT INTO `sys_oper_log` VALUES (8757, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You don\'t know about real loss...cause that only occurs when you love something more than you love yourself.\",\"createTime\":1645707823082,\"dataId\":3801,\"date\":1592755200000,\"id\":1496833215609643010,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/5ecac429dca2b02df0073fe65288e6f2.png\",\"note\":\"你不了解真正的失去,唯有爱别人胜于自己才能体会。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/cbea1e1195bec55f37ce6de766b4c486.mp3\"}}', 0, '', '2022-02-24 21:03:43'); INSERT INTO `sys_oper_log` VALUES (8758, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"梦+想=梦想,这个等式是不成立的。\\\"\",\"createTime\":1645707823664,\"id\":1496833218080088065,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-24 21:03:43'); INSERT INTO `sys_oper_log` VALUES (8759, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1645706320000,\"temperature\":\"6\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 21:04:56'); INSERT INTO `sys_oper_log` VALUES (8760, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 20:38:41\"}}', 0, '', '2022-02-24 21:04:56'); INSERT INTO `sys_oper_log` VALUES (8761, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1645706320000,\"temperature\":\"6\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 21:06:40'); INSERT INTO `sys_oper_log` VALUES (8762, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 20:38:41\"}}', 0, '', '2022-02-24 21:06:40'); INSERT INTO `sys_oper_log` VALUES (8763, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1645706320000,\"temperature\":\"6\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 21:10:54'); INSERT INTO `sys_oper_log` VALUES (8764, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 20:38:41\"}}', 0, '', '2022-02-24 21:10:54'); INSERT INTO `sys_oper_log` VALUES (8765, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 20:38:41\"}}', 0, '', '2022-02-24 21:11:54'); INSERT INTO `sys_oper_log` VALUES (8766, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1645706320000,\"temperature\":\"6\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 21:11:54'); INSERT INTO `sys_oper_log` VALUES (8767, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"1\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 20:38:41\"}}', 0, '', '2022-02-24 21:13:00'); INSERT INTO `sys_oper_log` VALUES (8768, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1645706320000,\"temperature\":\"6\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 21:13:00'); INSERT INTO `sys_oper_log` VALUES (8769, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"search\",\"orderNum\":\"8\",\"menuName\":\"业务日志\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"logs\",\"children\":[],\"createTime\":1640505082000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2001,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-24 22:11:44'); INSERT INTO `sys_oper_log` VALUES (8770, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"bug\",\"orderNum\":\"2\",\"menuName\":\"爬虫数据\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"webmagic\",\"children\":[],\"createTime\":1644931276000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2075,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-24 22:11:50'); INSERT INTO `sys_oper_log` VALUES (8771, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"date\",\"orderNum\":\"8\",\"menuName\":\"业务监控\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"monitor\",\"children\":[],\"createTime\":1641108775000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2045,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-24 22:11:57'); INSERT INTO `sys_oper_log` VALUES (8772, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 22:03:52\"}}', 0, '', '2022-02-24 22:12:13'); INSERT INTO `sys_oper_log` VALUES (8773, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645711933994,\"humidity\":\"65\",\"id\":1496850458015899649,\"province\":\"江西\",\"reporttime\":1645711432000,\"temperature\":\"6\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 22:12:14'); INSERT INTO `sys_oper_log` VALUES (8774, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"REPTILE\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-24 22:14:01'); INSERT INTO `sys_oper_log` VALUES (8775, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 22:03:52\"}}', 0, '', '2022-02-24 22:32:07'); INSERT INTO `sys_oper_log` VALUES (8776, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1645711432000,\"temperature\":\"6\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 22:32:07'); INSERT INTO `sys_oper_log` VALUES (8777, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1645711432000,\"temperature\":\"6\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-24 22:32:07'); INSERT INTO `sys_oper_log` VALUES (8778, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-24\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"2\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-24 22:03:52\"}}', 0, '', '2022-02-24 22:32:07'); INSERT INTO `sys_oper_log` VALUES (8779, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 08:03:46\"}}', 0, '', '2022-02-25 08:35:46'); INSERT INTO `sys_oper_log` VALUES (8780, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645749347043,\"humidity\":\"79\",\"id\":1497007379752112130,\"province\":\"江西\",\"reporttime\":1645747426000,\"temperature\":\"5\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 08:35:47'); INSERT INTO `sys_oper_log` VALUES (8781, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"REPTILE\",\"params\":{},\"jobId\":106,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-25 08:38:40'); INSERT INTO `sys_oper_log` VALUES (8782, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 09:57:11'); INSERT INTO `sys_oper_log` VALUES (8783, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 09:57:11'); INSERT INTO `sys_oper_log` VALUES (8784, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 09:59:46'); INSERT INTO `sys_oper_log` VALUES (8785, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 09:59:46'); INSERT INTO `sys_oper_log` VALUES (8786, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:00:00'); INSERT INTO `sys_oper_log` VALUES (8787, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:00:00'); INSERT INTO `sys_oper_log` VALUES (8788, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:00:07'); INSERT INTO `sys_oper_log` VALUES (8789, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:00:07'); INSERT INTO `sys_oper_log` VALUES (8790, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:00:49'); INSERT INTO `sys_oper_log` VALUES (8791, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:00:49'); INSERT INTO `sys_oper_log` VALUES (8792, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:01:03'); INSERT INTO `sys_oper_log` VALUES (8793, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:01:03'); INSERT INTO `sys_oper_log` VALUES (8794, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:01:22'); INSERT INTO `sys_oper_log` VALUES (8795, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:01:22'); INSERT INTO `sys_oper_log` VALUES (8796, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:01:41'); INSERT INTO `sys_oper_log` VALUES (8797, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:01:41'); INSERT INTO `sys_oper_log` VALUES (8798, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:01:46'); INSERT INTO `sys_oper_log` VALUES (8799, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:01:46'); INSERT INTO `sys_oper_log` VALUES (8800, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:02:40'); INSERT INTO `sys_oper_log` VALUES (8801, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:02:40'); INSERT INTO `sys_oper_log` VALUES (8802, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:02:50'); INSERT INTO `sys_oper_log` VALUES (8803, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:02:50'); INSERT INTO `sys_oper_log` VALUES (8804, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:03:10'); INSERT INTO `sys_oper_log` VALUES (8805, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:03:10'); INSERT INTO `sys_oper_log` VALUES (8806, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:04:29'); INSERT INTO `sys_oper_log` VALUES (8807, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:04:30'); INSERT INTO `sys_oper_log` VALUES (8808, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:04:36'); INSERT INTO `sys_oper_log` VALUES (8809, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:04:36'); INSERT INTO `sys_oper_log` VALUES (8810, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:04:44'); INSERT INTO `sys_oper_log` VALUES (8811, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:04:44'); INSERT INTO `sys_oper_log` VALUES (8812, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:04:50'); INSERT INTO `sys_oper_log` VALUES (8813, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:04:50'); INSERT INTO `sys_oper_log` VALUES (8814, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:05:01'); INSERT INTO `sys_oper_log` VALUES (8815, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:05:01'); INSERT INTO `sys_oper_log` VALUES (8816, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:05:12'); INSERT INTO `sys_oper_log` VALUES (8817, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:05:12'); INSERT INTO `sys_oper_log` VALUES (8818, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:06:13'); INSERT INTO `sys_oper_log` VALUES (8819, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:06:13'); INSERT INTO `sys_oper_log` VALUES (8820, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:06:22'); INSERT INTO `sys_oper_log` VALUES (8821, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:06:22'); INSERT INTO `sys_oper_log` VALUES (8822, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:06:50'); INSERT INTO `sys_oper_log` VALUES (8823, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:06:50'); INSERT INTO `sys_oper_log` VALUES (8824, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1645752832000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:07:03'); INSERT INTO `sys_oper_log` VALUES (8825, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 09:33:52\"}}', 0, '', '2022-02-25 10:07:03'); INSERT INTO `sys_oper_log` VALUES (8826, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:08:02'); INSERT INTO `sys_oper_log` VALUES (8827, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:08:03'); INSERT INTO `sys_oper_log` VALUES (8828, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:10:47'); INSERT INTO `sys_oper_log` VALUES (8829, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:10:47'); INSERT INTO `sys_oper_log` VALUES (8830, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:11:20'); INSERT INTO `sys_oper_log` VALUES (8831, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:11:21'); INSERT INTO `sys_oper_log` VALUES (8832, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:11:29'); INSERT INTO `sys_oper_log` VALUES (8833, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:11:29'); INSERT INTO `sys_oper_log` VALUES (8834, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:11:56'); INSERT INTO `sys_oper_log` VALUES (8835, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:11:56'); INSERT INTO `sys_oper_log` VALUES (8836, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:12:53'); INSERT INTO `sys_oper_log` VALUES (8837, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:12:53'); INSERT INTO `sys_oper_log` VALUES (8838, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:13:08'); INSERT INTO `sys_oper_log` VALUES (8839, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:13:08'); INSERT INTO `sys_oper_log` VALUES (8840, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:13:18'); INSERT INTO `sys_oper_log` VALUES (8841, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:13:18'); INSERT INTO `sys_oper_log` VALUES (8842, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:13:28'); INSERT INTO `sys_oper_log` VALUES (8843, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:13:29'); INSERT INTO `sys_oper_log` VALUES (8844, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:13:34'); INSERT INTO `sys_oper_log` VALUES (8845, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:13:34'); INSERT INTO `sys_oper_log` VALUES (8846, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:14:23'); INSERT INTO `sys_oper_log` VALUES (8847, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:14:23'); INSERT INTO `sys_oper_log` VALUES (8848, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:14:33'); INSERT INTO `sys_oper_log` VALUES (8849, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:14:33'); INSERT INTO `sys_oper_log` VALUES (8850, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:15:00'); INSERT INTO `sys_oper_log` VALUES (8851, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:15:00'); INSERT INTO `sys_oper_log` VALUES (8852, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:15:05'); INSERT INTO `sys_oper_log` VALUES (8853, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:15:05'); INSERT INTO `sys_oper_log` VALUES (8854, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:15:29'); INSERT INTO `sys_oper_log` VALUES (8855, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:15:29'); INSERT INTO `sys_oper_log` VALUES (8856, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645754883816,\"humidity\":\"71\",\"id\":1497030602610921473,\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:16:14'); INSERT INTO `sys_oper_log` VALUES (8857, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:16:14'); INSERT INTO `sys_oper_log` VALUES (8858, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:23:49'); INSERT INTO `sys_oper_log` VALUES (8859, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:23:50'); INSERT INTO `sys_oper_log` VALUES (8860, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:25:01'); INSERT INTO `sys_oper_log` VALUES (8861, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:25:02'); INSERT INTO `sys_oper_log` VALUES (8862, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:26:17'); INSERT INTO `sys_oper_log` VALUES (8863, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:26:17'); INSERT INTO `sys_oper_log` VALUES (8864, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:26:38'); INSERT INTO `sys_oper_log` VALUES (8865, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:26:38'); INSERT INTO `sys_oper_log` VALUES (8866, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:27:18'); INSERT INTO `sys_oper_log` VALUES (8867, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:27:19'); INSERT INTO `sys_oper_log` VALUES (8868, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:28:04'); INSERT INTO `sys_oper_log` VALUES (8869, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:28:04'); INSERT INTO `sys_oper_log` VALUES (8870, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:28:33'); INSERT INTO `sys_oper_log` VALUES (8871, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:28:34'); INSERT INTO `sys_oper_log` VALUES (8872, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:30:00'); INSERT INTO `sys_oper_log` VALUES (8873, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:30:00'); INSERT INTO `sys_oper_log` VALUES (8874, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:30:18'); INSERT INTO `sys_oper_log` VALUES (8875, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:30:18'); INSERT INTO `sys_oper_log` VALUES (8876, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:30:27'); INSERT INTO `sys_oper_log` VALUES (8877, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:30:27'); INSERT INTO `sys_oper_log` VALUES (8878, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:30:35'); INSERT INTO `sys_oper_log` VALUES (8879, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:30:35'); INSERT INTO `sys_oper_log` VALUES (8880, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:30:48'); INSERT INTO `sys_oper_log` VALUES (8881, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:30:48'); INSERT INTO `sys_oper_log` VALUES (8882, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:31:07'); INSERT INTO `sys_oper_log` VALUES (8883, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:31:07'); INSERT INTO `sys_oper_log` VALUES (8884, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:31:20'); INSERT INTO `sys_oper_log` VALUES (8885, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:31:21'); INSERT INTO `sys_oper_log` VALUES (8886, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:35:03'); INSERT INTO `sys_oper_log` VALUES (8887, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:35:03'); INSERT INTO `sys_oper_log` VALUES (8888, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:36:26'); INSERT INTO `sys_oper_log` VALUES (8889, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:36:27'); INSERT INTO `sys_oper_log` VALUES (8890, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:37:49'); INSERT INTO `sys_oper_log` VALUES (8891, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:37:49'); INSERT INTO `sys_oper_log` VALUES (8892, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:40:49'); INSERT INTO `sys_oper_log` VALUES (8893, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:40:49'); INSERT INTO `sys_oper_log` VALUES (8894, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1645754626000,\"temperature\":\"7\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:41:18'); INSERT INTO `sys_oper_log` VALUES (8895, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:03:46\"}}', 0, '', '2022-02-25 10:41:18'); INSERT INTO `sys_oper_log` VALUES (8896, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1645756721000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:47:47'); INSERT INTO `sys_oper_log` VALUES (8897, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:38:41\"}}', 0, '', '2022-02-25 10:47:48'); INSERT INTO `sys_oper_log` VALUES (8898, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1645756721000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:48:36'); INSERT INTO `sys_oper_log` VALUES (8899, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:38:41\"}}', 0, '', '2022-02-25 10:48:36'); INSERT INTO `sys_oper_log` VALUES (8900, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1645756721000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:52:11'); INSERT INTO `sys_oper_log` VALUES (8901, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:38:41\"}}', 0, '', '2022-02-25 10:52:11'); INSERT INTO `sys_oper_log` VALUES (8902, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:38:41\"}}', 0, '', '2022-02-25 10:58:55'); INSERT INTO `sys_oper_log` VALUES (8903, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1645756721000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 10:58:55'); INSERT INTO `sys_oper_log` VALUES (8904, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1645756721000,\"temperature\":\"8\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:05:57'); INSERT INTO `sys_oper_log` VALUES (8905, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 10:38:41\"}}', 0, '', '2022-02-25 11:05:57'); INSERT INTO `sys_oper_log` VALUES (8906, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645758943725,\"humidity\":\"62\",\"id\":1497047631111868418,\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:15:43'); INSERT INTO `sys_oper_log` VALUES (8907, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:15:43'); INSERT INTO `sys_oper_log` VALUES (8908, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645758943725,\"humidity\":\"62\",\"id\":1497047631111868418,\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:16:43'); INSERT INTO `sys_oper_log` VALUES (8909, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:16:43'); INSERT INTO `sys_oper_log` VALUES (8910, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645758943725,\"humidity\":\"62\",\"id\":1497047631111868418,\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:18:04'); INSERT INTO `sys_oper_log` VALUES (8911, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:18:04'); INSERT INTO `sys_oper_log` VALUES (8912, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645758943725,\"humidity\":\"62\",\"id\":1497047631111868418,\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:18:42'); INSERT INTO `sys_oper_log` VALUES (8913, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:18:42'); INSERT INTO `sys_oper_log` VALUES (8914, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"May life be quiet and sweet every year.\",\"createTime\":1645759162454,\"dataId\":4391,\"date\":1643731200000,\"id\":1497048548552953858,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/454280d8d77cb92507e01dc14d36d4fb.png\",\"note\":\"愿人生静好,岁岁含香。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/8e24210ed2fefbf7dc5bedc8be02b953.mp3\"}}', 0, '', '2022-02-25 11:19:22'); INSERT INTO `sys_oper_log` VALUES (8915, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"你的名字那么普通也就我听到会心头一怔。\\\"\",\"createTime\":1645759163746,\"id\":1497048553980383234,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-02-25 11:19:23'); INSERT INTO `sys_oper_log` VALUES (8916, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645758943725,\"humidity\":\"62\",\"id\":1497047631111868418,\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:23:08'); INSERT INTO `sys_oper_log` VALUES (8917, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:23:09'); INSERT INTO `sys_oper_log` VALUES (8918, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645758943725,\"humidity\":\"62\",\"id\":1497047631111868418,\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:24:43'); INSERT INTO `sys_oper_log` VALUES (8919, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:24:43'); INSERT INTO `sys_oper_log` VALUES (8920, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:26:02'); INSERT INTO `sys_oper_log` VALUES (8921, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:26:02'); INSERT INTO `sys_oper_log` VALUES (8922, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:26:41'); INSERT INTO `sys_oper_log` VALUES (8923, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:26:41'); INSERT INTO `sys_oper_log` VALUES (8924, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:28:07'); INSERT INTO `sys_oper_log` VALUES (8925, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:28:07'); INSERT INTO `sys_oper_log` VALUES (8926, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:29:50'); INSERT INTO `sys_oper_log` VALUES (8927, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:29:51'); INSERT INTO `sys_oper_log` VALUES (8928, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1645758508000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:30:27'); INSERT INTO `sys_oper_log` VALUES (8929, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:08:28\"}}', 0, '', '2022-02-25 11:30:27'); INSERT INTO `sys_oper_log` VALUES (8930, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-02-25 11:32:45'); INSERT INTO `sys_oper_log` VALUES (8931, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:33:46\"}}', 0, '', '2022-02-25 11:45:37'); INSERT INTO `sys_oper_log` VALUES (8932, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645760026000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:45:38'); INSERT INTO `sys_oper_log` VALUES (8933, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:33:46\"}}', 0, '', '2022-02-25 11:47:10'); INSERT INTO `sys_oper_log` VALUES (8934, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645760026000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:47:10'); INSERT INTO `sys_oper_log` VALUES (8935, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:33:46\"}}', 0, '', '2022-02-25 11:49:49'); INSERT INTO `sys_oper_log` VALUES (8936, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645760026000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:49:49'); INSERT INTO `sys_oper_log` VALUES (8937, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645760026000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:50:31'); INSERT INTO `sys_oper_log` VALUES (8938, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:33:46\"}}', 0, '', '2022-02-25 11:50:31'); INSERT INTO `sys_oper_log` VALUES (8939, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645760026000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:50:50'); INSERT INTO `sys_oper_log` VALUES (8940, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:33:46\"}}', 0, '', '2022-02-25 11:50:51'); INSERT INTO `sys_oper_log` VALUES (8941, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645760026000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 11:57:06'); INSERT INTO `sys_oper_log` VALUES (8942, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:33:46\"}}', 0, '', '2022-02-25 11:57:06'); INSERT INTO `sys_oper_log` VALUES (8943, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:33:46\"}}', 0, '', '2022-02-25 12:02:45'); INSERT INTO `sys_oper_log` VALUES (8944, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1645760026000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 12:02:45'); INSERT INTO `sys_oper_log` VALUES (8945, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 11:33:46\"}}', 0, '', '2022-02-25 12:03:29'); INSERT INTO `sys_oper_log` VALUES (8946, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年02月28日\",\"holidayName\":\"国际罕见病日\",\"lunarDate\":\"2022年01月28日\",\"lunarHoliday\":false,\"residueDays\":2,\"returnDate\":\"2022年02月28日\"},{\"date\":\"2022年03月01日\",\"holidayName\":\"国际海豹日\",\"lunarDate\":\"2022年01月29日\",\"lunarHoliday\":false,\"residueDays\":3,\"returnDate\":\"2022年03月01日\"},{\"date\":\"2022年03月03日\",\"holidayName\":\"全国爱耳日\",\"lunarDate\":\"2022年02月01日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年03月03日\"},{\"date\":\"2022年03月04日\",\"holidayName\":\"龙抬头\",\"lunarDate\":\"2022年02月02日\",\"lunarHoliday\":true,\"residueDays\":6,\"returnDate\":\"壬寅虎年 正月初二\"},{\"date\":\"2022年03月05日\",\"holidayName\":\"学雷锋纪念日\",\"lunarDate\":\"2022年02月03日\",\"lunarHoliday\":false,\"residueDays\":7,\"returnDate\":\"2022年03月05日\"},{\"date\":\"2022年03月05日\",\"holidayName\":\"惊蛰\",\"lunarDate\":\"2022年02月03日\",\"lunarHoliday\":true,\"residueDays\":7,\"returnDate\":\"壬寅虎年 正月初三\"},{\"date\":\"2022年03月08日\",\"holidayName\":\"三八妇女节\",\"lunarDate\":\"2022年02月06日\",\"lunarHoliday\":false,\"residueDays\":10,\"returnDate\":\"2022年03月08日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-25 12:36:19'); INSERT INTO `sys_oper_log` VALUES (8947, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1497063807363727361', '127.0.0.1', '', '1497063807363727361', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-25 12:37:14'); INSERT INTO `sys_oper_log` VALUES (8948, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 13:33:52\"}}', 0, '', '2022-02-25 13:51:21'); INSERT INTO `sys_oper_log` VALUES (8949, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"43\",\"province\":\"江西\",\"reporttime\":1645767232000,\"temperature\":\"12\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 13:51:21'); INSERT INTO `sys_oper_log` VALUES (8950, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"43\",\"province\":\"江西\",\"reporttime\":1645767232000,\"temperature\":\"12\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 13:59:40'); INSERT INTO `sys_oper_log` VALUES (8951, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 13:33:52\"}}', 0, '', '2022-02-25 13:59:40'); INSERT INTO `sys_oper_log` VALUES (8952, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"43\",\"province\":\"江西\",\"reporttime\":1645767232000,\"temperature\":\"12\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:01:20'); INSERT INTO `sys_oper_log` VALUES (8953, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 13:33:52\"}}', 0, '', '2022-02-25 14:01:20'); INSERT INTO `sys_oper_log` VALUES (8954, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645769268770,\"humidity\":\"41\",\"id\":1497090937501995010,\"province\":\"江西\",\"reporttime\":1645769027000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:07:48'); INSERT INTO `sys_oper_log` VALUES (8955, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:07:53'); INSERT INTO `sys_oper_log` VALUES (8956, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:07:53'); INSERT INTO `sys_oper_log` VALUES (8957, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645769268770,\"humidity\":\"41\",\"id\":1497090937501995010,\"province\":\"江西\",\"reporttime\":1645769027000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:12:34'); INSERT INTO `sys_oper_log` VALUES (8958, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:12:34'); INSERT INTO `sys_oper_log` VALUES (8959, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645769268770,\"humidity\":\"41\",\"id\":1497090937501995010,\"province\":\"江西\",\"reporttime\":1645769027000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:13:21'); INSERT INTO `sys_oper_log` VALUES (8960, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:13:21'); INSERT INTO `sys_oper_log` VALUES (8961, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645769268770,\"humidity\":\"41\",\"id\":1497090937501995010,\"province\":\"江西\",\"reporttime\":1645769027000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:13:36'); INSERT INTO `sys_oper_log` VALUES (8962, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:13:36'); INSERT INTO `sys_oper_log` VALUES (8963, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645769268770,\"humidity\":\"41\",\"id\":1497090937501995010,\"province\":\"江西\",\"reporttime\":1645769027000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:13:46'); INSERT INTO `sys_oper_log` VALUES (8964, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:13:46'); INSERT INTO `sys_oper_log` VALUES (8965, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645769268770,\"humidity\":\"41\",\"id\":1497090937501995010,\"province\":\"江西\",\"reporttime\":1645769027000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:14:19'); INSERT INTO `sys_oper_log` VALUES (8966, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:14:19'); INSERT INTO `sys_oper_log` VALUES (8967, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645769268770,\"humidity\":\"41\",\"id\":1497090937501995010,\"province\":\"江西\",\"reporttime\":1645769027000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:15:15'); INSERT INTO `sys_oper_log` VALUES (8968, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:15:16'); INSERT INTO `sys_oper_log` VALUES (8969, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645769268770,\"humidity\":\"41\",\"id\":1497090937501995010,\"province\":\"江西\",\"reporttime\":1645769027000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:15:43'); INSERT INTO `sys_oper_log` VALUES (8970, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:15:43'); INSERT INTO `sys_oper_log` VALUES (8971, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645769268770,\"humidity\":\"41\",\"id\":1497090937501995010,\"province\":\"江西\",\"reporttime\":1645769027000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:16:36'); INSERT INTO `sys_oper_log` VALUES (8972, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:16:36'); INSERT INTO `sys_oper_log` VALUES (8973, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645769268770,\"humidity\":\"41\",\"id\":1497090937501995010,\"province\":\"江西\",\"reporttime\":1645769027000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 14:16:59'); INSERT INTO `sys_oper_log` VALUES (8974, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:16:59'); INSERT INTO `sys_oper_log` VALUES (8975, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 14:03:47\"}}', 0, '', '2022-02-25 14:18:32'); INSERT INTO `sys_oper_log` VALUES (8976, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-25 14:19:50'); INSERT INTO `sys_oper_log` VALUES (8977, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"难道我学过如来神掌也要说给你听吗?\",\"createTime\":1645776260431,\"id\":1497120262628528129,\"source\":\"功夫\",\"type\":3}}', 0, '', '2022-02-25 16:04:20'); INSERT INTO `sys_oper_log` VALUES (8978, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You will see exactly what life is worth, when all the rest has gone. \",\"createTime\":1645776260434,\"dataId\":4089,\"date\":1617638400000,\"id\":1497120262691442690,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/32511b1538a1854531a3d7c116cee98f.png\",\"note\":\"当一切都消失的时候你会明白生命究竟有何价值。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/acc453af6a6623e60008efb72040fe5d.mp3\"}}', 0, '', '2022-02-25 16:04:20'); INSERT INTO `sys_oper_log` VALUES (8979, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"本人22岁妹纸一枚,从小特别怕痒,一次去一个老中医那推拿,单独房间,他是五六十岁大叔级别,我往床上一趴,他推一下我嗷一嗓子,推一下我嗷一嗓子,半分钟后他忍不住了说,不收你钱了你走吧,我是一个要名誉的人。。。\",\"createTime\":1645778337463,\"id\":1497128974353125378,\"source\":\"笑话大全\",\"type\":10}}', 0, '', '2022-02-25 16:38:57'); INSERT INTO `sys_oper_log` VALUES (8980, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"To be a sailor of the world, bound for all ports.\",\"dataId\":4323,\"date\":1637856000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/2abcfe6c9c68179a6fd6ab17425d436e.png\",\"note\":\"做世界的水手,游遍所有的港口。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cc5e8e5a19d57b4274cdf1bcb4db3ac4.mp3\"}}', 0, '', '2022-02-25 16:38:57'); INSERT INTO `sys_oper_log` VALUES (8981, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645778338246,\"humidity\":\"45\",\"id\":1497128977637265409,\"province\":\"江西\",\"reporttime\":1645778323000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 16:38:58'); INSERT INTO `sys_oper_log` VALUES (8982, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"3\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"4\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 16:38:43\"}}', 0, '', '2022-02-25 16:38:58'); INSERT INTO `sys_oper_log` VALUES (8983, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1645778349117,\"en\":\"I\'m lost\",\"id\":1497129023250321410,\"zh\":\"我给搞糊涂了。\"}}', 0, '', '2022-02-25 16:39:09'); INSERT INTO `sys_oper_log` VALUES (8984, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I\'m lost\",\"zh\":\"我给搞糊涂了。\"}}', 0, '', '2022-02-25 16:39:11'); INSERT INTO `sys_oper_log` VALUES (8985, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I\'m lost\",\"zh\":\"我给搞糊涂了。\"}}', 0, '', '2022-02-25 16:39:13'); INSERT INTO `sys_oper_log` VALUES (8986, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I\'m lost\",\"zh\":\"我给搞糊涂了。\"}}', 0, '', '2022-02-25 16:39:15'); INSERT INTO `sys_oper_log` VALUES (8987, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I\'m lost\",\"zh\":\"我给搞糊涂了。\"}}', 0, '', '2022-02-25 16:39:16'); INSERT INTO `sys_oper_log` VALUES (8988, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I\'m lost\",\"zh\":\"我给搞糊涂了。\"}}', 0, '', '2022-02-25 16:39:18'); INSERT INTO `sys_oper_log` VALUES (8989, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"条件\",\"createTime\":1645497826000,\"englishWord\":\"conditions\",\"id\":1495952426027585537,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1645490416000,\"englishWord\":\"source\",\"id\":1495921344716607490,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"重置\",\"createTime\":1645428992000,\"englishWord\":\"reset\",\"id\":1495663714559500290,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:22'); INSERT INTO `sys_oper_log` VALUES (8990, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"设置\",\"createTime\":1645413604000,\"englishWord\":\"settings\",\"id\":1495599171498057730,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"注解\",\"createTime\":1645406032000,\"englishWord\":\"annotation\",\"id\":1495567412718903297,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"爬虫\",\"createTime\":1645281842000,\"englishWord\":\"reptile\",\"id\":1495046521038295041,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:22'); INSERT INTO `sys_oper_log` VALUES (8991, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"发布\",\"createTime\":1645280419000,\"englishWord\":\"release\",\"id\":1495040553210597378,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"平台\",\"createTime\":1645274475000,\"englishWord\":\"platform\",\"id\":1495015622968070145,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"壁纸\",\"createTime\":1645265889000,\"englishWord\":\"wallpaper\",\"id\":1494979609008787457,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:22'); INSERT INTO `sys_oper_log` VALUES (8992, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:22'); INSERT INTO `sys_oper_log` VALUES (8993, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:22'); INSERT INTO `sys_oper_log` VALUES (8994, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:22'); INSERT INTO `sys_oper_log` VALUES (8995, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:23'); INSERT INTO `sys_oper_log` VALUES (8996, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:23'); INSERT INTO `sys_oper_log` VALUES (8997, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:24'); INSERT INTO `sys_oper_log` VALUES (8998, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:25'); INSERT INTO `sys_oper_log` VALUES (8999, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:25'); INSERT INTO `sys_oper_log` VALUES (9000, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:25'); INSERT INTO `sys_oper_log` VALUES (9001, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:26'); INSERT INTO `sys_oper_log` VALUES (9002, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:27'); INSERT INTO `sys_oper_log` VALUES (9003, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:28'); INSERT INTO `sys_oper_log` VALUES (9004, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:29'); INSERT INTO `sys_oper_log` VALUES (9005, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:29'); INSERT INTO `sys_oper_log` VALUES (9006, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:29'); INSERT INTO `sys_oper_log` VALUES (9007, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:30'); INSERT INTO `sys_oper_log` VALUES (9008, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:30'); INSERT INTO `sys_oper_log` VALUES (9009, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:31'); INSERT INTO `sys_oper_log` VALUES (9010, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":22,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":18,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:31'); INSERT INTO `sys_oper_log` VALUES (9011, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":23,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:32'); INSERT INTO `sys_oper_log` VALUES (9012, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":24,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:32'); INSERT INTO `sys_oper_log` VALUES (9013, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":25,\"optimizeCountSql\":true,\"orders\":[],\"pages\":22,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":64}}', 0, '', '2022-02-25 16:39:32'); INSERT INTO `sys_oper_log` VALUES (9014, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 21:33:49\"}}', 0, '', '2022-02-25 21:55:48'); INSERT INTO `sys_oper_log` VALUES (9015, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645797348304,\"humidity\":\"77\",\"id\":1497208711639949313,\"province\":\"江西\",\"reporttime\":1645796029000,\"temperature\":\"7\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 21:55:48'); INSERT INTO `sys_oper_log` VALUES (9016, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"无人做你的光芒,就自己照亮远方。\",\"createTime\":1645798015851,\"id\":1497211511518224385,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-02-25 22:06:55'); INSERT INTO `sys_oper_log` VALUES (9017, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The best way to predict your future is to create it.\",\"dataId\":4281,\"date\":1634227200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/6f3139b30f126a956caefe60649a01d2.png\",\"note\":\"预测未来的最好方式就是去创造它。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/70151ea101b998a9f10f0fc273fe44a9.mp3\"}}', 0, '', '2022-02-25 22:06:56'); INSERT INTO `sys_oper_log` VALUES (9018, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursvoilij31c00u0wrk.jpg\"},{\"imageFileLength\":\"241KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ccuppj31c00u07bl.jpg\"},{\"imageFileLength\":\"92KB\",\"imageSize\":\"1619x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt57k626j318z0u0gr5.jpg\"},{\"imageFileLength\":\"125KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usegcrvpj31c00u0q66.jpg\"},{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28eod61v0j31c00u0kjl.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfa1vowj31c00u042n.jpg\"},{\"imageFileLength\":\"169KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq51zh8ij31c00u0af9.jpg\"},{\"imageFileLength\":\"108KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut85lksaj31c00u00vl.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urs7h6c7j31hc0u0k4g.jpg\"},{\"imageFileLength\":\"195KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8oxyttj31hc0u0jwh.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-25 22:08:39'); INSERT INTO `sys_oper_log` VALUES (9019, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1645799914000,\"temperature\":\"7\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 22:51:29'); INSERT INTO `sys_oper_log` VALUES (9020, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 22:38:34\"}}', 0, '', '2022-02-25 22:51:29'); INSERT INTO `sys_oper_log` VALUES (9021, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645802382503,\"humidity\":\"77\",\"id\":1497229826550620161,\"province\":\"江西\",\"reporttime\":1645801710000,\"temperature\":\"6\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-25 23:19:42'); INSERT INTO `sys_oper_log` VALUES (9022, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-25\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"5\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-25 23:08:30\"}}', 0, '', '2022-02-25 23:19:42'); INSERT INTO `sys_oper_log` VALUES (9023, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-26 10:38:40\"}}', 0, '', '2022-02-26 11:03:09'); INSERT INTO `sys_oper_log` VALUES (9024, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645844589408,\"humidity\":\"66\",\"id\":1497406855187165186,\"province\":\"江西\",\"reporttime\":1645843120000,\"temperature\":\"9\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-26 11:03:09'); INSERT INTO `sys_oper_log` VALUES (9025, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1645844913000,\"temperature\":\"10\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-26 11:24:52'); INSERT INTO `sys_oper_log` VALUES (9026, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-26 11:08:33\"}}', 0, '', '2022-02-26 11:24:52'); INSERT INTO `sys_oper_log` VALUES (9027, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-26 17:33:58\"}}', 0, '', '2022-02-26 17:41:54'); INSERT INTO `sys_oper_log` VALUES (9028, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-26 17:33:58\"}}', 0, '', '2022-02-26 17:51:50'); INSERT INTO `sys_oper_log` VALUES (9029, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"43\",\"province\":\"江西\",\"reporttime\":1645868038000,\"temperature\":\"16\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-26 17:51:54'); INSERT INTO `sys_oper_log` VALUES (9030, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645870255059,\"humidity\":\"47\",\"id\":1497514504696320002,\"province\":\"江西\",\"reporttime\":1645869825000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-26 18:10:55'); INSERT INTO `sys_oper_log` VALUES (9031, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-26 18:03:45\"}}', 0, '', '2022-02-26 18:10:55'); INSERT INTO `sys_oper_log` VALUES (9032, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-26 18:16:32'); INSERT INTO `sys_oper_log` VALUES (9033, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-26 18:17:37'); INSERT INTO `sys_oper_log` VALUES (9034, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-02-26 18:21:35'); INSERT INTO `sys_oper_log` VALUES (9035, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1645884223000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-26 22:28:40'); INSERT INTO `sys_oper_log` VALUES (9036, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-26 22:03:43\"}}', 0, '', '2022-02-26 22:28:40'); INSERT INTO `sys_oper_log` VALUES (9037, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年02月28日\",\"holidayName\":\"国际罕见病日\",\"lunarDate\":\"2022年01月28日\",\"lunarHoliday\":false,\"residueDays\":1,\"returnDate\":\"2022年02月28日\"},{\"date\":\"2022年03月01日\",\"holidayName\":\"国际海豹日\",\"lunarDate\":\"2022年01月29日\",\"lunarHoliday\":false,\"residueDays\":2,\"returnDate\":\"2022年03月01日\"},{\"date\":\"2022年03月03日\",\"holidayName\":\"全国爱耳日\",\"lunarDate\":\"2022年02月01日\",\"lunarHoliday\":false,\"residueDays\":4,\"returnDate\":\"2022年03月03日\"},{\"date\":\"2022年03月04日\",\"holidayName\":\"龙抬头\",\"lunarDate\":\"2022年02月02日\",\"lunarHoliday\":true,\"residueDays\":5,\"returnDate\":\"壬寅虎年 正月初二\"},{\"date\":\"2022年03月05日\",\"holidayName\":\"学雷锋纪念日\",\"lunarDate\":\"2022年02月03日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年03月05日\"},{\"date\":\"2022年03月05日\",\"holidayName\":\"惊蛰\",\"lunarDate\":\"2022年02月03日\",\"lunarHoliday\":true,\"residueDays\":6,\"returnDate\":\"壬寅虎年 正月初三\"},{\"date\":\"2022年03月08日\",\"holidayName\":\"三八妇女节\",\"lunarDate\":\"2022年02月06日\",\"lunarHoliday\":false,\"residueDays\":9,\"returnDate\":\"2022年03月08日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-26 22:31:58'); INSERT INTO `sys_oper_log` VALUES (9038, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"240KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut8fsmh2j31hc0u0wkv.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfl4rbrj31hc0u0q9w.jpg\"},{\"imageFileLength\":\"205KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfeeg85j31hc0u0gqu.jpg\"},{\"imageFileLength\":\"170KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut96nxguj31c00u0gqc.jpg\"},{\"imageFileLength\":\"276KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb76iomj31c00u046s.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urbcm1f8j31c00u0dke.jpg\"},{\"imageFileLength\":\"252KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut54p98dj31c00u0460.jpg\"},{\"imageFileLength\":\"199KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useuoojuj31c00u0afo.jpg\"},{\"imageFileLength\":\"207KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urax173oj31c00u0wnc.jpg\"},{\"imageFileLength\":\"302KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urvc7ld4j31c00u0du2.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-02-26 22:32:05'); INSERT INTO `sys_oper_log` VALUES (9039, 'api预警', 3, 'com.xjs.controller.ApiWarningController.clearAll()', 'DELETE', 1, 'admin', '', '/apiwarning/all', '127.0.0.1', '', '', '{\"code\":200,\"data\":7,\"msg\":\"操作成功\"}', 0, '', '2022-02-26 22:46:17'); INSERT INTO `sys_oper_log` VALUES (9040, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1645886315000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-26 22:52:12'); INSERT INTO `sys_oper_log` VALUES (9041, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-26\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-26 22:38:35\"}}', 0, '', '2022-02-26 22:52:12'); INSERT INTO `sys_oper_log` VALUES (9042, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1493758980827254786', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-27 09:38:09'); INSERT INTO `sys_oper_log` VALUES (9043, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-27 09:33:44\"}}', 0, '', '2022-02-27 09:38:24'); INSERT INTO `sys_oper_log` VALUES (9044, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645925904548,\"humidity\":\"74\",\"id\":1497747915579006977,\"province\":\"江西\",\"reporttime\":1645925624000,\"temperature\":\"12\",\"weather\":\"晴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-27 09:38:24'); INSERT INTO `sys_oper_log` VALUES (9045, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1494320551943692290', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-02-27 09:38:34'); INSERT INTO `sys_oper_log` VALUES (9046, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-27 09:33:44\"}}', 0, '', '2022-02-27 09:38:36'); INSERT INTO `sys_oper_log` VALUES (9047, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645925904548,\"humidity\":\"74\",\"id\":1497747915579006977,\"province\":\"江西\",\"reporttime\":1645925624000,\"temperature\":\"12\",\"weather\":\"晴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-27 09:38:36'); INSERT INTO `sys_oper_log` VALUES (9048, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '192.168.1.8', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-27 19:08:34\"}}', 0, '', '2022-02-27 19:25:03'); INSERT INTO `sys_oper_log` VALUES (9049, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '192.168.1.8', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645961103562,\"humidity\":\"56\",\"id\":1497895550969405442,\"province\":\"江西\",\"reporttime\":1645960114000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-27 19:25:03'); INSERT INTO `sys_oper_log` VALUES (9050, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '192.168.1.8', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It is the set of the sails, not the direction of the wind that determines which way we will go.\",\"createTime\":1645961188649,\"dataId\":4053,\"date\":1614528000000,\"id\":1497895907850149889,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/f19c2f857bced385b59acc16768e6b53.jpg\",\"note\":\"决定我们去向的不是风的方向,而是如何架起船帆。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/65269ef4df3e68dff854b38112bb44ad.mp3\"}}', 0, '', '2022-02-27 19:26:28'); INSERT INTO `sys_oper_log` VALUES (9051, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '192.168.1.8', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果要想在众多的书籍中发现思想,结果就会大失所望,思想存在于河川海洋丘陵和森林日光和天然的风之中。\",\"createTime\":1645961188699,\"id\":1497895908047282178,\"source\":\"杰弗利斯\",\"type\":4}}', 0, '', '2022-02-27 19:26:28'); INSERT INTO `sys_oper_log` VALUES (9052, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645961103562,\"humidity\":\"56\",\"id\":1497895550969405442,\"province\":\"江西\",\"reporttime\":1645960114000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-27 19:26:42'); INSERT INTO `sys_oper_log` VALUES (9053, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-27 19:08:34\"}}', 0, '', '2022-02-27 19:26:42'); INSERT INTO `sys_oper_log` VALUES (9054, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-27 19:33:47\"}}', 0, '', '2022-02-27 19:36:02'); INSERT INTO `sys_oper_log` VALUES (9055, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1645961762205,\"humidity\":\"56\",\"id\":1497898313518370818,\"province\":\"江西\",\"reporttime\":1645961627000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-27 19:36:02'); INSERT INTO `sys_oper_log` VALUES (9056, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 08:38:39\"}}', 0, '', '2022-02-28 08:50:41'); INSERT INTO `sys_oper_log` VALUES (9057, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646009442238,\"humidity\":\"73\",\"id\":1498098298005880833,\"province\":\"江西\",\"reporttime\":1646008719000,\"temperature\":\"12\",\"weather\":\"晴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-28 08:50:42'); INSERT INTO `sys_oper_log` VALUES (9058, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1646030315000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-02-28 14:47:41'); INSERT INTO `sys_oper_log` VALUES (9059, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 14:38:35\"}}', 0, '', '2022-02-28 14:47:41'); INSERT INTO `sys_oper_log` VALUES (9060, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1498188729301590018', '127.0.0.1', '', '1498188729301590018', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-28 14:51:16'); INSERT INTO `sys_oper_log` VALUES (9061, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 14:38:35\"}}', 0, '', '2022-02-28 14:51:17'); INSERT INTO `sys_oper_log` VALUES (9062, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 14:38:35\"}}', 0, '', '2022-02-28 14:51:25'); INSERT INTO `sys_oper_log` VALUES (9063, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 14:38:35\"}}', 0, '', '2022-02-28 14:52:46'); INSERT INTO `sys_oper_log` VALUES (9064, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1646030315000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-02-28 14:52:46'); INSERT INTO `sys_oper_log` VALUES (9065, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"48\",\"province\":\"江西\",\"reporttime\":1646030315000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-02-28 14:52:48'); INSERT INTO `sys_oper_log` VALUES (9066, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 14:38:35\"}}', 0, '', '2022-02-28 14:52:48'); INSERT INTO `sys_oper_log` VALUES (9067, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646036380709,\"humidity\":\"50\",\"id\":1498211286180298754,\"province\":\"江西\",\"reporttime\":1646035428000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-02-28 16:19:40'); INSERT INTO `sys_oper_log` VALUES (9068, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 16:03:48\"}}', 0, '', '2022-02-28 16:19:40'); INSERT INTO `sys_oper_log` VALUES (9069, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1498211381110104065', '127.0.0.1', '', '1498211381110104065', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-28 16:24:39'); INSERT INTO `sys_oper_log` VALUES (9070, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 16:38:41\"}}', 0, '', '2022-02-28 16:39:31'); INSERT INTO `sys_oper_log` VALUES (9071, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 16:38:41\"}}', 0, '', '2022-02-28 16:39:31'); INSERT INTO `sys_oper_log` VALUES (9072, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 16:38:41\"}}', 0, '', '2022-02-28 16:39:32'); INSERT INTO `sys_oper_log` VALUES (9073, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 16:38:41\"}}', 0, '', '2022-02-28 16:39:32'); INSERT INTO `sys_oper_log` VALUES (9074, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-02-28\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-02-28 16:38:41\"}}', 0, '', '2022-02-28 16:39:35'); INSERT INTO `sys_oper_log` VALUES (9075, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1498213918546583554', '127.0.0.1', '', '1498213918546583554', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-02-28 16:39:39'); INSERT INTO `sys_oper_log` VALUES (9076, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-02-28 16:50:15'); INSERT INTO `sys_oper_log` VALUES (9077, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646096336925,\"humidity\":\"64\",\"id\":1498462760768622593,\"province\":\"江西\",\"reporttime\":1646095108000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 08:58:56'); INSERT INTO `sys_oper_log` VALUES (9078, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 08:38:28\"}}', 0, '', '2022-03-01 08:58:56'); INSERT INTO `sys_oper_log` VALUES (9079, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:08:41\"}}', 0, '', '2022-03-01 09:17:02'); INSERT INTO `sys_oper_log` VALUES (9080, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:08:41\"}}', 0, '', '2022-03-01 09:18:08'); INSERT INTO `sys_oper_log` VALUES (9081, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646097488147,\"humidity\":\"63\",\"id\":1498467589331079170,\"province\":\"江西\",\"reporttime\":1646096921000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:18:08'); INSERT INTO `sys_oper_log` VALUES (9082, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646097488147,\"humidity\":\"63\",\"id\":1498467589331079170,\"province\":\"江西\",\"reporttime\":1646096921000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:18:15'); INSERT INTO `sys_oper_log` VALUES (9083, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:08:41\"}}', 0, '', '2022-03-01 09:18:15'); INSERT INTO `sys_oper_log` VALUES (9084, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"example\",\"orderNum\":\"7\",\"menuName\":\"尚融宝\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"srb\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 09:38:21'); INSERT INTO `sys_oper_log` VALUES (9085, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-03-01 09:38:29'); INSERT INTO `sys_oper_log` VALUES (9086, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-01 09:38:29'); INSERT INTO `sys_oper_log` VALUES (9087, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646098712930,\"humidity\":\"61\",\"id\":1498472726468481026,\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:38:32'); INSERT INTO `sys_oper_log` VALUES (9088, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:38:32'); INSERT INTO `sys_oper_log` VALUES (9089, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"lock\",\"orderNum\":\"1\",\"menuName\":\"积分管理\",\"params\":{},\"parentId\":2088,\"isCache\":\"0\",\"path\":\"integral\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 09:39:16'); INSERT INTO `sys_oper_log` VALUES (9090, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646098712930,\"humidity\":\"61\",\"id\":1498472726468481026,\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:44:08'); INSERT INTO `sys_oper_log` VALUES (9091, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:44:08'); INSERT INTO `sys_oper_log` VALUES (9092, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646098712930,\"humidity\":\"61\",\"id\":1498472726468481026,\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:44:44'); INSERT INTO `sys_oper_log` VALUES (9093, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:44:44'); INSERT INTO `sys_oper_log` VALUES (9094, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"教育培训\",\"orderNum\":\"7\",\"menuName\":\"尚融宝\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"srb\",\"children\":[],\"createTime\":1646098701000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2088,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 09:45:02'); INSERT INTO `sys_oper_log` VALUES (9095, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"首页图标\",\"orderNum\":\"1\",\"menuName\":\"积分列表\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"list\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 09:45:53'); INSERT INTO `sys_oper_log` VALUES (9096, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"add\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 09:46:18'); INSERT INTO `sys_oper_log` VALUES (9097, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:46:37'); INSERT INTO `sys_oper_log` VALUES (9098, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646098712930,\"humidity\":\"61\",\"id\":1498472726468481026,\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:46:37'); INSERT INTO `sys_oper_log` VALUES (9099, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"积分\",\"top\":2,\"createTime\":1646099284416,\"englishWord\":\"integral\",\"isCollect\":1,\"id\":1498475123475460098,\"sort\":0,\"content\":\"积分\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 09:48:04'); INSERT INTO `sys_oper_log` VALUES (9100, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646099287934,\"en\":\"I love myself well, but my countrymen better.\",\"id\":1498475138193281026,\"zh\":\"我爱自己,但更爱自己的同胞。\"}}', 0, '', '2022-03-01 09:48:07'); INSERT INTO `sys_oper_log` VALUES (9101, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:49:13'); INSERT INTO `sys_oper_log` VALUES (9102, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:49:13'); INSERT INTO `sys_oper_log` VALUES (9103, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"首页图标\",\"orderNum\":\"1\",\"menuName\":\"积分列表\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"list\",\"component\":\"srb/integral/index\",\"children\":[],\"createTime\":1646099153000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2090,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 09:50:06'); INSERT INTO `sys_oper_log` VALUES (9104, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"add\",\"component\":\"srb/integral/add\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 09:50:14'); INSERT INTO `sys_oper_log` VALUES (9105, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:51:52'); INSERT INTO `sys_oper_log` VALUES (9106, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:51:52'); INSERT INTO `sys_oper_log` VALUES (9107, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:51:53'); INSERT INTO `sys_oper_log` VALUES (9108, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:51:53'); INSERT INTO `sys_oper_log` VALUES (9109, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:51:55'); INSERT INTO `sys_oper_log` VALUES (9110, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:51:55'); INSERT INTO `sys_oper_log` VALUES (9111, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:51:58'); INSERT INTO `sys_oper_log` VALUES (9112, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:51:58'); INSERT INTO `sys_oper_log` VALUES (9113, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"validCode\",\"orderNum\":\"3\",\"menuName\":\"任务日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"taskLog\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 09:53:34'); INSERT INTO `sys_oper_log` VALUES (9114, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"validCode\",\"orderNum\":\"3\",\"menuName\":\"任务日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"taskLog\",\"component\":\"business/log/tasklog/index\",\"children\":[],\"createTime\":1646099614000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2092,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 09:53:58'); INSERT INTO `sys_oper_log` VALUES (9115, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"validCode\",\"orderNum\":\"3\",\"menuName\":\"任务日志\",\"params\":{},\"parentId\":2001,\"isCache\":\"0\",\"path\":\"taskLog\",\"component\":\"business/log/tasklog/index\",\"children\":[],\"createTime\":1646099614000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2092,\"menuType\":\"C\",\"perms\":\"log:taskLog:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 09:54:13'); INSERT INTO `sys_oper_log` VALUES (9116, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:56:46'); INSERT INTO `sys_oper_log` VALUES (9117, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:56:46'); INSERT INTO `sys_oper_log` VALUES (9118, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 09:33:58\"}}', 0, '', '2022-03-01 09:56:47'); INSERT INTO `sys_oper_log` VALUES (9119, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1646098438000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 09:56:47'); INSERT INTO `sys_oper_log` VALUES (9120, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 10:10:49'); INSERT INTO `sys_oper_log` VALUES (9121, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 10:15:53'); INSERT INTO `sys_oper_log` VALUES (9122, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 10:03:44\"}}', 0, '', '2022-03-01 10:23:16'); INSERT INTO `sys_oper_log` VALUES (9123, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1646100224000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 10:23:16'); INSERT INTO `sys_oper_log` VALUES (9124, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'task_log', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 10:23:34'); INSERT INTO `sys_oper_log` VALUES (9125, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":107,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 10:44:01'); INSERT INTO `sys_oper_log` VALUES (9126, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1646102315000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 10:52:19'); INSERT INTO `sys_oper_log` VALUES (9127, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 10:38:35\"}}', 0, '', '2022-03-01 10:52:19'); INSERT INTO `sys_oper_log` VALUES (9128, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1646102315000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 10:52:39'); INSERT INTO `sys_oper_log` VALUES (9129, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 10:38:35\"}}', 0, '', '2022-03-01 10:52:39'); INSERT INTO `sys_oper_log` VALUES (9130, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1646102315000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 10:54:49'); INSERT INTO `sys_oper_log` VALUES (9131, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 10:38:35\"}}', 0, '', '2022-03-01 10:54:49'); INSERT INTO `sys_oper_log` VALUES (9132, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1646102315000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 10:58:39'); INSERT INTO `sys_oper_log` VALUES (9133, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 10:38:35\"}}', 0, '', '2022-03-01 10:58:39'); INSERT INTO `sys_oper_log` VALUES (9134, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1646102315000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:05:07'); INSERT INTO `sys_oper_log` VALUES (9135, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 10:38:35\"}}', 0, '', '2022-03-01 11:05:07'); INSERT INTO `sys_oper_log` VALUES (9136, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1646102315000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:05:34'); INSERT INTO `sys_oper_log` VALUES (9137, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 10:38:35\"}}', 0, '', '2022-03-01 11:05:35'); INSERT INTO `sys_oper_log` VALUES (9138, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_hangdong\",\"orderNum\":\"0\",\"menuName\":\"业务菜单\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"business\",\"children\":[],\"createTime\":1640504971000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2000,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 11:06:04'); INSERT INTO `sys_oper_log` VALUES (9139, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 10:38:35\"}}', 0, '', '2022-03-01 11:06:06'); INSERT INTO `sys_oper_log` VALUES (9140, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1646102315000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:06:06'); INSERT INTO `sys_oper_log` VALUES (9141, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1646102315000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:13:36'); INSERT INTO `sys_oper_log` VALUES (9142, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 10:38:35\"}}', 0, '', '2022-03-01 11:13:36'); INSERT INTO `sys_oper_log` VALUES (9143, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 10:38:35\"}}', 0, '', '2022-03-01 11:13:47'); INSERT INTO `sys_oper_log` VALUES (9144, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1646102315000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:13:47'); INSERT INTO `sys_oper_log` VALUES (9145, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Turn inward and examine yourself when you encounter difficulties in life.\",\"createTime\":1646104437261,\"dataId\":3718,\"date\":1585584000000,\"id\":1498496736048697346,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/02efc1e9d4246c6fb52c1318c4e0f3ba.png\",\"note\":\"行有不得,反求诸己。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/06dfb875c32fb8090ea1b17b05c04529.mp3\"}}', 0, '', '2022-03-01 11:13:57'); INSERT INTO `sys_oper_log` VALUES (9146, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"女孩骑着单车行走在深夜里幽深的小胡同,她有点害怕,于是她大声地唱起歌来。不远处灯火幽幽的馄饨摊子依旧飘着热气。“大爷,还没回家呢”大爷呵呵一笑“这么晚回家不害怕?”女孩也笑了“不怕!”心里温暖了起来,世上还是好人多!大爷晃了晃信号灯,远处出现了仨流氓...\",\"createTime\":1645240202000,\"id\":1494871872342036483,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-01 11:13:59'); INSERT INTO `sys_oper_log` VALUES (9147, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"任务日志删除按钮\",\"params\":{},\"parentId\":2092,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"log:taskLog:remove\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 11:28:29'); INSERT INTO `sys_oper_log` VALUES (9148, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"2\",\"menuName\":\"任务日志导出按钮\",\"params\":{},\"parentId\":2092,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"log:taskLog:export\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 11:28:50'); INSERT INTO `sys_oper_log` VALUES (9149, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:29:00'); INSERT INTO `sys_oper_log` VALUES (9150, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:29:00'); INSERT INTO `sys_oper_log` VALUES (9151, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:29:52'); INSERT INTO `sys_oper_log` VALUES (9152, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:29:52'); INSERT INTO `sys_oper_log` VALUES (9153, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:30:14'); INSERT INTO `sys_oper_log` VALUES (9154, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:30:14'); INSERT INTO `sys_oper_log` VALUES (9155, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:30:58'); INSERT INTO `sys_oper_log` VALUES (9156, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:30:59'); INSERT INTO `sys_oper_log` VALUES (9157, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:31:04'); INSERT INTO `sys_oper_log` VALUES (9158, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:31:04'); INSERT INTO `sys_oper_log` VALUES (9159, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:31:36'); INSERT INTO `sys_oper_log` VALUES (9160, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:31:36'); INSERT INTO `sys_oper_log` VALUES (9161, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:31:47'); INSERT INTO `sys_oper_log` VALUES (9162, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:31:47'); INSERT INTO `sys_oper_log` VALUES (9163, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:31:54'); INSERT INTO `sys_oper_log` VALUES (9164, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:31:54'); INSERT INTO `sys_oper_log` VALUES (9165, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:32:38'); INSERT INTO `sys_oper_log` VALUES (9166, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:32:38'); INSERT INTO `sys_oper_log` VALUES (9167, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:33:48'); INSERT INTO `sys_oper_log` VALUES (9168, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:33:48'); INSERT INTO `sys_oper_log` VALUES (9169, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:34:00'); INSERT INTO `sys_oper_log` VALUES (9170, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:34:00'); INSERT INTO `sys_oper_log` VALUES (9171, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646104103000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 11:36:42'); INSERT INTO `sys_oper_log` VALUES (9172, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:08:23\"}}', 0, '', '2022-03-01 11:36:43'); INSERT INTO `sys_oper_log` VALUES (9173, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:33:43\"}}', 0, '', '2022-03-01 11:40:33'); INSERT INTO `sys_oper_log` VALUES (9174, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646105623000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 11:40:33'); INSERT INTO `sys_oper_log` VALUES (9175, '任务日志', 5, 'com.xjs.tasklog.controller.TaskLogController.export()', 'POST', 1, 'admin', '', '/taskLog/export', '127.0.0.1', '', '{}', '', 0, '', '2022-03-01 11:40:59'); INSERT INTO `sys_oper_log` VALUES (9176, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You can never plan the future by the past.\",\"createTime\":1646106141050,\"dataId\":3543,\"date\":1570809600000,\"id\":1498503882236743681,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-12.jpg\",\"note\":\"永远也不能依照过去来计划将来。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-12-day.mp3\"}}', 0, '', '2022-03-01 11:42:21'); INSERT INTO `sys_oper_log` VALUES (9177, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没钱才上班还是上班才没钱,我不明白哪个环节出了问题,难道有中间商赚差价?\",\"createTime\":1646106141510,\"id\":1498503884170317826,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-03-01 11:42:21'); INSERT INTO `sys_oper_log` VALUES (9178, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646105623000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 11:46:22'); INSERT INTO `sys_oper_log` VALUES (9179, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:33:43\"}}', 0, '', '2022-03-01 11:46:22'); INSERT INTO `sys_oper_log` VALUES (9180, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646105623000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 11:47:22'); INSERT INTO `sys_oper_log` VALUES (9181, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:33:43\"}}', 0, '', '2022-03-01 11:47:23'); INSERT INTO `sys_oper_log` VALUES (9182, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果你在任何时候,任何地方,你一生中留给人们的都是些美好的东西——鲜花,思想,以及对你的非常美好的回忆——那你的生活将会轻松而愉快。那时你就会感到所有的人都需要你,这种感觉使你成为一个心灵丰富的人。你要知道,给永远比拿愉快。\",\"createTime\":1646106453577,\"id\":1498505193103544322,\"source\":\"高尔基\",\"type\":4}}', 0, '', '2022-03-01 11:47:33'); INSERT INTO `sys_oper_log` VALUES (9183, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The Earth is the cradle of humanity, but mankind cannot stay in the cradle forever. \",\"dataId\":4107,\"date\":1619193600000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/9fc5f698f42ec43968999c753b554e18.png\",\"note\":\"地球是人类的摇篮,但人类不会永远呆在摇篮里。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/06a0d7d3fe42022ffb590cbdb8947430.mp3\"}}', 0, '', '2022-03-01 11:47:33'); INSERT INTO `sys_oper_log` VALUES (9184, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:33:43\"}}', 0, '', '2022-03-01 11:49:04'); INSERT INTO `sys_oper_log` VALUES (9185, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646105623000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 11:49:04'); INSERT INTO `sys_oper_log` VALUES (9186, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646105623000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 11:50:01'); INSERT INTO `sys_oper_log` VALUES (9187, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:33:43\"}}', 0, '', '2022-03-01 11:50:01'); INSERT INTO `sys_oper_log` VALUES (9188, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646105623000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 11:50:06'); INSERT INTO `sys_oper_log` VALUES (9189, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:33:43\"}}', 0, '', '2022-03-01 11:50:06'); INSERT INTO `sys_oper_log` VALUES (9190, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646105623000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 11:50:26'); INSERT INTO `sys_oper_log` VALUES (9191, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:33:43\"}}', 0, '', '2022-03-01 11:50:26'); INSERT INTO `sys_oper_log` VALUES (9192, '任务日志', 3, 'com.xjs.tasklog.controller.TaskLogController.remove()', 'DELETE', 1, 'admin', '', '/taskLog/1498498260082593794,1498498266042699777', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 11:51:22'); INSERT INTO `sys_oper_log` VALUES (9193, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 11:33:43\"}}', 0, '', '2022-03-01 11:52:16'); INSERT INTO `sys_oper_log` VALUES (9194, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646105623000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 11:52:16'); INSERT INTO `sys_oper_log` VALUES (9195, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1498536008491380738', '127.0.0.1', '', '1498536008491380738', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-01 13:51:15'); INSERT INTO `sys_oper_log` VALUES (9196, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 13:33:45\"}}', 0, '', '2022-03-01 13:51:20'); INSERT INTO `sys_oper_log` VALUES (9197, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1498536342517362690', '127.0.0.1', '', '1498536342517362690', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-01 13:51:25'); INSERT INTO `sys_oper_log` VALUES (9198, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"教育培训\",\"orderNum\":\"1\",\"menuName\":\"尚融宝\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"srb\",\"children\":[],\"createTime\":1646098701000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2088,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 13:51:45'); INSERT INTO `sys_oper_log` VALUES (9199, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 13:33:45\"}}', 0, '', '2022-03-01 13:51:47'); INSERT INTO `sys_oper_log` VALUES (9200, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"46\",\"province\":\"江西\",\"reporttime\":1646112825000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 13:51:47'); INSERT INTO `sys_oper_log` VALUES (9201, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"教育培训\",\"orderNum\":\"0\",\"menuName\":\"尚融宝\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"srb\",\"children\":[],\"createTime\":1646098701000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2088,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 13:52:02'); INSERT INTO `sys_oper_log` VALUES (9202, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 13:33:45\"}}', 0, '', '2022-03-01 13:52:04'); INSERT INTO `sys_oper_log` VALUES (9203, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"46\",\"province\":\"江西\",\"reporttime\":1646112825000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 13:52:04'); INSERT INTO `sys_oper_log` VALUES (9204, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:04:04'); INSERT INTO `sys_oper_log` VALUES (9205, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646114644628,\"humidity\":\"39\",\"id\":1498539548819574785,\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:04:04'); INSERT INTO `sys_oper_log` VALUES (9206, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:04:33'); INSERT INTO `sys_oper_log` VALUES (9207, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646114644628,\"humidity\":\"39\",\"id\":1498539548819574785,\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:04:33'); INSERT INTO `sys_oper_log` VALUES (9208, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:05:40'); INSERT INTO `sys_oper_log` VALUES (9209, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646114644628,\"humidity\":\"39\",\"id\":1498539548819574785,\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:05:40'); INSERT INTO `sys_oper_log` VALUES (9210, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:11:57'); INSERT INTO `sys_oper_log` VALUES (9211, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646114644628,\"humidity\":\"39\",\"id\":1498539548819574785,\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:11:57'); INSERT INTO `sys_oper_log` VALUES (9212, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646114644628,\"humidity\":\"39\",\"id\":1498539548819574785,\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:13:48'); INSERT INTO `sys_oper_log` VALUES (9213, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:13:49'); INSERT INTO `sys_oper_log` VALUES (9214, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:14:07'); INSERT INTO `sys_oper_log` VALUES (9215, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:14:07'); INSERT INTO `sys_oper_log` VALUES (9216, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:14:23'); INSERT INTO `sys_oper_log` VALUES (9217, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:14:23'); INSERT INTO `sys_oper_log` VALUES (9218, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:14:43'); INSERT INTO `sys_oper_log` VALUES (9219, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:14:43'); INSERT INTO `sys_oper_log` VALUES (9220, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:14:53'); INSERT INTO `sys_oper_log` VALUES (9221, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:14:53'); INSERT INTO `sys_oper_log` VALUES (9222, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:15:52'); INSERT INTO `sys_oper_log` VALUES (9223, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:15:52'); INSERT INTO `sys_oper_log` VALUES (9224, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:16:02'); INSERT INTO `sys_oper_log` VALUES (9225, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:16:02'); INSERT INTO `sys_oper_log` VALUES (9226, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The more you like yourself, the less you are like anyone else, which makes you unique. \",\"dataId\":3674,\"date\":1582214400000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/989161761a0eb45a1fe106acd46bbed5.png\",\"note\":\"你越喜欢你自己,你就越不像其他人,而这会使你变得独特。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/c217dc31ed32ffb5757b11a485d554ab.mp3\"}}', 0, '', '2022-03-01 14:16:07'); INSERT INTO `sys_oper_log` VALUES (9227, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"【好折凳】好折凳!折凳的奥妙之处,它可以藏在民居之中,随手可得,还可以坐着它来隐藏杀机,就算被警察抓了也告不了你,真不愧为七种武器之首!\",\"createTime\":1646115367688,\"id\":1498542581590773762,\"source\":\"食神\",\"type\":3}}', 0, '', '2022-03-01 14:16:07'); INSERT INTO `sys_oper_log` VALUES (9228, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:16:32'); INSERT INTO `sys_oper_log` VALUES (9229, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:16:32'); INSERT INTO `sys_oper_log` VALUES (9230, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:16:55'); INSERT INTO `sys_oper_log` VALUES (9231, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:16:55'); INSERT INTO `sys_oper_log` VALUES (9232, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:17:52'); INSERT INTO `sys_oper_log` VALUES (9233, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:17:52'); INSERT INTO `sys_oper_log` VALUES (9234, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:18:44'); INSERT INTO `sys_oper_log` VALUES (9235, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:18:44'); INSERT INTO `sys_oper_log` VALUES (9236, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:19:11'); INSERT INTO `sys_oper_log` VALUES (9237, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:19:11'); INSERT INTO `sys_oper_log` VALUES (9238, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1498543584759164929', '127.0.0.1', '', '1498543584759164929', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-01 14:20:36'); INSERT INTO `sys_oper_log` VALUES (9239, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:21:09'); INSERT INTO `sys_oper_log` VALUES (9240, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:21:09'); INSERT INTO `sys_oper_log` VALUES (9241, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:22:09'); INSERT INTO `sys_oper_log` VALUES (9242, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:22:09'); INSERT INTO `sys_oper_log` VALUES (9243, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:22:19'); INSERT INTO `sys_oper_log` VALUES (9244, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:22:19'); INSERT INTO `sys_oper_log` VALUES (9245, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:22:43'); INSERT INTO `sys_oper_log` VALUES (9246, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:22:43'); INSERT INTO `sys_oper_log` VALUES (9247, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:23:15'); INSERT INTO `sys_oper_log` VALUES (9248, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:23:15'); INSERT INTO `sys_oper_log` VALUES (9249, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:23:36'); INSERT INTO `sys_oper_log` VALUES (9250, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:23:36'); INSERT INTO `sys_oper_log` VALUES (9251, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:24:18'); INSERT INTO `sys_oper_log` VALUES (9252, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:24:18'); INSERT INTO `sys_oper_log` VALUES (9253, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"积分删除\",\"params\":{},\"parentId\":2090,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"srb:integralGrade:remove\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 14:31:32'); INSERT INTO `sys_oper_log` VALUES (9254, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:31:43'); INSERT INTO `sys_oper_log` VALUES (9255, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:31:44'); INSERT INTO `sys_oper_log` VALUES (9256, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:32:31'); INSERT INTO `sys_oper_log` VALUES (9257, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:32:32'); INSERT INTO `sys_oper_log` VALUES (9258, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:32:36'); INSERT INTO `sys_oper_log` VALUES (9259, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:32:36'); INSERT INTO `sys_oper_log` VALUES (9260, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:32:45'); INSERT INTO `sys_oper_log` VALUES (9261, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:32:45'); INSERT INTO `sys_oper_log` VALUES (9262, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:33:14'); INSERT INTO `sys_oper_log` VALUES (9263, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:33:14'); INSERT INTO `sys_oper_log` VALUES (9264, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', NULL, '/admin/core/integralGrade/remove/1', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 14:33:28'); INSERT INTO `sys_oper_log` VALUES (9265, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:33:31'); INSERT INTO `sys_oper_log` VALUES (9266, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:33:31'); INSERT INTO `sys_oper_log` VALUES (9267, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', NULL, '/admin/core/integralGrade/remove/2', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 14:33:44'); INSERT INTO `sys_oper_log` VALUES (9268, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:35:58'); INSERT INTO `sys_oper_log` VALUES (9269, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:35:58'); INSERT INTO `sys_oper_log` VALUES (9270, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', NULL, '/admin/core/integralGrade/remove/3', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 14:36:53'); INSERT INTO `sys_oper_log` VALUES (9271, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:37:30'); INSERT INTO `sys_oper_log` VALUES (9272, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:37:30'); INSERT INTO `sys_oper_log` VALUES (9273, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:38:59'); INSERT INTO `sys_oper_log` VALUES (9274, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:39:00'); INSERT INTO `sys_oper_log` VALUES (9275, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:39:27'); INSERT INTO `sys_oper_log` VALUES (9276, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:39:27'); INSERT INTO `sys_oper_log` VALUES (9277, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:40:01'); INSERT INTO `sys_oper_log` VALUES (9278, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:40:01'); INSERT INTO `sys_oper_log` VALUES (9279, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:40:33'); INSERT INTO `sys_oper_log` VALUES (9280, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:40:34'); INSERT INTO `sys_oper_log` VALUES (9281, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:40:42'); INSERT INTO `sys_oper_log` VALUES (9282, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:40:42'); INSERT INTO `sys_oper_log` VALUES (9283, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:41:12'); INSERT INTO `sys_oper_log` VALUES (9284, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:41:12'); INSERT INTO `sys_oper_log` VALUES (9285, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:41:44'); INSERT INTO `sys_oper_log` VALUES (9286, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:41:44'); INSERT INTO `sys_oper_log` VALUES (9287, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:42:20'); INSERT INTO `sys_oper_log` VALUES (9288, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:42:20'); INSERT INTO `sys_oper_log` VALUES (9289, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', NULL, '/admin/core/integralGrade/remove/1', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 14:42:23'); INSERT INTO `sys_oper_log` VALUES (9290, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:43:33'); INSERT INTO `sys_oper_log` VALUES (9291, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:43:33'); INSERT INTO `sys_oper_log` VALUES (9292, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', NULL, '/admin/core/integralGrade/remove/2', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 14:43:35'); INSERT INTO `sys_oper_log` VALUES (9293, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', NULL, '/admin/core/integralGrade/remove/3', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 14:43:45'); INSERT INTO `sys_oper_log` VALUES (9294, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:03:41\"}}', 0, '', '2022-03-01 14:44:25'); INSERT INTO `sys_oper_log` VALUES (9295, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646114621000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:44:25'); INSERT INTO `sys_oper_log` VALUES (9296, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', NULL, '/admin/core/integralGrade/remove/1', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 14:44:26'); INSERT INTO `sys_oper_log` VALUES (9297, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 14:46:27'); INSERT INTO `sys_oper_log` VALUES (9298, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:46:27'); INSERT INTO `sys_oper_log` VALUES (9299, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 14:46:52'); INSERT INTO `sys_oper_log` VALUES (9300, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:46:52'); INSERT INTO `sys_oper_log` VALUES (9301, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 14:47:04'); INSERT INTO `sys_oper_log` VALUES (9302, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:47:04'); INSERT INTO `sys_oper_log` VALUES (9303, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:47:11'); INSERT INTO `sys_oper_log` VALUES (9304, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 14:47:11'); INSERT INTO `sys_oper_log` VALUES (9305, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:49:34'); INSERT INTO `sys_oper_log` VALUES (9306, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 14:49:34'); INSERT INTO `sys_oper_log` VALUES (9307, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"add\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 14:49:49'); INSERT INTO `sys_oper_log` VALUES (9308, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 14:50:01'); INSERT INTO `sys_oper_log` VALUES (9309, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 14:50:02'); INSERT INTO `sys_oper_log` VALUES (9310, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 15:00:37'); INSERT INTO `sys_oper_log` VALUES (9311, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 15:00:37'); INSERT INTO `sys_oper_log` VALUES (9312, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 15:02:21'); INSERT INTO `sys_oper_log` VALUES (9313, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 15:02:21'); INSERT INTO `sys_oper_log` VALUES (9314, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 15:02:36'); INSERT INTO `sys_oper_log` VALUES (9315, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 15:02:36'); INSERT INTO `sys_oper_log` VALUES (9316, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 15:04:12'); INSERT INTO `sys_oper_log` VALUES (9317, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 15:04:12'); INSERT INTO `sys_oper_log` VALUES (9318, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 15:04:42'); INSERT INTO `sys_oper_log` VALUES (9319, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 15:04:42'); INSERT INTO `sys_oper_log` VALUES (9320, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 15:05:14'); INSERT INTO `sys_oper_log` VALUES (9321, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 15:05:14'); INSERT INTO `sys_oper_log` VALUES (9322, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646116714000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 15:06:47'); INSERT INTO `sys_oper_log` VALUES (9323, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 14:38:34\"}}', 0, '', '2022-03-01 15:06:47'); INSERT INTO `sys_oper_log` VALUES (9324, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', NULL, '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"id\":1498555450709495810}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 15:07:15'); INSERT INTO `sys_oper_log` VALUES (9325, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', NULL, '/admin/core/integralGrade/remove/1498555450709495800', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2022-03-01 15:08:54'); INSERT INTO `sys_oper_log` VALUES (9326, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', NULL, '/admin/core/integralGrade/remove/1498555450709495800', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2022-03-01 15:09:00'); INSERT INTO `sys_oper_log` VALUES (9327, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', NULL, '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"id\":1498556165565698050}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 15:10:06'); INSERT INTO `sys_oper_log` VALUES (9328, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', NULL, '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"id\":1498556274047176706}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 15:10:32'); INSERT INTO `sys_oper_log` VALUES (9329, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', NULL, '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":1,\"integralEnd\":1,\"id\":1498556363322937346,\"integralStart\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 15:10:53'); INSERT INTO `sys_oper_log` VALUES (9330, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', NULL, '/admin/core/integralGrade/remove/1498556274047176700', '127.0.0.1', '', NULL, '{\"msg\":\"操作失败\",\"code\":500}', 0, NULL, '2022-03-01 15:13:48'); INSERT INTO `sys_oper_log` VALUES (9331, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 15:08:30\"}}', 0, '', '2022-03-01 15:25:02'); INSERT INTO `sys_oper_log` VALUES (9332, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"36\",\"province\":\"江西\",\"reporttime\":1646118510000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 15:25:02'); INSERT INTO `sys_oper_log` VALUES (9333, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498556274047176700', '127.0.0.1', '', '', '{\"msg\":\"操作失败\",\"code\":500}', 0, '', '2022-03-01 15:44:06'); INSERT INTO `sys_oper_log` VALUES (9334, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498556363322937346', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 15:44:13'); INSERT INTO `sys_oper_log` VALUES (9335, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 15:33:46\"}}', 0, '', '2022-03-01 15:44:14'); INSERT INTO `sys_oper_log` VALUES (9336, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646120026000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 15:44:14'); INSERT INTO `sys_oper_log` VALUES (9337, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498556274047176706', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 15:44:15'); INSERT INTO `sys_oper_log` VALUES (9338, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498556165565698050', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 15:44:17'); INSERT INTO `sys_oper_log` VALUES (9339, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646120026000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 15:44:21'); INSERT INTO `sys_oper_log` VALUES (9340, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 15:33:46\"}}', 0, '', '2022-03-01 15:44:21'); INSERT INTO `sys_oper_log` VALUES (9341, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":234,\"integralEnd\":324,\"id\":1498564808935624706,\"integralStart\":234}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 15:44:27'); INSERT INTO `sys_oper_log` VALUES (9342, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:08:15'); INSERT INTO `sys_oper_log` VALUES (9343, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646122095386,\"humidity\":\"39\",\"id\":1498570799559454721,\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:08:15'); INSERT INTO `sys_oper_log` VALUES (9344, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498555450709495810', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 16:08:22'); INSERT INTO `sys_oper_log` VALUES (9345, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646122095386,\"humidity\":\"39\",\"id\":1498570799559454721,\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:09:29'); INSERT INTO `sys_oper_log` VALUES (9346, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:09:29'); INSERT INTO `sys_oper_log` VALUES (9347, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:13:42'); INSERT INTO `sys_oper_log` VALUES (9348, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646122095386,\"humidity\":\"39\",\"id\":1498570799559454721,\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:13:42'); INSERT INTO `sys_oper_log` VALUES (9349, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":1,\"integralEnd\":3,\"id\":1498572181444149249,\"integralStart\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 16:13:44'); INSERT INTO `sys_oper_log` VALUES (9350, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":124,\"integralEnd\":124,\"id\":1498572213878702082,\"integralStart\":4}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 16:13:52'); INSERT INTO `sys_oper_log` VALUES (9351, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646122095386,\"humidity\":\"39\",\"id\":1498570799559454721,\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:15:54'); INSERT INTO `sys_oper_log` VALUES (9352, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:15:54'); INSERT INTO `sys_oper_log` VALUES (9353, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646122095386,\"humidity\":\"39\",\"id\":1498570799559454721,\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:16:30'); INSERT INTO `sys_oper_log` VALUES (9354, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:16:30'); INSERT INTO `sys_oper_log` VALUES (9355, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:18:15'); INSERT INTO `sys_oper_log` VALUES (9356, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:19:13'); INSERT INTO `sys_oper_log` VALUES (9357, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:19:14'); INSERT INTO `sys_oper_log` VALUES (9358, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:19:16'); INSERT INTO `sys_oper_log` VALUES (9359, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:19:16'); INSERT INTO `sys_oper_log` VALUES (9360, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:19:21'); INSERT INTO `sys_oper_log` VALUES (9361, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:19:21'); INSERT INTO `sys_oper_log` VALUES (9362, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:19:24'); INSERT INTO `sys_oper_log` VALUES (9363, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:19:24'); INSERT INTO `sys_oper_log` VALUES (9364, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:20:10'); INSERT INTO `sys_oper_log` VALUES (9365, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:20:11'); INSERT INTO `sys_oper_log` VALUES (9366, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:20:16'); INSERT INTO `sys_oper_log` VALUES (9367, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:20:16'); INSERT INTO `sys_oper_log` VALUES (9368, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:21:13'); INSERT INTO `sys_oper_log` VALUES (9369, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:21:13'); INSERT INTO `sys_oper_log` VALUES (9370, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:21:18'); INSERT INTO `sys_oper_log` VALUES (9371, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:21:18'); INSERT INTO `sys_oper_log` VALUES (9372, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:21:59'); INSERT INTO `sys_oper_log` VALUES (9373, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:21:59'); INSERT INTO `sys_oper_log` VALUES (9374, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:22:03'); INSERT INTO `sys_oper_log` VALUES (9375, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:22:03'); INSERT INTO `sys_oper_log` VALUES (9376, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:22:13'); INSERT INTO `sys_oper_log` VALUES (9377, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:22:13'); INSERT INTO `sys_oper_log` VALUES (9378, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:22:55'); INSERT INTO `sys_oper_log` VALUES (9379, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:22:56'); INSERT INTO `sys_oper_log` VALUES (9380, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"id\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:23:36'); INSERT INTO `sys_oper_log` VALUES (9381, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"首页图标\",\"orderNum\":\"1\",\"menuName\":\"积分列表\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"list\",\"component\":\"srb/integral/index\",\"children\":[],\"createTime\":1646099153000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2090,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:23:55'); INSERT INTO `sys_oper_log` VALUES (9382, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"id\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:24:32'); INSERT INTO `sys_oper_log` VALUES (9383, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:24:47'); INSERT INTO `sys_oper_log` VALUES (9384, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:24:47'); INSERT INTO `sys_oper_log` VALUES (9385, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:24:51'); INSERT INTO `sys_oper_log` VALUES (9386, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:24:52'); INSERT INTO `sys_oper_log` VALUES (9387, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:25:35'); INSERT INTO `sys_oper_log` VALUES (9388, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:25:35'); INSERT INTO `sys_oper_log` VALUES (9389, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:25:37'); INSERT INTO `sys_oper_log` VALUES (9390, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:25:37'); INSERT INTO `sys_oper_log` VALUES (9391, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:25:39'); INSERT INTO `sys_oper_log` VALUES (9392, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:25:39'); INSERT INTO `sys_oper_log` VALUES (9393, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:25:41'); INSERT INTO `sys_oper_log` VALUES (9394, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:25:41'); INSERT INTO `sys_oper_log` VALUES (9395, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"{\\\"name\\\":\\\"xjs\\\"}\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:29:40'); INSERT INTO `sys_oper_log` VALUES (9396, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:29:46'); INSERT INTO `sys_oper_log` VALUES (9397, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:29:46'); INSERT INTO `sys_oper_log` VALUES (9398, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:29:50'); INSERT INTO `sys_oper_log` VALUES (9399, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:29:51'); INSERT INTO `sys_oper_log` VALUES (9400, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:30:07'); INSERT INTO `sys_oper_log` VALUES (9401, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:30:10'); INSERT INTO `sys_oper_log` VALUES (9402, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:30:10'); INSERT INTO `sys_oper_log` VALUES (9403, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:30:13'); INSERT INTO `sys_oper_log` VALUES (9404, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:30:13'); INSERT INTO `sys_oper_log` VALUES (9405, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:30:24'); INSERT INTO `sys_oper_log` VALUES (9406, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:30:24'); INSERT INTO `sys_oper_log` VALUES (9407, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:32:55'); INSERT INTO `sys_oper_log` VALUES (9408, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:32:56'); INSERT INTO `sys_oper_log` VALUES (9409, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:33:30'); INSERT INTO `sys_oper_log` VALUES (9410, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:33:30'); INSERT INTO `sys_oper_log` VALUES (9411, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:33:32'); INSERT INTO `sys_oper_log` VALUES (9412, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:33:32'); INSERT INTO `sys_oper_log` VALUES (9413, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646121829000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 16:34:01'); INSERT INTO `sys_oper_log` VALUES (9414, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:03:49\"}}', 0, '', '2022-03-01 16:34:01'); INSERT INTO `sys_oper_log` VALUES (9415, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"form/:id\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:41:57'); INSERT INTO `sys_oper_log` VALUES (9416, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:42:08'); INSERT INTO `sys_oper_log` VALUES (9417, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:42:08'); INSERT INTO `sys_oper_log` VALUES (9418, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:48:14'); INSERT INTO `sys_oper_log` VALUES (9419, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:48:14'); INSERT INTO `sys_oper_log` VALUES (9420, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:48:32'); INSERT INTO `sys_oper_log` VALUES (9421, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:48:33'); INSERT INTO `sys_oper_log` VALUES (9422, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:49:09'); INSERT INTO `sys_oper_log` VALUES (9423, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:49:10'); INSERT INTO `sys_oper_log` VALUES (9424, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":2,\"integralEnd\":2,\"id\":1498581363471859713,\"integralStart\":3}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 16:50:14'); INSERT INTO `sys_oper_log` VALUES (9425, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\":id\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:51:35'); INSERT INTO `sys_oper_log` VALUES (9426, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\":id\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:51:50'); INSERT INTO `sys_oper_log` VALUES (9427, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:52:01'); INSERT INTO `sys_oper_log` VALUES (9428, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:52:01'); INSERT INTO `sys_oper_log` VALUES (9429, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:52:07'); INSERT INTO `sys_oper_log` VALUES (9430, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:52:07'); INSERT INTO `sys_oper_log` VALUES (9431, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:52:12'); INSERT INTO `sys_oper_log` VALUES (9432, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:52:18'); INSERT INTO `sys_oper_log` VALUES (9433, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\":id\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:52:30'); INSERT INTO `sys_oper_log` VALUES (9434, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"首页图标\",\"orderNum\":\"1\",\"menuName\":\"积分列表\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"list\",\"component\":\"srb/integral/index\",\"children\":[],\"createTime\":1646099153000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2090,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:52:33'); INSERT INTO `sys_oper_log` VALUES (9435, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:52:35'); INSERT INTO `sys_oper_log` VALUES (9436, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:52:35'); INSERT INTO `sys_oper_log` VALUES (9437, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:52:36'); INSERT INTO `sys_oper_log` VALUES (9438, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:52:36'); INSERT INTO `sys_oper_log` VALUES (9439, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:52:41'); INSERT INTO `sys_oper_log` VALUES (9440, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:52:41'); INSERT INTO `sys_oper_log` VALUES (9441, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:52:49'); INSERT INTO `sys_oper_log` VALUES (9442, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:52:49'); INSERT INTO `sys_oper_log` VALUES (9443, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\":id\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:53:15'); INSERT INTO `sys_oper_log` VALUES (9444, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"首页图标\",\"orderNum\":\"1\",\"menuName\":\"积分列表\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"list\",\"component\":\"srb/integral/index\",\"children\":[],\"createTime\":1646099153000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2090,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:53:23'); INSERT INTO `sys_oper_log` VALUES (9445, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:53:25'); INSERT INTO `sys_oper_log` VALUES (9446, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:53:25'); INSERT INTO `sys_oper_log` VALUES (9447, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"/:id\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"0\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:53:40'); INSERT INTO `sys_oper_log` VALUES (9448, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:53:43'); INSERT INTO `sys_oper_log` VALUES (9449, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:53:43'); INSERT INTO `sys_oper_log` VALUES (9450, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:53:51'); INSERT INTO `sys_oper_log` VALUES (9451, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"首页图标\",\"orderNum\":\"1\",\"menuName\":\"积分列表\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"list\",\"component\":\"srb/integral/index\",\"children\":[],\"createTime\":1646099153000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2090,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 16:53:56'); INSERT INTO `sys_oper_log` VALUES (9452, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:53:59'); INSERT INTO `sys_oper_log` VALUES (9453, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:53:59'); INSERT INTO `sys_oper_log` VALUES (9454, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:55:28'); INSERT INTO `sys_oper_log` VALUES (9455, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:55:28'); INSERT INTO `sys_oper_log` VALUES (9456, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You have dreams,you go to protect it.\",\"dataId\":4194,\"date\":1626710400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/8553c92db49daa5c357e9602958024a6.png\",\"note\":\"如果你有梦想,就去守护它。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/7e8f339eca98cad6b457980aadc689e3.mp3\"}}', 0, '', '2022-03-01 16:55:40'); INSERT INTO `sys_oper_log` VALUES (9457, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"有些歌,深入人心,有时候我不知道我是在听歌,还是在听自己。\",\"createTime\":1646124940706,\"id\":1498582733717483522,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-03-01 16:55:40'); INSERT INTO `sys_oper_log` VALUES (9458, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Do not, for one repulse, forgo the purpose that you resolved to effort.\",\"dataId\":3468,\"date\":1564329600000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-29.jpg\",\"note\":\"不要只因一次挫败,就放弃你原来决心想达到的目的。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-29-day.mp3\"}}', 0, '', '2022-03-01 16:55:50'); INSERT INTO `sys_oper_log` VALUES (9459, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"熟练地运用,关我屁事和关你屁事,可以节省人生80%的时间。\",\"createTime\":1646124950706,\"id\":1498582775673106433,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-03-01 16:55:50'); INSERT INTO `sys_oper_log` VALUES (9460, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I am grateful for what I am and have. My Thanksgiving is perpetual.\",\"dataId\":3958,\"date\":1606320000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/f6019cd04110e5afdd3c97766a6fc910.png\",\"note\":\"我对自己的现状和所拥有的一切心存感激。对我来说每一天都是感恩节。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/d8964448b06bc5eab35c4888bd452f44.mp3\"}}', 0, '', '2022-03-01 16:55:53'); INSERT INTO `sys_oper_log` VALUES (9461, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果有个人希望自己可以更有耐心,你认为上帝会直接赐予他耐心呢? 还是给他一个培养耐心的机会?) (如果有人希望自己更勇敢,你说上帝是赐他勇敢? 还是给他锻炼胆量的机会?) (如果又有人希望家人关系更亲密,你想上帝是扔点貌似温存的感觉给他呢?还是赐他一个和家人彼此相爱的机会?)\",\"createTime\":1646124953916,\"id\":1498582789111656449,\"source\":\"王牌天神2 (Evan almighty)\",\"type\":3}}', 0, '', '2022-03-01 16:55:53'); INSERT INTO `sys_oper_log` VALUES (9462, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 16:56:06'); INSERT INTO `sys_oper_log` VALUES (9463, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 16:56:06'); INSERT INTO `sys_oper_log` VALUES (9464, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form:id(\\\\\\\\d+)\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:05:06'); INSERT INTO `sys_oper_log` VALUES (9465, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:05:09'); INSERT INTO `sys_oper_log` VALUES (9466, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:05:09'); INSERT INTO `sys_oper_log` VALUES (9467, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:05:16'); INSERT INTO `sys_oper_log` VALUES (9468, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:05:16'); INSERT INTO `sys_oper_log` VALUES (9469, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:05:19'); INSERT INTO `sys_oper_log` VALUES (9470, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:05:19'); INSERT INTO `sys_oper_log` VALUES (9471, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:05:20'); INSERT INTO `sys_oper_log` VALUES (9472, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:05:20'); INSERT INTO `sys_oper_log` VALUES (9473, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:05:21'); INSERT INTO `sys_oper_log` VALUES (9474, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:05:21'); INSERT INTO `sys_oper_log` VALUES (9475, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form/:id(\\\\\\\\d+)\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:05:46'); INSERT INTO `sys_oper_log` VALUES (9476, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:05:49'); INSERT INTO `sys_oper_log` VALUES (9477, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:05:50'); INSERT INTO `sys_oper_log` VALUES (9478, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:05:52'); INSERT INTO `sys_oper_log` VALUES (9479, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:05:52'); INSERT INTO `sys_oper_log` VALUES (9480, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:05:52'); INSERT INTO `sys_oper_log` VALUES (9481, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:05:53'); INSERT INTO `sys_oper_log` VALUES (9482, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:06:19'); INSERT INTO `sys_oper_log` VALUES (9483, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:06:19'); INSERT INTO `sys_oper_log` VALUES (9484, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:06:20'); INSERT INTO `sys_oper_log` VALUES (9485, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:06:20'); INSERT INTO `sys_oper_log` VALUES (9486, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:06:24'); INSERT INTO `sys_oper_log` VALUES (9487, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:06:24'); INSERT INTO `sys_oper_log` VALUES (9488, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:06:27'); INSERT INTO `sys_oper_log` VALUES (9489, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:06:27'); INSERT INTO `sys_oper_log` VALUES (9490, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form/:tableId(\\\\\\\\d+)\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:07:07'); INSERT INTO `sys_oper_log` VALUES (9491, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:07:10'); INSERT INTO `sys_oper_log` VALUES (9492, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:07:10'); INSERT INTO `sys_oper_log` VALUES (9493, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:07:12'); INSERT INTO `sys_oper_log` VALUES (9494, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:07:12'); INSERT INTO `sys_oper_log` VALUES (9495, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:07:14'); INSERT INTO `sys_oper_log` VALUES (9496, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:07:14'); INSERT INTO `sys_oper_log` VALUES (9497, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"rule/form/:tableId(\\\\\\\\d+)\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:07:45'); INSERT INTO `sys_oper_log` VALUES (9498, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:07:48'); INSERT INTO `sys_oper_log` VALUES (9499, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:07:48'); INSERT INTO `sys_oper_log` VALUES (9500, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:07:51'); INSERT INTO `sys_oper_log` VALUES (9501, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:07:51'); INSERT INTO `sys_oper_log` VALUES (9502, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:07:54'); INSERT INTO `sys_oper_log` VALUES (9503, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:07:54'); INSERT INTO `sys_oper_log` VALUES (9504, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:07:59'); INSERT INTO `sys_oper_log` VALUES (9505, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:07:59'); INSERT INTO `sys_oper_log` VALUES (9506, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"rule/index/:tableId(\\\\\\\\d+)\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:08:40'); INSERT INTO `sys_oper_log` VALUES (9507, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:08:42'); INSERT INTO `sys_oper_log` VALUES (9508, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:08:42'); INSERT INTO `sys_oper_log` VALUES (9509, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:08:46'); INSERT INTO `sys_oper_log` VALUES (9510, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:08:46'); INSERT INTO `sys_oper_log` VALUES (9511, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:08:48'); INSERT INTO `sys_oper_log` VALUES (9512, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:08:48'); INSERT INTO `sys_oper_log` VALUES (9513, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form/:id(\\\\\\\\d+)\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:09:23'); INSERT INTO `sys_oper_log` VALUES (9514, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:09:50'); INSERT INTO `sys_oper_log` VALUES (9515, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:09:50'); INSERT INTO `sys_oper_log` VALUES (9516, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:09:59'); INSERT INTO `sys_oper_log` VALUES (9517, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:09:59'); INSERT INTO `sys_oper_log` VALUES (9518, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:10:11'); INSERT INTO `sys_oper_log` VALUES (9519, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:10:11'); INSERT INTO `sys_oper_log` VALUES (9520, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form/:id\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:10:52'); INSERT INTO `sys_oper_log` VALUES (9521, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:10:54'); INSERT INTO `sys_oper_log` VALUES (9522, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:10:54'); INSERT INTO `sys_oper_log` VALUES (9523, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form/:id(\\\\d+)\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:12:07'); INSERT INTO `sys_oper_log` VALUES (9524, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:12:10'); INSERT INTO `sys_oper_log` VALUES (9525, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:12:10'); INSERT INTO `sys_oper_log` VALUES (9526, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:12:13'); INSERT INTO `sys_oper_log` VALUES (9527, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:12:13'); INSERT INTO `sys_oper_log` VALUES (9528, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:12:21'); INSERT INTO `sys_oper_log` VALUES (9529, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:12:21'); INSERT INTO `sys_oper_log` VALUES (9530, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:12:25'); INSERT INTO `sys_oper_log` VALUES (9531, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:12:25'); INSERT INTO `sys_oper_log` VALUES (9532, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:12:35'); INSERT INTO `sys_oper_log` VALUES (9533, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:12:35'); INSERT INTO `sys_oper_log` VALUES (9534, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:12:41'); INSERT INTO `sys_oper_log` VALUES (9535, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:12:42'); INSERT INTO `sys_oper_log` VALUES (9536, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:12:54'); INSERT INTO `sys_oper_log` VALUES (9537, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:12:54'); INSERT INTO `sys_oper_log` VALUES (9538, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:13:15'); INSERT INTO `sys_oper_log` VALUES (9539, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:13:15'); INSERT INTO `sys_oper_log` VALUES (9540, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 16:38:36\"}}', 0, '', '2022-03-01 17:13:30'); INSERT INTO `sys_oper_log` VALUES (9541, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1646123916000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:13:30'); INSERT INTO `sys_oper_log` VALUES (9542, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:18:54'); INSERT INTO `sys_oper_log` VALUES (9543, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:18:54'); INSERT INTO `sys_oper_log` VALUES (9544, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:19:02'); INSERT INTO `sys_oper_log` VALUES (9545, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:19:02'); INSERT INTO `sys_oper_log` VALUES (9546, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:19:36'); INSERT INTO `sys_oper_log` VALUES (9547, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:19:36'); INSERT INTO `sys_oper_log` VALUES (9548, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form/ : id(\\\\d+)\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:23:47'); INSERT INTO `sys_oper_log` VALUES (9549, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:23:49'); INSERT INTO `sys_oper_log` VALUES (9550, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:23:49'); INSERT INTO `sys_oper_log` VALUES (9551, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:23:51'); INSERT INTO `sys_oper_log` VALUES (9552, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:23:51'); INSERT INTO `sys_oper_log` VALUES (9553, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:23:53'); INSERT INTO `sys_oper_log` VALUES (9554, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:23:53'); INSERT INTO `sys_oper_log` VALUES (9555, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:23:58'); INSERT INTO `sys_oper_log` VALUES (9556, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:23:58'); INSERT INTO `sys_oper_log` VALUES (9557, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:24:25'); INSERT INTO `sys_oper_log` VALUES (9558, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:24:27'); INSERT INTO `sys_oper_log` VALUES (9559, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:24:27'); INSERT INTO `sys_oper_log` VALUES (9560, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:24:32'); INSERT INTO `sys_oper_log` VALUES (9561, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:24:32'); INSERT INTO `sys_oper_log` VALUES (9562, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:26:54'); INSERT INTO `sys_oper_log` VALUES (9563, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:26:54'); INSERT INTO `sys_oper_log` VALUES (9564, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form/:id\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:28:00'); INSERT INTO `sys_oper_log` VALUES (9565, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:28:03'); INSERT INTO `sys_oper_log` VALUES (9566, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646126334174,\"humidity\":\"46\",\"id\":1498588578383638529,\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:28:03'); INSERT INTO `sys_oper_log` VALUES (9567, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"84svg\",\"orderNum\":\"2\",\"menuName\":\"新增积分\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"form\",\"component\":\"srb/integral/form\",\"children\":[],\"createTime\":1646099178000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2091,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:save\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 17:30:16'); INSERT INTO `sys_oper_log` VALUES (9568, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:31:52'); INSERT INTO `sys_oper_log` VALUES (9569, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"46\",\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:31:52'); INSERT INTO `sys_oper_log` VALUES (9570, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"46\",\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:32:11'); INSERT INTO `sys_oper_log` VALUES (9571, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:32:11'); INSERT INTO `sys_oper_log` VALUES (9572, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"46\",\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:32:18'); INSERT INTO `sys_oper_log` VALUES (9573, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:32:18'); INSERT INTO `sys_oper_log` VALUES (9574, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"46\",\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:34:33'); INSERT INTO `sys_oper_log` VALUES (9575, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:34:33'); INSERT INTO `sys_oper_log` VALUES (9576, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"46\",\"province\":\"江西\",\"reporttime\":1646125709000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-01 17:35:53'); INSERT INTO `sys_oper_log` VALUES (9577, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 17:08:29\"}}', 0, '', '2022-03-01 17:35:54'); INSERT INTO `sys_oper_log` VALUES (9578, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 21:34:05\"}}', 0, '', '2022-03-01 21:57:52'); INSERT INTO `sys_oper_log` VALUES (9579, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646143073277,\"humidity\":\"58\",\"id\":1498658787272818690,\"province\":\"江西\",\"reporttime\":1646141645000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 21:57:53'); INSERT INTO `sys_oper_log` VALUES (9580, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":2,\"integralEnd\":2,\"id\":1498659451080183809,\"integralStart\":2}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:00:31'); INSERT INTO `sys_oper_log` VALUES (9581, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498659451080183809', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:00:35'); INSERT INTO `sys_oper_log` VALUES (9582, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498581363471859713', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:00:38'); INSERT INTO `sys_oper_log` VALUES (9583, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498572213878702082', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:00:40'); INSERT INTO `sys_oper_log` VALUES (9584, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498572181444149249', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:00:41'); INSERT INTO `sys_oper_log` VALUES (9585, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498564808935624706', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:00:51'); INSERT INTO `sys_oper_log` VALUES (9586, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":100000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:57\",\"integralEnd\":2000,\"updateTime\":\"2022-03-01T15:24:37\",\"id\":1498555450709495819,\"integralStart\":101}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709495819\' for key \'integral_grade.PRIMARY\'\r\n### The error may exist in com/xjs/srb/core/mapper/IntegralGradeMapper.java (best guess)\r\n### The error may involve com.xjs.srb.core.mapper.IntegralGradeMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO integral_grade ( id, integral_start, integral_end, borrow_amount, create_time, update_time, is_deleted ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709495819\' for key \'integral_grade.PRIMARY\'\n; Duplicate entry \'1498555450709495819\' for key \'integral_grade.PRIMARY\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709495819\' for key \'integral_grade.PRIMARY\'', '2022-03-01 22:01:01'); INSERT INTO `sys_oper_log` VALUES (9587, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646143758674,\"humidity\":\"57\",\"id\":1498661662040391681,\"province\":\"江西\",\"reporttime\":1646143428000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:09:18'); INSERT INTO `sys_oper_log` VALUES (9588, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:09:18'); INSERT INTO `sys_oper_log` VALUES (9589, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646143758674,\"humidity\":\"57\",\"id\":1498661662040391681,\"province\":\"江西\",\"reporttime\":1646143428000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:10:29'); INSERT INTO `sys_oper_log` VALUES (9590, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:10:29'); INSERT INTO `sys_oper_log` VALUES (9591, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":30000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:42\",\"integralEnd\":100,\"updateTime\":\"2022-03-01T15:24:31\",\"id\":1498555450709495512,\"integralStart\":51}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709495512\' for key \'integral_grade.PRIMARY\'\r\n### The error may exist in com/xjs/srb/core/mapper/IntegralGradeMapper.java (best guess)\r\n### The error may involve com.xjs.srb.core.mapper.IntegralGradeMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO integral_grade ( id, integral_start, integral_end, borrow_amount, create_time, update_time, is_deleted ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709495512\' for key \'integral_grade.PRIMARY\'\n; Duplicate entry \'1498555450709495512\' for key \'integral_grade.PRIMARY\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709495512\' for key \'integral_grade.PRIMARY\'', '2022-03-01 22:11:12'); INSERT INTO `sys_oper_log` VALUES (9592, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646143758674,\"humidity\":\"57\",\"id\":1498661662040391681,\"province\":\"江西\",\"reporttime\":1646143428000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:11:17'); INSERT INTO `sys_oper_log` VALUES (9593, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:11:17'); INSERT INTO `sys_oper_log` VALUES (9594, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":30000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:42\",\"integralEnd\":100,\"updateTime\":\"2022-03-01T15:24:31\",\"id\":1498555450709495512,\"integralStart\":51}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709495512\' for key \'integral_grade.PRIMARY\'\r\n### The error may exist in com/xjs/srb/core/mapper/IntegralGradeMapper.java (best guess)\r\n### The error may involve com.xjs.srb.core.mapper.IntegralGradeMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO integral_grade ( id, integral_start, integral_end, borrow_amount, create_time, update_time, is_deleted ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709495512\' for key \'integral_grade.PRIMARY\'\n; Duplicate entry \'1498555450709495512\' for key \'integral_grade.PRIMARY\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709495512\' for key \'integral_grade.PRIMARY\'', '2022-03-01 22:11:18'); INSERT INTO `sys_oper_log` VALUES (9595, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646143758674,\"humidity\":\"57\",\"id\":1498661662040391681,\"province\":\"江西\",\"reporttime\":1646143428000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:12:22'); INSERT INTO `sys_oper_log` VALUES (9596, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:12:22'); INSERT INTO `sys_oper_log` VALUES (9597, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":50,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709494518\' for key \'integral_grade.PRIMARY\'\r\n### The error may exist in com/xjs/srb/core/mapper/IntegralGradeMapper.java (best guess)\r\n### The error may involve com.xjs.srb.core.mapper.IntegralGradeMapper.insert-Inline\r\n### The error occurred while setting parameters\r\n### SQL: INSERT INTO integral_grade ( id, integral_start, integral_end, borrow_amount, create_time, update_time, is_deleted ) VALUES ( ?, ?, ?, ?, ?, ?, ? )\r\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709494518\' for key \'integral_grade.PRIMARY\'\n; Duplicate entry \'1498555450709494518\' for key \'integral_grade.PRIMARY\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'1498555450709494518\' for key \'integral_grade.PRIMARY\'', '2022-03-01 22:12:35'); INSERT INTO `sys_oper_log` VALUES (9598, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646143758674,\"humidity\":\"57\",\"id\":1498661662040391681,\"province\":\"江西\",\"reporttime\":1646143428000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:12:54'); INSERT INTO `sys_oper_log` VALUES (9599, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:12:54'); INSERT INTO `sys_oper_log` VALUES (9600, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1\r\n### The error may exist in com/xjs/srb/core/mapper/IntegralGradeMapper.java (best guess)\r\n### The error may involve com.xjs.srb.core.mapper.IntegralGradeMapper.updateById-Inline\r\n### The error occurred while setting parameters\r\n### SQL: UPDATE integral_grade WHERE id=? AND is_deleted=0\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1', '2022-03-01 22:12:58'); INSERT INTO `sys_oper_log` VALUES (9601, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646143758674,\"humidity\":\"57\",\"id\":1498661662040391681,\"province\":\"江西\",\"reporttime\":1646143428000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:13:01'); INSERT INTO `sys_oper_log` VALUES (9602, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:13:01'); INSERT INTO `sys_oper_log` VALUES (9603, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1\r\n### The error may exist in com/xjs/srb/core/mapper/IntegralGradeMapper.java (best guess)\r\n### The error may involve com.xjs.srb.core.mapper.IntegralGradeMapper.updateById-Inline\r\n### The error occurred while setting parameters\r\n### SQL: UPDATE integral_grade WHERE id=? AND is_deleted=0\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1', '2022-03-01 22:13:03'); INSERT INTO `sys_oper_log` VALUES (9604, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1\r\n### The error may exist in com/xjs/srb/core/mapper/IntegralGradeMapper.java (best guess)\r\n### The error may involve com.xjs.srb.core.mapper.IntegralGradeMapper.updateById-Inline\r\n### The error occurred while setting parameters\r\n### SQL: UPDATE integral_grade WHERE id=? AND is_deleted=0\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1', '2022-03-01 22:13:21'); INSERT INTO `sys_oper_log` VALUES (9605, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:14:14'); INSERT INTO `sys_oper_log` VALUES (9606, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646143758674,\"humidity\":\"57\",\"id\":1498661662040391681,\"province\":\"江西\",\"reporttime\":1646143428000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:14:14'); INSERT INTO `sys_oper_log` VALUES (9607, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1\r\n### The error may exist in com/xjs/srb/core/mapper/IntegralGradeMapper.java (best guess)\r\n### The error may involve com.xjs.srb.core.mapper.IntegralGradeMapper.updateById-Inline\r\n### The error occurred while setting parameters\r\n### SQL: UPDATE integral_grade WHERE id=? AND is_deleted=0\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1', '2022-03-01 22:14:15'); INSERT INTO `sys_oper_log` VALUES (9608, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{}', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1\r\n### The error may exist in com/xjs/srb/core/mapper/IntegralGradeMapper.java (best guess)\r\n### The error may involve com.xjs.srb.core.mapper.IntegralGradeMapper.updateById-Inline\r\n### The error occurred while setting parameters\r\n### SQL: UPDATE integral_grade WHERE id=? AND is_deleted=0\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'WHERE id=null AND is_deleted=0\' at line 1', '2022-03-01 22:14:47'); INSERT INTO `sys_oper_log` VALUES (9609, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:15:37'); INSERT INTO `sys_oper_log` VALUES (9610, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646143758674,\"humidity\":\"57\",\"id\":1498661662040391681,\"province\":\"江西\",\"reporttime\":1646143428000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:15:37'); INSERT INTO `sys_oper_log` VALUES (9611, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":501,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:15:41'); INSERT INTO `sys_oper_log` VALUES (9612, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":501,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:15:41'); INSERT INTO `sys_oper_log` VALUES (9613, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":501,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:15:46'); INSERT INTO `sys_oper_log` VALUES (9614, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":50,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:15:55'); INSERT INTO `sys_oper_log` VALUES (9615, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646143758674,\"humidity\":\"57\",\"id\":1498661662040391681,\"province\":\"江西\",\"reporttime\":1646143428000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:16:12'); INSERT INTO `sys_oper_log` VALUES (9616, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:16:12'); INSERT INTO `sys_oper_log` VALUES (9617, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":50,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":100}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:16:16'); INSERT INTO `sys_oper_log` VALUES (9618, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":501,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":100}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:16:31'); INSERT INTO `sys_oper_log` VALUES (9619, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":501,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:17:17'); INSERT INTO `sys_oper_log` VALUES (9620, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":501,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:17:23'); INSERT INTO `sys_oper_log` VALUES (9621, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":50,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:17:28'); INSERT INTO `sys_oper_log` VALUES (9622, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1646143428000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:22:15'); INSERT INTO `sys_oper_log` VALUES (9623, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:22:16'); INSERT INTO `sys_oper_log` VALUES (9624, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":1000,\"integralEnd\":9,\"id\":1498664991923539969,\"integralStart\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:22:32'); INSERT INTO `sys_oper_log` VALUES (9625, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":1000,\"isDeleted\":false,\"createTime\":\"2022-03-01T22:22:32\",\"integralEnd\":9,\"updateTime\":\"2022-03-01T22:22:32\",\"id\":1498664991923539969,\"integralStart\":11}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:24:17'); INSERT INTO `sys_oper_log` VALUES (9626, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":1000,\"isDeleted\":false,\"createTime\":\"2022-03-01T22:22:32\",\"integralEnd\":9,\"updateTime\":\"2022-03-01T22:22:32\",\"id\":1498664991923539969,\"integralStart\":110}', '', 1, '开始区间大于结束区间!!!', '2022-03-01 22:25:56'); INSERT INTO `sys_oper_log` VALUES (9627, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":1000,\"isDeleted\":false,\"createTime\":\"2022-03-01T22:22:32\",\"integralEnd\":9,\"updateTime\":\"2022-03-01T22:22:32\",\"id\":1498664991923539969,\"integralStart\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:26:19'); INSERT INTO `sys_oper_log` VALUES (9628, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":10,\"integralEnd\":1,\"integralStart\":10}', '', 1, '开始区间大于结束区间!!!', '2022-03-01 22:26:31'); INSERT INTO `sys_oper_log` VALUES (9629, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":10,\"integralEnd\":111,\"id\":1498666003279286274,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:26:33'); INSERT INTO `sys_oper_log` VALUES (9630, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498666003279286274', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:26:41'); INSERT INTO `sys_oper_log` VALUES (9631, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1498666879066771458', '127.0.0.1', '', '1498666879066771458', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-01 22:32:41'); INSERT INTO `sys_oper_log` VALUES (9632, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":50,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:35:24'); INSERT INTO `sys_oper_log` VALUES (9633, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":50,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:35:28'); INSERT INTO `sys_oper_log` VALUES (9634, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":50,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-01 22:35:32'); INSERT INTO `sys_oper_log` VALUES (9635, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If time being of all things the most precious, wasting time must be the greatest prodigality.\",\"createTime\":1646145498415,\"dataId\":3445,\"date\":1562515200000,\"id\":1498668959038832641,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-08.jpg\",\"note\":\"如果时间是最宝贵的东西,浪费时间应该是最大的挥霍。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-08-day.mp3\"}}', 0, '', '2022-03-01 22:38:18'); INSERT INTO `sys_oper_log` VALUES (9636, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"女人因秘密而美丽。\\\"\",\"createTime\":1646145498618,\"id\":1498668959856721921,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-01 22:38:18'); INSERT INTO `sys_oper_log` VALUES (9637, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646145521000,\"temperature\":\"12\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-01 22:41:45'); INSERT INTO `sys_oper_log` VALUES (9638, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-01\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-01 22:03:49\"}}', 0, '', '2022-03-01 22:41:45'); INSERT INTO `sys_oper_log` VALUES (9639, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_tianxie\",\"orderNum\":\"1\",\"menuName\":\"积分修改\",\"params\":{},\"parentId\":2090,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 22:44:14'); INSERT INTO `sys_oper_log` VALUES (9640, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_tianxie\",\"orderNum\":\"1\",\"menuName\":\"积分修改\",\"params\":{},\"parentId\":2090,\"isCache\":\"0\",\"path\":\"\",\"children\":[],\"createTime\":1646145853000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2096,\"menuType\":\"F\",\"perms\":\"srb:integralGrade:update\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-01 22:44:27'); INSERT INTO `sys_oper_log` VALUES (9641, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:03:49\"}}', 0, '', '2022-03-02 08:37:50'); INSERT INTO `sys_oper_log` VALUES (9642, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646181471189,\"humidity\":\"90\",\"id\":1498819839786209281,\"province\":\"江西\",\"reporttime\":1646179429000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 08:37:51'); INSERT INTO `sys_oper_log` VALUES (9643, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646181471189,\"humidity\":\"90\",\"id\":1498819839786209281,\"province\":\"江西\",\"reporttime\":1646179429000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 08:38:26'); INSERT INTO `sys_oper_log` VALUES (9644, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:03:49\"}}', 0, '', '2022-03-02 08:38:26'); INSERT INTO `sys_oper_log` VALUES (9645, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646181471189,\"humidity\":\"90\",\"id\":1498819839786209281,\"province\":\"江西\",\"reporttime\":1646179429000,\"temperature\":\"9\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 08:38:30'); INSERT INTO `sys_oper_log` VALUES (9646, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:03:49\"}}', 0, '', '2022-03-02 08:38:30'); INSERT INTO `sys_oper_log` VALUES (9647, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 08:51:55'); INSERT INTO `sys_oper_log` VALUES (9648, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 08:51:55'); INSERT INTO `sys_oper_log` VALUES (9649, '参数管理', 3, 'com.ruoyi.system.controller.SysConfigController.remove()', 'DELETE', 1, 'admin', NULL, '/config/1', '127.0.0.1', '', NULL, NULL, 1, '内置参数【sys.index.skinName】不能删除 ', '2022-03-02 08:54:40'); INSERT INTO `sys_oper_log` VALUES (9650, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"主框架页-默认皮肤样式名称\",\"configKey\":\"sys.index.skinName\",\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"configId\":1,\"remark\":\"蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow\",\"updateTime\":1641051671000,\"configType\":\"N\",\"configValue\":\"skin-yellow\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 08:54:43'); INSERT INTO `sys_oper_log` VALUES (9651, '参数管理', 3, 'com.ruoyi.system.controller.SysConfigController.remove()', 'DELETE', 1, 'admin', NULL, '/config/1', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 08:54:47'); INSERT INTO `sys_oper_log` VALUES (9652, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 08:59:17'); INSERT INTO `sys_oper_log` VALUES (9653, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 08:59:18'); INSERT INTO `sys_oper_log` VALUES (9654, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:00:33'); INSERT INTO `sys_oper_log` VALUES (9655, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:00:33'); INSERT INTO `sys_oper_log` VALUES (9656, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:01:58'); INSERT INTO `sys_oper_log` VALUES (9657, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:01:58'); INSERT INTO `sys_oper_log` VALUES (9658, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:04:05'); INSERT INTO `sys_oper_log` VALUES (9659, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:04:05'); INSERT INTO `sys_oper_log` VALUES (9660, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:04:23'); INSERT INTO `sys_oper_log` VALUES (9661, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:04:23'); INSERT INTO `sys_oper_log` VALUES (9662, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:04:38'); INSERT INTO `sys_oper_log` VALUES (9663, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:04:38'); INSERT INTO `sys_oper_log` VALUES (9664, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:05:49'); INSERT INTO `sys_oper_log` VALUES (9665, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:05:49'); INSERT INTO `sys_oper_log` VALUES (9666, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:06:15'); INSERT INTO `sys_oper_log` VALUES (9667, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:06:16'); INSERT INTO `sys_oper_log` VALUES (9668, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:06:18'); INSERT INTO `sys_oper_log` VALUES (9669, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:06:18'); INSERT INTO `sys_oper_log` VALUES (9670, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:06:26'); INSERT INTO `sys_oper_log` VALUES (9671, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:06:26'); INSERT INTO `sys_oper_log` VALUES (9672, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:06:39'); INSERT INTO `sys_oper_log` VALUES (9673, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:06:39'); INSERT INTO `sys_oper_log` VALUES (9674, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:07:27'); INSERT INTO `sys_oper_log` VALUES (9675, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:07:27'); INSERT INTO `sys_oper_log` VALUES (9676, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:07:57'); INSERT INTO `sys_oper_log` VALUES (9677, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:07:57'); INSERT INTO `sys_oper_log` VALUES (9678, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:08:31'); INSERT INTO `sys_oper_log` VALUES (9679, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:08:31'); INSERT INTO `sys_oper_log` VALUES (9680, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:08:59'); INSERT INTO `sys_oper_log` VALUES (9681, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:08:59'); INSERT INTO `sys_oper_log` VALUES (9682, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:09:00'); INSERT INTO `sys_oper_log` VALUES (9683, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:09:01'); INSERT INTO `sys_oper_log` VALUES (9684, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:09:39'); INSERT INTO `sys_oper_log` VALUES (9685, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:09:39'); INSERT INTO `sys_oper_log` VALUES (9686, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:10:00'); INSERT INTO `sys_oper_log` VALUES (9687, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:10:01'); INSERT INTO `sys_oper_log` VALUES (9688, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:10:09'); INSERT INTO `sys_oper_log` VALUES (9689, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:10:09'); INSERT INTO `sys_oper_log` VALUES (9690, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1646181517000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:10:28'); INSERT INTO `sys_oper_log` VALUES (9691, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阵雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 08:38:37\"}}', 0, '', '2022-03-02 09:10:28'); INSERT INTO `sys_oper_log` VALUES (9692, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646183524802,\"humidity\":\"66\",\"id\":1498828453267623938,\"province\":\"江西\",\"reporttime\":1646183323000,\"temperature\":\"12\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:12:04'); INSERT INTO `sys_oper_log` VALUES (9693, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 09:08:43\"}}', 0, '', '2022-03-02 09:12:04'); INSERT INTO `sys_oper_log` VALUES (9694, '参数管理', 3, 'com.ruoyi.system.controller.SysConfigController.remove()', 'DELETE', 1, 'admin', NULL, '/config/3', '127.0.0.1', '', NULL, NULL, 1, '内置参数【sys.index.sideTheme】不能删除 ', '2022-03-02 09:12:19'); INSERT INTO `sys_oper_log` VALUES (9695, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"主框架页-侧边栏主题\",\"configKey\":\"sys.index.sideTheme\",\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"configId\":3,\"remark\":\"深色主题theme-dark,浅色主题\",\"updateTime\":1641700079000,\"configType\":\"N\",\"configValue\":\"theme-light\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 09:12:23'); INSERT INTO `sys_oper_log` VALUES (9696, '参数管理', 3, 'com.ruoyi.system.controller.SysConfigController.remove()', 'DELETE', 1, 'admin', NULL, '/config/3', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 09:12:25'); INSERT INTO `sys_oper_log` VALUES (9697, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"66\",\"province\":\"江西\",\"reporttime\":1646183323000,\"temperature\":\"12\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:24:48'); INSERT INTO `sys_oper_log` VALUES (9698, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 09:08:43\"}}', 0, '', '2022-03-02 09:24:49'); INSERT INTO `sys_oper_log` VALUES (9699, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"66\",\"province\":\"江西\",\"reporttime\":1646183323000,\"temperature\":\"12\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:25:45'); INSERT INTO `sys_oper_log` VALUES (9700, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 09:08:43\"}}', 0, '', '2022-03-02 09:25:46'); INSERT INTO `sys_oper_log` VALUES (9701, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There\'s only one person who\'s going to decide what I\'m going to do and that\'s me.\",\"createTime\":1646184347706,\"dataId\":4213,\"date\":1628352000000,\"id\":1498831904772968450,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/06c2fcd66d561c407803cd1894ca09e1.png\",\"note\":\"只有一个人可以决定我要做什么,那就是我自己。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/f8a70ee49b83d2c843f33172844a7908.mp3\"}}', 0, '', '2022-03-02 09:25:47'); INSERT INTO `sys_oper_log` VALUES (9702, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"跳过过场动画,不配做游戏玩家!\\\"\",\"createTime\":1646184349220,\"id\":1498831911093784577,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-02 09:25:49'); INSERT INTO `sys_oper_log` VALUES (9703, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"思想象爱和死一样,别人不能代替。\",\"createTime\":1646184352130,\"id\":1498831923278237698,\"source\":\"罗斯坦\",\"type\":4}}', 0, '', '2022-03-02 09:25:52'); INSERT INTO `sys_oper_log` VALUES (9704, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The most important thing in life will always be the people right there, right now.\",\"createTime\":1646184352145,\"dataId\":3711,\"date\":1584979200000,\"id\":1498831923349540865,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/61e569db8720408d1810b7f203552708.png\",\"note\":\"人生在世,最重要的,莫过于此时此刻陪伴你的人。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/d0f903e5561b79ba685c4f89c5298947.mp3\"}}', 0, '', '2022-03-02 09:25:52'); INSERT INTO `sys_oper_log` VALUES (9705, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"66\",\"province\":\"江西\",\"reporttime\":1646183323000,\"temperature\":\"12\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:26:57'); INSERT INTO `sys_oper_log` VALUES (9706, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 09:08:43\"}}', 0, '', '2022-03-02 09:26:57'); INSERT INTO `sys_oper_log` VALUES (9707, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"As a body everyone is single, as a soul never.\",\"dataId\":3964,\"date\":1606838400000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4e66ba0ca31b47d8914690081640fab4.png\",\"note\":\"每个人的身体都是独立的,但灵魂从来不是。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6a5e7acf715b8a0c7ecd80953cf8321f.mp3\"}}', 0, '', '2022-03-02 09:27:08'); INSERT INTO `sys_oper_log` VALUES (9708, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"跟老婆在海边,拍婚纱照,我俩笑容太僵硬,摄影师都发火了,也无济于事。摄影师把助理小哥喊来,一阵耳语~重新开拍,我俩摆好姿势,摄影师喊大喊,准备!1、2……3还没喊出来,助理小哥猛的下蹲,把摄影师的裤子扯了下来~效果非常好,我俩从头笑到尾,摄影师一直黑着脸,没办法,助理小哥太给力,把摄影师的裤衩给一起扒了……\",\"createTime\":1646184429220,\"id\":1498832246667464705,\"source\":\"笑话大全\",\"type\":10}}', 0, '', '2022-03-02 09:27:09'); INSERT INTO `sys_oper_log` VALUES (9709, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"66\",\"province\":\"江西\",\"reporttime\":1646183323000,\"temperature\":\"12\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:29:30'); INSERT INTO `sys_oper_log` VALUES (9710, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 09:08:43\"}}', 0, '', '2022-03-02 09:29:30'); INSERT INTO `sys_oper_log` VALUES (9711, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 09:08:43\"}}', 0, '', '2022-03-02 09:31:51'); INSERT INTO `sys_oper_log` VALUES (9712, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"66\",\"province\":\"江西\",\"reporttime\":1646183323000,\"temperature\":\"12\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:31:51'); INSERT INTO `sys_oper_log` VALUES (9713, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I don\'t care what they\'re going to say; Let the storm rage on; The cold never bothered me anyway.\",\"createTime\":1646184713522,\"dataId\":3651,\"date\":1579968000000,\"id\":1498833439061954562,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/c3119734b98918c422bf2b1dea1a35e6.png\",\"note\":\"别人的话,何必在意,就让风暴怒吼,严寒再也无法侵扰我。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/8c50ffdf9c5510b330d62261f0d97cb0.mp3\"}}', 0, '', '2022-03-02 09:31:53'); INSERT INTO `sys_oper_log` VALUES (9714, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我不漂亮,我不溫柔,我脾氣也不好.還很霸道,屬於我啲不允許別人和我分享.所以作為我男人,要經得起誘惑,抗得過時間.\",\"createTime\":1646184713558,\"id\":1498833439271669761,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-03-02 09:31:53'); INSERT INTO `sys_oper_log` VALUES (9715, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 09:33:48\"}}', 0, '', '2022-03-02 09:34:59'); INSERT INTO `sys_oper_log` VALUES (9716, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646184900247,\"humidity\":\"63\",\"id\":1498834222251757570,\"province\":\"江西\",\"reporttime\":1646184828000,\"temperature\":\"13\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 09:35:00'); INSERT INTO `sys_oper_log` VALUES (9717, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498664991923539969', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-02 09:38:12'); INSERT INTO `sys_oper_log` VALUES (9718, '字典类型', 9, 'com.ruoyi.system.controller.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/dict/type/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:11:27'); INSERT INTO `sys_oper_log` VALUES (9719, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:03:49\"}}', 0, '', '2022-03-02 10:11:33'); INSERT INTO `sys_oper_log` VALUES (9720, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646188788688,\"humidity\":\"54\",\"id\":1498850531605729282,\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:39:48'); INSERT INTO `sys_oper_log` VALUES (9721, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:39:48'); INSERT INTO `sys_oper_log` VALUES (9722, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646188788688,\"humidity\":\"54\",\"id\":1498850531605729282,\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:40:58'); INSERT INTO `sys_oper_log` VALUES (9723, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:40:58'); INSERT INTO `sys_oper_log` VALUES (9724, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:41:09'); INSERT INTO `sys_oper_log` VALUES (9725, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646188788688,\"humidity\":\"54\",\"id\":1498850531605729282,\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:41:09'); INSERT INTO `sys_oper_log` VALUES (9726, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictName\":\"字典分组\",\"remark\":\"字典的分组\",\"params\":{},\"dictType\":\"sys_dict_group\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:41:51'); INSERT INTO `sys_oper_log` VALUES (9727, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"系统\",\"listClass\":\"primary\",\"dictSort\":1,\"remark\":\"系统\",\"params\":{},\"dictType\":\"sys_dict_group\",\"dictLabel\":\"系统\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:44:35'); INSERT INTO `sys_oper_log` VALUES (9728, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"业务\",\"listClass\":\"success\",\"dictSort\":1,\"remark\":\"业务\",\"params\":{},\"dictType\":\"sys_dict_group\",\"dictLabel\":\"业务\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:44:45'); INSERT INTO `sys_oper_log` VALUES (9729, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"尚融宝\",\"listClass\":\"info\",\"dictSort\":2,\"remark\":\"尚融宝\",\"params\":{},\"dictType\":\"sys_dict_group\",\"dictLabel\":\"尚融宝\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:44:55'); INSERT INTO `sys_oper_log` VALUES (9730, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646188788688,\"humidity\":\"54\",\"id\":1498850531605729282,\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:45:12'); INSERT INTO `sys_oper_log` VALUES (9731, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:45:12'); INSERT INTO `sys_oper_log` VALUES (9732, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1646188911000,\"updateBy\":\"admin\",\"dictName\":\"字典分组\",\"remark\":\"字典的分组\",\"dictId\":106,\"params\":{},\"dictType\":\"sys_dict_group\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:45:25'); INSERT INTO `sys_oper_log` VALUES (9733, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:45:39'); INSERT INTO `sys_oper_log` VALUES (9734, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646188788688,\"humidity\":\"54\",\"id\":1498850531605729282,\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:45:39'); INSERT INTO `sys_oper_log` VALUES (9735, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1646188911000,\"updateBy\":\"admin\",\"dictName\":\"字典分组\",\"remark\":\"字典的分组\",\"dictId\":106,\"params\":{},\"dictType\":\"sys_dict_group\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:46:00'); INSERT INTO `sys_oper_log` VALUES (9736, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646188788688,\"humidity\":\"54\",\"id\":1498850531605729282,\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:46:19'); INSERT INTO `sys_oper_log` VALUES (9737, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:46:19'); INSERT INTO `sys_oper_log` VALUES (9738, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1646188911000,\"updateBy\":\"admin\",\"dictGroup\":\"系统\",\"dictName\":\"字典分组\",\"remark\":\"字典的分组\",\"dictId\":106,\"params\":{},\"dictType\":\"sys_dict_group\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:46:22'); INSERT INTO `sys_oper_log` VALUES (9739, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictGroup\":\"业务\",\"dictName\":\"test\",\"params\":{},\"dictType\":\"1\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:46:43'); INSERT INTO `sys_oper_log` VALUES (9740, '字典类型', 3, 'com.ruoyi.system.controller.SysDictTypeController.remove()', 'DELETE', 1, 'admin', NULL, '/dict/type/107', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:46:47'); INSERT INTO `sys_oper_log` VALUES (9741, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:47:40'); INSERT INTO `sys_oper_log` VALUES (9742, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646188788688,\"humidity\":\"54\",\"id\":1498850531605729282,\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:47:40'); INSERT INTO `sys_oper_log` VALUES (9743, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:47:56'); INSERT INTO `sys_oper_log` VALUES (9744, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646188788688,\"humidity\":\"54\",\"id\":1498850531605729282,\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:47:56'); INSERT INTO `sys_oper_log` VALUES (9745, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646188788688,\"humidity\":\"54\",\"id\":1498850531605729282,\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:48:44'); INSERT INTO `sys_oper_log` VALUES (9746, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:48:45'); INSERT INTO `sys_oper_log` VALUES (9747, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:48:59'); INSERT INTO `sys_oper_log` VALUES (9748, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646188788688,\"humidity\":\"54\",\"id\":1498850531605729282,\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:48:59'); INSERT INTO `sys_oper_log` VALUES (9749, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:51:00'); INSERT INTO `sys_oper_log` VALUES (9750, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"54\",\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:51:00'); INSERT INTO `sys_oper_log` VALUES (9751, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"primary\",\"dictSort\":1,\"remark\":\"系统\",\"params\":{},\"dictType\":\"sys_dict_group\",\"dictLabel\":\"系统\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1646189075000,\"dictCode\":128,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:51:37'); INSERT INTO `sys_oper_log` VALUES (9752, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"success\",\"dictSort\":1,\"remark\":\"业务\",\"params\":{},\"dictType\":\"sys_dict_group\",\"dictLabel\":\"业务\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1646189085000,\"dictCode\":129,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:51:41'); INSERT INTO `sys_oper_log` VALUES (9753, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"info\",\"dictSort\":2,\"remark\":\"尚融宝\",\"params\":{},\"dictType\":\"sys_dict_group\",\"dictLabel\":\"尚融宝\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1646189095000,\"dictCode\":130,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:51:46'); INSERT INTO `sys_oper_log` VALUES (9754, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1646188911000,\"updateBy\":\"admin\",\"dictGroup\":\"1\",\"dictName\":\"字典分组\",\"remark\":\"字典的分组\",\"dictId\":106,\"params\":{},\"dictType\":\"sys_dict_group\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:51:54'); INSERT INTO `sys_oper_log` VALUES (9755, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1640693746000,\"updateBy\":\"admin\",\"dictGroup\":\"2\",\"dictName\":\"文案类型\",\"remark\":\"文案类型\",\"dictId\":101,\"params\":{},\"dictType\":\"copywriting_type\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:52:16'); INSERT INTO `sys_oper_log` VALUES (9756, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1642779815000,\"updateBy\":\"admin\",\"dictGroup\":\"业务\",\"dictName\":\"请求方法\",\"remark\":\"请求方法\",\"dictId\":105,\"params\":{},\"dictType\":\"request_method\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:52:25'); INSERT INTO `sys_oper_log` VALUES (9757, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1642779489000,\"updateBy\":\"admin\",\"dictGroup\":\"业务\",\"dictName\":\"请求是否成功\",\"remark\":\"请求是否成功\",\"dictId\":104,\"params\":{},\"dictType\":\"request_status\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:52:27'); INSERT INTO `sys_oper_log` VALUES (9758, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1642779815000,\"updateBy\":\"admin\",\"dictGroup\":\"业务\",\"dictName\":\"请求方法\",\"remark\":\"请求方法\",\"dictId\":105,\"params\":{},\"dictType\":\"request_method\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:52:41'); INSERT INTO `sys_oper_log` VALUES (9759, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1642779815000,\"updateBy\":\"admin\",\"dictGroup\":\"2\",\"dictName\":\"请求方法\",\"remark\":\"请求方法\",\"dictId\":105,\"params\":{},\"dictType\":\"request_method\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:52:48'); INSERT INTO `sys_oper_log` VALUES (9760, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1640766847000,\"updateBy\":\"admin\",\"dictGroup\":\"业务\",\"dictName\":\"单词置顶\",\"remark\":\"单词置顶\",\"dictId\":103,\"params\":{},\"dictType\":\"english_top\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:53:02'); INSERT INTO `sys_oper_log` VALUES (9761, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1640766847000,\"updateBy\":\"admin\",\"dictGroup\":\"业务\",\"dictName\":\"单词置顶\",\"remark\":\"单词置顶\",\"dictId\":103,\"params\":{},\"dictType\":\"english_top\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:53:16'); INSERT INTO `sys_oper_log` VALUES (9762, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"54\",\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:54:38'); INSERT INTO `sys_oper_log` VALUES (9763, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:54:38'); INSERT INTO `sys_oper_log` VALUES (9764, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1640766847000,\"updateBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"单词置顶\",\"remark\":\"单词置顶\",\"dictId\":103,\"params\":{},\"dictType\":\"english_top\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:54:46'); INSERT INTO `sys_oper_log` VALUES (9765, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1640766847000,\"updateBy\":\"admin\",\"dictGroup\":\"2\",\"dictName\":\"单词置顶\",\"remark\":\"单词置顶\",\"dictId\":103,\"params\":{},\"dictType\":\"english_top\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:54:50'); INSERT INTO `sys_oper_log` VALUES (9766, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"54\",\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:56:16'); INSERT INTO `sys_oper_log` VALUES (9767, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:56:16'); INSERT INTO `sys_oper_log` VALUES (9768, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"54\",\"province\":\"江西\",\"reporttime\":1646188717000,\"temperature\":\"15\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 10:56:23'); INSERT INTO `sys_oper_log` VALUES (9769, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 10:38:37\"}}', 0, '', '2022-03-02 10:56:23'); INSERT INTO `sys_oper_log` VALUES (9770, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"系统状态\",\"remark\":\"登录状态列表\",\"dictId\":10,\"params\":{},\"dictType\":\"sys_common_status\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:56:49'); INSERT INTO `sys_oper_log` VALUES (9771, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1640336744000,\"updateBy\":\"admin\",\"dictGroup\":\"1\",\"dictName\":\"系统状态\",\"remark\":\"登录状态列表\",\"dictId\":10,\"params\":{},\"dictType\":\"sys_common_status\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:56:56'); INSERT INTO `sys_oper_log` VALUES (9772, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"warning\",\"dictSort\":1,\"remark\":\"系统\",\"params\":{},\"dictType\":\"sys_dict_group\",\"dictLabel\":\"系统\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1646189075000,\"dictCode\":128,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 10:57:21'); INSERT INTO `sys_oper_log` VALUES (9773, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1640766847000,\"updateBy\":\"admin\",\"dictGroup\":\"2\",\"dictName\":\"单词置顶\",\"remark\":\"单词置顶\",\"dictId\":103,\"params\":{},\"dictType\":\"business_english_top\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:02:08'); INSERT INTO `sys_oper_log` VALUES (9774, '字典类型', 2, 'com.ruoyi.system.controller.SysDictTypeController.edit()', 'PUT', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"createTime\":1640766847000,\"updateBy\":\"admin\",\"dictGroup\":\"2\",\"dictName\":\"单词置顶\",\"remark\":\"单词置顶\",\"dictId\":103,\"params\":{},\"dictType\":\"english_top\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:02:16'); INSERT INTO `sys_oper_log` VALUES (9775, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"行业\",\"remark\":\"尚融宝行业\",\"params\":{},\"dictType\":\"srb_industry\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:03:35'); INSERT INTO `sys_oper_log` VALUES (9776, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"default\",\"dictSort\":0,\"remark\":\"IT\",\"params\":{},\"dictType\":\"srb_industry\",\"dictLabel\":\"IT\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:03:56'); INSERT INTO `sys_oper_log` VALUES (9777, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"医生\",\"params\":{},\"dictType\":\"srb_industry\",\"dictLabel\":\"医生\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:04:06'); INSERT INTO `sys_oper_log` VALUES (9778, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"教师\",\"params\":{},\"dictType\":\"srb_industry\",\"dictLabel\":\"教师\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:04:16'); INSERT INTO `sys_oper_log` VALUES (9779, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"4\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"导游\",\"params\":{},\"dictType\":\"srb_industry\",\"dictLabel\":\"导游\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:04:31'); INSERT INTO `sys_oper_log` VALUES (9780, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"IT\",\"params\":{},\"dictType\":\"srb_industry\",\"dictLabel\":\"IT\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1646190236000,\"dictCode\":131,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:04:36'); INSERT INTO `sys_oper_log` VALUES (9781, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"5\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"律师\",\"params\":{},\"dictType\":\"srb_industry\",\"dictLabel\":\"律师\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:04:48'); INSERT INTO `sys_oper_log` VALUES (9782, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"6\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"其他\",\"params\":{},\"dictType\":\"srb_industry\",\"dictLabel\":\"其他\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:05:00'); INSERT INTO `sys_oper_log` VALUES (9783, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"学历\",\"remark\":\"尚融宝的学历\",\"params\":{},\"dictType\":\"srb_education\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:05:38'); INSERT INTO `sys_oper_log` VALUES (9784, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"高中\",\"params\":{},\"dictType\":\"srb_education\",\"dictLabel\":\"高中\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:05:53'); INSERT INTO `sys_oper_log` VALUES (9785, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"大专\",\"params\":{},\"dictType\":\"srb_education\",\"dictLabel\":\"大专\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:06:06'); INSERT INTO `sys_oper_log` VALUES (9786, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"本科\",\"params\":{},\"dictType\":\"srb_education\",\"dictLabel\":\"本科\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:06:19'); INSERT INTO `sys_oper_log` VALUES (9787, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"4\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"研究生\",\"params\":{},\"dictType\":\"srb_education\",\"dictLabel\":\"研究生\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:06:30'); INSERT INTO `sys_oper_log` VALUES (9788, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"5\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"其他\",\"params\":{},\"dictType\":\"srb_education\",\"dictLabel\":\"其他\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:06:39'); INSERT INTO `sys_oper_log` VALUES (9789, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"收入\",\"remark\":\"尚融宝的收入\",\"params\":{},\"dictType\":\"srb_income\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:07:16'); INSERT INTO `sys_oper_log` VALUES (9790, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"0-3000元\",\"params\":{},\"dictType\":\"srb_income\",\"dictLabel\":\"0-3000\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:07:38'); INSERT INTO `sys_oper_log` VALUES (9791, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"3000-5000元\",\"params\":{},\"dictType\":\"srb_income\",\"dictLabel\":\"3000-5000\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:07:51'); INSERT INTO `sys_oper_log` VALUES (9792, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"5000-10000元\",\"params\":{},\"dictType\":\"srb_income\",\"dictLabel\":\"5000-10000\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:08:03'); INSERT INTO `sys_oper_log` VALUES (9793, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"4\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"10000元以上\",\"params\":{},\"dictType\":\"srb_income\",\"dictLabel\":\"10000以上\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:08:16'); INSERT INTO `sys_oper_log` VALUES (9794, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"4\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"10000元以上\",\"params\":{},\"dictType\":\"srb_income\",\"dictLabel\":\"10000+\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1646190496000,\"dictCode\":145,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:08:22'); INSERT INTO `sys_oper_log` VALUES (9795, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"收入来源\",\"remark\":\"尚融宝的收入来源\",\"params\":{},\"dictType\":\"srb_returnSource\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:08:54'); INSERT INTO `sys_oper_log` VALUES (9796, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"工资\",\"params\":{},\"dictType\":\"srb_returnSource\",\"dictLabel\":\"工资\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:09:11'); INSERT INTO `sys_oper_log` VALUES (9797, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"股票\",\"params\":{},\"dictType\":\"srb_returnSource\",\"dictLabel\":\"股票\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:09:18'); INSERT INTO `sys_oper_log` VALUES (9798, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"兼职\",\"params\":{},\"dictType\":\"srb_returnSource\",\"dictLabel\":\"兼职\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:09:27'); INSERT INTO `sys_oper_log` VALUES (9799, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"关系\",\"remark\":\"尚融宝关系\",\"params\":{},\"dictType\":\"srb_relation\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:10:10'); INSERT INTO `sys_oper_log` VALUES (9800, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"夫妻\",\"params\":{},\"dictType\":\"srb_relation\",\"dictLabel\":\"夫妻\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:10:23'); INSERT INTO `sys_oper_log` VALUES (9801, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"兄妹\",\"params\":{},\"dictType\":\"srb_relation\",\"dictLabel\":\"兄妹\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:10:33'); INSERT INTO `sys_oper_log` VALUES (9802, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"父母\",\"params\":{},\"dictType\":\"srb_relation\",\"dictLabel\":\"父母\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:10:43'); INSERT INTO `sys_oper_log` VALUES (9803, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"4\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"其他\",\"params\":{},\"dictType\":\"srb_relation\",\"dictLabel\":\"其他\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:10:53'); INSERT INTO `sys_oper_log` VALUES (9804, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"还款方式\",\"remark\":\"尚融宝还款方式\",\"params\":{},\"dictType\":\"srb_returnMethod\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:11:23'); INSERT INTO `sys_oper_log` VALUES (9805, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"等额本息\",\"params\":{},\"dictType\":\"srb_returnMethod\",\"dictLabel\":\"等额本息\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:11:36'); INSERT INTO `sys_oper_log` VALUES (9806, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"等额本金\",\"params\":{},\"dictType\":\"srb_returnMethod\",\"dictLabel\":\"等额本金\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:11:42'); INSERT INTO `sys_oper_log` VALUES (9807, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"每月还息一次还本\",\"params\":{},\"dictType\":\"srb_returnMethod\",\"dictLabel\":\"每月还息一次还本\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:12:01'); INSERT INTO `sys_oper_log` VALUES (9808, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"4\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"一次还本还息\",\"params\":{},\"dictType\":\"srb_returnMethod\",\"dictLabel\":\"一次还本还息\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:12:11'); INSERT INTO `sys_oper_log` VALUES (9809, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"资金用途\",\"remark\":\"资金用途\",\"params\":{},\"dictType\":\"srb_moneyUse\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:12:34'); INSERT INTO `sys_oper_log` VALUES (9810, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"旅游\",\"params\":{},\"dictType\":\"srb_moneyUse\",\"dictLabel\":\"旅游\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:12:51'); INSERT INTO `sys_oper_log` VALUES (9811, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"买房\",\"params\":{},\"dictType\":\"srb_moneyUse\",\"dictLabel\":\"买房\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:12:59'); INSERT INTO `sys_oper_log` VALUES (9812, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"装修\",\"params\":{},\"dictType\":\"srb_moneyUse\",\"dictLabel\":\"装修\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:13:08'); INSERT INTO `sys_oper_log` VALUES (9813, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"4\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"医疗\",\"params\":{},\"dictType\":\"srb_moneyUse\",\"dictLabel\":\"医疗\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:13:17'); INSERT INTO `sys_oper_log` VALUES (9814, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"5\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"美容\",\"params\":{},\"dictType\":\"srb_moneyUse\",\"dictLabel\":\"美容\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:13:31'); INSERT INTO `sys_oper_log` VALUES (9815, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"6\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"其他\",\"params\":{},\"dictType\":\"srb_moneyUse\",\"dictLabel\":\"其他\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:13:42'); INSERT INTO `sys_oper_log` VALUES (9816, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"借款状态\",\"remark\":\"尚融宝的借款状态\",\"params\":{},\"dictType\":\"srb_borrowStatus\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:14:30'); INSERT INTO `sys_oper_log` VALUES (9817, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"0\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"待审核\",\"params\":{},\"dictType\":\"srb_borrowStatus\",\"dictLabel\":\"待审核\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:14:49'); INSERT INTO `sys_oper_log` VALUES (9818, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"审批通过\",\"params\":{},\"dictType\":\"srb_borrowStatus\",\"dictLabel\":\"审批通过\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:14:58'); INSERT INTO `sys_oper_log` VALUES (9819, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"还款中\",\"params\":{},\"dictType\":\"srb_borrowStatus\",\"dictLabel\":\"还款中\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:15:12'); INSERT INTO `sys_oper_log` VALUES (9820, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"结束\",\"params\":{},\"dictType\":\"srb_borrowStatus\",\"dictLabel\":\"结束\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:15:22'); INSERT INTO `sys_oper_log` VALUES (9821, '字典数据', 2, 'com.ruoyi.system.controller.SysDictDataController.edit()', 'PUT', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"结束\",\"params\":{},\"dictType\":\"srb_borrowStatus\",\"dictLabel\":\"结束\",\"createBy\":\"admin\",\"default\":false,\"isDefault\":\"N\",\"createTime\":1646190922000,\"dictCode\":166,\"updateBy\":\"admin\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:15:26'); INSERT INTO `sys_oper_log` VALUES (9822, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"-1\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"审批不通过\",\"params\":{},\"dictType\":\"srb_borrowStatus\",\"dictLabel\":\"审批不通过\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:15:41'); INSERT INTO `sys_oper_log` VALUES (9823, '字典类型', 9, 'com.ruoyi.system.controller.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/dict/type/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:15:49'); INSERT INTO `sys_oper_log` VALUES (9824, '字典类型', 1, 'com.ruoyi.system.controller.SysDictTypeController.add()', 'POST', 1, 'admin', NULL, '/dict/type', '127.0.0.1', '', '{\"createBy\":\"admin\",\"dictGroup\":\"3\",\"dictName\":\"学校性质\",\"remark\":\"尚融宝的学校性质\",\"params\":{},\"dictType\":\"srb_SchoolStatus\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:16:05'); INSERT INTO `sys_oper_log` VALUES (9825, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"1\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"211/985\",\"params\":{},\"dictType\":\"srb_SchoolStatus\",\"dictLabel\":\"211/985\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:16:20'); INSERT INTO `sys_oper_log` VALUES (9826, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"2\",\"listClass\":\"info\",\"dictSort\":0,\"remark\":\"一本\",\"params\":{},\"dictType\":\"srb_SchoolStatus\",\"dictLabel\":\"一本\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:16:30'); INSERT INTO `sys_oper_log` VALUES (9827, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"3\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"二本\",\"params\":{},\"dictType\":\"srb_SchoolStatus\",\"dictLabel\":\"二本\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:16:40'); INSERT INTO `sys_oper_log` VALUES (9828, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"4\",\"listClass\":\"danger\",\"dictSort\":0,\"remark\":\"三本\",\"params\":{},\"dictType\":\"srb_SchoolStatus\",\"dictLabel\":\"三本\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:16:49'); INSERT INTO `sys_oper_log` VALUES (9829, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"5\",\"listClass\":\"primary\",\"dictSort\":0,\"remark\":\"高职高专\",\"params\":{},\"dictType\":\"srb_SchoolStatus\",\"dictLabel\":\"高职高专\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:16:59'); INSERT INTO `sys_oper_log` VALUES (9830, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"6\",\"listClass\":\"success\",\"dictSort\":0,\"remark\":\"中职中专\",\"params\":{},\"dictType\":\"srb_SchoolStatus\",\"dictLabel\":\"中职中专\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:17:09'); INSERT INTO `sys_oper_log` VALUES (9831, '字典数据', 1, 'com.ruoyi.system.controller.SysDictDataController.add()', 'POST', 1, 'admin', NULL, '/dict/data', '127.0.0.1', '', '{\"dictValue\":\"7\",\"listClass\":\"warning\",\"dictSort\":0,\"remark\":\"高中及以下\",\"params\":{},\"dictType\":\"srb_SchoolStatus\",\"dictLabel\":\"高中及以下\",\"createBy\":\"admin\",\"default\":false,\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 11:17:19'); INSERT INTO `sys_oper_log` VALUES (9832, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The only thing that matters is right now, this moment.\",\"createTime\":1646193295300,\"dataId\":4398,\"date\":1644336000000,\"id\":1498869433689690113,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3ab60f861ba346f2dd7bc2ba77e7aee8.png\",\"note\":\"唯一要紧的是现在,是此时此刻。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e060d9e7ebcf61d29338d86995715f3c.mp3\"}}', 0, '', '2022-03-02 11:54:55'); INSERT INTO `sys_oper_log` VALUES (9833, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"麻烦学妹行李箱少装点,毕竟学长只是想认识你,不想把命搭楼梯上。\",\"createTime\":1646193295565,\"id\":1498869434805374978,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-03-02 11:54:55'); INSERT INTO `sys_oper_log` VALUES (9834, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The soul selects her own society, then shuts the door, to her divine majority, present no more.\",\"dataId\":3795,\"date\":1592236800000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/88e11aef0e9287cf69bdea3eaf8e0f80.png\",\"note\":\"灵魂选择自己的伴侣,然后,把门紧闭,她神圣的决定,再不容干预。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f87fe256997301d115898eb649a34063.mp3\"}}', 0, '', '2022-03-02 11:54:57'); INSERT INTO `sys_oper_log` VALUES (9835, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我身体很好抗得了米袋子 抗得了煤气罐 却扛不住想你\",\"createTime\":1646193298612,\"id\":1498869447564447746,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-02 11:54:58'); INSERT INTO `sys_oper_log` VALUES (9836, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":1,\"integralEnd\":1,\"id\":1498870366016368641,\"integralStart\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-02 11:58:37'); INSERT INTO `sys_oper_log` VALUES (9837, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498870366016368641', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-02 11:58:41'); INSERT INTO `sys_oper_log` VALUES (9838, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":1,\"integralEnd\":1,\"id\":1498870408605331457,\"integralStart\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-02 11:58:47'); INSERT INTO `sys_oper_log` VALUES (9839, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646201148028,\"humidity\":\"43\",\"id\":1498902370413957122,\"province\":\"江西\",\"reporttime\":1646201027000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 14:05:48'); INSERT INTO `sys_oper_log` VALUES (9840, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 14:03:47\"}}', 0, '', '2022-03-02 14:05:48'); INSERT INTO `sys_oper_log` VALUES (9841, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/e9d073cb-3b8b-48f0-a285-ef451b3ff322.jpeg\",\"code\":200}', 0, NULL, '2022-03-02 14:06:03'); INSERT INTO `sys_oper_log` VALUES (9842, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646201148028,\"humidity\":\"43\",\"id\":1498902370413957122,\"province\":\"江西\",\"reporttime\":1646201027000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 14:08:18'); INSERT INTO `sys_oper_log` VALUES (9843, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 14:03:47\"}}', 0, '', '2022-03-02 14:08:18'); INSERT INTO `sys_oper_log` VALUES (9844, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/4cf08fe1-ff28-4886-84ae-24f085bcf7d5.jpeg\",\"code\":200}', 0, NULL, '2022-03-02 14:08:29'); INSERT INTO `sys_oper_log` VALUES (9845, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646201148028,\"humidity\":\"43\",\"id\":1498902370413957122,\"province\":\"江西\",\"reporttime\":1646201027000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 14:12:12'); INSERT INTO `sys_oper_log` VALUES (9846, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 14:03:47\"}}', 0, '', '2022-03-02 14:12:12'); INSERT INTO `sys_oper_log` VALUES (9847, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/e2c60cda-ac33-4155-acbe-ba399d29409e.jpeg\",\"code\":200}', 0, NULL, '2022-03-02 14:12:22'); INSERT INTO `sys_oper_log` VALUES (9848, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"蜘蛛\",\"top\":2,\"createTime\":1646202368318,\"englishWord\":\"spider\",\"isCollect\":1,\"id\":1498907488693661698,\"sort\":0,\"content\":\"spider\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-02 14:26:08'); INSERT INTO `sys_oper_log` VALUES (9849, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646202370504,\"en\":\"Fat sorrow is better than lean sorrow.\",\"id\":1498907497845739522,\"zh\":\"富而有愁总强似穷愁无计.\"}}', 0, '', '2022-03-02 14:26:10'); INSERT INTO `sys_oper_log` VALUES (9850, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646203194246,\"humidity\":\"39\",\"id\":1498910952840744962,\"province\":\"江西\",\"reporttime\":1646203124000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 14:39:54'); INSERT INTO `sys_oper_log` VALUES (9851, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 14:38:44\"}}', 0, '', '2022-03-02 14:39:54'); INSERT INTO `sys_oper_log` VALUES (9852, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":3,\"isDeleted\":false,\"createTime\":\"2022-03-02T11:58:47\",\"integralEnd\":1,\"updateTime\":\"2022-03-02T11:58:47\",\"id\":1498870408605331457,\"integralStart\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-02 14:56:42'); INSERT INTO `sys_oper_log` VALUES (9853, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":3,\"isDeleted\":false,\"createTime\":\"2022-03-02T11:58:47\",\"integralEnd\":8,\"updateTime\":\"2022-03-02T11:58:47\",\"id\":1498870408605331457,\"integralStart\":5}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-02 14:56:48'); INSERT INTO `sys_oper_log` VALUES (9854, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1646204905000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 15:29:08'); INSERT INTO `sys_oper_log` VALUES (9855, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 15:08:25\"}}', 0, '', '2022-03-02 15:29:08'); INSERT INTO `sys_oper_log` VALUES (9856, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 15:08:25\"}}', 0, '', '2022-03-02 15:36:16'); INSERT INTO `sys_oper_log` VALUES (9857, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1646204905000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 15:36:16'); INSERT INTO `sys_oper_log` VALUES (9858, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1646204905000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 15:36:29'); INSERT INTO `sys_oper_log` VALUES (9859, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 15:08:25\"}}', 0, '', '2022-03-02 15:36:29'); INSERT INTO `sys_oper_log` VALUES (9860, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"41\",\"province\":\"江西\",\"reporttime\":1646204905000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 15:38:11'); INSERT INTO `sys_oper_log` VALUES (9861, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 15:08:25\"}}', 0, '', '2022-03-02 15:38:11'); INSERT INTO `sys_oper_log` VALUES (9862, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Birds sing after a storm. Why shouldn\'t people feel as free to delight in whatever sunlight remains to them?\",\"createTime\":1646206774936,\"dataId\":3670,\"date\":1581350400000,\"id\":1498925971334746114,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/dbb19d914e99f8c2bb687262c54b5516.png\",\"note\":\"鸟儿在暴风雨后歌唱,人们为什么在仍是阳光普照的时候还不尽情感受快乐呢?\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/7e28cd6d1f4285d79bc72cab529dbd06.mp3\"}}', 0, '', '2022-03-02 15:39:34'); INSERT INTO `sys_oper_log` VALUES (9863, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"爱情就是一个耍流氓,一个默认,一旦有人不配合这个游戏就完不成了,太理智了 那不是爱情,是交易。太感性那也不是爱情,那是疯子。\",\"createTime\":1646206776039,\"id\":1498925975977840642,\"source\":\"阿土仔\",\"type\":5}}', 0, '', '2022-03-02 15:39:36'); INSERT INTO `sys_oper_log` VALUES (9864, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Patriotism is deeply rooted in the instincts and emotions of human being.\",\"dataId\":4267,\"date\":1633017600000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/eb5a5f36242b66611440e1fd481733a0.png\",\"note\":\"爱国精神深深根植于人的本能和情感之中。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cfd032d3ced47817390310105ab7c7dd.mp3\"}}', 0, '', '2022-03-02 15:41:24'); INSERT INTO `sys_oper_log` VALUES (9865, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一次军训,我一个同学编号是001.第一天在集合时,班长:一号,洞洞腰!出列! 只见那二货开始缓缓的摆他的腰,然后出列 ,班长……\",\"createTime\":1646206884095,\"id\":1498926429222719490,\"source\":\"笑话大全\",\"type\":10}}', 0, '', '2022-03-02 15:41:24'); INSERT INTO `sys_oper_log` VALUES (9866, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You would not think any duty small if you yourself were great.\",\"dataId\":3918,\"date\":1602864000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/90e34cb124e164ffeba8041afa846576.png\",\"note\":\"如果自身伟大,任何工作你都不会觉得渺小。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6a0eda0287a117658fb9667b2ee1c483.mp3\"}}', 0, '', '2022-03-02 15:51:10'); INSERT INTO `sys_oper_log` VALUES (9867, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"突然之间,我还想再在这个世上多活几天。\\\"\",\"createTime\":1646207471267,\"id\":1498928891979616258,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-02 15:51:11'); INSERT INTO `sys_oper_log` VALUES (9868, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 15:34:02\"}}', 0, '', '2022-03-02 15:53:36'); INSERT INTO `sys_oper_log` VALUES (9869, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646206442000,\"temperature\":\"19\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 15:53:36'); INSERT INTO `sys_oper_log` VALUES (9870, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646206442000,\"temperature\":\"19\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 15:58:03'); INSERT INTO `sys_oper_log` VALUES (9871, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 15:34:02\"}}', 0, '', '2022-03-02 15:58:03'); INSERT INTO `sys_oper_log` VALUES (9872, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1646206442000,\"temperature\":\"19\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 15:58:28'); INSERT INTO `sys_oper_log` VALUES (9873, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 15:34:02\"}}', 0, '', '2022-03-02 15:58:28'); INSERT INTO `sys_oper_log` VALUES (9874, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1498870408605331457', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-02 16:00:57'); INSERT INTO `sys_oper_log` VALUES (9875, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Every person has two educations, one which he receives from others, and one, more important, which he gives to himself.\",\"dataId\":3424,\"date\":1560700800000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-17.jpg\",\"note\":\"每个人都受两种教育,一种来自别人,另一种更重要,是来自自己。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-17-day.mp3\"}}', 0, '', '2022-03-02 16:15:02'); INSERT INTO `sys_oper_log` VALUES (9876, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"曾经我们是如此幸福,现在是如此陌生。\",\"createTime\":1646208902403,\"id\":1498934894624231425,\"source\":\"小钟\",\"type\":5}}', 0, '', '2022-03-02 16:15:02'); INSERT INTO `sys_oper_log` VALUES (9877, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"曾经我们是如此幸福,现在是如此陌生。\",\"translationType\":3}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Once we were so happy, now we are so strange.\",\"src\":\"曾经我们是如此幸福,现在是如此陌生。\"}]}}', 0, '', '2022-03-02 16:15:06'); INSERT INTO `sys_oper_log` VALUES (9878, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 21:08:27\"}}', 0, '', '2022-03-02 21:11:52'); INSERT INTO `sys_oper_log` VALUES (9879, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646226713046,\"humidity\":\"65\",\"id\":1499009597877989377,\"province\":\"江西\",\"reporttime\":1646226507000,\"temperature\":\"13\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 21:11:53'); INSERT INTO `sys_oper_log` VALUES (9880, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 22:03:41\"}}', 0, '', '2022-03-02 22:23:01'); INSERT INTO `sys_oper_log` VALUES (9881, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1646229821000,\"temperature\":\"13\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 22:23:01'); INSERT INTO `sys_oper_log` VALUES (9882, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1646229821000,\"temperature\":\"13\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 22:23:06'); INSERT INTO `sys_oper_log` VALUES (9883, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 22:03:41\"}}', 0, '', '2022-03-02 22:23:06'); INSERT INTO `sys_oper_log` VALUES (9884, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1499034297614131201', '127.0.0.1', '', '1499034297614131201', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-02 22:53:22'); INSERT INTO `sys_oper_log` VALUES (9885, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/daeaf7f4-dbdc-4ae8-99af-3176ae908664.jpeg\",\"code\":200}', 0, NULL, '2022-03-02 22:55:00'); INSERT INTO `sys_oper_log` VALUES (9886, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 22:38:37\"}}', 0, '', '2022-03-02 22:57:32'); INSERT INTO `sys_oper_log` VALUES (9887, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1646231917000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 22:57:32'); INSERT INTO `sys_oper_log` VALUES (9888, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"教育培训\",\"orderNum\":\"0\",\"menuName\":\"尚融宝\",\"params\":{},\"parentId\":0,\"isCache\":\"1\",\"path\":\"srb\",\"children\":[],\"createTime\":1646098701000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2088,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 22:57:50'); INSERT INTO `sys_oper_log` VALUES (9889, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 22:38:37\"}}', 0, '', '2022-03-02 22:57:54'); INSERT INTO `sys_oper_log` VALUES (9890, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1646231917000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 22:57:54'); INSERT INTO `sys_oper_log` VALUES (9891, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-02 23:41:37'); INSERT INTO `sys_oper_log` VALUES (9892, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In one second your whole life can change. It only takes a moment for everything to feel quite different.\",\"createTime\":1646235728614,\"dataId\":4026,\"date\":1612195200000,\"id\":1499047411927691266,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/54bbadea297a82aa84131e3dc22ef4c3.png\",\"note\":\"生命真是瞬息万变,只要片刻,一切就截然不同了。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/c42d51095cfea754d0ce35e8fbb7c071.mp3\"}}', 0, '', '2022-03-02 23:42:08'); INSERT INTO `sys_oper_log` VALUES (9893, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\" 坐地铁上班,传媒大学站,大家有知道的吧,那人是相当多啊,瞬间被挤进去了,暗自窃喜,只是听见“嘣”一声,左胸有点疼,也就不了了之了。就在刚刚,医生诊断:肋骨骨折,尼玛,瞬间心情不好了,哭笑不得,姐体格可是很健壮的呢……直接让去CT室,我去,瞬间心情跌入低谷有没有,我只是坐了一下地铁,两个月的交通费没了\",\"createTime\":1646235728692,\"id\":1499047412233875457,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-02 23:42:08'); INSERT INTO `sys_oper_log` VALUES (9894, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"亲爱的女孩,如果还能跟你心平气和的聊天的话,我希望能告诉你我那些无视和冷笑都是在伪装,可是已经过去了。淡月梨花,借梦来,桥边廊庑。\",\"createTime\":1646235738697,\"id\":1499047454189498370,\"source\":\"任你\",\"type\":2}}', 0, '', '2022-03-02 23:42:18'); INSERT INTO `sys_oper_log` VALUES (9895, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"只要是真心相爱,任何形式的都值得被祝福,谢谢来来支持心凌的你们,爱最大!!\",\"createTime\":1646235742754,\"id\":1499047471235149826,\"source\":\"大眠\",\"type\":2}}', 0, '', '2022-03-02 23:42:22'); INSERT INTO `sys_oper_log` VALUES (9896, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"只要是真心相爱,任何形式的都值得被祝福,谢谢来来支持心凌的你们,爱最大!!\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":65,\"errorCode\":0,\"transResult\":[{\"dst\":\"As long as it is truly in love, in any form are worthy of blessing, thank you to support your heart ling, love most!!\",\"src\":\"只要是真心相爱,任何形式的都值得被祝福,谢谢来来支持心凌的你们,爱最大!!\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-02 23:42:35'); INSERT INTO `sys_oper_log` VALUES (9897, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"进飞机时空姐热情的问候“欢迎登机”,前面的哥们一愣“我登基了?”空姐微笑点头,然后那傻缺拖着长音“众爱卿有事早奏无事退朝~~”\",\"createTime\":1646235760160,\"id\":1499047544241205249,\"source\":\"笑话大全\",\"type\":10}}', 0, '', '2022-03-02 23:42:40'); INSERT INTO `sys_oper_log` VALUES (9898, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个人在其人生道路上如果不注意结识新交,就会很快感到孤单。人应当不断地充实自己对别人的友谊。\",\"createTime\":1646235770014,\"id\":1499047585550905346,\"source\":\"塞·约翰逊\",\"type\":4}}', 0, '', '2022-03-02 23:42:50'); INSERT INTO `sys_oper_log` VALUES (9899, '参数管理', 9, 'com.ruoyi.system.controller.SysConfigController.refreshCache()', 'DELETE', 1, 'admin', NULL, '/config/refreshCache', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-02 23:44:51'); INSERT INTO `sys_oper_log` VALUES (9900, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"234KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urv9c0agj31c00u0k66.jpg\"},{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urplfnxtj31c00u0dpg.jpg\"},{\"imageFileLength\":\"131KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbpqsuwj31c00u0juy.jpg\"},{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvuelq1j31c00u0h0p.jpg\"},{\"imageFileLength\":\"105KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4etjkqj31c00u0418.jpg\"},{\"imageFileLength\":\"540KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ij0kdj31hc0u017i.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaz29y5j31hc0u0adu.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut50ipurj31c00u00wy.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf3v332j31hc0u0ah0.jpg\"},{\"imageFileLength\":\"394KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursmw689j31hc0u0tlq.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-02 23:46:48'); INSERT INTO `sys_oper_log` VALUES (9901, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"143KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1ut8ixyrlj31c00u00wl.jpg\"},{\"imageFileLength\":\"175KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urav2glwj31c00u043f.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us96gdgnj31c00u0n1m.jpg\"},{\"imageFileLength\":\"128KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaf2qztj31hc0u077i.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf3l3uoj31c00u0gpy.jpg\"},{\"imageFileLength\":\"124KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut56udo0j31ao0t6goo.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dj1496qj31hc0u0h1z.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraowajij31c00u0gr7.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbbp57tj31c00u0421.jpg\"},{\"imageFileLength\":\"144KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf3v332j31hc0u0ah0.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-02 23:47:09'); INSERT INTO `sys_oper_log` VALUES (9902, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年03月03日\",\"holidayName\":\"全国爱耳日\",\"lunarDate\":\"2022年02月01日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年03月03日\"},{\"date\":\"2022年03月04日\",\"holidayName\":\"龙抬头\",\"lunarDate\":\"2022年02月02日\",\"lunarHoliday\":true,\"residueDays\":1,\"returnDate\":\"壬寅虎年 正月初二\"},{\"date\":\"2022年03月05日\",\"holidayName\":\"学雷锋纪念日\",\"lunarDate\":\"2022年02月03日\",\"lunarHoliday\":false,\"residueDays\":2,\"returnDate\":\"2022年03月05日\"},{\"date\":\"2022年03月05日\",\"holidayName\":\"惊蛰\",\"lunarDate\":\"2022年02月03日\",\"lunarHoliday\":true,\"residueDays\":2,\"returnDate\":\"壬寅虎年 正月初三\"},{\"date\":\"2022年03月08日\",\"holidayName\":\"三八妇女节\",\"lunarDate\":\"2022年02月06日\",\"lunarHoliday\":false,\"residueDays\":5,\"returnDate\":\"2022年03月08日\"},{\"date\":\"2022年03月11日\",\"holidayName\":\"国际尊严尊敬日\",\"lunarDate\":\"2022年02月09日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年03月11日\"},{\"date\":\"2022年03月12日\",\"holidayName\":\"植树节\",\"lunarDate\":\"2022年02月10日\",\"lunarHoliday\":false,\"residueDays\":9,\"returnDate\":\"2022年03月12日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-02 23:47:40'); INSERT INTO `sys_oper_log` VALUES (9903, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E5%B1%81', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"recommendList\":[{\"goodsName\":\"鸡屁股\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-03-02 23:47:56'); INSERT INTO `sys_oper_log` VALUES (9904, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E9%B8%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"鸡\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"鸡蛋壳\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着鸡蛋壳的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"炸鸡包装袋\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"火鸡骨头\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡蛋皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡屁股\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡蛋\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡软骨\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"咸鸡\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"盐水鸡\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"炸鸡\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"叫花鸡\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡蛋饼\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡精\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡蛋卷\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡蛋仔\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"烤鸡\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-03-02 23:48:07'); INSERT INTO `sys_oper_log` VALUES (9905, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E9%B8%A1', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"鸡\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"鸡蛋壳\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"包裹着鸡蛋壳的纸巾\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"炸鸡包装袋\",\"goodsType\":\"干垃圾\"},{\"goodsName\":\"火鸡骨头\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡蛋皮\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡屁股\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡蛋\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡软骨\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"咸鸡\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"盐水鸡\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"炸鸡\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"叫花鸡\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡蛋饼\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡精\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡蛋卷\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸡蛋仔\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"烤鸡\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-03-02 23:48:16'); INSERT INTO `sys_oper_log` VALUES (9906, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E9%B8%A1%E5%B7%B4', '127.0.0.1', '', '', '', 1, '未搜索到相关物品垃圾分类信息,该关键词已上报,感谢您的使用', '2022-03-02 23:48:24'); INSERT INTO `sys_oper_log` VALUES (9907, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E9%B8%AD%E5%AD%90', '127.0.0.1', '', '', '', 1, '未搜索到相关物品垃圾分类信息,该关键词已上报,感谢您的使用', '2022-03-02 23:48:30'); INSERT INTO `sys_oper_log` VALUES (9908, '获取垃圾分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getGarbageSortingApiData()', 'GET', 1, 'admin', '', '/apitools/garbagesorting/%E9%B8%AD', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"aim\":{\"goodsName\":\"鸭\",\"goodsType\":\"湿垃圾\"},\"recommendList\":[{\"goodsName\":\"北京烤鸭\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"烤鸭\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"咸鸭蛋壳\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭肉\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭锁骨\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭舌\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭骨头\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭架子\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭脖子\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭翅膀\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭腿\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭头\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭下巴\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭掌\",\"goodsType\":\"湿垃圾\"},{\"goodsName\":\"鸭蛋壳\",\"goodsType\":\"湿垃圾\"}]},\"msg\":\"操作成功\"}', 0, '', '2022-03-02 23:48:32'); INSERT INTO `sys_oper_log` VALUES (9909, '获取简繁转换', 0, 'com.xjs.apitools.controller.ApiToolsController.getSimpleComplexApiData()', 'GET', 1, 'admin', '', '/apitools/simplecomplex/%E7%AE%80%E7%AD%94', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"convertContent\":\"簡答\",\"originContent\":\"简答\"},\"msg\":\"操作成功\"}', 0, '', '2022-03-02 23:48:48'); INSERT INTO `sys_oper_log` VALUES (9910, '获取预报天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/forecastweather/%E9%95%BF%E6%B2%99', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"湖南省 长沙市\",\"cityCode\":\"430100\",\"forecasts\":[{\"date\":\"2022-03-02\",\"dayOfWeek\":\"周三\",\"daytemp\":\"17℃\",\"dayweather\":\"多云\",\"nighttemp\":\"10℃\",\"nightweather\":\"多云\"},{\"date\":\"2022-03-03\",\"dayOfWeek\":\"周四\",\"daytemp\":\"20℃\",\"dayweather\":\"多云\",\"nighttemp\":\"11℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-03-04\",\"dayOfWeek\":\"周五\",\"daytemp\":\"17℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"12℃\",\"nightweather\":\"小雨\"},{\"date\":\"2022-03-05\",\"dayOfWeek\":\"周六\",\"daytemp\":\"17℃\",\"dayweather\":\"小雨\",\"nighttemp\":\"10℃\",\"nightweather\":\"小雨\"}],\"reportTime\":\"2022-03-02 23:32:30\"},\"msg\":\"操作成功\"}', 0, '', '2022-03-02 23:49:05'); INSERT INTO `sys_oper_log` VALUES (9911, '获取实时天气', 0, 'com.xjs.apitools.controller.ApiToolsController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/apitools/nowweather/%E9%95%BF%E6%B2%99', '127.0.0.1', '', '', '{\"code\":200,\"data\":{\"address\":\"湖南省 长沙市\",\"humidity\":\"77%\",\"reporttime\":1646235150000,\"temp\":\"14℃\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3级\"},\"msg\":\"操作成功\"}', 0, '', '2022-03-02 23:49:18'); INSERT INTO `sys_oper_log` VALUES (9912, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-02\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-02 23:34:03\"}}', 0, '', '2022-03-02 23:51:34'); INSERT INTO `sys_oper_log` VALUES (9913, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1646235243000,\"temperature\":\"12\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-02 23:51:34'); INSERT INTO `sys_oper_log` VALUES (9914, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"This is either madness or brilliance. It\'s remarkable how often those two traits coincide.\",\"createTime\":1646236317394,\"dataId\":3955,\"date\":1606060800000,\"id\":1499049881450000386,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/557431bff11316d9c878a5da679ee4eb.png\",\"note\":\"疯狂和伟大只有一线之隔,他们往往相伴而行。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6674188468e0467ce247ed54adc77c13.mp3\"}}', 0, '', '2022-03-02 23:51:57'); INSERT INTO `sys_oper_log` VALUES (9915, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"经过两个多月疫情终于结束了,我给你发消息显示被拉黑了 你还是这么贴心,怕疫情通过网络传播给我,原来你一直在默默保护着我。\",\"createTime\":1646236317949,\"id\":1499049883727507458,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-02 23:51:57'); INSERT INTO `sys_oper_log` VALUES (9916, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646236323645,\"en\":\"One today is worth two tomorrow.\",\"id\":1499049907639234562,\"zh\":\"一个今天抵得上两个明天.\"}}', 0, '', '2022-03-02 23:52:03'); INSERT INTO `sys_oper_log` VALUES (9917, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"One today is worth two tomorrow.\",\"zh\":\"一个今天抵得上两个明天.\"}}', 0, '', '2022-03-02 23:52:13'); INSERT INTO `sys_oper_log` VALUES (9918, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 08:03:44\"}}', 0, '', '2022-03-03 08:31:44'); INSERT INTO `sys_oper_log` VALUES (9919, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646267504515,\"humidity\":\"77\",\"id\":1499180689709481986,\"province\":\"江西\",\"reporttime\":1646265824000,\"temperature\":\"12\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 08:31:44'); INSERT INTO `sys_oper_log` VALUES (9920, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 08:03:44\"}}', 0, '', '2022-03-03 08:35:31'); INSERT INTO `sys_oper_log` VALUES (9921, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1646265824000,\"temperature\":\"12\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 08:35:31'); INSERT INTO `sys_oper_log` VALUES (9922, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1646265824000,\"temperature\":\"12\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 08:36:21'); INSERT INTO `sys_oper_log` VALUES (9923, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 08:03:44\"}}', 0, '', '2022-03-03 08:36:21'); INSERT INTO `sys_oper_log` VALUES (9924, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"同步\",\"top\":2,\"createTime\":1646270644403,\"englishWord\":\"synchronized\",\"isCollect\":1,\"id\":1499193859354378241,\"sort\":0,\"content\":\"synchronized\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 09:24:04'); INSERT INTO `sys_oper_log` VALUES (9925, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646270646900,\"en\":\"He that mischie hatches, mischief catches.\",\"id\":1499193869814874114,\"zh\":\"害人者终将害己。\"}}', 0, '', '2022-03-03 09:24:06'); INSERT INTO `sys_oper_log` VALUES (9926, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"He that mischie hatches, mischief catches.\",\"zh\":\"害人者终将害己。\"}}', 0, '', '2022-03-03 09:24:12'); INSERT INTO `sys_oper_log` VALUES (9927, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646270679971,\"englishWord\":\"lock\",\"isCollect\":1,\"id\":1499194008512217089,\"sort\":0,\"content\":\"lock\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 09:24:40'); INSERT INTO `sys_oper_log` VALUES (9928, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"He that mischie hatches, mischief catches.\",\"zh\":\"害人者终将害己。\"}}', 0, '', '2022-03-03 09:24:42'); INSERT INTO `sys_oper_log` VALUES (9929, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"锁\",\"condition\":\"\",\"top\":2,\"createTime\":1646270680000,\"englishWord\":\"lock\",\"isCollect\":1,\"id\":1499194008512217089,\"sort\":0,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 09:24:49'); INSERT INTO `sys_oper_log` VALUES (9930, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"He that mischie hatches, mischief catches.\",\"zh\":\"害人者终将害己。\"}}', 0, '', '2022-03-03 09:24:53'); INSERT INTO `sys_oper_log` VALUES (9931, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"锁\",\"createTime\":1646270680000,\"englishWord\":\"lock\",\"id\":1499194008512217089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"同步\",\"createTime\":1646270644000,\"englishWord\":\"synchronized\",\"id\":1499193859354378241,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"蜘蛛\",\"createTime\":1646202368000,\"englishWord\":\"spider\",\"id\":1498907488693661698,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:09'); INSERT INTO `sys_oper_log` VALUES (9932, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"积分\",\"createTime\":1646099284000,\"englishWord\":\"integral\",\"id\":1498475123475460098,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"条件\",\"createTime\":1645497826000,\"englishWord\":\"conditions\",\"id\":1495952426027585537,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1645490416000,\"englishWord\":\"source\",\"id\":1495921344716607490,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:09'); INSERT INTO `sys_oper_log` VALUES (9933, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"重置\",\"createTime\":1645428992000,\"englishWord\":\"reset\",\"id\":1495663714559500290,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"设置\",\"createTime\":1645413604000,\"englishWord\":\"settings\",\"id\":1495599171498057730,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"注解\",\"createTime\":1645406032000,\"englishWord\":\"annotation\",\"id\":1495567412718903297,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:09'); INSERT INTO `sys_oper_log` VALUES (9934, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"爬虫\",\"createTime\":1645281842000,\"englishWord\":\"reptile\",\"id\":1495046521038295041,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"发布\",\"createTime\":1645280419000,\"englishWord\":\"release\",\"id\":1495040553210597378,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"平台\",\"createTime\":1645274475000,\"englishWord\":\"platform\",\"id\":1495015622968070145,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:09'); INSERT INTO `sys_oper_log` VALUES (9935, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"壁纸\",\"createTime\":1645265889000,\"englishWord\":\"wallpaper\",\"id\":1494979609008787457,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:09'); INSERT INTO `sys_oper_log` VALUES (9936, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:10'); INSERT INTO `sys_oper_log` VALUES (9937, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:10'); INSERT INTO `sys_oper_log` VALUES (9938, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:10'); INSERT INTO `sys_oper_log` VALUES (9939, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:12'); INSERT INTO `sys_oper_log` VALUES (9940, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:12'); INSERT INTO `sys_oper_log` VALUES (9941, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:12'); INSERT INTO `sys_oper_log` VALUES (9942, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:13'); INSERT INTO `sys_oper_log` VALUES (9943, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":68}}', 0, '', '2022-03-03 09:25:13'); INSERT INTO `sys_oper_log` VALUES (9944, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"文章\",\"top\":2,\"createTime\":1646270833293,\"englishWord\":\"article\",\"isCollect\":1,\"id\":1499194651561934849,\"sort\":0,\"content\":\"文章\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 09:27:13'); INSERT INTO `sys_oper_log` VALUES (9945, '代码生成', 6, 'com.ruoyi.gen.controller.GenController.importTableSave()', 'POST', 1, 'admin', NULL, '/gen/importTable', '127.0.0.1', '', 'english_article', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 09:34:00'); INSERT INTO `sys_oper_log` VALUES (9946, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The universe has to move forward. Pain and loss, they define us as much as happiness or love.\",\"createTime\":1646273493565,\"dataId\":4043,\"date\":1613664000000,\"id\":1499205809555521537,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/ce200e3bb0e320e750eb8458d3238abd.png\",\"note\":\"宇宙必须向前发展。痛苦与失去和幸福与爱一样定义了我们。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/f4a15ed82d0f991aa1cf7d049086fd4f.mp3\"}}', 0, '', '2022-03-03 10:11:33'); INSERT INTO `sys_oper_log` VALUES (9947, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天,知道你要走,心里千万思绪,深深的祝福你最亲爱的朋友,祝你一路顺风。那些我们在一起美好的时光,永远不会忘记。保重。\",\"createTime\":1641644641000,\"id\":1479790996155490307,\"source\":\"阿土仔\",\"type\":5}}', 0, '', '2022-03-03 10:11:36'); INSERT INTO `sys_oper_log` VALUES (9948, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"今天,知道你要走,心里千万思绪,深深的祝福你最亲爱的朋友,祝你一路顺风。那些我们在一起美好的时光,永远不会忘记。保重。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":37,\"errorCode\":0,\"transResult\":[{\"dst\":\"Today, know you want to go, never mind in the heart, deeply bless you dear friend, I wish you a pleasant journey.\",\"src\":\"今天,知道你要走,心里千万思绪,深深的祝福你最亲爱的朋友,祝你一路顺风。\"},{\"dst\":\"The wonderful time we share together, will never forget.\",\"src\":\"那些我们在一起美好的时光,永远不会忘记。\"},{\"dst\":\"Take care of yourself.\",\"src\":\"保重。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-03 10:11:46'); INSERT INTO `sys_oper_log` VALUES (9949, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"今天,知道你要走,心里千万思绪,深深的祝福你最亲爱的朋友,祝你一路顺风。那些我们在一起美好的时光,永远不会忘记。保重。\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"Today, knowing that you are leaving, I have thousands of thoughts in my heart. I deeply wish your dearest friend a pleasant journey. Those wonderful times we had together will never be forgotten. Take care.\",\"src\":\"今天,知道你要走,心里千万思绪,深深的祝福你最亲爱的朋友,祝你一路顺风。那些我们在一起美好的时光,永远不会忘记。保重。\"}]}}', 0, '', '2022-03-03 10:11:50'); INSERT INTO `sys_oper_log` VALUES (9950, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646275118000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 10:49:06'); INSERT INTO `sys_oper_log` VALUES (9951, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 10:38:38\"}}', 0, '', '2022-03-03 10:49:06'); INSERT INTO `sys_oper_log` VALUES (9952, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_tongzhi\",\"orderNum\":\"1\",\"menuName\":\"英语文章\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"article\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 10:49:53'); INSERT INTO `sys_oper_log` VALUES (9953, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_tongzhi\",\"orderNum\":\"1\",\"menuName\":\"英语文章\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"article\",\"children\":[],\"createTime\":1646275793000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2097,\"menuType\":\"C\",\"perms\":\"english:article:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 10:50:09'); INSERT INTO `sys_oper_log` VALUES (9954, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_tongzhi\",\"orderNum\":\"1\",\"menuName\":\"英语文章\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"article\",\"component\":\"business/english/article/index\",\"children\":[],\"createTime\":1646275793000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2097,\"menuType\":\"C\",\"perms\":\"english:article:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 10:50:28'); INSERT INTO `sys_oper_log` VALUES (9955, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646275118000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 10:51:32'); INSERT INTO `sys_oper_log` VALUES (9956, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 10:38:38\"}}', 0, '', '2022-03-03 10:51:32'); INSERT INTO `sys_oper_log` VALUES (9957, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646275118000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:07:30'); INSERT INTO `sys_oper_log` VALUES (9958, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 10:38:38\"}}', 0, '', '2022-03-03 11:07:30'); INSERT INTO `sys_oper_log` VALUES (9959, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 10:38:38\"}}', 0, '', '2022-03-03 11:11:35'); INSERT INTO `sys_oper_log` VALUES (9960, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646275118000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:11:35'); INSERT INTO `sys_oper_log` VALUES (9961, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646275118000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:12:14'); INSERT INTO `sys_oper_log` VALUES (9962, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 10:38:38\"}}', 0, '', '2022-03-03 11:12:14'); INSERT INTO `sys_oper_log` VALUES (9963, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646275118000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:12:33'); INSERT INTO `sys_oper_log` VALUES (9964, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 10:38:38\"}}', 0, '', '2022-03-03 11:12:33'); INSERT INTO `sys_oper_log` VALUES (9965, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646275118000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:13:49'); INSERT INTO `sys_oper_log` VALUES (9966, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 10:38:38\"}}', 0, '', '2022-03-03 11:13:49'); INSERT INTO `sys_oper_log` VALUES (9967, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 10:38:38\"}}', 0, '', '2022-03-03 11:14:28'); INSERT INTO `sys_oper_log` VALUES (9968, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646275118000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:14:28'); INSERT INTO `sys_oper_log` VALUES (9969, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_tongzhi\",\"orderNum\":\"1\",\"menuName\":\"文章列表\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"article\",\"component\":\"business/english/article/index\",\"children\":[],\"createTime\":1646275793000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2097,\"menuType\":\"C\",\"perms\":\"english:article:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 11:15:26'); INSERT INTO `sys_oper_log` VALUES (9970, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_suo\",\"orderNum\":\"1\",\"menuName\":\"英语文章\",\"params\":{},\"parentId\":2024,\"isCache\":\"0\",\"path\":\"article\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 11:16:03'); INSERT INTO `sys_oper_log` VALUES (9971, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_tongzhi\",\"orderNum\":\"1\",\"menuName\":\"文章列表\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"article\",\"component\":\"business/english/article/index\",\"children\":[],\"createTime\":1646275793000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2097,\"menuType\":\"C\",\"perms\":\"english:article:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 11:16:30'); INSERT INTO `sys_oper_log` VALUES (9972, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_zan\",\"orderNum\":\"1\",\"menuName\":\"添加文章\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"add\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 11:17:03'); INSERT INTO `sys_oper_log` VALUES (9973, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_tongzhi\",\"orderNum\":\"1\",\"menuName\":\"文章列表\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"list\",\"component\":\"business/english/article/index\",\"children\":[],\"createTime\":1646275793000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2097,\"menuType\":\"C\",\"perms\":\"english:article:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 11:17:12'); INSERT INTO `sys_oper_log` VALUES (9974, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_zan\",\"orderNum\":\"1\",\"menuName\":\"添加文章\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"add\",\"component\":\"business/english/article/form\",\"children\":[],\"createTime\":1646277423000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2099,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 11:17:47'); INSERT INTO `sys_oper_log` VALUES (9975, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"icon_zan\",\"orderNum\":\"1\",\"menuName\":\"添加文章\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"add\",\"component\":\"business/english/article/form\",\"children\":[],\"createTime\":1646277423000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2099,\"menuType\":\"C\",\"perms\":\"english:article:add\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 11:18:42'); INSERT INTO `sys_oper_log` VALUES (9976, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:18:56'); INSERT INTO `sys_oper_log` VALUES (9977, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:18:56'); INSERT INTO `sys_oper_log` VALUES (9978, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:18:59'); INSERT INTO `sys_oper_log` VALUES (9979, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:18:59'); INSERT INTO `sys_oper_log` VALUES (9980, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:20:52'); INSERT INTO `sys_oper_log` VALUES (9981, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:20:52'); INSERT INTO `sys_oper_log` VALUES (9982, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:21:17'); INSERT INTO `sys_oper_log` VALUES (9983, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:21:17'); INSERT INTO `sys_oper_log` VALUES (9984, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:21:49'); INSERT INTO `sys_oper_log` VALUES (9985, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:21:49'); INSERT INTO `sys_oper_log` VALUES (9986, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:21:52'); INSERT INTO `sys_oper_log` VALUES (9987, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:21:52'); INSERT INTO `sys_oper_log` VALUES (9988, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:22:10'); INSERT INTO `sys_oper_log` VALUES (9989, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:22:10'); INSERT INTO `sys_oper_log` VALUES (9990, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:23:16'); INSERT INTO `sys_oper_log` VALUES (9991, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:23:16'); INSERT INTO `sys_oper_log` VALUES (9992, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:23:19'); INSERT INTO `sys_oper_log` VALUES (9993, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:23:19'); INSERT INTO `sys_oper_log` VALUES (9994, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"icon_zan\",\"orderNum\":\"1\",\"menuName\":\"添加文章\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"form\",\"component\":\"business/english/article/form\",\"children\":[],\"createTime\":1646277423000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2099,\"menuType\":\"C\",\"perms\":\"english:article:add\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 11:23:49'); INSERT INTO `sys_oper_log` VALUES (9995, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"icon_zan\",\"orderNum\":\"1\",\"menuName\":\"文章操作\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"form\",\"component\":\"business/english/article/form\",\"children\":[],\"createTime\":1646277423000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2099,\"menuType\":\"C\",\"perms\":\"english:article:add\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 11:24:08'); INSERT INTO `sys_oper_log` VALUES (9996, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:24:13'); INSERT INTO `sys_oper_log` VALUES (9997, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:24:13'); INSERT INTO `sys_oper_log` VALUES (9998, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\" We all deserve a standing ovation at least once in our lives.\",\"dataId\":4012,\"date\":1610985600000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/6ac81e229214bed9d0ef805821805068.png\",\"note\":\"每个人都值得大家站起来为他鼓掌一次。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/aeab74f84ba6766e6a77c6902ef13455.mp3\"}}', 0, '', '2022-03-03 11:26:48'); INSERT INTO `sys_oper_log` VALUES (9999, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"浪费是支出,节约是收入。\",\"createTime\":1646278008113,\"id\":1499224744959033346,\"source\":\"网络收集\",\"type\":4}}', 0, '', '2022-03-03 11:26:48'); INSERT INTO `sys_oper_log` VALUES (10000, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"文章\",\"createTime\":1646270833000,\"englishWord\":\"article\",\"id\":1499194651561934849,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"锁\",\"createTime\":1646270680000,\"englishWord\":\"lock\",\"id\":1499194008512217089,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"同步\",\"createTime\":1646270644000,\"englishWord\":\"synchronized\",\"id\":1499193859354378241,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:11'); INSERT INTO `sys_oper_log` VALUES (10001, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"蜘蛛\",\"createTime\":1646202368000,\"englishWord\":\"spider\",\"id\":1498907488693661698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"积分\",\"createTime\":1646099284000,\"englishWord\":\"integral\",\"id\":1498475123475460098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"条件\",\"createTime\":1645497826000,\"englishWord\":\"conditions\",\"id\":1495952426027585537,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:11'); INSERT INTO `sys_oper_log` VALUES (10002, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"资源\",\"createTime\":1645490416000,\"englishWord\":\"source\",\"id\":1495921344716607490,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"重置\",\"createTime\":1645428992000,\"englishWord\":\"reset\",\"id\":1495663714559500290,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"设置\",\"createTime\":1645413604000,\"englishWord\":\"settings\",\"id\":1495599171498057730,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:11'); INSERT INTO `sys_oper_log` VALUES (10003, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"注解\",\"createTime\":1645406032000,\"englishWord\":\"annotation\",\"id\":1495567412718903297,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"爬虫\",\"createTime\":1645281842000,\"englishWord\":\"reptile\",\"id\":1495046521038295041,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"发布\",\"createTime\":1645280419000,\"englishWord\":\"release\",\"id\":1495040553210597378,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:11'); INSERT INTO `sys_oper_log` VALUES (10004, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"平台\",\"createTime\":1645274475000,\"englishWord\":\"platform\",\"id\":1495015622968070145,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"壁纸\",\"createTime\":1645265889000,\"englishWord\":\"wallpaper\",\"id\":1494979609008787457,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:12'); INSERT INTO `sys_oper_log` VALUES (10005, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:12'); INSERT INTO `sys_oper_log` VALUES (10006, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:12'); INSERT INTO `sys_oper_log` VALUES (10007, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:12'); INSERT INTO `sys_oper_log` VALUES (10008, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:13'); INSERT INTO `sys_oper_log` VALUES (10009, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:14'); INSERT INTO `sys_oper_log` VALUES (10010, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:14'); INSERT INTO `sys_oper_log` VALUES (10011, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:14'); INSERT INTO `sys_oper_log` VALUES (10012, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:14'); INSERT INTO `sys_oper_log` VALUES (10013, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:15'); INSERT INTO `sys_oper_log` VALUES (10014, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:15'); INSERT INTO `sys_oper_log` VALUES (10015, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:16'); INSERT INTO `sys_oper_log` VALUES (10016, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:16'); INSERT INTO `sys_oper_log` VALUES (10017, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:16'); INSERT INTO `sys_oper_log` VALUES (10018, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:17'); INSERT INTO `sys_oper_log` VALUES (10019, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:17'); INSERT INTO `sys_oper_log` VALUES (10020, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:17'); INSERT INTO `sys_oper_log` VALUES (10021, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":22,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:18'); INSERT INTO `sys_oper_log` VALUES (10022, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":23,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2},{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":18,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:18'); INSERT INTO `sys_oper_log` VALUES (10023, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":24,\"optimizeCountSql\":true,\"orders\":[],\"pages\":23,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":69}}', 0, '', '2022-03-03 11:27:18'); INSERT INTO `sys_oper_log` VALUES (10024, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:28:27'); INSERT INTO `sys_oper_log` VALUES (10025, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646277536838,\"humidity\":\"55\",\"id\":1499222768288415746,\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:28:27'); INSERT INTO `sys_oper_log` VALUES (10026, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:29:39'); INSERT INTO `sys_oper_log` VALUES (10027, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:29:39'); INSERT INTO `sys_oper_log` VALUES (10028, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:30:17'); INSERT INTO `sys_oper_log` VALUES (10029, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:30:17'); INSERT INTO `sys_oper_log` VALUES (10030, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:30:46'); INSERT INTO `sys_oper_log` VALUES (10031, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:30:46'); INSERT INTO `sys_oper_log` VALUES (10032, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:31:39'); INSERT INTO `sys_oper_log` VALUES (10033, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:31:39'); INSERT INTO `sys_oper_log` VALUES (10034, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:32:20'); INSERT INTO `sys_oper_log` VALUES (10035, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:32:21'); INSERT INTO `sys_oper_log` VALUES (10036, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:32:52'); INSERT INTO `sys_oper_log` VALUES (10037, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:32:52'); INSERT INTO `sys_oper_log` VALUES (10038, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:33:18'); INSERT INTO `sys_oper_log` VALUES (10039, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:33:18'); INSERT INTO `sys_oper_log` VALUES (10040, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:33:34'); INSERT INTO `sys_oper_log` VALUES (10041, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:33:34'); INSERT INTO `sys_oper_log` VALUES (10042, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:34:39'); INSERT INTO `sys_oper_log` VALUES (10043, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:34:39'); INSERT INTO `sys_oper_log` VALUES (10044, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"icon_zan\",\"orderNum\":\"1\",\"menuName\":\"添加文章\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"add\",\"component\":\"business/english/article/add\",\"children\":[],\"createTime\":1646277423000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2099,\"menuType\":\"C\",\"perms\":\"english:article:add\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 11:39:03'); INSERT INTO `sys_oper_log` VALUES (10045, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:39:14'); INSERT INTO `sys_oper_log` VALUES (10046, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:39:15'); INSERT INTO `sys_oper_log` VALUES (10047, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:08:33\"}}', 0, '', '2022-03-03 11:39:28'); INSERT INTO `sys_oper_log` VALUES (10048, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646276912000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:39:28'); INSERT INTO `sys_oper_log` VALUES (10049, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:33:47\"}}', 0, '', '2022-03-03 11:40:12'); INSERT INTO `sys_oper_log` VALUES (10050, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646278427000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:40:12'); INSERT INTO `sys_oper_log` VALUES (10051, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:33:47\"}}', 0, '', '2022-03-03 11:43:42'); INSERT INTO `sys_oper_log` VALUES (10052, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646278427000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:43:42'); INSERT INTO `sys_oper_log` VALUES (10053, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:33:47\"}}', 0, '', '2022-03-03 11:45:45'); INSERT INTO `sys_oper_log` VALUES (10054, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646278427000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:45:45'); INSERT INTO `sys_oper_log` VALUES (10055, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-03-03 11:51:21'); INSERT INTO `sys_oper_log` VALUES (10056, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/453d4b05-88cb-47b5-848d-50b15b12c21c.jpeg\",\"code\":200}', 0, NULL, '2022-03-03 11:51:24'); INSERT INTO `sys_oper_log` VALUES (10057, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:33:47\"}}', 0, '', '2022-03-03 11:54:17'); INSERT INTO `sys_oper_log` VALUES (10058, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646278427000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:54:17'); INSERT INTO `sys_oper_log` VALUES (10059, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646278427000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:54:47'); INSERT INTO `sys_oper_log` VALUES (10060, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:33:47\"}}', 0, '', '2022-03-03 11:54:47'); INSERT INTO `sys_oper_log` VALUES (10061, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:33:47\"}}', 0, '', '2022-03-03 11:55:26'); INSERT INTO `sys_oper_log` VALUES (10062, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646278427000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:55:26'); INSERT INTO `sys_oper_log` VALUES (10063, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646278427000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:56:11'); INSERT INTO `sys_oper_log` VALUES (10064, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:33:47\"}}', 0, '', '2022-03-03 11:56:12'); INSERT INTO `sys_oper_log` VALUES (10065, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1646278427000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 11:59:30'); INSERT INTO `sys_oper_log` VALUES (10066, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 11:33:47\"}}', 0, '', '2022-03-03 11:59:30'); INSERT INTO `sys_oper_log` VALUES (10067, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646285633000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 13:41:15'); INSERT INTO `sys_oper_log` VALUES (10068, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 13:33:53\"}}', 0, '', '2022-03-03 13:41:15'); INSERT INTO `sys_oper_log` VALUES (10069, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646285633000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 13:55:52'); INSERT INTO `sys_oper_log` VALUES (10070, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 13:33:53\"}}', 0, '', '2022-03-03 13:55:52'); INSERT INTO `sys_oper_log` VALUES (10071, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"Content content\",\"titleEnglish\":\"The title\",\"createTime\":1646286990580,\"titleChinese\":\"标题\",\"createUser\":\"admin\",\"updateTime\":1646286990584,\"id\":1499262420185669633,\"contentChinese\":\"内容内容内容\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 13:56:30'); INSERT INTO `sys_oper_log` VALUES (10072, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 13:33:53\"}}', 0, '', '2022-03-03 13:58:14'); INSERT INTO `sys_oper_log` VALUES (10073, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646285633000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 13:58:14'); INSERT INTO `sys_oper_log` VALUES (10074, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646285633000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 13:58:40'); INSERT INTO `sys_oper_log` VALUES (10075, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 13:33:53\"}}', 0, '', '2022-03-03 13:58:40'); INSERT INTO `sys_oper_log` VALUES (10076, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646285633000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 13:59:38'); INSERT INTO `sys_oper_log` VALUES (10077, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 13:33:53\"}}', 0, '', '2022-03-03 13:59:38'); INSERT INTO `sys_oper_log` VALUES (10078, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"ah\",\"titleEnglish\":\"ah\",\"createTime\":1646287183194,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/53a5b1a4-12d2-40fe-9451-643460b0d17c.jpg\",\"titleChinese\":\"啊\",\"createUser\":\"admin\",\"updateTime\":1646287183194,\"id\":1499263228037980161,\"contentChinese\":\"啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 13:59:43'); INSERT INTO `sys_oper_log` VALUES (10079, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"The ao\",\"titleEnglish\":\"aspen\",\"createTime\":1646287356181,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/f777c782-a528-43f3-93aa-010da5f5295b.jfif\",\"titleChinese\":\"阿斯\",\"createUser\":\"admin\",\"updateTime\":1646287356181,\"id\":1499263953631600641,\"contentChinese\":\"嗷嗷的\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 14:02:36'); INSERT INTO `sys_oper_log` VALUES (10080, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646285633000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:03:54'); INSERT INTO `sys_oper_log` VALUES (10081, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 13:33:53\"}}', 0, '', '2022-03-03 14:03:54'); INSERT INTO `sys_oper_log` VALUES (10082, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 13:33:53\"}}', 0, '', '2022-03-03 14:05:28'); INSERT INTO `sys_oper_log` VALUES (10083, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646285633000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:05:28'); INSERT INTO `sys_oper_log` VALUES (10084, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:03:46\"}}', 0, '', '2022-03-03 14:06:18'); INSERT INTO `sys_oper_log` VALUES (10085, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646287578543,\"humidity\":\"56\",\"id\":1499264886243475458,\"province\":\"江西\",\"reporttime\":1646287426000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:06:18'); INSERT INTO `sys_oper_log` VALUES (10086, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"icon_tongxuelu\",\"orderNum\":\"1\",\"menuName\":\"文章详情\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"details\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 14:09:16'); INSERT INTO `sys_oper_log` VALUES (10087, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"icon_tongxuelu\",\"orderNum\":\"1\",\"menuName\":\"文章详情\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"details\",\"component\":\"business/english/article/details\",\"children\":[],\"createTime\":1646287756000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2100,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 14:09:26'); INSERT INTO `sys_oper_log` VALUES (10088, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"icon_tongxuelu\",\"orderNum\":\"1\",\"menuName\":\"文章详情\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"details\",\"component\":\"business/english/article/details\",\"children\":[],\"createTime\":1646287756000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2100,\"menuType\":\"C\",\"perms\":\"english:article:query\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 14:09:43'); INSERT INTO `sys_oper_log` VALUES (10089, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:03:46\"}}', 0, '', '2022-03-03 14:12:57'); INSERT INTO `sys_oper_log` VALUES (10090, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646287578543,\"humidity\":\"56\",\"id\":1499264886243475458,\"province\":\"江西\",\"reporttime\":1646287426000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:12:57'); INSERT INTO `sys_oper_log` VALUES (10091, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646287578543,\"humidity\":\"56\",\"id\":1499264886243475458,\"province\":\"江西\",\"reporttime\":1646287426000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:13:31'); INSERT INTO `sys_oper_log` VALUES (10092, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:03:46\"}}', 0, '', '2022-03-03 14:13:31'); INSERT INTO `sys_oper_log` VALUES (10093, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646287578543,\"humidity\":\"56\",\"id\":1499264886243475458,\"province\":\"江西\",\"reporttime\":1646287426000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:13:38'); INSERT INTO `sys_oper_log` VALUES (10094, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:03:46\"}}', 0, '', '2022-03-03 14:13:39'); INSERT INTO `sys_oper_log` VALUES (10095, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:03:46\"}}', 0, '', '2022-03-03 14:20:14'); INSERT INTO `sys_oper_log` VALUES (10096, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646287426000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:20:14'); INSERT INTO `sys_oper_log` VALUES (10097, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646287426000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:24:57'); INSERT INTO `sys_oper_log` VALUES (10098, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:03:46\"}}', 0, '', '2022-03-03 14:24:57'); INSERT INTO `sys_oper_log` VALUES (10099, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"ah\",\"titleEnglish\":\"the\",\"createTime\":1646288735303,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/91d780fb-f6ef-4615-b9ec-ff4a629d7bdd.jfif\",\"titleChinese\":\"的\",\"createUser\":\"admin\",\"updateTime\":1646288735303,\"id\":1499269738088521729,\"contentChinese\":\"啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 14:25:35'); INSERT INTO `sys_oper_log` VALUES (10100, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Of all the gin joints in all the towns in all the world, she walks into mine.\",\"createTime\":1646288750172,\"dataId\":3792,\"date\":1591977600000,\"id\":1499269800394899458,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/3f04e6c283416918d5f0237f66c8733f.png\",\"note\":\"世界上有那么多的城镇,城镇中有那么多的酒馆,她却走进了我的。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/ecfec62398cb0698ae408142ef8db75a.mp3\"}}', 0, '', '2022-03-03 14:25:50'); INSERT INTO `sys_oper_log` VALUES (10101, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"避其锐气,击其惰归。——《孙子兵法·军争》\\\"\",\"createTime\":1646288751116,\"id\":1499269804413042690,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-03 14:25:51'); INSERT INTO `sys_oper_log` VALUES (10102, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Maybe life has no meaning, and the best we can hope for is just being nice.\",\"dataId\":3831,\"date\":1595347200000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/dd53655f27bd46653597c5afb2a96e79.png\",\"note\":\"可能生活本来就没什么意义,我们能做到最好的就是友善对待身边的一切。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/e474451fa937d7c0c24215c759a1e7fa.mp3\"}}', 0, '', '2022-03-03 14:25:53'); INSERT INTO `sys_oper_log` VALUES (10103, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你从来不说想我,聊天记录搜索了一下“想你”两个字全都是:“那波你怎么不上啊 你在想你妈呢”\",\"createTime\":1646288755048,\"id\":1499269820900851713,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-03 14:25:55'); INSERT INTO `sys_oper_log` VALUES (10104, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you are not in good control of time or cannot set priorities for different matters, what you do is surely to be rebated.\",\"dataId\":3444,\"date\":1562428800000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-07-07.jpg\",\"note\":\"无法充分掌握时间、区别事情的缓急先后,你所做的一切都大打折扣\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-07-07-day.mp3\"}}', 0, '', '2022-03-03 14:28:30'); INSERT INTO `sys_oper_log` VALUES (10105, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好端端的一个马年,都是说,马上有钱,马到成功,一马当先的,这下好了!让马来西亚搞了个马上消失!\",\"createTime\":1641647440000,\"id\":1479802735735562244,\"source\":\"阿土仔\",\"type\":5}}', 0, '', '2022-03-03 14:28:33'); INSERT INTO `sys_oper_log` VALUES (10106, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You need to believe that something extraordinary is possible. \",\"dataId\":3721,\"date\":1585843200000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9ca66a3e74f5fc8c5603df154aa053ae.png\",\"note\":\"你要去相信,生命中有些特别的东西,是可能存在的。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/ebcd2df6f2c9fe64e4ab1714fb220c83.mp3\"}}', 0, '', '2022-03-03 14:29:40'); INSERT INTO `sys_oper_log` VALUES (10107, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"找对象还是眼光高点好,你总得为,没有人喜欢你找个借口吧。\",\"createTime\":1641647892000,\"id\":1479804629291859985,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-03-03 14:29:42'); INSERT INTO `sys_oper_log` VALUES (10108, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:03:46\"}}', 0, '', '2022-03-03 14:37:40'); INSERT INTO `sys_oper_log` VALUES (10109, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646287426000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:37:40'); INSERT INTO `sys_oper_log` VALUES (10110, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"文章修改\",\"params\":{},\"parentId\":2097,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"english:article:edit\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 14:43:51'); INSERT INTO `sys_oper_log` VALUES (10111, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"2\",\"menuName\":\"文章删除\",\"params\":{},\"parentId\":2097,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"english:article:remove\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 14:44:06'); INSERT INTO `sys_oper_log` VALUES (10112, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:38:35\"}}', 0, '', '2022-03-03 14:48:30'); INSERT INTO `sys_oper_log` VALUES (10113, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646289515000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:48:30'); INSERT INTO `sys_oper_log` VALUES (10114, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646289515000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:49:11'); INSERT INTO `sys_oper_log` VALUES (10115, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:38:35\"}}', 0, '', '2022-03-03 14:49:11'); INSERT INTO `sys_oper_log` VALUES (10116, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:38:35\"}}', 0, '', '2022-03-03 14:51:56'); INSERT INTO `sys_oper_log` VALUES (10117, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646289515000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:51:56'); INSERT INTO `sys_oper_log` VALUES (10118, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499269738088521729', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 14:51:58'); INSERT INTO `sys_oper_log` VALUES (10119, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499263953631600641', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 14:52:10'); INSERT INTO `sys_oper_log` VALUES (10120, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:38:35\"}}', 0, '', '2022-03-03 14:53:15'); INSERT INTO `sys_oper_log` VALUES (10121, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646289515000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:53:15'); INSERT INTO `sys_oper_log` VALUES (10122, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 14:53:18'); INSERT INTO `sys_oper_log` VALUES (10123, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:38:35\"}}', 0, '', '2022-03-03 14:55:03'); INSERT INTO `sys_oper_log` VALUES (10124, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646289515000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:55:03'); INSERT INTO `sys_oper_log` VALUES (10125, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499263228037980161', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 14:55:06'); INSERT INTO `sys_oper_log` VALUES (10126, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646289515000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 14:55:25'); INSERT INTO `sys_oper_log` VALUES (10127, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:38:35\"}}', 0, '', '2022-03-03 14:55:25'); INSERT INTO `sys_oper_log` VALUES (10128, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646289515000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:04:09'); INSERT INTO `sys_oper_log` VALUES (10129, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 14:38:35\"}}', 0, '', '2022-03-03 15:04:09'); INSERT INTO `sys_oper_log` VALUES (10130, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"Three elder brother o\",\"titleEnglish\":\"In The Three Kingdoms kill o\",\"createTime\":1646291324953,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/4e708a5c-3e86-4873-a83f-def6cdeb1d1b.png\",\"titleChinese\":\"阿三国杀\",\"createUser\":\"admin\",\"updateTime\":1646291324955,\"id\":1499280599867920385,\"contentChinese\":\"阿三哥\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:08:45'); INSERT INTO `sys_oper_log` VALUES (10131, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499262420185669633', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:09:02'); INSERT INTO `sys_oper_log` VALUES (10132, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499280599867920385', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:09:05'); INSERT INTO `sys_oper_log` VALUES (10133, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"Are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha\",\"titleEnglish\":\"Are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha are you ok? Ha ha ha ha ha\",\"createTime\":1646291502062,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/83570b83-7466-459a-bedd-9156b6d55944.jfif\",\"titleChinese\":\"你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈\",\"createUser\":\"admin\",\"updateTime\":1646291502062,\"id\":1499281342695936002,\"contentChinese\":\"你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈你还好吗哈哈哈哈哈\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:11:42'); INSERT INTO `sys_oper_log` VALUES (10134, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499282453670596609', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:16:36'); INSERT INTO `sys_oper_log` VALUES (10135, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:18:21'); INSERT INTO `sys_oper_log` VALUES (10136, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646291901288,\"humidity\":\"60\",\"id\":1499283017171091457,\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:18:21'); INSERT INTO `sys_oper_log` VALUES (10137, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499281342695936002', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:18:21'); INSERT INTO `sys_oper_log` VALUES (10138, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"You said right\",\"titleEnglish\":\"This is the title of the test\",\"createTime\":1646292008569,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/6423da7d-0da2-40d0-99ed-347f0175387b.jpg\",\"titleChinese\":\"这是测试的标题哦\",\"createUser\":\"admin\",\"updateTime\":1646292008569,\"id\":1499283467157049345,\"contentChinese\":\"你说对不对啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:20:08'); INSERT INTO `sys_oper_log` VALUES (10139, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646291901288,\"humidity\":\"60\",\"id\":1499283017171091457,\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:22:31'); INSERT INTO `sys_oper_log` VALUES (10140, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:22:31'); INSERT INTO `sys_oper_log` VALUES (10141, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"Laugh die me\",\"titleEnglish\":\"Mew: ahaha ha ha ha\",\"createTime\":1646292163894,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/d2b982a3-1678-46ab-adc0-9bba71421b4d.jfif\",\"titleChinese\":\"啊哈哈哈哈哈\",\"createUser\":\"admin\",\"updateTime\":1646292163894,\"id\":1499284118599569410,\"contentChinese\":\"笑死我了\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:22:43'); INSERT INTO `sys_oper_log` VALUES (10142, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646291901288,\"humidity\":\"60\",\"id\":1499283017171091457,\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:27:03'); INSERT INTO `sys_oper_log` VALUES (10143, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:27:03'); INSERT INTO `sys_oper_log` VALUES (10144, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646291901288,\"humidity\":\"60\",\"id\":1499283017171091457,\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:27:16'); INSERT INTO `sys_oper_log` VALUES (10145, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:27:16'); INSERT INTO `sys_oper_log` VALUES (10146, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:27:26'); INSERT INTO `sys_oper_log` VALUES (10147, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646291901288,\"humidity\":\"60\",\"id\":1499283017171091457,\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:27:26'); INSERT INTO `sys_oper_log` VALUES (10148, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:27:46'); INSERT INTO `sys_oper_log` VALUES (10149, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646291901288,\"humidity\":\"60\",\"id\":1499283017171091457,\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:27:46'); INSERT INTO `sys_oper_log` VALUES (10150, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646291901288,\"humidity\":\"60\",\"id\":1499283017171091457,\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:27:57'); INSERT INTO `sys_oper_log` VALUES (10151, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:27:57'); INSERT INTO `sys_oper_log` VALUES (10152, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:28:20'); INSERT INTO `sys_oper_log` VALUES (10153, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646291901288,\"humidity\":\"60\",\"id\":1499283017171091457,\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:28:20'); INSERT INTO `sys_oper_log` VALUES (10154, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:28:47'); INSERT INTO `sys_oper_log` VALUES (10155, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:28:47'); INSERT INTO `sys_oper_log` VALUES (10156, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:30:22'); INSERT INTO `sys_oper_log` VALUES (10157, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:30:22'); INSERT INTO `sys_oper_log` VALUES (10158, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:30:30'); INSERT INTO `sys_oper_log` VALUES (10159, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:30:30'); INSERT INTO `sys_oper_log` VALUES (10160, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:30:39'); INSERT INTO `sys_oper_log` VALUES (10161, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:30:39'); INSERT INTO `sys_oper_log` VALUES (10162, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:30:49'); INSERT INTO `sys_oper_log` VALUES (10163, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:30:49'); INSERT INTO `sys_oper_log` VALUES (10164, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:31:10'); INSERT INTO `sys_oper_log` VALUES (10165, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:31:11'); INSERT INTO `sys_oper_log` VALUES (10166, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:31:27'); INSERT INTO `sys_oper_log` VALUES (10167, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:31:27'); INSERT INTO `sys_oper_log` VALUES (10168, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:31:50'); INSERT INTO `sys_oper_log` VALUES (10169, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:31:50'); INSERT INTO `sys_oper_log` VALUES (10170, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646291310000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:36:54'); INSERT INTO `sys_oper_log` VALUES (10171, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:08:30\"}}', 0, '', '2022-03-03 15:36:54'); INSERT INTO `sys_oper_log` VALUES (10172, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499283467157049345', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:36:57'); INSERT INTO `sys_oper_log` VALUES (10173, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499284118599569410', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:36:59'); INSERT INTO `sys_oper_log` VALUES (10174, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"The 666\",\"titleEnglish\":\"Good\\\"\",\"createTime\":1646293068726,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/66a2764c-4c85-4cf8-83b6-552c0fb15f86.jpg\",\"titleChinese\":\"好耶\",\"createUser\":\"admin\",\"updateTime\":1646293068727,\"id\":1499287913781919746,\"contentChinese\":\"六六六\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:37:48'); INSERT INTO `sys_oper_log` VALUES (10175, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"ah\",\"titleEnglish\":\"is\",\"createTime\":1646293126247,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/caf305a0-3192-4f0f-a149-943480801ad8.jpg\",\"titleChinese\":\"是\",\"createUser\":\"admin\",\"updateTime\":1646293126247,\"id\":1499288155038285825,\"contentChinese\":\"啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:38:46'); INSERT INTO `sys_oper_log` VALUES (10176, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 15:39:46'); INSERT INTO `sys_oper_log` VALUES (10177, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646293186885,\"humidity\":\"60\",\"id\":1499288409347342338,\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:39:46'); INSERT INTO `sys_oper_log` VALUES (10178, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499288155038285825', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:39:49'); INSERT INTO `sys_oper_log` VALUES (10179, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499287913781919746', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:39:50'); INSERT INTO `sys_oper_log` VALUES (10180, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"comfortable\",\"titleEnglish\":\"ah\",\"createTime\":1646293202100,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/99db6fb7-58fa-4dc5-94d0-3f269f893f5e.jfif\",\"titleChinese\":\"啊\",\"createUser\":\"admin\",\"updateTime\":1646293202100,\"id\":1499288473184632833,\"contentChinese\":\"舒服\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:40:02'); INSERT INTO `sys_oper_log` VALUES (10181, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:50:11'); INSERT INTO `sys_oper_log` VALUES (10182, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 15:50:11'); INSERT INTO `sys_oper_log` VALUES (10183, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:52:23'); INSERT INTO `sys_oper_log` VALUES (10184, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 15:52:23'); INSERT INTO `sys_oper_log` VALUES (10185, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:52:54'); INSERT INTO `sys_oper_log` VALUES (10186, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 15:52:54'); INSERT INTO `sys_oper_log` VALUES (10187, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:54:36'); INSERT INTO `sys_oper_log` VALUES (10188, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 15:54:36'); INSERT INTO `sys_oper_log` VALUES (10189, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 15:56:03'); INSERT INTO `sys_oper_log` VALUES (10190, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:56:03'); INSERT INTO `sys_oper_log` VALUES (10191, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:56:46'); INSERT INTO `sys_oper_log` VALUES (10192, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 15:56:46'); INSERT INTO `sys_oper_log` VALUES (10193, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:56:48'); INSERT INTO `sys_oper_log` VALUES (10194, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 15:56:48'); INSERT INTO `sys_oper_log` VALUES (10195, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"教育培训\",\"orderNum\":\"0\",\"menuName\":\"尚融宝\",\"params\":{},\"parentId\":0,\"isCache\":\"1\",\"path\":\"srb\",\"children\":[],\"createTime\":1646098701000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2088,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 15:56:58'); INSERT INTO `sys_oper_log` VALUES (10196, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 15:57:11'); INSERT INTO `sys_oper_log` VALUES (10197, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 15:57:11'); INSERT INTO `sys_oper_log` VALUES (10198, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"This is a very long oh\",\"titleEnglish\":\"This is a long title\",\"createTime\":1646294281940,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/da699033-afc1-4b86-b268-d7a2eb2651d3.jpg\",\"titleChinese\":\"这是一个很长的标题哦\",\"createUser\":\"admin\",\"updateTime\":1646294281940,\"id\":1499293002357669889,\"contentChinese\":\"这是一个很长的内容哦\\n这是一个很长的内容哦\\n这是一个很长的内容哦这是一个很长的内容哦这是一个很长的内容哦这是一个很长的内容哦\\n这是一个很长的内容哦这是一个很长的内容哦这是一个很长的内容哦\\n这是一个很长的内容哦这是一个很长的内容哦\\n这是一个很长的内容哦\\n这是一个很长的内容哦\\n这是一个很长的内容哦\\n这是一个很长的内容哦这是一个很长的内容哦\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 15:58:01'); INSERT INTO `sys_oper_log` VALUES (10199, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:01:45'); INSERT INTO `sys_oper_log` VALUES (10200, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 16:01:45'); INSERT INTO `sys_oper_log` VALUES (10201, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:02:10'); INSERT INTO `sys_oper_log` VALUES (10202, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 16:02:10'); INSERT INTO `sys_oper_log` VALUES (10203, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":1,\"integralEnd\":1,\"id\":1499294077932441602,\"integralStart\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:02:18'); INSERT INTO `sys_oper_log` VALUES (10204, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":1,\"isDeleted\":false,\"createTime\":\"2022-03-03T16:02:18\",\"integralEnd\":3,\"updateTime\":\"2022-03-03T16:02:18\",\"id\":1499294077932441602,\"integralStart\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:02:22'); INSERT INTO `sys_oper_log` VALUES (10205, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1499294077932441602', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:02:24'); INSERT INTO `sys_oper_log` VALUES (10206, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499288473184632833', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:05:35'); INSERT INTO `sys_oper_log` VALUES (10207, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 16:06:09'); INSERT INTO `sys_oper_log` VALUES (10208, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:06:09'); INSERT INTO `sys_oper_log` VALUES (10209, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 15:34:02\"}}', 0, '', '2022-03-03 16:06:36'); INSERT INTO `sys_oper_log` VALUES (10210, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646292842000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:06:36'); INSERT INTO `sys_oper_log` VALUES (10211, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:25:42'); INSERT INTO `sys_oper_log` VALUES (10212, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:25:42'); INSERT INTO `sys_oper_log` VALUES (10213, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:26:16'); INSERT INTO `sys_oper_log` VALUES (10214, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:26:16'); INSERT INTO `sys_oper_log` VALUES (10215, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:26:25'); INSERT INTO `sys_oper_log` VALUES (10216, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:26:25'); INSERT INTO `sys_oper_log` VALUES (10217, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:28:27'); INSERT INTO `sys_oper_log` VALUES (10218, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:28:27'); INSERT INTO `sys_oper_log` VALUES (10219, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:28:39'); INSERT INTO `sys_oper_log` VALUES (10220, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:28:40'); INSERT INTO `sys_oper_log` VALUES (10221, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:28:52'); INSERT INTO `sys_oper_log` VALUES (10222, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:28:52'); INSERT INTO `sys_oper_log` VALUES (10223, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:29:00'); INSERT INTO `sys_oper_log` VALUES (10224, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:29:00'); INSERT INTO `sys_oper_log` VALUES (10225, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:30:13'); INSERT INTO `sys_oper_log` VALUES (10226, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:30:13'); INSERT INTO `sys_oper_log` VALUES (10227, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:31:19'); INSERT INTO `sys_oper_log` VALUES (10228, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:31:19'); INSERT INTO `sys_oper_log` VALUES (10229, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:31:32'); INSERT INTO `sys_oper_log` VALUES (10230, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:31:32'); INSERT INTO `sys_oper_log` VALUES (10231, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:32:43'); INSERT INTO `sys_oper_log` VALUES (10232, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:32:43'); INSERT INTO `sys_oper_log` VALUES (10233, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":100000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:57\",\"integralEnd\":2001,\"updateTime\":\"2022-03-01T15:24:37\",\"id\":1498555450709495819,\"integralStart\":101}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:32:55'); INSERT INTO `sys_oper_log` VALUES (10234, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":100000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:57\",\"integralEnd\":2000,\"updateTime\":\"2022-03-01T15:24:37\",\"id\":1498555450709495819,\"integralStart\":101}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:33:01'); INSERT INTO `sys_oper_log` VALUES (10235, '融-积分管理', 1, 'com.xjs.srb.core.controller.admin.IntegralGradeController.save()', 'POST', 1, 'admin', '', '/admin/core/integralGrade/save', '127.0.0.1', '', '{\"borrowAmount\":1,\"integralEnd\":1,\"id\":1499301820089143297,\"integralStart\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:33:04'); INSERT INTO `sys_oper_log` VALUES (10236, '融-积分管理', 3, 'com.xjs.srb.core.controller.admin.IntegralGradeController.removeId()', 'DELETE', 1, 'admin', '', '/admin/core/integralGrade/remove/1499301820089143297', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:33:06'); INSERT INTO `sys_oper_log` VALUES (10237, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:34:28'); INSERT INTO `sys_oper_log` VALUES (10238, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:34:28'); INSERT INTO `sys_oper_log` VALUES (10239, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:34:43'); INSERT INTO `sys_oper_log` VALUES (10240, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:34:43'); INSERT INTO `sys_oper_log` VALUES (10241, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"首页图标\",\"orderNum\":\"1\",\"menuName\":\"积分列表\",\"params\":{},\"parentId\":2089,\"isCache\":\"1\",\"path\":\"integralList\",\"component\":\"srb/integral/index\",\"children\":[],\"createTime\":1646099153000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2090,\"menuType\":\"C\",\"perms\":\"srb:integralGrade:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 16:36:26'); INSERT INTO `sys_oper_log` VALUES (10242, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:36:29'); INSERT INTO `sys_oper_log` VALUES (10243, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:36:29'); INSERT INTO `sys_oper_log` VALUES (10244, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:36:33'); INSERT INTO `sys_oper_log` VALUES (10245, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:36:33'); INSERT INTO `sys_oper_log` VALUES (10246, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":50,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:36:40'); INSERT INTO `sys_oper_log` VALUES (10247, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:36:41'); INSERT INTO `sys_oper_log` VALUES (10248, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:36:41'); INSERT INTO `sys_oper_log` VALUES (10249, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:37:06'); INSERT INTO `sys_oper_log` VALUES (10250, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:37:06'); INSERT INTO `sys_oper_log` VALUES (10251, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":50,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:37:09'); INSERT INTO `sys_oper_log` VALUES (10252, '融-积分管理', 2, 'com.xjs.srb.core.controller.admin.IntegralGradeController.updateById()', 'PUT', 1, 'admin', '', '/admin/core/integralGrade/update', '127.0.0.1', '', '{\"borrowAmount\":10000,\"isDeleted\":false,\"createTime\":\"2020-12-08T17:02:29\",\"integralEnd\":50,\"updateTime\":\"2022-03-01T15:24:35\",\"id\":1498555450709494518,\"integralStart\":10}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:37:18'); INSERT INTO `sys_oper_log` VALUES (10253, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_tongzhi\",\"orderNum\":\"1\",\"menuName\":\"文章列表\",\"params\":{},\"parentId\":2098,\"isCache\":\"0\",\"path\":\"articleList\",\"component\":\"business/english/article/index\",\"children\":[],\"createTime\":1646275793000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2097,\"menuType\":\"C\",\"perms\":\"english:article:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 16:38:07'); INSERT INTO `sys_oper_log` VALUES (10254, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"ah\",\"titleEnglish\":\"一个\",\"createTime\":1646296700854,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/059e6a54-d070-4d59-9ecd-66bae041826e.jfif\",\"titleChinese\":\"a \",\"createUser\":\"admin\",\"updateTime\":1646296700854,\"id\":1499303147993169922,\"contentChinese\":\"啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:38:20'); INSERT INTO `sys_oper_log` VALUES (10255, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:39:37'); INSERT INTO `sys_oper_log` VALUES (10256, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:39:37'); INSERT INTO `sys_oper_log` VALUES (10257, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:39:46'); INSERT INTO `sys_oper_log` VALUES (10258, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:39:46'); INSERT INTO `sys_oper_log` VALUES (10259, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:41:42'); INSERT INTO `sys_oper_log` VALUES (10260, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:41:42'); INSERT INTO `sys_oper_log` VALUES (10261, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:43:55'); INSERT INTO `sys_oper_log` VALUES (10262, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:43:55'); INSERT INTO `sys_oper_log` VALUES (10263, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:45:32'); INSERT INTO `sys_oper_log` VALUES (10264, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:45:32'); INSERT INTO `sys_oper_log` VALUES (10265, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:03:48\"}}', 0, '', '2022-03-03 16:46:09'); INSERT INTO `sys_oper_log` VALUES (10266, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1646294628000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:46:09'); INSERT INTO `sys_oper_log` VALUES (10267, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 16:50:02'); INSERT INTO `sys_oper_log` VALUES (10268, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:50:02'); INSERT INTO `sys_oper_log` VALUES (10269, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 16:50:18'); INSERT INTO `sys_oper_log` VALUES (10270, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:50:18'); INSERT INTO `sys_oper_log` VALUES (10271, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:52:31'); INSERT INTO `sys_oper_log` VALUES (10272, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 16:52:31'); INSERT INTO `sys_oper_log` VALUES (10273, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 16:52:51'); INSERT INTO `sys_oper_log` VALUES (10274, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:52:51'); INSERT INTO `sys_oper_log` VALUES (10275, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:53:44'); INSERT INTO `sys_oper_log` VALUES (10276, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 16:53:44'); INSERT INTO `sys_oper_log` VALUES (10277, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 16:56:07'); INSERT INTO `sys_oper_log` VALUES (10278, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:56:07'); INSERT INTO `sys_oper_log` VALUES (10279, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"afa\",\"titleEnglish\":\"Love the dog\",\"createTime\":1646297778195,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"爱狗狗\",\"createUser\":\"admin\",\"updateTime\":1646297778195,\"id\":1499307666684641281,\"contentChinese\":\"阿发\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:56:18'); INSERT INTO `sys_oper_log` VALUES (10280, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 16:58:42'); INSERT INTO `sys_oper_log` VALUES (10281, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 16:58:42'); INSERT INTO `sys_oper_log` VALUES (10282, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"put\",\"titleEnglish\":\"the\",\"createTime\":1646297935885,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/5d3b55db-c372-4d0a-a8bf-15f4155085d6.jpg\",\"titleChinese\":\"的\",\"createUser\":\"admin\",\"updateTime\":1646297935885,\"id\":1499308328084439041,\"contentChinese\":\"放\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 16:58:55'); INSERT INTO `sys_oper_log` VALUES (10283, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:00:06'); INSERT INTO `sys_oper_log` VALUES (10284, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 17:00:06'); INSERT INTO `sys_oper_log` VALUES (10285, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:01:33'); INSERT INTO `sys_oper_log` VALUES (10286, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 17:01:34'); INSERT INTO `sys_oper_log` VALUES (10287, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 17:02:05'); INSERT INTO `sys_oper_log` VALUES (10288, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:02:05'); INSERT INTO `sys_oper_log` VALUES (10289, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:02:30'); INSERT INTO `sys_oper_log` VALUES (10290, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 17:02:30'); INSERT INTO `sys_oper_log` VALUES (10291, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499308328084439041', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 17:02:33'); INSERT INTO `sys_oper_log` VALUES (10292, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 17:05:08'); INSERT INTO `sys_oper_log` VALUES (10293, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:05:08'); INSERT INTO `sys_oper_log` VALUES (10294, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 17:05:37'); INSERT INTO `sys_oper_log` VALUES (10295, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:05:37'); INSERT INTO `sys_oper_log` VALUES (10296, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:06:24'); INSERT INTO `sys_oper_log` VALUES (10297, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 17:06:25'); INSERT INTO `sys_oper_log` VALUES (10298, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1646296717000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:07:28'); INSERT INTO `sys_oper_log` VALUES (10299, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 16:38:37\"}}', 0, '', '2022-03-03 17:07:29'); INSERT INTO `sys_oper_log` VALUES (10300, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646298725543,\"humidity\":\"57\",\"id\":1499311640171134978,\"province\":\"江西\",\"reporttime\":1646298517000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:12:05'); INSERT INTO `sys_oper_log` VALUES (10301, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 17:08:38\"}}', 0, '', '2022-03-03 17:12:05'); INSERT INTO `sys_oper_log` VALUES (10302, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 17:08:38\"}}', 0, '', '2022-03-03 17:12:28'); INSERT INTO `sys_oper_log` VALUES (10303, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646298725543,\"humidity\":\"57\",\"id\":1499311640171134978,\"province\":\"江西\",\"reporttime\":1646298517000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:12:28'); INSERT INTO `sys_oper_log` VALUES (10304, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646298725543,\"humidity\":\"57\",\"id\":1499311640171134978,\"province\":\"江西\",\"reporttime\":1646298517000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:13:05'); INSERT INTO `sys_oper_log` VALUES (10305, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 17:08:38\"}}', 0, '', '2022-03-03 17:13:05'); INSERT INTO `sys_oper_log` VALUES (10306, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646298725543,\"humidity\":\"57\",\"id\":1499311640171134978,\"province\":\"江西\",\"reporttime\":1646298517000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:14:58'); INSERT INTO `sys_oper_log` VALUES (10307, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 17:08:38\"}}', 0, '', '2022-03-03 17:14:58'); INSERT INTO `sys_oper_log` VALUES (10308, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646298725543,\"humidity\":\"57\",\"id\":1499311640171134978,\"province\":\"江西\",\"reporttime\":1646298517000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:16:34'); INSERT INTO `sys_oper_log` VALUES (10309, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 17:08:38\"}}', 0, '', '2022-03-03 17:16:35'); INSERT INTO `sys_oper_log` VALUES (10310, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"Afa?\",\"titleEnglish\":\"Love the dog\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"爱狗狗\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"阿发啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 17:21:18'); INSERT INTO `sys_oper_log` VALUES (10311, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"Afa ah\",\"titleEnglish\":\"Love the dog\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"爱狗狗\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"阿发啊的\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 17:21:21'); INSERT INTO `sys_oper_log` VALUES (10312, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 17:08:38\"}}', 0, '', '2022-03-03 17:22:20'); INSERT INTO `sys_oper_log` VALUES (10313, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1646298517000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:22:20'); INSERT INTO `sys_oper_log` VALUES (10314, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"Afa of aspen\",\"titleEnglish\":\"Love the dog\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"爱狗狗\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"阿发啊的阿斯放\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 17:22:22'); INSERT INTO `sys_oper_log` VALUES (10315, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"Afa of aspen\",\"titleEnglish\":\"Love the dog\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"爱狗狗\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"阿发啊的阿斯放\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 17:22:28'); INSERT INTO `sys_oper_log` VALUES (10316, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"Afa of aspen\",\"titleEnglish\":\"Like a dog\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"爱狗狗啊\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"阿发啊的阿斯放\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 17:22:32'); INSERT INTO `sys_oper_log` VALUES (10317, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"Afa of aspen\",\"titleEnglish\":\"Let love dogs\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"爱狗狗啊阿斯放\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"阿发啊的阿斯放\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 17:22:45'); INSERT INTO `sys_oper_log` VALUES (10318, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"I am a good man\",\"titleEnglish\":\"I am a good man\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"我是好人啊\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"我是好人啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 17:23:17'); INSERT INTO `sys_oper_log` VALUES (10319, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1646298517000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:32:00'); INSERT INTO `sys_oper_log` VALUES (10320, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 17:08:38\"}}', 0, '', '2022-03-03 17:32:00'); INSERT INTO `sys_oper_log` VALUES (10321, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 17:33:51\"}}', 0, '', '2022-03-03 17:34:52'); INSERT INTO `sys_oper_log` VALUES (10322, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646300092105,\"humidity\":\"59\",\"id\":1499317371960180738,\"province\":\"江西\",\"reporttime\":1646300031000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 17:34:52'); INSERT INTO `sys_oper_log` VALUES (10323, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"In!\",\"titleEnglish\":\"一个\",\"createTime\":1646296701000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/059e6a54-d070-4d59-9ecd-66bae041826e.jfif\",\"titleChinese\":\"a \",\"createUser\":\"admin\",\"updateTime\":1646296701000,\"id\":1499303147993169922,\"contentChinese\":\"啊安安\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 17:35:31'); INSERT INTO `sys_oper_log` VALUES (10324, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"I am a good man ah assad\",\"titleEnglish\":\"I am a good man\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"我是好人啊\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"我是好人啊阿萨德\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 17:36:19'); INSERT INTO `sys_oper_log` VALUES (10325, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 18:03:48\"}}', 0, '', '2022-03-03 18:04:53'); INSERT INTO `sys_oper_log` VALUES (10326, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646301894121,\"humidity\":\"63\",\"id\":1499324930174156802,\"province\":\"江西\",\"reporttime\":1646301828000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 18:04:54'); INSERT INTO `sys_oper_log` VALUES (10327, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499303147993169922', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:05:20'); INSERT INTO `sys_oper_log` VALUES (10328, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499293002357669889', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:05:23'); INSERT INTO `sys_oper_log` VALUES (10329, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499293221820432385', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:05:25'); INSERT INTO `sys_oper_log` VALUES (10330, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"I am a good man Mr Assad\",\"titleEnglish\":\"I am a good man\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"我是好人啊\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"我是好人啊阿萨德啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:06:18'); INSERT INTO `sys_oper_log` VALUES (10331, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"I am a good man Mr Assad\",\"titleEnglish\":\"I am a good man\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"我是好人啊\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"我是好人啊阿萨德啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:06:50'); INSERT INTO `sys_oper_log` VALUES (10332, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"I am a good man Mr Assad\",\"titleEnglish\":\"I am a good man\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/105bd965-9f60-47ce-be6f-e69ec9856a3d.jfif\",\"titleChinese\":\"我是好人啊\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"我是好人啊阿萨德啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:08:38'); INSERT INTO `sys_oper_log` VALUES (10333, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646301894121,\"humidity\":\"63\",\"id\":1499324930174156802,\"province\":\"江西\",\"reporttime\":1646301828000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 18:10:52'); INSERT INTO `sys_oper_log` VALUES (10334, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 18:03:48\"}}', 0, '', '2022-03-03 18:10:53'); INSERT INTO `sys_oper_log` VALUES (10335, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 18:03:48\"}}', 0, '', '2022-03-03 18:13:44'); INSERT INTO `sys_oper_log` VALUES (10336, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646301894121,\"humidity\":\"63\",\"id\":1499324930174156802,\"province\":\"江西\",\"reporttime\":1646301828000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 18:13:44'); INSERT INTO `sys_oper_log` VALUES (10337, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 18:03:48\"}}', 0, '', '2022-03-03 18:17:24'); INSERT INTO `sys_oper_log` VALUES (10338, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1646301828000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 18:17:24'); INSERT INTO `sys_oper_log` VALUES (10339, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"I am a good man Mr Assad\",\"titleEnglish\":\"I am a good man\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/36dcbc9b-66ef-47e7-865f-459fd2ccc493.jpg\",\"titleChinese\":\"我是好人啊\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"我是好人啊阿萨德啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:18:00'); INSERT INTO `sys_oper_log` VALUES (10340, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"I am a good man Mr Assad\",\"titleEnglish\":\"I am a good man\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/fd92b010-52a7-4bac-b335-f5b7e89cfb9a.jpg\",\"titleChinese\":\"我是好人啊\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"我是好人啊阿萨德啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:18:35'); INSERT INTO `sys_oper_log` VALUES (10341, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"I am a good man ah ah assad\",\"titleEnglish\":\"I am a good man\",\"createTime\":1646297778000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/fd92b010-52a7-4bac-b335-f5b7e89cfb9a.jpg\",\"titleChinese\":\"我是好人啊\",\"createUser\":\"admin\",\"updateTime\":1646297778000,\"id\":1499307666684641281,\"contentChinese\":\"我是好人啊阿萨德啊的\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:19:05'); INSERT INTO `sys_oper_log` VALUES (10342, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1646301828000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 18:19:24'); INSERT INTO `sys_oper_log` VALUES (10343, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 18:03:48\"}}', 0, '', '2022-03-03 18:19:24'); INSERT INTO `sys_oper_log` VALUES (10344, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/244780a8-c9f0-42b9-af89-86a4251159c0.jpeg\",\"code\":200}', 0, NULL, '2022-03-03 18:19:33'); INSERT INTO `sys_oper_log` VALUES (10345, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1646301828000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 18:19:36'); INSERT INTO `sys_oper_log` VALUES (10346, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 18:03:48\"}}', 0, '', '2022-03-03 18:19:36'); INSERT INTO `sys_oper_log` VALUES (10347, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1646301828000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 18:32:07'); INSERT INTO `sys_oper_log` VALUES (10348, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 18:03:48\"}}', 0, '', '2022-03-03 18:32:07'); INSERT INTO `sys_oper_log` VALUES (10349, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499307666684641281', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:32:13'); INSERT INTO `sys_oper_log` VALUES (10350, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"Good?\",\"titleEnglish\":\"Good?\",\"createTime\":1646303622297,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/399c42d9-8050-4a2b-837c-8f55c98b4a83.jfif\",\"titleChinese\":\"好的呢\",\"createUser\":\"admin\",\"updateTime\":1646303622298,\"id\":1499332178669600770,\"contentChinese\":\"好的呢\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:33:42'); INSERT INTO `sys_oper_log` VALUES (10351, '英语文章', 2, 'com.xjs.article.controller.EnglishArticleController.edit()', 'PUT', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"condition\":\"\",\"contentEnglish\":\"Ah ok?\",\"titleEnglish\":\"Good?\",\"createTime\":1646303622000,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/399c42d9-8050-4a2b-837c-8f55c98b4a83.jfif\",\"titleChinese\":\"好的呢\",\"createUser\":\"admin\",\"updateTime\":1646303622000,\"id\":1499332178669600770,\"contentChinese\":\"好的呢啊\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:33:48'); INSERT INTO `sys_oper_log` VALUES (10352, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499332178669600770', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:34:03'); INSERT INTO `sys_oper_log` VALUES (10353, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1646301828000,\"temperature\":\"18\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 18:36:18'); INSERT INTO `sys_oper_log` VALUES (10354, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 18:03:48\"}}', 0, '', '2022-03-03 18:36:19'); INSERT INTO `sys_oper_log` VALUES (10355, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"test\",\"titleEnglish\":\"test\",\"createTime\":1646303814431,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/9b0a205c-8137-4c85-b047-7fb82ae093bf.png\",\"titleChinese\":\"测试\",\"createUser\":\"admin\",\"updateTime\":1646303814431,\"id\":1499332984533811202,\"contentChinese\":\"测试\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 18:36:54'); INSERT INTO `sys_oper_log` VALUES (10356, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1646311116000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 20:52:56'); INSERT INTO `sys_oper_log` VALUES (10357, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 20:38:36\"}}', 0, '', '2022-03-03 20:52:56'); INSERT INTO `sys_oper_log` VALUES (10358, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"248KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraykqqpj31c00u0tgk.jpg\"},{\"imageFileLength\":\"159KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut46lgwnj31hc0u0tcs.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut548th5j31hc0u0q7h.jpg\"},{\"imageFileLength\":\"264KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicps31yj31920u0wlm.jpg\"},{\"imageFileLength\":\"292KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gtro7oyj31hc0u07wh.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaukhhbj31hc0u041p.jpg\"},{\"imageFileLength\":\"208KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5gw775j31hc0u0tek.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpk4ecfj31c00u0qe1.jpg\"},{\"imageFileLength\":\"150KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8mlz56j31c00u0gpn.jpg\"},{\"imageFileLength\":\"195KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8oxyttj31hc0u0jwh.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-03 20:53:04'); INSERT INTO `sys_oper_log` VALUES (10359, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1urspa4abj31c00u0gx7.jpg\"},{\"imageFileLength\":\"151KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbaftwfj31c00u0aej.jpg\"},{\"imageFileLength\":\"190KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf8wk74j31c00u0gr8.jpg\"},{\"imageFileLength\":\"104KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut58hmjgj31c00u0acq.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1619x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5tsahaj318z0u0k5k.jpg\"},{\"imageFileLength\":\"293KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvwato6j31hc0u0qhw.jpg\"},{\"imageFileLength\":\"270KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqflo7zqj31hc0u0qb8.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28gqumw0rj31c00u0e31.jpg\"},{\"imageFileLength\":\"215KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursidbzxj31c00u0gyo.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usfc9bvjj31c00u0q83.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-03 20:53:29'); INSERT INTO `sys_oper_log` VALUES (10360, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"210KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us99ihw4j31hc0u00y8.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8s0279j31c00u0gpl.jpg\"},{\"imageFileLength\":\"162KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1usrl6vysj31c00u0k6p.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqf2n29xj31c00u0q9f.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbez1yrj31c00u0tcc.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbex3o5j31c00u042s.jpg\"},{\"imageFileLength\":\"127KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utaqvhbwj31c00u077r.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursn3l8wj31c00u0zw9.jpg\"},{\"imageFileLength\":\"138KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt52hal3j31c00u0jxn.jpg\"},{\"imageFileLength\":\"149KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8i6287j31c00u0gpp.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-03 20:53:45'); INSERT INTO `sys_oper_log` VALUES (10361, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"教育培训\",\"orderNum\":\"0\",\"menuName\":\"尚融宝\",\"params\":{},\"parentId\":0,\"isCache\":\"1\",\"path\":\"srb\",\"children\":[],\"createTime\":1646098701000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2088,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-03 21:34:59'); INSERT INTO `sys_oper_log` VALUES (10362, '英语文章', 3, 'com.xjs.article.controller.EnglishArticleController.remove()', 'DELETE', 1, 'admin', '', '/article/1499332984533811202', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-03 21:37:49'); INSERT INTO `sys_oper_log` VALUES (10363, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 22:03:48\"}}', 0, '', '2022-03-03 22:13:48'); INSERT INTO `sys_oper_log` VALUES (10364, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646316828186,\"humidity\":\"73\",\"id\":1499387568182722562,\"province\":\"江西\",\"reporttime\":1646316228000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 22:13:48'); INSERT INTO `sys_oper_log` VALUES (10365, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一个老头去看病,大夫详细地检查老头的身体后说:“亲爱的,你真健康,你可以活到90岁!”“我已经90岁了!”老头大喊。“您瞧,我给你算得多准!”\",\"createTime\":1646316831906,\"id\":1499387583743590401,\"source\":\"笑话大全\",\"type\":10}}', 0, '', '2022-03-03 22:13:51'); INSERT INTO `sys_oper_log` VALUES (10366, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Give a man a fish, and you feed him for a day. Teach a man to fish, and you get rid of him on the weekends.\",\"dataId\":3559,\"date\":1572192000000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-10-28.jpg\",\"note\":\"给他一条鱼,你可以喂他一天;教他钓鱼,他周末就不会再来缠你了。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-10-28-day.mp3\"}}', 0, '', '2022-03-03 22:13:52'); INSERT INTO `sys_oper_log` VALUES (10367, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The deepest principle in human nature is the craving to be appreciated.\",\"dataId\":4091,\"date\":1617811200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/862be4187487f8ec9d0f031bb848149f.png\",\"note\":\"人性中最深刻的本能就是对被欣赏的渴望。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/46d52422295d48414dca1f17acc18b63.mp3\"}}', 0, '', '2022-03-03 22:13:54'); INSERT INTO `sys_oper_log` VALUES (10368, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"输了不感到悔恨的人,没资格当游戏玩家,不过正因为如此,才会第一次觉得快乐。\\\"\",\"createTime\":1646316834597,\"id\":1499387595038851073,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-03 22:13:54'); INSERT INTO `sys_oper_log` VALUES (10369, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646316841335,\"en\":\"A good shift may serve long,but it will not serve ever.\",\"id\":1499387623312654338,\"zh\":\"好的推诿之词或许长期有用,但不会永远有用。\"}}', 0, '', '2022-03-03 22:14:01'); INSERT INTO `sys_oper_log` VALUES (10370, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"刚才和我哥们去歌厅唱歌,我哥们是富二代!他领了一个美女一起去玩,我负责点歌,他俩唱,那个女的真他妈的烦,很牛的那种,让我点歌“给来个适合我唱的歌,我啥歌都会唱!!”真他妈的来气。后来我点了一首《小三》。\",\"createTime\":1646317192384,\"id\":1499389095735656449,\"source\":\"笑话大全\",\"type\":10}}', 0, '', '2022-03-03 22:19:52'); INSERT INTO `sys_oper_log` VALUES (10371, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Love is a game. Easy to start. Hard to finish.\",\"createTime\":1646317192617,\"dataId\":4228,\"date\":1629648000000,\"id\":1499389096704540674,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4a47203dbbdb63c149a3b40e8df0fb87.png\",\"note\":\"爱情是一场游戏。开始很容易,结束很难。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/cb5b5f49dd8260a4782ce3829c3e6172.mp3\"}}', 0, '', '2022-03-03 22:19:52'); INSERT INTO `sys_oper_log` VALUES (10372, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"去年9月1日,江西省人民政府第75次、、\\n常务会议审议通过《江西省消防安全\\n责任制实施办\\n\\n\\n法》(以下简称《办法》),并于同年11月1日起施行。\\n\\n\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":59,\"errorCode\":0,\"transResult\":[{\"dst\":\"Last year on September 1, in jiangxi province people\'s government for the 75th time,,,\",\"src\":\"去年9月1日,江西省人民政府第75次、、\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-03 22:20:09'); INSERT INTO `sys_oper_log` VALUES (10373, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"去年9月1日,江西省人民政府第75次、、\\n常务会议审议通过《江西省消防安全\\n责任制实施办\\n\\n\\n法》(以下简称《办法》),并于同年11月1日起施行。\\n\\n\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"Last year on September 1, in jiangxi province people\'s government for the 75th time,,,\",\"src\":\"去年9月1日,江西省人民政府第75次、、\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-03 22:26:44'); INSERT INTO `sys_oper_log` VALUES (10374, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"去年9月1日,江西省人民政府第75次、、\\n常务会议审议通过《江西省消防安全\\n责任制实施办\\n\\n\\n法》(以下简称《办法》),并于同年11月1日起施行。\\n\\n\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":3,\"errorCode\":0,\"transResult\":[{\"dst\":\"Last year on September 1, in jiangxi province people\'s government for the 75th time,,,\",\"src\":\"去年9月1日,江西省人民政府第75次、、\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-03 23:09:11'); INSERT INTO `sys_oper_log` VALUES (10375, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"去年9月1日,江西省人民政府第75次、、\\n常务会议审议通过《江西省消防安全\\n责任制实施办\\n\\n\\n法》(以下简称《办法》),并于同年11月1日起施行。\\n\\n\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":2,\"errorCode\":0,\"transResult\":[{\"dst\":\"Last year on September 1, in jiangxi province people\'s government for the 75th time,,,\",\"src\":\"去年9月1日,江西省人民政府第75次、、\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-03 23:09:12'); INSERT INTO `sys_oper_log` VALUES (10376, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you don\'t make a choice, the choice makes you.\",\"createTime\":1646320171435,\"dataId\":3884,\"date\":1599926400000,\"id\":1499401590747627521,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/41d8954e2bd91c7ec573d814f1abbb08.png\",\"note\":\"你不主导命运,就会被命运主导。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/8ee182af81df42cd2c8fe44c3f62c15b.mp3\"}}', 0, '', '2022-03-03 23:09:31'); INSERT INTO `sys_oper_log` VALUES (10377, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 23:08:32\"}}', 0, '', '2022-03-03 23:09:31'); INSERT INTO `sys_oper_log` VALUES (10378, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646320171456,\"humidity\":\"90\",\"id\":1499401590873456641,\"province\":\"江西\",\"reporttime\":1646320112000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 23:09:31'); INSERT INTO `sys_oper_log` VALUES (10379, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You never know how strong you are until being strong is the only choice you have. 当坚强成为你唯一的选择,你才知道自己可以有多坚强。\",\"createTime\":1646320171721,\"id\":1499401591976558594,\"source\":\"柠乐\",\"type\":5}}', 0, '', '2022-03-03 23:09:31'); INSERT INTO `sys_oper_log` VALUES (10380, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"去年9月1日,\\n江西省人民政府第75次常务会议审\\n议通过《江西省消防安全责任制实\\n施办法》(以下简称《办法》),并于同年11月1日起施行。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":43,\"errorCode\":0,\"transResult\":[{\"dst\":\"Last year on September 1,\",\"src\":\"去年9月1日,\"},{\"dst\":\"Jiangxi province people\'s government of the 75th executive meeting of review\",\"src\":\"江西省人民政府第75次常务会议审\"},{\"dst\":\"Talk through the fire safety responsibility system in jiangxi province\",\"src\":\"议通过《江西省消防安全责任制实\"},{\"dst\":\"Method \\\"(hereinafter referred to as the\\\" method \\\"), effective as of November 1, and in the same year.\",\"src\":\"施办法》(以下简称《办法》),并于同年11月1日起施行。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-03 23:09:49'); INSERT INTO `sys_oper_log` VALUES (10381, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"去年9月1日,\\n江西省人民政府第75次常务会议审\\n议通过《江西省消防安全责任制实\\n施办法》(以下简称《办法》),并于同年11月1日起施行。\\n好的\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":11,\"errorCode\":0,\"transResult\":[{\"dst\":\"Last year on September 1,\",\"src\":\"去年9月1日,\"},{\"dst\":\"Jiangxi province people\'s government of the 75th executive meeting of review\",\"src\":\"江西省人民政府第75次常务会议审\"},{\"dst\":\"Talk through the fire safety responsibility system in jiangxi province\",\"src\":\"议通过《江西省消防安全责任制实\"},{\"dst\":\"Method \\\"(hereinafter referred to as the\\\" method \\\"), effective as of November 1, and in the same year.\",\"src\":\"施办法》(以下简称《办法》),并于同年11月1日起施行。\"},{\"dst\":\"good\",\"src\":\"好的\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-03 23:09:57'); INSERT INTO `sys_oper_log` VALUES (10382, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 23:08:32\"}}', 0, '', '2022-03-03 23:12:03'); INSERT INTO `sys_oper_log` VALUES (10383, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646320171456,\"humidity\":\"90\",\"id\":1499401590873456641,\"province\":\"江西\",\"reporttime\":1646320112000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 23:12:03'); INSERT INTO `sys_oper_log` VALUES (10384, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 23:08:32\"}}', 0, '', '2022-03-03 23:15:07'); INSERT INTO `sys_oper_log` VALUES (10385, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646320171456,\"humidity\":\"90\",\"id\":1499401590873456641,\"province\":\"江西\",\"reporttime\":1646320112000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 23:15:07'); INSERT INTO `sys_oper_log` VALUES (10386, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Death smiles at us all. All a man can do is smiles back.\",\"dataId\":3936,\"date\":1604419200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/096b2766b4ccaea35a4f046d2f5aece1.png\",\"note\":\"死神在向我们每个人微笑,我们所能做的只有回敬微笑。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/3ac3578135cb213d8e0fc4f6b154f2e9.mp3\"}}', 0, '', '2022-03-03 23:17:34'); INSERT INTO `sys_oper_log` VALUES (10387, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"秦奋:你们家怎么走啊? \\n相亲者:先坐飞机到昆明,再坐一天的长途车到蒙自,再坐汽车到屏边,再坐一天的拖拉机,一天的牛车就到我们家了。\\n秦奋:要是咱们俩不好,能离婚吗? \\n相亲者:我哥哥会打断你的腿的。\",\"createTime\":1646320654435,\"id\":1499403616604848129,\"source\":\"非诚勿扰\",\"type\":3}}', 0, '', '2022-03-03 23:17:34'); INSERT INTO `sys_oper_log` VALUES (10388, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646320663799,\"en\":\"I\'m not myself today\",\"id\":1499403655888699394,\"zh\":\"我今天心神不宁。\"}}', 0, '', '2022-03-03 23:17:43'); INSERT INTO `sys_oper_log` VALUES (10389, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I\'m not myself today\",\"zh\":\"我今天心神不宁。\"}}', 0, '', '2022-03-03 23:17:47'); INSERT INTO `sys_oper_log` VALUES (10390, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你眉目如初,是我最想潜匿的湖\",\"createTime\":1646320672021,\"id\":1499403690344906754,\"source\":\"漂\",\"type\":2}}', 0, '', '2022-03-03 23:17:52'); INSERT INTO `sys_oper_log` VALUES (10391, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A person who won\'t read has no advantage over one who can\'t read. \\u000B\",\"dataId\":4106,\"date\":1619107200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/438547773c759f49f6f36d9404905ef0.png\",\"note\":\"识字却不愿阅读的人,比文盲也好不到哪去。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2f63377b36a609934bc4095b230353ca.mp3\"}}', 0, '', '2022-03-03 23:17:52'); INSERT INTO `sys_oper_log` VALUES (10392, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1646320112000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 23:20:45'); INSERT INTO `sys_oper_log` VALUES (10393, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 23:08:32\"}}', 0, '', '2022-03-03 23:20:46'); INSERT INTO `sys_oper_log` VALUES (10394, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1646320112000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 23:20:50'); INSERT INTO `sys_oper_log` VALUES (10395, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 23:08:32\"}}', 0, '', '2022-03-03 23:20:50'); INSERT INTO `sys_oper_log` VALUES (10396, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 23:08:32\"}}', 0, '', '2022-03-03 23:20:55'); INSERT INTO `sys_oper_log` VALUES (10397, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1646320112000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 23:20:55'); INSERT INTO `sys_oper_log` VALUES (10398, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1646320112000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 23:21:06'); INSERT INTO `sys_oper_log` VALUES (10399, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 23:08:32\"}}', 0, '', '2022-03-03 23:21:07'); INSERT INTO `sys_oper_log` VALUES (10400, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1646320112000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-03 23:22:16'); INSERT INTO `sys_oper_log` VALUES (10401, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-03 23:08:32\"}}', 0, '', '2022-03-03 23:22:16'); INSERT INTO `sys_oper_log` VALUES (10402, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You have to decide whether to trust your own eyes and ears, or what other people say.\",\"createTime\":1646320986161,\"dataId\":3785,\"date\":1591372800000,\"id\":1499405007956148225,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/965f13d20cf77ab2ed292246086b709c.png\",\"note\":\"你需要决定是相信自己的眼睛和耳朵,还是相信别人的话。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f46aa9f5eeb75000e1c4738e6e24fc2c.mp3\"}}', 0, '', '2022-03-03 23:23:06'); INSERT INTO `sys_oper_log` VALUES (10403, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"不会游泳就乖乖不要动,自然就会浮起来了。可是对著快溺死的人来说,是想不到这些的。\\\"\",\"createTime\":1646320986518,\"id\":1499405009466097666,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-03 23:23:06'); INSERT INTO `sys_oper_log` VALUES (10404, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 07:33:54\"}}', 0, '', '2022-03-04 08:33:20'); INSERT INTO `sys_oper_log` VALUES (10405, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646354000933,\"humidity\":\"93\",\"id\":1499543481981493249,\"province\":\"江西\",\"reporttime\":1646350434000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 08:33:20'); INSERT INTO `sys_oper_log` VALUES (10406, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Purpose drives the process by which we become what we are capable of being.\",\"createTime\":1646357041062,\"dataId\":3922,\"date\":1603209600000,\"id\":1499556233160581121,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/89f52dce804ee92b9ee1d1fc79e5a2c2.png\",\"note\":\"目标引领我们成为能够成为的人。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e6e0a5d44ef7c05d3c01071bbd98eacc.mp3\"}}', 0, '', '2022-03-04 09:24:01'); INSERT INTO `sys_oper_log` VALUES (10407, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"熊孩子:爸,我长大的要是有钱了就买驾飞机天天开飞机送你上班。他爸顿时骂到:你都有钱买飞机了!还让我去上班。老子打死你!\",\"createTime\":1646357041113,\"id\":1499556233420627970,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-04 09:24:01'); INSERT INTO `sys_oper_log` VALUES (10408, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"摧毁\",\"top\":2,\"createTime\":1646357057927,\"englishWord\":\"destroy\",\"isCollect\":1,\"id\":1499556303943737346,\"sort\":0,\"content\":\"destroy\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-04 09:24:17'); INSERT INTO `sys_oper_log` VALUES (10409, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646357060274,\"en\":\"He plays violin just for enjoyment.\",\"id\":1499556313745743874,\"zh\":\" 他拉小提琴只是为了自娱自乐。\"}}', 0, '', '2022-03-04 09:24:20'); INSERT INTO `sys_oper_log` VALUES (10410, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"factory\"}', '', 1, '该词汇已存在!!!!', '2022-03-04 09:24:29'); INSERT INTO `sys_oper_log` VALUES (10411, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Always do your best. What you plant now, you will harvest later.\",\"createTime\":1646361027980,\"dataId\":4069,\"date\":1615910400000,\"id\":1499572955544444931,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/db6ef8e7951478f9c91959d3a4bb6943.png\",\"note\":\"永远全力以赴,今日播下的种子,终会得到丰收。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/b460be20f9317ad4674d5aa0212101a5.mp3\"}}', 0, '', '2022-03-04 10:30:28'); INSERT INTO `sys_oper_log` VALUES (10412, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"假如你把秘密告诉了风,就别怪风把它告诉整片森林。\",\"createTime\":1646361027979,\"id\":1499572955544444930,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-03-04 10:30:28'); INSERT INTO `sys_oper_log` VALUES (10413, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"没有会懂我的伤心 没有会来理会我内心的想法 好累好累 不知道 一直以来为了什么\",\"createTime\":1641705604000,\"id\":1480046693141131276,\"source\":\"真情可贵\",\"type\":5}}', 0, '', '2022-03-04 10:30:34'); INSERT INTO `sys_oper_log` VALUES (10414, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"141KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uq4koypdj31hc0u0ae5.jpg\"},{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq59doq3j31c00u0jwf.jpg\"},{\"imageFileLength\":\"173KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq59gh4cj31c00u079v.jpg\"},{\"imageFileLength\":\"109KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb7u414j31c00u0mzz.jpg\"},{\"imageFileLength\":\"270KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uragmso0j31c00u07cd.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1useqc1z2j31c00u041w.jpg\"},{\"imageFileLength\":\"235KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usezf60sj31c00u045y.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1ursn3l8wj31c00u0zw9.jpg\"},{\"imageFileLength\":\"198KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfe3xypj31c00u0agd.jpg\"},{\"imageFileLength\":\"145KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut4x4g1qj31c00u0adz.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-04 10:31:48'); INSERT INTO `sys_oper_log` VALUES (10415, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年03月04日\",\"holidayName\":\"龙抬头\",\"lunarDate\":\"2022年02月02日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"壬寅虎年 正月初二\"},{\"date\":\"2022年03月05日\",\"holidayName\":\"学雷锋纪念日\",\"lunarDate\":\"2022年02月03日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年03月05日\"},{\"date\":\"2022年03月05日\",\"holidayName\":\"惊蛰\",\"lunarDate\":\"2022年02月03日\",\"lunarHoliday\":true,\"residueDays\":0,\"returnDate\":\"壬寅虎年 正月初三\"},{\"date\":\"2022年03月08日\",\"holidayName\":\"三八妇女节\",\"lunarDate\":\"2022年02月06日\",\"lunarHoliday\":false,\"residueDays\":3,\"returnDate\":\"2022年03月08日\"},{\"date\":\"2022年03月11日\",\"holidayName\":\"国际尊严尊敬日\",\"lunarDate\":\"2022年02月09日\",\"lunarHoliday\":false,\"residueDays\":6,\"returnDate\":\"2022年03月11日\"},{\"date\":\"2022年03月12日\",\"holidayName\":\"植树节\",\"lunarDate\":\"2022年02月10日\",\"lunarHoliday\":false,\"residueDays\":7,\"returnDate\":\"2022年03月12日\"},{\"date\":\"2022年03月14日\",\"holidayName\":\"白色情人节\",\"lunarDate\":\"2022年02月12日\",\"lunarHoliday\":false,\"residueDays\":9,\"returnDate\":\"2022年03月14日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-04 10:31:57'); INSERT INTO `sys_oper_log` VALUES (10416, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 17:08:35\"}}', 0, '', '2022-03-04 17:10:22'); INSERT INTO `sys_oper_log` VALUES (10417, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646385025323,\"humidity\":\"61\",\"id\":1499673607696179201,\"province\":\"江西\",\"reporttime\":1646384915000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 17:10:25'); INSERT INTO `sys_oper_log` VALUES (10418, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我不想死时没有任何疤痕。\",\"createTime\":1646385031452,\"id\":1499673633348542466,\"source\":\"斗阵俱乐部(搏击俱乐部)Fight Club\",\"type\":3}}', 0, '', '2022-03-04 17:10:31'); INSERT INTO `sys_oper_log` VALUES (10419, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Those who can imagine anything, can create the impossible.\",\"createTime\":1646385031738,\"dataId\":3889,\"date\":1600358400000,\"id\":1499673634594250754,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/4b7fd28792a00c54c43e0fb8c32c5a78.png\",\"note\":\"能够想象任何事的人,可以创造不可能。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/654ace6be9d72cfd66fb6f204c422197.mp3\"}}', 0, '', '2022-03-04 17:10:31'); INSERT INTO `sys_oper_log` VALUES (10420, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 22:52:40'); INSERT INTO `sys_oper_log` VALUES (10421, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646405560783,\"humidity\":\"85\",\"id\":1499759739669250049,\"province\":\"江西\",\"reporttime\":1646404713000,\"temperature\":\"17\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 22:52:40'); INSERT INTO `sys_oper_log` VALUES (10422, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 22:55:22'); INSERT INTO `sys_oper_log` VALUES (10423, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646405560783,\"humidity\":\"85\",\"id\":1499759739669250049,\"province\":\"江西\",\"reporttime\":1646404713000,\"temperature\":\"17\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 22:59:18'); INSERT INTO `sys_oper_log` VALUES (10424, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 22:59:19'); INSERT INTO `sys_oper_log` VALUES (10425, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646405560783,\"humidity\":\"85\",\"id\":1499759739669250049,\"province\":\"江西\",\"reporttime\":1646404713000,\"temperature\":\"17\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:01:15'); INSERT INTO `sys_oper_log` VALUES (10426, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 23:01:15'); INSERT INTO `sys_oper_log` VALUES (10427, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 23:03:01'); INSERT INTO `sys_oper_log` VALUES (10428, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646404713000,\"temperature\":\"17\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:03:01'); INSERT INTO `sys_oper_log` VALUES (10429, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646404713000,\"temperature\":\"17\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:03:30'); INSERT INTO `sys_oper_log` VALUES (10430, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 23:03:30'); INSERT INTO `sys_oper_log` VALUES (10431, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646404713000,\"temperature\":\"17\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:07:30'); INSERT INTO `sys_oper_log` VALUES (10432, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 23:07:30'); INSERT INTO `sys_oper_log` VALUES (10433, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646404713000,\"temperature\":\"17\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:09:13'); INSERT INTO `sys_oper_log` VALUES (10434, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 23:09:13'); INSERT INTO `sys_oper_log` VALUES (10435, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646404713000,\"temperature\":\"17\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:10:34'); INSERT INTO `sys_oper_log` VALUES (10436, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 23:10:34'); INSERT INTO `sys_oper_log` VALUES (10437, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646404713000,\"temperature\":\"17\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:12:23'); INSERT INTO `sys_oper_log` VALUES (10438, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 23:12:23'); INSERT INTO `sys_oper_log` VALUES (10439, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 22:38:33\"}}', 0, '', '2022-03-04 23:12:35'); INSERT INTO `sys_oper_log` VALUES (10440, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646404713000,\"temperature\":\"17\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:12:35'); INSERT INTO `sys_oper_log` VALUES (10441, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646407174845,\"humidity\":\"88\",\"id\":1499766509540147201,\"province\":\"江西\",\"reporttime\":1646406515000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:19:34'); INSERT INTO `sys_oper_log` VALUES (10442, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:08:35\"}}', 0, '', '2022-03-04 23:19:35'); INSERT INTO `sys_oper_log` VALUES (10443, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646407174845,\"humidity\":\"88\",\"id\":1499766509540147201,\"province\":\"江西\",\"reporttime\":1646406515000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:28:48'); INSERT INTO `sys_oper_log` VALUES (10444, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:08:35\"}}', 0, '', '2022-03-04 23:28:48'); INSERT INTO `sys_oper_log` VALUES (10445, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1646406515000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:29:38'); INSERT INTO `sys_oper_log` VALUES (10446, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:08:35\"}}', 0, '', '2022-03-04 23:29:38'); INSERT INTO `sys_oper_log` VALUES (10447, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:08:35\"}}', 0, '', '2022-03-04 23:36:15'); INSERT INTO `sys_oper_log` VALUES (10448, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1646406515000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:36:15'); INSERT INTO `sys_oper_log` VALUES (10449, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:08:35\"}}', 0, '', '2022-03-04 23:36:45'); INSERT INTO `sys_oper_log` VALUES (10450, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1646406515000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:36:45'); INSERT INTO `sys_oper_log` VALUES (10451, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1646406515000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:37:32'); INSERT INTO `sys_oper_log` VALUES (10452, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:08:35\"}}', 0, '', '2022-03-04 23:37:32'); INSERT INTO `sys_oper_log` VALUES (10453, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1646406515000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:38:29'); INSERT INTO `sys_oper_log` VALUES (10454, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:08:35\"}}', 0, '', '2022-03-04 23:38:29'); INSERT INTO `sys_oper_log` VALUES (10455, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"88\",\"province\":\"江西\",\"reporttime\":1646406515000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:39:13'); INSERT INTO `sys_oper_log` VALUES (10456, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:08:35\"}}', 0, '', '2022-03-04 23:39:13'); INSERT INTO `sys_oper_log` VALUES (10457, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:33:46\"}}', 0, '', '2022-03-04 23:41:24'); INSERT INTO `sys_oper_log` VALUES (10458, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1646408026000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:41:24'); INSERT INTO `sys_oper_log` VALUES (10459, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1646408026000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:41:48'); INSERT INTO `sys_oper_log` VALUES (10460, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:33:46\"}}', 0, '', '2022-03-04 23:41:48'); INSERT INTO `sys_oper_log` VALUES (10461, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1646408026000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:42:18'); INSERT INTO `sys_oper_log` VALUES (10462, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:33:46\"}}', 0, '', '2022-03-04 23:42:18'); INSERT INTO `sys_oper_log` VALUES (10463, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1646408026000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:42:24'); INSERT INTO `sys_oper_log` VALUES (10464, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:33:46\"}}', 0, '', '2022-03-04 23:42:25'); INSERT INTO `sys_oper_log` VALUES (10465, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1646408026000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:42:42'); INSERT INTO `sys_oper_log` VALUES (10466, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:33:46\"}}', 0, '', '2022-03-04 23:42:42'); INSERT INTO `sys_oper_log` VALUES (10467, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1646408026000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:42:49'); INSERT INTO `sys_oper_log` VALUES (10468, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:33:46\"}}', 0, '', '2022-03-04 23:42:50'); INSERT INTO `sys_oper_log` VALUES (10469, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1646408026000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:42:55'); INSERT INTO `sys_oper_log` VALUES (10470, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:33:46\"}}', 0, '', '2022-03-04 23:42:55'); INSERT INTO `sys_oper_log` VALUES (10471, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:33:46\"}}', 0, '', '2022-03-04 23:43:01'); INSERT INTO `sys_oper_log` VALUES (10472, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1646408026000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:43:01'); INSERT INTO `sys_oper_log` VALUES (10473, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1646408026000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:44:24'); INSERT INTO `sys_oper_log` VALUES (10474, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:33:46\"}}', 0, '', '2022-03-04 23:44:24'); INSERT INTO `sys_oper_log` VALUES (10475, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1646408026000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-04 23:45:48'); INSERT INTO `sys_oper_log` VALUES (10476, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"大雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-04 23:33:46\"}}', 0, '', '2022-03-04 23:45:48'); INSERT INTO `sys_oper_log` VALUES (10477, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 21:33:55\"}}', 0, '', '2022-03-05 21:35:06'); INSERT INTO `sys_oper_log` VALUES (10478, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646487306696,\"humidity\":\"49\",\"id\":1500102606879150082,\"province\":\"江西\",\"reporttime\":1646487235000,\"temperature\":\"19\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 21:35:06'); INSERT INTO `sys_oper_log` VALUES (10479, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646487306696,\"humidity\":\"49\",\"id\":1500102606879150082,\"province\":\"江西\",\"reporttime\":1646487235000,\"temperature\":\"19\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 21:35:07'); INSERT INTO `sys_oper_log` VALUES (10480, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 21:33:55\"}}', 0, '', '2022-03-05 21:35:07'); INSERT INTO `sys_oper_log` VALUES (10481, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 21:33:55\"}}', 0, '', '2022-03-05 21:35:10'); INSERT INTO `sys_oper_log` VALUES (10482, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646487306696,\"humidity\":\"49\",\"id\":1500102606879150082,\"province\":\"江西\",\"reporttime\":1646487235000,\"temperature\":\"19\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 21:35:10'); INSERT INTO `sys_oper_log` VALUES (10483, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"想要成为无论多么悲伤的时候,也能够漂亮微笑的人吧。\",\"createTime\":1646487312805,\"id\":1500102632451821569,\"source\":\"砕月\",\"type\":5}}', 0, '', '2022-03-05 21:35:12'); INSERT INTO `sys_oper_log` VALUES (10484, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A man may fail many times, but he isn\'t a failure until he begins to blame somebody else.\",\"createTime\":1646487313137,\"dataId\":3798,\"date\":1592496000000,\"id\":1500102633844330497,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/1d0b23865ddbe532bef8341acd63a88e.png\",\"note\":\"一个人可能会失败很多次,然而在他开始怪罪于他人之前,他都不是失败者。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/f5bcf356424affbb6eea959ebad5e896.mp3\"}}', 0, '', '2022-03-05 21:35:13'); INSERT INTO `sys_oper_log` VALUES (10485, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646487306696,\"humidity\":\"49\",\"id\":1500102606879150082,\"province\":\"江西\",\"reporttime\":1646487235000,\"temperature\":\"19\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 21:35:19'); INSERT INTO `sys_oper_log` VALUES (10486, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 21:33:55\"}}', 0, '', '2022-03-05 21:35:19'); INSERT INTO `sys_oper_log` VALUES (10487, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646494448861,\"humidity\":\"56\",\"id\":1500132563290378242,\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:34:08'); INSERT INTO `sys_oper_log` VALUES (10488, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:34:08'); INSERT INTO `sys_oper_log` VALUES (10489, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:34:08'); INSERT INTO `sys_oper_log` VALUES (10490, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:34:08'); INSERT INTO `sys_oper_log` VALUES (10491, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:34:17'); INSERT INTO `sys_oper_log` VALUES (10492, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:34:17'); INSERT INTO `sys_oper_log` VALUES (10493, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"嘴巴有时候当成装饰更合适,特别是在你不会说话的时候。\",\"createTime\":1646494467643,\"id\":1500132642017464321,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-03-05 23:34:27'); INSERT INTO `sys_oper_log` VALUES (10494, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"For the things that make you sad, one day, you will laugh out and say it.\",\"createTime\":1646494467648,\"dataId\":4410,\"date\":1645372800000,\"id\":1500132642088767489,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/03e5aaf4d65aebd5244ec40bcf5fef04.png\",\"note\":\"让你难过的事情,总有一天你会笑着说出来。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/53b54c5cfc84cb71b7770ea95dbdf0f3.mp3\"}}', 0, '', '2022-03-05 23:34:27'); INSERT INTO `sys_oper_log` VALUES (10495, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"174KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut546u7uj31c00u00xw.jpg\"},{\"imageFileLength\":\"221KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urac70t1j31hc0u0k01.jpg\"},{\"imageFileLength\":\"197KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9ym93fj31c00u0n68.jpg\"},{\"imageFileLength\":\"309KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dyrb0cej31c00u0wya.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut58vj0jj31c00u0afm.jpg\"},{\"imageFileLength\":\"212KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8x295yj31hc0u0wjx.jpg\"},{\"imageFileLength\":\"132KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfnkzcej31hc0u0wle.jpg\"},{\"imageFileLength\":\"92KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb3skbaj31c00u0mzg.jpg\"},{\"imageFileLength\":\"158KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut59xq5yj31c00u0td1.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7cn9dj31c00u0q8h.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-05 23:34:51'); INSERT INTO `sys_oper_log` VALUES (10496, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:38:00'); INSERT INTO `sys_oper_log` VALUES (10497, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:38:00'); INSERT INTO `sys_oper_log` VALUES (10498, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:39:31'); INSERT INTO `sys_oper_log` VALUES (10499, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:39:31'); INSERT INTO `sys_oper_log` VALUES (10500, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:40:05'); INSERT INTO `sys_oper_log` VALUES (10501, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:40:05'); INSERT INTO `sys_oper_log` VALUES (10502, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:40:10'); INSERT INTO `sys_oper_log` VALUES (10503, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:40:10'); INSERT INTO `sys_oper_log` VALUES (10504, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:40:44'); INSERT INTO `sys_oper_log` VALUES (10505, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:40:44'); INSERT INTO `sys_oper_log` VALUES (10506, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:48:41'); INSERT INTO `sys_oper_log` VALUES (10507, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:48:41'); INSERT INTO `sys_oper_log` VALUES (10508, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:49:19'); INSERT INTO `sys_oper_log` VALUES (10509, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:49:19'); INSERT INTO `sys_oper_log` VALUES (10510, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:51:18'); INSERT INTO `sys_oper_log` VALUES (10511, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:51:18'); INSERT INTO `sys_oper_log` VALUES (10512, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:52:39'); INSERT INTO `sys_oper_log` VALUES (10513, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:52:39'); INSERT INTO `sys_oper_log` VALUES (10514, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:52:50'); INSERT INTO `sys_oper_log` VALUES (10515, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:52:50'); INSERT INTO `sys_oper_log` VALUES (10516, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:53:54'); INSERT INTO `sys_oper_log` VALUES (10517, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:53:54'); INSERT INTO `sys_oper_log` VALUES (10518, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:54:11'); INSERT INTO `sys_oper_log` VALUES (10519, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:54:11'); INSERT INTO `sys_oper_log` VALUES (10520, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:54:27'); INSERT INTO `sys_oper_log` VALUES (10521, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:54:27'); INSERT INTO `sys_oper_log` VALUES (10522, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:54:44'); INSERT INTO `sys_oper_log` VALUES (10523, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:54:44'); INSERT INTO `sys_oper_log` VALUES (10524, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:54:53'); INSERT INTO `sys_oper_log` VALUES (10525, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:54:53'); INSERT INTO `sys_oper_log` VALUES (10526, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:55:36'); INSERT INTO `sys_oper_log` VALUES (10527, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:55:36'); INSERT INTO `sys_oper_log` VALUES (10528, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:56:23'); INSERT INTO `sys_oper_log` VALUES (10529, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:56:23'); INSERT INTO `sys_oper_log` VALUES (10530, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:59:12'); INSERT INTO `sys_oper_log` VALUES (10531, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:59:12'); INSERT INTO `sys_oper_log` VALUES (10532, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1646494422000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-05 23:59:27'); INSERT INTO `sys_oper_log` VALUES (10533, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-05\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-05 23:33:42\"}}', 0, '', '2022-03-05 23:59:27'); INSERT INTO `sys_oper_log` VALUES (10534, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-06 09:08:36\"}}', 0, '', '2022-03-06 09:32:45'); INSERT INTO `sys_oper_log` VALUES (10535, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646530365109,\"humidity\":\"76\",\"id\":1500283206957264897,\"province\":\"江西\",\"reporttime\":1646528916000,\"temperature\":\"11\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-06 09:32:45'); INSERT INTO `sys_oper_log` VALUES (10536, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1646530436000,\"temperature\":\"11\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"5\"}}', 0, '', '2022-03-06 09:50:55'); INSERT INTO `sys_oper_log` VALUES (10537, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-06 09:33:56\"}}', 0, '', '2022-03-06 09:50:55'); INSERT INTO `sys_oper_log` VALUES (10538, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1646530436000,\"temperature\":\"11\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"5\"}}', 0, '', '2022-03-06 09:51:16'); INSERT INTO `sys_oper_log` VALUES (10539, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-06 09:33:56\"}}', 0, '', '2022-03-06 09:51:16'); INSERT INTO `sys_oper_log` VALUES (10540, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1646536108000,\"temperature\":\"11\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-06 11:29:16'); INSERT INTO `sys_oper_log` VALUES (10541, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-06 11:08:28\"}}', 0, '', '2022-03-06 11:29:17'); INSERT INTO `sys_oper_log` VALUES (10542, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-06 11:08:28\"}}', 0, '', '2022-03-06 11:29:26'); INSERT INTO `sys_oper_log` VALUES (10543, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1646536108000,\"temperature\":\"11\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-06 11:29:26'); INSERT INTO `sys_oper_log` VALUES (10544, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"92\",\"province\":\"江西\",\"reporttime\":1646544834000,\"temperature\":\"12\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-03-06 13:44:45'); INSERT INTO `sys_oper_log` VALUES (10545, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-06 13:33:54\"}}', 0, '', '2022-03-06 13:44:45'); INSERT INTO `sys_oper_log` VALUES (10546, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"REPTILE\",\"params\":{},\"jobId\":108,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-06 13:49:27'); INSERT INTO `sys_oper_log` VALUES (10547, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-06 18:42:25'); INSERT INTO `sys_oper_log` VALUES (10548, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人类的悲欢也许并不相通,人类却总一样的行色匆匆。\",\"createTime\":1646563347569,\"id\":1500421545370841090,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-03-06 18:42:27'); INSERT INTO `sys_oper_log` VALUES (10549, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Promise yourself to be so strong that nothing can disturb your peace of mind.\",\"dataId\":4934,\"date\":1596556800000,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/5d1145737ebe003a6dbbdca37f836028.0881c2f19bc7c2f22699ea6caf2521db.jpeg\",\"note\":\"对自己承诺:要强大到任何事情都无法破坏你内心的平和。 \",\"source\":\"Christian D. Larson\",\"tts\":\"\"}}', 0, '', '2022-03-06 18:42:27'); INSERT INTO `sys_oper_log` VALUES (10550, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646564922501,\"humidity\":\"93\",\"id\":1500428151156371457,\"province\":\"江西\",\"reporttime\":1646564916000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-06 19:08:42'); INSERT INTO `sys_oper_log` VALUES (10551, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-06 19:08:36\"}}', 0, '', '2022-03-06 19:08:42'); INSERT INTO `sys_oper_log` VALUES (10552, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Any mind that is capable of a real sorrow is capable of good.\",\"dataId\":4135,\"date\":1621612800000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/24e777ff9e2a41925c9887fa17539dea.png\",\"note\":\"真正悲伤过的人都是心存善念的。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/ffcaec10501553f4679db3344b78c08d.mp3\"}}', 0, '', '2022-03-06 19:08:46'); INSERT INTO `sys_oper_log` VALUES (10553, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我的妈妈呀,我以为是美丽的鬼魂先发,结果是Lover remix先发[惊恐] 还有萌德助力 太甜了啊!!泰勒在见面会结束的时候说see you soon,我们明年中国再会!\",\"createTime\":1646564926312,\"id\":1500428167103115265,\"source\":\"Lover (Remix)\",\"type\":2}}', 0, '', '2022-03-06 19:08:46'); INSERT INTO `sys_oper_log` VALUES (10554, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"两个人在一起,多一点信任,多一点宽容,少一点怀疑,少一点脾气,就可以很幸福很幸福 \",\"createTime\":1646564929213,\"id\":1500428179274985473,\"source\":\"杨爱天\",\"type\":5}}', 0, '', '2022-03-06 19:08:49'); INSERT INTO `sys_oper_log` VALUES (10555, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646581129429,\"humidity\":\"86\",\"id\":1500496127888977921,\"province\":\"江西\",\"reporttime\":1646580833000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-06 23:38:49'); INSERT INTO `sys_oper_log` VALUES (10556, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-06 23:33:53\"}}', 0, '', '2022-03-06 23:38:49'); INSERT INTO `sys_oper_log` VALUES (10557, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646581129429,\"humidity\":\"86\",\"id\":1500496127888977921,\"province\":\"江西\",\"reporttime\":1646580833000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-06 23:39:13'); INSERT INTO `sys_oper_log` VALUES (10558, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-06 23:33:53\"}}', 0, '', '2022-03-06 23:39:13'); INSERT INTO `sys_oper_log` VALUES (10559, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-06 23:33:53\"}}', 0, '', '2022-03-06 23:39:38'); INSERT INTO `sys_oper_log` VALUES (10560, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646581129429,\"humidity\":\"86\",\"id\":1500496127888977921,\"province\":\"江西\",\"reporttime\":1646580833000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-06 23:39:38'); INSERT INTO `sys_oper_log` VALUES (10561, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:20:24'); INSERT INTO `sys_oper_log` VALUES (10562, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:20:24'); INSERT INTO `sys_oper_log` VALUES (10563, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:21:00'); INSERT INTO `sys_oper_log` VALUES (10564, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:21:00'); INSERT INTO `sys_oper_log` VALUES (10565, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The goal is not always meant to be reached, but to serve as a mark for our aim.\",\"dataId\":4075,\"date\":1616428800000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/4165993cde05f0d9cee617a349d49c2b.png\",\"note\":\"目标不一定永远都会达到,但可以当我们瞄准的方向。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/e2fa1b723e425983eedb2173c35a8915.mp3\"}}', 0, '', '2022-03-07 00:26:38'); INSERT INTO `sys_oper_log` VALUES (10566, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天在大街上看见打广告,厂家直销拉菲酒。 我两个月的工资买三瓶。一瓶送领导,一瓶送老丈人,一瓶自己喝。现在工作已经从原来的组长调升为组员了。不知为啥老丈人不准我进他家门了。自己默默的打开拉菲细细的品尝,味道还不错,就是比较甜。最后一看瓶盖,是个铁做的,内测还有字,再来一瓶。\",\"createTime\":1646583998501,\"id\":1500508161661726722,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-07 00:26:38'); INSERT INTO `sys_oper_log` VALUES (10567, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Avoid using cigarettes, alcohol, and drugs as alternatives to being an interesting person.\",\"createTime\":1646584000423,\"dataId\":3779,\"date\":1590854400000,\"id\":1500508169769316353,\"imgurl\":\"https://v1-edu.wpscdn.cn/image/f6772b169edd05a1928c55d331b3eeb7.png\",\"note\":\"拒绝烟、酒、毒,它们不能让你成为一个有趣的人。\",\"source\":\"新版每日一句\",\"tts\":\"https://v1-edu.wpscdn.cn/audio/0cb99fc38c1429887fc60d82d4b00f9d.mp3\"}}', 0, '', '2022-03-07 00:26:40'); INSERT INTO `sys_oper_log` VALUES (10568, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:32:03'); INSERT INTO `sys_oper_log` VALUES (10569, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:32:03'); INSERT INTO `sys_oper_log` VALUES (10570, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:32:07'); INSERT INTO `sys_oper_log` VALUES (10571, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:32:07'); INSERT INTO `sys_oper_log` VALUES (10572, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:32:09'); INSERT INTO `sys_oper_log` VALUES (10573, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:34:53'); INSERT INTO `sys_oper_log` VALUES (10574, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:34:53'); INSERT INTO `sys_oper_log` VALUES (10575, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:34:57'); INSERT INTO `sys_oper_log` VALUES (10576, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:34:57'); INSERT INTO `sys_oper_log` VALUES (10577, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:35:05'); INSERT INTO `sys_oper_log` VALUES (10578, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:35:05'); INSERT INTO `sys_oper_log` VALUES (10579, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:38:29'); INSERT INTO `sys_oper_log` VALUES (10580, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:38:29'); INSERT INTO `sys_oper_log` VALUES (10581, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:38:38'); INSERT INTO `sys_oper_log` VALUES (10582, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:38:38'); INSERT INTO `sys_oper_log` VALUES (10583, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:38:57'); INSERT INTO `sys_oper_log` VALUES (10584, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:38:57'); INSERT INTO `sys_oper_log` VALUES (10585, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:39:19'); INSERT INTO `sys_oper_log` VALUES (10586, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:39:19'); INSERT INTO `sys_oper_log` VALUES (10587, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:39:28'); INSERT INTO `sys_oper_log` VALUES (10588, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:39:28'); INSERT INTO `sys_oper_log` VALUES (10589, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:39:34'); INSERT INTO `sys_oper_log` VALUES (10590, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:39:34'); INSERT INTO `sys_oper_log` VALUES (10591, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:39:39'); INSERT INTO `sys_oper_log` VALUES (10592, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:39:39'); INSERT INTO `sys_oper_log` VALUES (10593, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:40:14'); INSERT INTO `sys_oper_log` VALUES (10594, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:40:14'); INSERT INTO `sys_oper_log` VALUES (10595, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:03:48\"}}', 0, '', '2022-03-07 00:40:20'); INSERT INTO `sys_oper_log` VALUES (10596, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646582628000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:40:20'); INSERT INTO `sys_oper_log` VALUES (10597, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"SYSTEM\",\"params\":{},\"jobId\":102,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-07 00:45:51'); INSERT INTO `sys_oper_log` VALUES (10598, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-06\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-07\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 00:38:30\"}}', 0, '', '2022-03-07 00:47:52'); INSERT INTO `sys_oper_log` VALUES (10599, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1646584710000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 00:47:52'); INSERT INTO `sys_oper_log` VALUES (10600, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-07 08:45:49'); INSERT INTO `sys_oper_log` VALUES (10601, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-03-07 08:45:49'); INSERT INTO `sys_oper_log` VALUES (10602, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Trust is earned.\",\"createTime\":1646613965026,\"dataId\":4363,\"date\":1641312000000,\"id\":1500633850362089473,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/f66f6945a7aa17bf4c959a950fd0c6eb.png\",\"note\":\"信任是要靠行动争取的。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/850dbd13637bdd12bdb0ec20265e1fa5.mp3\"}}', 0, '', '2022-03-07 08:46:05'); INSERT INTO `sys_oper_log` VALUES (10603, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"做我喜欢做的事,爱我想爱的人……\",\"createTime\":1641805325000,\"id\":1480464953419984901,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-03-07 08:46:06'); INSERT INTO `sys_oper_log` VALUES (10604, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 08:38:35\"}}', 0, '', '2022-03-07 08:46:09'); INSERT INTO `sys_oper_log` VALUES (10605, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 08:38:35\"}}', 0, '', '2022-03-07 08:46:11'); INSERT INTO `sys_oper_log` VALUES (10606, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 08:38:35\"}}', 0, '', '2022-03-07 08:46:16'); INSERT INTO `sys_oper_log` VALUES (10607, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-03-07 08:46:18'); INSERT INTO `sys_oper_log` VALUES (10608, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要在你用我的时候来找我,因为我可能不用你了。\",\"createTime\":1641806646000,\"id\":1480470493751635983,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-03-07 08:46:18'); INSERT INTO `sys_oper_log` VALUES (10609, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-03-07 08:46:18'); INSERT INTO `sys_oper_log` VALUES (10610, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 08:38:35\"}}', 0, '', '2022-03-07 08:46:26'); INSERT INTO `sys_oper_log` VALUES (10611, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"好烦你们干嘛说实话 明明好听的曲调 搞得我现在听都把注意力放换气声那了 听得想哭[撇嘴] 口享\",\"createTime\":1646613987341,\"id\":1500633943999926274,\"source\":\"Wonderful U (Demo Version)\",\"type\":2}}', 0, '', '2022-03-07 08:46:27'); INSERT INTO `sys_oper_log` VALUES (10612, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Success is not final, failure is not fatal: it is the courage to continue that counts.\",\"dataId\":3638,\"date\":1578844800000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/975c07112634b225f842f2624b7c75f4.png\",\"note\":\"成功不是终点,失败也不是:重要的是继续前进的勇气。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/941e4972d684dc8c330bef9992bdc8ac.mp3\"}}', 0, '', '2022-03-07 08:46:27'); INSERT INTO `sys_oper_log` VALUES (10613, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1646613515000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 08:46:28'); INSERT INTO `sys_oper_log` VALUES (10614, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"It hurts to remember,but it would be worse to forget.\",\"dataId\":4192,\"date\":1626537600000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/271e8a9de6aee4ee4005d84e7a377ccc.png\",\"note\":\"铭记虽痛苦,但遗忘更糟糕。 \",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/b7135224af703461b208325816b911ff.mp3\"}}', 0, '', '2022-03-07 08:49:04'); INSERT INTO `sys_oper_log` VALUES (10615, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"抓住现实中的一分一秒,胜过想像中的一月一年。\",\"createTime\":1646614144865,\"id\":1500634604699275265,\"source\":\"箴言\",\"type\":4}}', 0, '', '2022-03-07 08:49:04'); INSERT INTO `sys_oper_log` VALUES (10616, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"晴\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 11:33:52\"}}', 0, '', '2022-03-07 11:55:58'); INSERT INTO `sys_oper_log` VALUES (10617, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1646624032000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 11:55:58'); INSERT INTO `sys_oper_log` VALUES (10618, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Some of us may just have to find meaning in the little moments that make up life.\",\"createTime\":1646632090902,\"dataId\":3885,\"date\":1600012800000,\"id\":1500709875804688385,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/bc4332dd9950e8d73d964cd45c0eb4eb.png\",\"note\":\"我们中有些人注定要在日常生活的点滴中寻找生命存在的意义。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/535b3ecf5ee81c2a9df43ae08be9b393.mp3\"}}', 0, '', '2022-03-07 13:48:10'); INSERT INTO `sys_oper_log` VALUES (10619, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"一天我去上学 发现手机忘带了 回家拿到手机一看 妈妈给我发了一条信息 你手机忘带了。\",\"createTime\":1646632092845,\"id\":1500709883966803969,\"source\":\"笑话大全\",\"type\":10}}', 0, '', '2022-03-07 13:48:12'); INSERT INTO `sys_oper_log` VALUES (10620, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"集\",\"top\":2,\"createTime\":1646632098497,\"englishWord\":\"set\",\"isCollect\":1,\"id\":1500709907706658818,\"sort\":0,\"content\":\"set\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 13:48:18'); INSERT INTO `sys_oper_log` VALUES (10621, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646632101016,\"en\":\"You can reach me at 6609823.\",\"id\":1500709918217490433,\"zh\":\" 你打电话6609823就能找到我。\"}}', 0, '', '2022-03-07 13:48:21'); INSERT INTO `sys_oper_log` VALUES (10622, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"人\",\"top\":2,\"createTime\":1646632128697,\"englishWord\":\"person\",\"isCollect\":1,\"id\":1500710034328502274,\"sort\":0,\"content\":\"person\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 13:48:48'); INSERT INTO `sys_oper_log` VALUES (10623, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"You can reach me at 6609823.\",\"zh\":\" 你打电话6609823就能找到我。\"}}', 0, '', '2022-03-07 13:48:50'); INSERT INTO `sys_oper_log` VALUES (10624, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646634580474,\"en\":\"It is impossible to defeat an ignorant man in argument.\",\"id\":1500720317876817921,\"zh\":\"想要通过争论去战胜无知的人是不可能的.\"}}', 0, '', '2022-03-07 14:29:40'); INSERT INTO `sys_oper_log` VALUES (10625, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"It is impossible to defeat an ignorant man in argument.\",\"zh\":\"想要通过争论去战胜无知的人是不可能的.\"}}', 0, '', '2022-03-07 14:29:59'); INSERT INTO `sys_oper_log` VALUES (10626, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"It is impossible to defeat an ignorant man in argument.\",\"zh\":\"想要通过争论去战胜无知的人是不可能的.\"}}', 0, '', '2022-03-07 14:30:00'); INSERT INTO `sys_oper_log` VALUES (10627, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"人\",\"createTime\":1646632129000,\"englishWord\":\"person\",\"id\":1500710034328502274,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"集\",\"createTime\":1646632098000,\"englishWord\":\"set\",\"id\":1500709907706658818,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"摧毁\",\"createTime\":1646357058000,\"englishWord\":\"destroy\",\"id\":1499556303943737346,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:04'); INSERT INTO `sys_oper_log` VALUES (10628, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"文章\",\"createTime\":1646270833000,\"englishWord\":\"article\",\"id\":1499194651561934849,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"锁\",\"createTime\":1646270680000,\"englishWord\":\"lock\",\"id\":1499194008512217089,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"同步\",\"createTime\":1646270644000,\"englishWord\":\"synchronized\",\"id\":1499193859354378241,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:04'); INSERT INTO `sys_oper_log` VALUES (10629, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"蜘蛛\",\"createTime\":1646202368000,\"englishWord\":\"spider\",\"id\":1498907488693661698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"积分\",\"createTime\":1646099284000,\"englishWord\":\"integral\",\"id\":1498475123475460098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"条件\",\"createTime\":1645497826000,\"englishWord\":\"conditions\",\"id\":1495952426027585537,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:04'); INSERT INTO `sys_oper_log` VALUES (10630, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"资源\",\"createTime\":1645490416000,\"englishWord\":\"source\",\"id\":1495921344716607490,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"重置\",\"createTime\":1645428992000,\"englishWord\":\"reset\",\"id\":1495663714559500290,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"设置\",\"createTime\":1645413604000,\"englishWord\":\"settings\",\"id\":1495599171498057730,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:05'); INSERT INTO `sys_oper_log` VALUES (10631, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"注解\",\"createTime\":1645406032000,\"englishWord\":\"annotation\",\"id\":1495567412718903297,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"爬虫\",\"createTime\":1645281842000,\"englishWord\":\"reptile\",\"id\":1495046521038295041,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"发布\",\"createTime\":1645280419000,\"englishWord\":\"release\",\"id\":1495040553210597378,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:05'); INSERT INTO `sys_oper_log` VALUES (10632, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"平台\",\"createTime\":1645274475000,\"englishWord\":\"platform\",\"id\":1495015622968070145,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"壁纸\",\"createTime\":1645265889000,\"englishWord\":\"wallpaper\",\"id\":1494979609008787457,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:05'); INSERT INTO `sys_oper_log` VALUES (10633, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:05'); INSERT INTO `sys_oper_log` VALUES (10634, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:05'); INSERT INTO `sys_oper_log` VALUES (10635, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:06'); INSERT INTO `sys_oper_log` VALUES (10636, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:07'); INSERT INTO `sys_oper_log` VALUES (10637, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:07'); INSERT INTO `sys_oper_log` VALUES (10638, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:07'); INSERT INTO `sys_oper_log` VALUES (10639, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:07'); INSERT INTO `sys_oper_log` VALUES (10640, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:08'); INSERT INTO `sys_oper_log` VALUES (10641, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:08'); INSERT INTO `sys_oper_log` VALUES (10642, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:08'); INSERT INTO `sys_oper_log` VALUES (10643, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:08'); INSERT INTO `sys_oper_log` VALUES (10644, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:09'); INSERT INTO `sys_oper_log` VALUES (10645, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:09'); INSERT INTO `sys_oper_log` VALUES (10646, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:10'); INSERT INTO `sys_oper_log` VALUES (10647, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:10'); INSERT INTO `sys_oper_log` VALUES (10648, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":22,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:10'); INSERT INTO `sys_oper_log` VALUES (10649, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":23,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:10'); INSERT INTO `sys_oper_log` VALUES (10650, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":24,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2},{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":18,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:10'); INSERT INTO `sys_oper_log` VALUES (10651, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":25,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:11'); INSERT INTO `sys_oper_log` VALUES (10652, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":26,\"optimizeCountSql\":true,\"orders\":[],\"pages\":24,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":72}}', 0, '', '2022-03-07 14:30:11'); INSERT INTO `sys_oper_log` VALUES (10653, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"search\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 14:30:43'); INSERT INTO `sys_oper_log` VALUES (10654, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"search\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 14:30:47'); INSERT INTO `sys_oper_log` VALUES (10655, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646634727099,\"englishWord\":\"english\",\"isCollect\":1,\"id\":1500720932828987394,\"sort\":0,\"content\":\"english\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:32:07'); INSERT INTO `sys_oper_log` VALUES (10656, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"It is impossible to defeat an ignorant man in argument.\",\"zh\":\"想要通过争论去战胜无知的人是不可能的.\"}}', 0, '', '2022-03-07 14:32:10'); INSERT INTO `sys_oper_log` VALUES (10657, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1500720932828987394', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:32:19'); INSERT INTO `sys_oper_log` VALUES (10658, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"request\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 14:32:44'); INSERT INTO `sys_oper_log` VALUES (10659, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"静态\",\"top\":2,\"createTime\":1646634789850,\"englishWord\":\"static\",\"isCollect\":1,\"id\":1500721196046729217,\"sort\":0,\"content\":\"static\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:33:09'); INSERT INTO `sys_oper_log` VALUES (10660, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646634792020,\"en\":\"A good deed is never lost.\",\"id\":1500721205156663298,\"zh\":\"好心一定有好报。\"}}', 0, '', '2022-03-07 14:33:12'); INSERT INTO `sys_oper_log` VALUES (10661, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"object\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 14:33:20'); INSERT INTO `sys_oper_log` VALUES (10662, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"Object\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 14:33:26'); INSERT INTO `sys_oper_log` VALUES (10663, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"线程\",\"top\":2,\"createTime\":1646634825897,\"englishWord\":\"thread\",\"isCollect\":1,\"id\":1500721347238805506,\"sort\":0,\"content\":\"thread\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:33:45'); INSERT INTO `sys_oper_log` VALUES (10664, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"A good deed is never lost.\",\"zh\":\"好心一定有好报。\"}}', 0, '', '2022-03-07 14:33:48'); INSERT INTO `sys_oper_log` VALUES (10665, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Opportunity does not knock, it presents itself when you beat down the door. \",\"createTime\":1646635472245,\"dataId\":4014,\"date\":1611158400000,\"id\":1500724058206130178,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/79d05e74b40742a7e743629934791de0.png\",\"note\":\"机遇不会自己找上门来,它只会在你开门时出现。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/5536c4c78a89085cc1f453be5e08bbb0.mp3\"}}', 0, '', '2022-03-07 14:44:32'); INSERT INTO `sys_oper_log` VALUES (10666, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我见众生皆草木,唯你是青山。\",\"createTime\":1646635472245,\"id\":1500724058206130177,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-03-07 14:44:32'); INSERT INTO `sys_oper_log` VALUES (10667, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646635500712,\"englishWord\":\"runnable\",\"isCollect\":1,\"id\":1500724177626447873,\"sort\":0,\"content\":\"runnable\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:45:00'); INSERT INTO `sys_oper_log` VALUES (10668, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646635502433,\"en\":\"Morality may consist solely in the courage of making a choice.\",\"id\":1500724184836362242,\"zh\":\"品德可能仅仅在于有勇气作出抉择.\"}}', 0, '', '2022-03-07 14:45:02'); INSERT INTO `sys_oper_log` VALUES (10669, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1500724177626447873', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:45:06'); INSERT INTO `sys_oper_log` VALUES (10670, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"并发\",\"top\":2,\"createTime\":1646635514898,\"englishWord\":\"concurrent\",\"isCollect\":1,\"id\":1500724237093289985,\"sort\":0,\"content\":\"concurrent\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:45:14'); INSERT INTO `sys_oper_log` VALUES (10671, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Morality may consist solely in the courage of making a choice.\",\"zh\":\"品德可能仅仅在于有勇气作出抉择.\"}}', 0, '', '2022-03-07 14:45:16'); INSERT INTO `sys_oper_log` VALUES (10672, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"可调用的\",\"top\":2,\"createTime\":1646635523496,\"englishWord\":\"callable\",\"isCollect\":1,\"id\":1500724273160110082,\"sort\":0,\"content\":\"callable\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:45:23'); INSERT INTO `sys_oper_log` VALUES (10673, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Morality may consist solely in the courage of making a choice.\",\"zh\":\"品德可能仅仅在于有勇气作出抉择.\"}}', 0, '', '2022-03-07 14:45:25'); INSERT INTO `sys_oper_log` VALUES (10674, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Morality may consist solely in the courage of making a choice.\",\"zh\":\"品德可能仅仅在于有勇气作出抉择.\"}}', 0, '', '2022-03-07 14:45:28'); INSERT INTO `sys_oper_log` VALUES (10675, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Morality may consist solely in the courage of making a choice.\",\"zh\":\"品德可能仅仅在于有勇气作出抉择.\"}}', 0, '', '2022-03-07 14:45:30'); INSERT INTO `sys_oper_log` VALUES (10676, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"task\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 14:45:43'); INSERT INTO `sys_oper_log` VALUES (10677, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"调用\",\"top\":2,\"createTime\":1646635549192,\"englishWord\":\"call\",\"isCollect\":1,\"id\":1500724380953722882,\"sort\":0,\"content\":\"call\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:45:49'); INSERT INTO `sys_oper_log` VALUES (10678, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Morality may consist solely in the courage of making a choice.\",\"zh\":\"品德可能仅仅在于有勇气作出抉择.\"}}', 0, '', '2022-03-07 14:45:50'); INSERT INTO `sys_oper_log` VALUES (10679, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"布尔\",\"top\":2,\"createTime\":1646635567474,\"englishWord\":\"boolean\",\"isCollect\":1,\"id\":1500724457613017090,\"sort\":0,\"content\":\"boolean\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:46:07'); INSERT INTO `sys_oper_log` VALUES (10680, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Morality may consist solely in the courage of making a choice.\",\"zh\":\"品德可能仅仅在于有勇气作出抉择.\"}}', 0, '', '2022-03-07 14:46:09'); INSERT INTO `sys_oper_log` VALUES (10681, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"上帝擦去他们所有的眼泪.死亡不再有,也不再有悲伤和生死离别,不再有痛苦,因往事已矣.\",\"createTime\":1646635596172,\"id\":1500724577981059074,\"source\":\"铁达尼号(Titanic)\",\"type\":3}}', 0, '', '2022-03-07 14:46:36'); INSERT INTO `sys_oper_log` VALUES (10682, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Rudeness is merely an expression of fear.\",\"createTime\":1646635596176,\"dataId\":3427,\"date\":1560960000000,\"id\":1500724577981059075,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-06-20.jpg\",\"note\":\"无礼只是恐惧的一种表露。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-06-202-day.mp3\"}}', 0, '', '2022-03-07 14:46:36'); INSERT INTO `sys_oper_log` VALUES (10683, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"运行\",\"top\":2,\"createTime\":1646635606376,\"englishWord\":\"run\",\"isCollect\":1,\"id\":1500724620788219905,\"sort\":0,\"content\":\"run\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:46:46'); INSERT INTO `sys_oper_log` VALUES (10684, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Morality may consist solely in the courage of making a choice.\",\"zh\":\"品德可能仅仅在于有勇气作出抉择.\"}}', 0, '', '2022-03-07 14:46:47'); INSERT INTO `sys_oper_log` VALUES (10685, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"开始\",\"top\":2,\"createTime\":1646635611496,\"englishWord\":\"start\",\"isCollect\":1,\"id\":1500724642288222209,\"sort\":0,\"content\":\"start\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:46:51'); INSERT INTO `sys_oper_log` VALUES (10686, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Morality may consist solely in the courage of making a choice.\",\"zh\":\"品德可能仅仅在于有勇气作出抉择.\"}}', 0, '', '2022-03-07 14:46:53'); INSERT INTO `sys_oper_log` VALUES (10687, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Morality may consist solely in the courage of making a choice.\",\"zh\":\"品德可能仅仅在于有勇气作出抉择.\"}}', 0, '', '2022-03-07 14:47:05'); INSERT INTO `sys_oper_log` VALUES (10688, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"集团\",\"top\":2,\"createTime\":1646635805584,\"englishWord\":\"group\",\"isCollect\":1,\"id\":1500725456331325442,\"sort\":0,\"content\":\"group\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:50:05'); INSERT INTO `sys_oper_log` VALUES (10689, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646635807600,\"en\":\"Like author, like book.\",\"id\":1500725464816308225,\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:50:07'); INSERT INTO `sys_oper_log` VALUES (10690, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"分组\",\"condition\":\"\",\"top\":2,\"createTime\":1646635806000,\"englishWord\":\"group\",\"isCollect\":1,\"id\":1500725456331325442,\"sort\":0,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:50:14'); INSERT INTO `sys_oper_log` VALUES (10691, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:50:22'); INSERT INTO `sys_oper_log` VALUES (10692, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"分组\",\"createTime\":1646635806000,\"englishWord\":\"group\",\"id\":1500725456331325442,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"开始\",\"createTime\":1646635611000,\"englishWord\":\"start\",\"id\":1500724642288222209,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"运行\",\"createTime\":1646635606000,\"englishWord\":\"run\",\"id\":1500724620788219905,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:33'); INSERT INTO `sys_oper_log` VALUES (10693, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"布尔\",\"createTime\":1646635567000,\"englishWord\":\"boolean\",\"id\":1500724457613017090,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"调用\",\"createTime\":1646635549000,\"englishWord\":\"call\",\"id\":1500724380953722882,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"可调用的\",\"createTime\":1646635523000,\"englishWord\":\"callable\",\"id\":1500724273160110082,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:33'); INSERT INTO `sys_oper_log` VALUES (10694, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"并发\",\"createTime\":1646635515000,\"englishWord\":\"concurrent\",\"id\":1500724237093289985,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"线程\",\"createTime\":1646634826000,\"englishWord\":\"thread\",\"id\":1500721347238805506,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"静态\",\"createTime\":1646634790000,\"englishWord\":\"static\",\"id\":1500721196046729217,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:33'); INSERT INTO `sys_oper_log` VALUES (10695, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"人\",\"createTime\":1646632129000,\"englishWord\":\"person\",\"id\":1500710034328502274,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"集\",\"createTime\":1646632098000,\"englishWord\":\"set\",\"id\":1500709907706658818,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"摧毁\",\"createTime\":1646357058000,\"englishWord\":\"destroy\",\"id\":1499556303943737346,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:33'); INSERT INTO `sys_oper_log` VALUES (10696, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"文章\",\"createTime\":1646270833000,\"englishWord\":\"article\",\"id\":1499194651561934849,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"锁\",\"createTime\":1646270680000,\"englishWord\":\"lock\",\"id\":1499194008512217089,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"同步\",\"createTime\":1646270644000,\"englishWord\":\"synchronized\",\"id\":1499193859354378241,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:34'); INSERT INTO `sys_oper_log` VALUES (10697, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"蜘蛛\",\"createTime\":1646202368000,\"englishWord\":\"spider\",\"id\":1498907488693661698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"积分\",\"createTime\":1646099284000,\"englishWord\":\"integral\",\"id\":1498475123475460098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"条件\",\"createTime\":1645497826000,\"englishWord\":\"conditions\",\"id\":1495952426027585537,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:34'); INSERT INTO `sys_oper_log` VALUES (10698, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"资源\",\"createTime\":1645490416000,\"englishWord\":\"source\",\"id\":1495921344716607490,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"重置\",\"createTime\":1645428992000,\"englishWord\":\"reset\",\"id\":1495663714559500290,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"设置\",\"createTime\":1645413604000,\"englishWord\":\"settings\",\"id\":1495599171498057730,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:34'); INSERT INTO `sys_oper_log` VALUES (10699, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"注解\",\"createTime\":1645406032000,\"englishWord\":\"annotation\",\"id\":1495567412718903297,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"爬虫\",\"createTime\":1645281842000,\"englishWord\":\"reptile\",\"id\":1495046521038295041,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"发布\",\"createTime\":1645280419000,\"englishWord\":\"release\",\"id\":1495040553210597378,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:34'); INSERT INTO `sys_oper_log` VALUES (10700, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"平台\",\"createTime\":1645274475000,\"englishWord\":\"platform\",\"id\":1495015622968070145,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"壁纸\",\"createTime\":1645265889000,\"englishWord\":\"wallpaper\",\"id\":1494979609008787457,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:35'); INSERT INTO `sys_oper_log` VALUES (10701, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:36'); INSERT INTO `sys_oper_log` VALUES (10702, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:36'); INSERT INTO `sys_oper_log` VALUES (10703, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:36'); INSERT INTO `sys_oper_log` VALUES (10704, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"分组\",\"createTime\":1646635806000,\"englishWord\":\"group\",\"id\":1500725456331325442,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"开始\",\"createTime\":1646635611000,\"englishWord\":\"start\",\"id\":1500724642288222209,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"运行\",\"createTime\":1646635606000,\"englishWord\":\"run\",\"id\":1500724620788219905,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:40'); INSERT INTO `sys_oper_log` VALUES (10705, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"布尔\",\"createTime\":1646635567000,\"englishWord\":\"boolean\",\"id\":1500724457613017090,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"调用\",\"createTime\":1646635549000,\"englishWord\":\"call\",\"id\":1500724380953722882,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"可调用的\",\"createTime\":1646635523000,\"englishWord\":\"callable\",\"id\":1500724273160110082,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:40'); INSERT INTO `sys_oper_log` VALUES (10706, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"并发\",\"createTime\":1646635515000,\"englishWord\":\"concurrent\",\"id\":1500724237093289985,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"线程\",\"createTime\":1646634826000,\"englishWord\":\"thread\",\"id\":1500721347238805506,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"静态\",\"createTime\":1646634790000,\"englishWord\":\"static\",\"id\":1500721196046729217,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:40'); INSERT INTO `sys_oper_log` VALUES (10707, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"人\",\"createTime\":1646632129000,\"englishWord\":\"person\",\"id\":1500710034328502274,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"集\",\"createTime\":1646632098000,\"englishWord\":\"set\",\"id\":1500709907706658818,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"摧毁\",\"createTime\":1646357058000,\"englishWord\":\"destroy\",\"id\":1499556303943737346,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:40'); INSERT INTO `sys_oper_log` VALUES (10708, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"文章\",\"createTime\":1646270833000,\"englishWord\":\"article\",\"id\":1499194651561934849,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"锁\",\"createTime\":1646270680000,\"englishWord\":\"lock\",\"id\":1499194008512217089,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"同步\",\"createTime\":1646270644000,\"englishWord\":\"synchronized\",\"id\":1499193859354378241,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:40'); INSERT INTO `sys_oper_log` VALUES (10709, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"蜘蛛\",\"createTime\":1646202368000,\"englishWord\":\"spider\",\"id\":1498907488693661698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"积分\",\"createTime\":1646099284000,\"englishWord\":\"integral\",\"id\":1498475123475460098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"条件\",\"createTime\":1645497826000,\"englishWord\":\"conditions\",\"id\":1495952426027585537,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:41'); INSERT INTO `sys_oper_log` VALUES (10710, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"资源\",\"createTime\":1645490416000,\"englishWord\":\"source\",\"id\":1495921344716607490,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"重置\",\"createTime\":1645428992000,\"englishWord\":\"reset\",\"id\":1495663714559500290,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"设置\",\"createTime\":1645413604000,\"englishWord\":\"settings\",\"id\":1495599171498057730,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:41'); INSERT INTO `sys_oper_log` VALUES (10711, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"注解\",\"createTime\":1645406032000,\"englishWord\":\"annotation\",\"id\":1495567412718903297,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"爬虫\",\"createTime\":1645281842000,\"englishWord\":\"reptile\",\"id\":1495046521038295041,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"发布\",\"createTime\":1645280419000,\"englishWord\":\"release\",\"id\":1495040553210597378,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:41'); INSERT INTO `sys_oper_log` VALUES (10712, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"平台\",\"createTime\":1645274475000,\"englishWord\":\"platform\",\"id\":1495015622968070145,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"壁纸\",\"createTime\":1645265889000,\"englishWord\":\"wallpaper\",\"id\":1494979609008787457,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:42'); INSERT INTO `sys_oper_log` VALUES (10713, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:42'); INSERT INTO `sys_oper_log` VALUES (10714, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:43'); INSERT INTO `sys_oper_log` VALUES (10715, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:43'); INSERT INTO `sys_oper_log` VALUES (10716, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:43'); INSERT INTO `sys_oper_log` VALUES (10717, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:44'); INSERT INTO `sys_oper_log` VALUES (10718, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:44'); INSERT INTO `sys_oper_log` VALUES (10719, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:44'); INSERT INTO `sys_oper_log` VALUES (10720, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:44'); INSERT INTO `sys_oper_log` VALUES (10721, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:44'); INSERT INTO `sys_oper_log` VALUES (10722, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:45'); INSERT INTO `sys_oper_log` VALUES (10723, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:45'); INSERT INTO `sys_oper_log` VALUES (10724, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:46'); INSERT INTO `sys_oper_log` VALUES (10725, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":22,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:46'); INSERT INTO `sys_oper_log` VALUES (10726, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":23,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:46'); INSERT INTO `sys_oper_log` VALUES (10727, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":24,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:47'); INSERT INTO `sys_oper_log` VALUES (10728, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":25,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:47'); INSERT INTO `sys_oper_log` VALUES (10729, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":26,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:47'); INSERT INTO `sys_oper_log` VALUES (10730, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":27,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":46,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":29,\"sort\":0,\"top\":2},{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":41,\"sort\":18,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:48'); INSERT INTO `sys_oper_log` VALUES (10731, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":28,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:48'); INSERT INTO `sys_oper_log` VALUES (10732, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":29,\"optimizeCountSql\":true,\"orders\":[],\"pages\":27,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":81}}', 0, '', '2022-03-07 14:50:49'); INSERT INTO `sys_oper_log` VALUES (10733, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:32'); INSERT INTO `sys_oper_log` VALUES (10734, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:35'); INSERT INTO `sys_oper_log` VALUES (10735, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:42'); INSERT INTO `sys_oper_log` VALUES (10736, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:44'); INSERT INTO `sys_oper_log` VALUES (10737, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:46'); INSERT INTO `sys_oper_log` VALUES (10738, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:48'); INSERT INTO `sys_oper_log` VALUES (10739, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:50'); INSERT INTO `sys_oper_log` VALUES (10740, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:53'); INSERT INTO `sys_oper_log` VALUES (10741, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:54'); INSERT INTO `sys_oper_log` VALUES (10742, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:55'); INSERT INTO `sys_oper_log` VALUES (10743, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:55'); INSERT INTO `sys_oper_log` VALUES (10744, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:56'); INSERT INTO `sys_oper_log` VALUES (10745, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:56'); INSERT INTO `sys_oper_log` VALUES (10746, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:56'); INSERT INTO `sys_oper_log` VALUES (10747, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:51:56'); INSERT INTO `sys_oper_log` VALUES (10748, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:52:13'); INSERT INTO `sys_oper_log` VALUES (10749, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Like author, like book.\",\"zh\":\"书如其人。\"}}', 0, '', '2022-03-07 14:52:21'); INSERT INTO `sys_oper_log` VALUES (10750, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646636002244,\"en\":\"I guess he\'s about 30.\",\"id\":1500726281183055873,\"zh\":\" 我猜他大概30岁。\"}}', 0, '', '2022-03-07 14:53:22'); INSERT INTO `sys_oper_log` VALUES (10751, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I guess he\'s about 30.\",\"zh\":\" 我猜他大概30岁。\"}}', 0, '', '2022-03-07 14:53:34'); INSERT INTO `sys_oper_log` VALUES (10752, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"票\",\"top\":2,\"createTime\":1646636292629,\"englishWord\":\"ticket\",\"isCollect\":1,\"id\":1500727499158700033,\"sort\":0,\"content\":\"ticket\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 14:58:12'); INSERT INTO `sys_oper_log` VALUES (10753, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646636294486,\"en\":\"He that lives in hope danceth without music.\",\"id\":1500727506955816961,\"zh\":\"生活在希望中的人,没有音乐照样跳舞.\"}}', 0, '', '2022-03-07 14:58:14'); INSERT INTO `sys_oper_log` VALUES (10754, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"He that lives in hope danceth without music.\",\"zh\":\"生活在希望中的人,没有音乐照样跳舞.\"}}', 0, '', '2022-03-07 14:58:19'); INSERT INTO `sys_oper_log` VALUES (10755, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"He that lives in hope danceth without music.\",\"zh\":\"生活在希望中的人,没有音乐照样跳舞.\"}}', 0, '', '2022-03-07 14:58:21'); INSERT INTO `sys_oper_log` VALUES (10756, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"picture\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 14:59:34'); INSERT INTO `sys_oper_log` VALUES (10757, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"future\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 14:59:43'); INSERT INTO `sys_oper_log` VALUES (10758, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"阿萨法1\"}', '', 1, '不能包含其他符号!!!', '2022-03-07 14:59:54'); INSERT INTO `sys_oper_log` VALUES (10759, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646636400025,\"englishWord\":\"afgagaag\",\"isCollect\":1,\"id\":1500727949618561025,\"sort\":0,\"content\":\"afgagaag\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 15:00:00'); INSERT INTO `sys_oper_log` VALUES (10760, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"He that lives in hope danceth without music.\",\"zh\":\"生活在希望中的人,没有音乐照样跳舞.\"}}', 0, '', '2022-03-07 15:00:01'); INSERT INTO `sys_oper_log` VALUES (10761, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1500727949618561025', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 15:00:04'); INSERT INTO `sys_oper_log` VALUES (10762, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"No victory comes without a price.\",\"dataId\":4341,\"date\":1639411200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d29672dafb7fbbdf25c07625571e5222.png\",\"note\":\"凡是成功就要付出代价。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/74b7bd40e32faedae680ca9560b9f7b1.mp3\"}}', 0, '', '2022-03-07 16:14:50'); INSERT INTO `sys_oper_log` VALUES (10763, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"中央军委“禁酒令”一出,茅台蒸发125亿,这充分说明我军的强大战斗力\",\"createTime\":1641639481000,\"id\":1479769353467158544,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-03-07 16:14:52'); INSERT INTO `sys_oper_log` VALUES (10764, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你得不到,是因为不属于你。放不下,因为你不甘心。失去所爱虽然伤心,但失去不爱你的人又有什么可惜\",\"createTime\":1646640900088,\"id\":1500746824208764930,\"source\":\"摆渡人\",\"type\":2}}', 0, '', '2022-03-07 16:15:00'); INSERT INTO `sys_oper_log` VALUES (10765, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"All our dreams can come true, if we have the courage to pursue them.\",\"createTime\":1646640900086,\"dataId\":3402,\"date\":1558800000000,\"id\":1500746824208764929,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-05-26.jpg\",\"note\":\"如果我们有勇气去追求,所有的梦想都可以现实。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-05-26-day.mp3\"}}', 0, '', '2022-03-07 16:15:00'); INSERT INTO `sys_oper_log` VALUES (10766, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646640928271,\"englishWord\":\"write\",\"isCollect\":1,\"id\":1500746942450483202,\"sort\":0,\"content\":\"write\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:15:28'); INSERT INTO `sys_oper_log` VALUES (10767, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646640930911,\"en\":\"Today is May 21st.\",\"id\":1500746953502380033,\"zh\":\" 今天是五月二十一号。\"}}', 0, '', '2022-03-07 16:15:30'); INSERT INTO `sys_oper_log` VALUES (10768, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1500746942450483202', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:15:35'); INSERT INTO `sys_oper_log` VALUES (10769, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"写\",\"top\":2,\"createTime\":1646640940722,\"englishWord\":\"write\",\"isCollect\":1,\"id\":1500746994665373697,\"sort\":0,\"content\":\"write\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:15:40'); INSERT INTO `sys_oper_log` VALUES (10770, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Today is May 21st.\",\"zh\":\" 今天是五月二十一号。\"}}', 0, '', '2022-03-07 16:15:43'); INSERT INTO `sys_oper_log` VALUES (10771, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"weather\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 16:28:57'); INSERT INTO `sys_oper_log` VALUES (10772, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"tool\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 16:29:09'); INSERT INTO `sys_oper_log` VALUES (10773, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"工具\",\"top\":2,\"createTime\":1646641751234,\"englishWord\":\"tools\",\"isCollect\":1,\"id\":1500750394165542913,\"sort\":0,\"content\":\"tools\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:29:11'); INSERT INTO `sys_oper_log` VALUES (10774, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646641753420,\"en\":\"What\'s in a name? That which we call a rose by any other name would smell as sweet.\",\"id\":1500750403384528897,\"zh\":\"名字有什么关系?把玫瑰花叫做别的名称,它还是照样芳香。\"}}', 0, '', '2022-03-07 16:29:13'); INSERT INTO `sys_oper_log` VALUES (10775, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1500750394165542913', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:29:18'); INSERT INTO `sys_oper_log` VALUES (10776, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"monitor\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 16:29:52'); INSERT INTO `sys_oper_log` VALUES (10777, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"日志\",\"top\":2,\"createTime\":1646641799394,\"englishWord\":\"log\",\"isCollect\":1,\"id\":1500750596200972289,\"sort\":0,\"content\":\"log\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:29:59'); INSERT INTO `sys_oper_log` VALUES (10778, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"What\'s in a name? That which we call a rose by any other name would smell as sweet.\",\"zh\":\"名字有什么关系?把玫瑰花叫做别的名称,它还是照样芳香。\"}}', 0, '', '2022-03-07 16:30:04'); INSERT INTO `sys_oper_log` VALUES (10779, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"读\",\"top\":2,\"createTime\":1646642038710,\"englishWord\":\"read\",\"isCollect\":1,\"id\":1500751599935668225,\"sort\":0,\"content\":\"read\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:33:58'); INSERT INTO `sys_oper_log` VALUES (10780, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646642041589,\"en\":\"Does your computer have a modem?\",\"id\":1500751612044529665,\"zh\":\" 你的电脑有调制解调器吗?\"}}', 0, '', '2022-03-07 16:34:01'); INSERT INTO `sys_oper_log` VALUES (10781, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Does your computer have a modem?\",\"zh\":\" 你的电脑有调制解调器吗?\"}}', 0, '', '2022-03-07 16:34:04'); INSERT INTO `sys_oper_log` VALUES (10782, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646642904779,\"en\":\"\\\"Get me my coat,please.\\\"\",\"id\":1500755232542576642,\"zh\":\" 请帮我拿下外套。\"}}', 0, '', '2022-03-07 16:48:24'); INSERT INTO `sys_oper_log` VALUES (10783, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"\\\"Get me my coat,please.\\\"\",\"zh\":\" 请帮我拿下外套。\"}}', 0, '', '2022-03-07 16:49:07'); INSERT INTO `sys_oper_log` VALUES (10784, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646643191780,\"englishWord\":\"queue\",\"isCollect\":1,\"id\":1500756436303724546,\"sort\":0,\"content\":\"queue\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:53:11'); INSERT INTO `sys_oper_log` VALUES (10785, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646643193153,\"en\":\"Appearances are deceptive.\",\"id\":1500756442037243906,\"zh\":\"外表是靠不住的。\"}}', 0, '', '2022-03-07 16:53:13'); INSERT INTO `sys_oper_log` VALUES (10786, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1500756436303724546', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:53:17'); INSERT INTO `sys_oper_log` VALUES (10787, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"队列\",\"top\":2,\"createTime\":1646643200990,\"englishWord\":\"queue\",\"isCollect\":1,\"id\":1500756474933264386,\"sort\":0,\"content\":\"queue\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:53:21'); INSERT INTO `sys_oper_log` VALUES (10788, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Appearances are deceptive.\",\"zh\":\"外表是靠不住的。\"}}', 0, '', '2022-03-07 16:53:22'); INSERT INTO `sys_oper_log` VALUES (10789, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"完整的\",\"top\":2,\"createTime\":1646643209685,\"englishWord\":\"full\",\"isCollect\":1,\"id\":1500756511402737665,\"sort\":0,\"content\":\"full\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 16:53:29'); INSERT INTO `sys_oper_log` VALUES (10790, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Appearances are deceptive.\",\"zh\":\"外表是靠不住的。\"}}', 0, '', '2022-03-07 16:53:31'); INSERT INTO `sys_oper_log` VALUES (10791, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Appearances are deceptive.\",\"zh\":\"外表是靠不住的。\"}}', 0, '', '2022-03-07 16:53:33'); INSERT INTO `sys_oper_log` VALUES (10792, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"池\",\"top\":2,\"createTime\":1646644330541,\"englishWord\":\"pool\",\"isCollect\":1,\"id\":1500761212617736193,\"sort\":0,\"content\":\"pool\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 17:12:10'); INSERT INTO `sys_oper_log` VALUES (10793, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646644332866,\"en\":\"A man usually falls in love with the woman who asks the kind of questions he is able to answer.\",\"id\":1500761222365204481,\"zh\":\"男人往往会爱上向他提出问题,而他又能回答得出的女人.\"}}', 0, '', '2022-03-07 17:12:12'); INSERT INTO `sys_oper_log` VALUES (10794, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1500760677290258434', '127.0.0.1', '', '1500760677290258434', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-07 17:12:31'); INSERT INTO `sys_oper_log` VALUES (10795, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '', 1, '英语一言接口降级!!!', '2022-03-07 17:26:38'); INSERT INTO `sys_oper_log` VALUES (10796, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646645201097,\"en\":\"Benefits please,like flowers, while they are fresh.\",\"id\":1500764863989960706,\"zh\":\"没有开不败的鲜花,也没有永远使人感激的恩惠。\"}}', 0, '', '2022-03-07 17:26:41'); INSERT INTO `sys_oper_log` VALUES (10797, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-07\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"6\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-07 22:03:52\"}}', 0, '', '2022-03-07 22:32:18'); INSERT INTO `sys_oper_log` VALUES (10798, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646663538229,\"humidity\":\"74\",\"id\":1500841775502909441,\"province\":\"江西\",\"reporttime\":1646661832000,\"temperature\":\"10\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-07 22:32:18'); INSERT INTO `sys_oper_log` VALUES (10799, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Do not , for one repulse , give up the purpose that you resolved to effect .\",\"createTime\":1646663584511,\"dataId\":3616,\"date\":1576944000000,\"id\":1500841969619492865,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-12-22.jpg\",\"note\":\"不要只因一次失败,就放弃你原来决心想达到的目的。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/7ddf541156c750c6ed50dec1d7a67fa5.mp3\"}}', 0, '', '2022-03-07 22:33:04'); INSERT INTO `sys_oper_log` VALUES (10800, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天问你中午打算吃什么,你说吃NM,我仔细思考了一下,NM是柠檬的缩写,你是因为我昨天在你闺蜜的评论下留言而感到酸,吃我醋了对吧?小傻瓜,我只爱你一个呀!\",\"createTime\":1646663584812,\"id\":1500841970881978369,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-07 22:33:04'); INSERT INTO `sys_oper_log` VALUES (10801, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"sort\":0,\"content\":\"localhost\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 22:33:13'); INSERT INTO `sys_oper_log` VALUES (10802, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"insert\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 22:33:21'); INSERT INTO `sys_oper_log` VALUES (10803, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"delete\"}', '', 1, '该词汇已存在!!!!', '2022-03-07 22:33:24'); INSERT INTO `sys_oper_log` VALUES (10804, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"保存\",\"top\":2,\"createTime\":1646663607838,\"englishWord\":\"save\",\"isCollect\":1,\"id\":1500842067464245249,\"sort\":0,\"content\":\"save\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 22:33:27'); INSERT INTO `sys_oper_log` VALUES (10805, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646663609556,\"en\":\"I disapprove of what you say,but I will defend to the death your right to say it.\",\"id\":1500842074670030850,\"zh\":\"我不同意你说的话,但是我愿意誓死捍卫你说话的权利。\"}}', 0, '', '2022-03-07 22:33:29'); INSERT INTO `sys_oper_log` VALUES (10806, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"基地\",\"top\":2,\"createTime\":1646663624491,\"englishWord\":\"base\",\"isCollect\":1,\"id\":1500842137299406850,\"sort\":0,\"content\":\"base\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 22:33:44'); INSERT INTO `sys_oper_log` VALUES (10807, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I disapprove of what you say,but I will defend to the death your right to say it.\",\"zh\":\"我不同意你说的话,但是我愿意誓死捍卫你说话的权利。\"}}', 0, '', '2022-03-07 22:33:46'); INSERT INTO `sys_oper_log` VALUES (10808, '英语单词', 2, 'com.xjs.word.controller.EnglishWordController.edit()', 'PUT', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"基础\",\"condition\":\"\",\"top\":2,\"createTime\":1646663624000,\"englishWord\":\"base\",\"isCollect\":1,\"id\":1500842137299406850,\"sort\":0,\"content\":\"\",\"lookCount\":1}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-07 22:33:52'); INSERT INTO `sys_oper_log` VALUES (10809, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我真的特别爱她,爱到骨子里,我为她一直坚持着,拒绝了所有人的暧昧,她是我第一个也是唯一一个想要娶的人,除了她我谁都不要,哪怕用了我整个青春。\",\"createTime\":1646665385599,\"id\":1500849523938484225,\"source\":\"有名无份\",\"type\":2}}', 0, '', '2022-03-07 23:03:05'); INSERT INTO `sys_oper_log` VALUES (10810, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"An eye for an eye makes the whole world blind.\",\"dataId\":4208,\"date\":1627920000000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/6cda48c19057ca58f914ca211a745f5a.png\",\"note\":\"冤冤相报,会让整个世界暗无天日。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/6475df4aa0c69f7cc04355577429d266.mp3\"}}', 0, '', '2022-03-07 23:03:05'); INSERT INTO `sys_oper_log` VALUES (10811, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我真的特别爱她,爱到骨子里,我为她一直坚持着,拒绝了所有人的暧昧,她是我第一个也是唯一一个想要娶的人,除了她我谁都不要,哪怕用了我整个青春。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":86,\"errorCode\":0,\"transResult\":[{\"dst\":\"I really love her, love to the bones, for she has been sticking to, I refused all ambiguous, she is my first and only a man wants to marry, in addition to her I who all don\'t, even if it took me the whole youth.\",\"src\":\"我真的特别爱她,爱到骨子里,我为她一直坚持着,拒绝了所有人的暧昧,她是我第一个也是唯一一个想要娶的人,除了她我谁都不要,哪怕用了我整个青春。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-07 23:03:21'); INSERT INTO `sys_oper_log` VALUES (10812, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"我真的特别爱她,爱到骨子里,我为她一直坚持着,拒绝了所有人的暧昧,她是我第一个也是唯一一个想要娶的人,除了她我谁都不要,哪怕用了我整个青春。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"I really love her, love to the bones, for she has been sticking to, I refused all ambiguous, she is my first and only a man wants to marry, in addition to her I who all don\'t, even if it took me the whole youth.\",\"src\":\"我真的特别爱她,爱到骨子里,我为她一直坚持着,拒绝了所有人的暧昧,她是我第一个也是唯一一个想要娶的人,除了她我谁都不要,哪怕用了我整个青春。\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-07 23:03:25'); INSERT INTO `sys_oper_log` VALUES (10813, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"问:女生的长相真的那么重要吗?答:长的漂亮、不重、要。\",\"createTime\":1646665408118,\"id\":1500849618385821697,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-07 23:03:28'); INSERT INTO `sys_oper_log` VALUES (10814, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"问:女生的长相真的那么重要吗?答:长的漂亮、不重、要。\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":25,\"errorCode\":0,\"transResult\":[{\"dst\":\"Q: the girl looks really so important?\",\"src\":\"问:女生的长相真的那么重要吗?\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-07 23:03:30'); INSERT INTO `sys_oper_log` VALUES (10815, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取IP信息异常!!', '2022-03-08 08:43:26'); INSERT INTO `sys_oper_log` VALUES (10816, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你, 一会儿看我, 一会儿看云。 我觉得, 你看我时很远, 你看云时很近。 \",\"createTime\":1646700232090,\"id\":1500995680708325377,\"source\":\"如果云知道\",\"type\":2}}', 0, '', '2022-03-08 08:43:52'); INSERT INTO `sys_oper_log` VALUES (10817, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-03-08 08:43:53'); INSERT INTO `sys_oper_log` VALUES (10818, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-03-08 08:43:59'); INSERT INTO `sys_oper_log` VALUES (10819, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"人生交结在终始,莫以开沉中路分。\",\"createTime\":1645170604000,\"id\":1494579953348546561,\"source\":\"贺兰进明\",\"type\":4}}', 0, '', '2022-03-08 08:43:59'); INSERT INTO `sys_oper_log` VALUES (10820, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"24\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-08 08:38:39\"}}', 0, '', '2022-03-08 08:44:09'); INSERT INTO `sys_oper_log` VALUES (10821, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"24\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-08 08:38:39\"}}', 0, '', '2022-03-08 08:44:09'); INSERT INTO `sys_oper_log` VALUES (10822, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646700249957,\"humidity\":\"76\",\"id\":1500995755614400514,\"province\":\"江西\",\"reporttime\":1646699919000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-08 08:44:10'); INSERT INTO `sys_oper_log` VALUES (10823, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646700249957,\"humidity\":\"76\",\"id\":1500995755614400515,\"province\":\"江西\",\"reporttime\":1646699919000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-08 08:44:10'); INSERT INTO `sys_oper_log` VALUES (10824, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646700249957,\"humidity\":\"76\",\"id\":1500995755614400513,\"province\":\"江西\",\"reporttime\":1646699919000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-08 08:44:10'); INSERT INTO `sys_oper_log` VALUES (10825, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-03-08 08:44:13'); INSERT INTO `sys_oper_log` VALUES (10826, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“怎样文艺地说一个人胖?”\\r\\n“让我再看你一眼从南到北。”\",\"createTime\":1645965002000,\"id\":1497911902929113095,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-08 08:44:13'); INSERT INTO `sys_oper_log` VALUES (10827, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646700249957,\"humidity\":\"76\",\"id\":1500995755614400514,\"province\":\"江西\",\"reporttime\":1646699919000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-08 08:44:17'); INSERT INTO `sys_oper_log` VALUES (10828, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"24\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-08 08:38:39\"}}', 0, '', '2022-03-08 08:44:17'); INSERT INTO `sys_oper_log` VALUES (10829, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The real death is that no one in the world remembers you.\",\"createTime\":1646700257373,\"dataId\":3722,\"date\":1586793600000,\"id\":1500995786736136193,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9b67fb0e1b46a32c0c5c45e1d2c91888.png\",\"note\":\"当活人的世界里再没有人记得你时,这就是终极死亡。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/2d2b6f4b24e696c178bb24e5701396f1.mp3\"}}', 0, '', '2022-03-08 08:44:17'); INSERT INTO `sys_oper_log` VALUES (10830, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"彼此相爱的人,却无法在一起,希望手牵手在太阳下散步,即便付出了那么多人的生命,最后还是办不到。\\\"\",\"createTime\":1646700257663,\"id\":1500995787931512833,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-08 08:44:17'); INSERT INTO `sys_oper_log` VALUES (10831, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646702711593,\"englishWord\":\"executor\",\"isCollect\":1,\"id\":1501006080497676290,\"sort\":0,\"content\":\"executor\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 09:25:11'); INSERT INTO `sys_oper_log` VALUES (10832, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646702713756,\"en\":\"When the fight begins within himself, a man\'s worth something.\",\"id\":1501006089523818497,\"zh\":\"当一个内心开始斗争时,他就有了价值.\"}}', 0, '', '2022-03-08 09:25:13'); INSERT INTO `sys_oper_log` VALUES (10833, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1501006080497676290', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 09:25:19'); INSERT INTO `sys_oper_log` VALUES (10834, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"executor\",\"top\":2,\"createTime\":1646702723345,\"englishWord\":\"executor\",\"isCollect\":1,\"id\":1501006129776553986,\"sort\":0,\"content\":\"executor\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 09:25:23'); INSERT INTO `sys_oper_log` VALUES (10835, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"When the fight begins within himself, a man\'s worth something.\",\"zh\":\"当一个内心开始斗争时,他就有了价值.\"}}', 0, '', '2022-03-08 09:26:17'); INSERT INTO `sys_oper_log` VALUES (10836, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1501006129776553986', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 09:26:22'); INSERT INTO `sys_oper_log` VALUES (10837, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"宁静的\",\"top\":2,\"createTime\":1646705158245,\"englishWord\":\"restful\",\"isCollect\":1,\"id\":1501016342487363586,\"sort\":0,\"content\":\"restful\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 10:05:58'); INSERT INTO `sys_oper_log` VALUES (10838, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646705161093,\"en\":\"Cowards die many times before their deaths.\",\"id\":1501016354436935682,\"zh\":\"胆怯者在真正死亡前已死过多次.\"}}', 0, '', '2022-03-08 10:06:01'); INSERT INTO `sys_oper_log` VALUES (10839, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"休息\",\"top\":2,\"createTime\":1646705172665,\"englishWord\":\"rest\",\"isCollect\":1,\"id\":1501016402977615874,\"sort\":0,\"content\":\"rest\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 10:06:12'); INSERT INTO `sys_oper_log` VALUES (10840, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Cowards die many times before their deaths.\",\"zh\":\"胆怯者在真正死亡前已死过多次.\"}}', 0, '', '2022-03-08 10:06:14'); INSERT INTO `sys_oper_log` VALUES (10841, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646705593919,\"en\":\"A real friend never gets in your way, unless you happen to be on the way down.\",\"id\":1501018169798815745,\"zh\":\"真正的朋友绝不会挡住你的去路,除非在你走下坡路时.\"}}', 0, '', '2022-03-08 10:13:13'); INSERT INTO `sys_oper_log` VALUES (10842, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you don\'t walk out, you will think that this is the whole world.\",\"dataId\":4316,\"date\":1637251200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/73e131fff26a395bb80700a389da4f99.png\",\"note\":\"走出去,才能看到更大的世界。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2b8e62d76029e41cfc07557239b776c8.mp3\"}}', 0, '', '2022-03-08 10:13:31'); INSERT INTO `sys_oper_log` VALUES (10843, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你的心可以属于耶稣,但你的屁股永远属于陆战队!\",\"createTime\":1646705611760,\"id\":1501018244658753538,\"source\":\"jordan2004a\",\"type\":5}}', 0, '', '2022-03-08 10:13:31'); INSERT INTO `sys_oper_log` VALUES (10844, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"因为喜欢他,看到他听的歌,就跟着来了。他是潮汕人,听得懂闽南话,也有年轻爱拼的精神,也许我们最后并不能走到一起,但我真心祝福他,希望他的善良乐观能给他带来好运气,祝愿他能闯出自己的一片天地。\",\"createTime\":1646705617846,\"id\":1501018270164316161,\"source\":\"大田後生仔\",\"type\":2}}', 0, '', '2022-03-08 10:13:37'); INSERT INTO `sys_oper_log` VALUES (10845, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"经历了多少委屈 才有一身好脾气。\",\"createTime\":1646705619755,\"id\":1501018278175436801,\"source\":\"习惯\",\"type\":2}}', 0, '', '2022-03-08 10:13:39'); INSERT INTO `sys_oper_log` VALUES (10846, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"报纸都报说我是国宝,宝个芋仔蕃薯啦!谁在希罕?\",\"createTime\":1646705620929,\"id\":1501018283099549697,\"source\":\"海角七号\",\"type\":3}}', 0, '', '2022-03-08 10:13:40'); INSERT INTO `sys_oper_log` VALUES (10847, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"公司聚餐,可以带另一半,我弱弱的说:“我能带别人老公吗?”\\r\\n公司同事顿时惊呆了,老总说按理说公司不应该管你的私人问题,不过还是提醒一下,别玩火自焚。\\r\\n“哦,就这一次,”然后拿起手机拨通电话:“爸,老妈不在家,你自己别做饭了,公司聚餐,你过来吃吧。”\",\"createTime\":1646705622002,\"id\":1501018287608426498,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-08 10:13:42'); INSERT INTO `sys_oper_log` VALUES (10848, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你永远都不知道一个为你胡思乱想的人是多么的爱你,如果哪天她不跟你计较这么多了,我告诉你那不是原谅那是放弃.\",\"createTime\":1646705622998,\"id\":1501018291798536194,\"source\":\"圈住你\",\"type\":2}}', 0, '', '2022-03-08 10:13:43'); INSERT INTO `sys_oper_log` VALUES (10849, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"努力经营当下,直至未来明朗。\",\"createTime\":1646705624350,\"id\":1501018297477623810,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-03-08 10:13:44'); INSERT INTO `sys_oper_log` VALUES (10850, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不要亏待每一份热情,不要讨好任何冷漠。\",\"createTime\":1646705625597,\"id\":1501018302699532290,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-03-08 10:13:45'); INSERT INTO `sys_oper_log` VALUES (10851, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"教,上所施,下所效也。\",\"createTime\":1646705626619,\"id\":1501018306960945153,\"source\":\"许慎\",\"type\":4}}', 0, '', '2022-03-08 10:13:46'); INSERT INTO `sys_oper_log` VALUES (10852, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你要安静的优秀,悄无声息的坚强。\",\"createTime\":1646705628048,\"id\":1501018312958799874,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-03-08 10:13:48'); INSERT INTO `sys_oper_log` VALUES (10853, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天在你们家门口等了五个小时 你发朋友圈说想吃小笼包 我今早五点半起来就买好了 一直在门口等你来拿 东北的天气太冷了 我冻的直打哆嗦 心里想不能让你吃冷的 就把包子放在怀里揣了几个小时 直到中午十一点你才醒来开门 你说了声谢谢 就把包子取走了 关上了门 你可真好看啊 刚睡醒都那么美 我看呆了却忘了告诉你 其实我还买了豆浆\",\"createTime\":1646705630642,\"id\":1501018323834630146,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-08 10:13:50'); INSERT INTO `sys_oper_log` VALUES (10854, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":29}', 0, '', '2022-03-08 10:14:00'); INSERT INTO `sys_oper_log` VALUES (10855, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-08 10:39:18'); INSERT INTO `sys_oper_log` VALUES (10856, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"客户端\",\"top\":2,\"createTime\":1646723283582,\"englishWord\":\"client\",\"isCollect\":1,\"id\":1501092365623095298,\"sort\":0,\"content\":\"client\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 15:08:03'); INSERT INTO `sys_oper_log` VALUES (10857, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646723285432,\"en\":\"I don\'t want to see any more of this TV show.\",\"id\":1501092373395140610,\"zh\":\" 我不想再看这个电视节目了。\"}}', 0, '', '2022-03-08 15:08:05'); INSERT INTO `sys_oper_log` VALUES (10858, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"服务器\",\"top\":2,\"createTime\":1646723290385,\"englishWord\":\"server\",\"isCollect\":1,\"id\":1501092394194694145,\"sort\":0,\"content\":\"server\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 15:08:10'); INSERT INTO `sys_oper_log` VALUES (10859, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I don\'t want to see any more of this TV show.\",\"zh\":\" 我不想再看这个电视节目了。\"}}', 0, '', '2022-03-08 15:08:12'); INSERT INTO `sys_oper_log` VALUES (10860, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"开放\",\"top\":2,\"createTime\":1646723296148,\"englishWord\":\"open\",\"isCollect\":1,\"id\":1501092418370662401,\"sort\":0,\"content\":\"open\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 15:08:16'); INSERT INTO `sys_oper_log` VALUES (10861, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I don\'t want to see any more of this TV show.\",\"zh\":\" 我不想再看这个电视节目了。\"}}', 0, '', '2022-03-08 15:08:18'); INSERT INTO `sys_oper_log` VALUES (10862, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"public\"}', '', 1, '该词汇已存在!!!!', '2022-03-08 15:08:31'); INSERT INTO `sys_oper_log` VALUES (10863, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"主要\",\"top\":2,\"createTime\":1646723314404,\"englishWord\":\"main\",\"isCollect\":1,\"id\":1501092494899933186,\"sort\":0,\"content\":\"main\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 15:08:34'); INSERT INTO `sys_oper_log` VALUES (10864, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I don\'t want to see any more of this TV show.\",\"zh\":\" 我不想再看这个电视节目了。\"}}', 0, '', '2022-03-08 15:08:36'); INSERT INTO `sys_oper_log` VALUES (10865, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"python\",\"top\":2,\"createTime\":1646723916573,\"englishWord\":\"python\",\"isCollect\":1,\"id\":1501095020613332993,\"sort\":0,\"content\":\"python\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 15:18:36'); INSERT INTO `sys_oper_log` VALUES (10866, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646723918561,\"en\":\"Courage without conscience is a wild beast.\",\"id\":1501095028913860609,\"zh\":\"不计道德的勇敢与野兽无异.\"}}', 0, '', '2022-03-08 15:18:38'); INSERT INTO `sys_oper_log` VALUES (10867, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Courage without conscience is a wild beast.\",\"zh\":\"不计道德的勇敢与野兽无异.\"}}', 0, '', '2022-03-08 15:18:45'); INSERT INTO `sys_oper_log` VALUES (10868, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"形式\",\"top\":2,\"createTime\":1646723949004,\"englishWord\":\"form\",\"isCollect\":1,\"id\":1501095156605251585,\"sort\":0,\"content\":\"form\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 15:19:09'); INSERT INTO `sys_oper_log` VALUES (10869, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Courage without conscience is a wild beast.\",\"zh\":\"不计道德的勇敢与野兽无异.\"}}', 0, '', '2022-03-08 15:19:10'); INSERT INTO `sys_oper_log` VALUES (10870, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"从\",\"top\":2,\"createTime\":1646723956406,\"englishWord\":\"from\",\"isCollect\":1,\"id\":1501095187676655618,\"sort\":0,\"content\":\"from\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 15:19:16'); INSERT INTO `sys_oper_log` VALUES (10871, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Courage without conscience is a wild beast.\",\"zh\":\"不计道德的勇敢与野兽无异.\"}}', 0, '', '2022-03-08 15:19:18'); INSERT INTO `sys_oper_log` VALUES (10872, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"从\",\"createTime\":1646723956000,\"englishWord\":\"from\",\"id\":1501095187676655618,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"形式\",\"createTime\":1646723949000,\"englishWord\":\"form\",\"id\":1501095156605251585,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"python\",\"createTime\":1646723917000,\"englishWord\":\"python\",\"id\":1501095020613332993,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:22'); INSERT INTO `sys_oper_log` VALUES (10873, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"主要\",\"createTime\":1646723314000,\"englishWord\":\"main\",\"id\":1501092494899933186,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"开放\",\"createTime\":1646723296000,\"englishWord\":\"open\",\"id\":1501092418370662401,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务器\",\"createTime\":1646723290000,\"englishWord\":\"server\",\"id\":1501092394194694145,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:22'); INSERT INTO `sys_oper_log` VALUES (10874, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"客户端\",\"createTime\":1646723284000,\"englishWord\":\"client\",\"id\":1501092365623095298,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"休息\",\"createTime\":1646705173000,\"englishWord\":\"rest\",\"id\":1501016402977615874,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"宁静的\",\"createTime\":1646705158000,\"englishWord\":\"restful\",\"id\":1501016342487363586,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:22'); INSERT INTO `sys_oper_log` VALUES (10875, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"基础\",\"createTime\":1646663624000,\"englishWord\":\"base\",\"id\":1500842137299406850,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"保存\",\"createTime\":1646663608000,\"englishWord\":\"save\",\"id\":1500842067464245249,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"池\",\"createTime\":1646644331000,\"englishWord\":\"pool\",\"id\":1500761212617736193,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:22'); INSERT INTO `sys_oper_log` VALUES (10876, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"完整的\",\"createTime\":1646643210000,\"englishWord\":\"full\",\"id\":1500756511402737665,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"队列\",\"createTime\":1646643201000,\"englishWord\":\"queue\",\"id\":1500756474933264386,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"读\",\"createTime\":1646642039000,\"englishWord\":\"read\",\"id\":1500751599935668225,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:22'); INSERT INTO `sys_oper_log` VALUES (10877, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"日志\",\"createTime\":1646641799000,\"englishWord\":\"log\",\"id\":1500750596200972289,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1646640941000,\"englishWord\":\"write\",\"id\":1500746994665373697,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"票\",\"createTime\":1646636293000,\"englishWord\":\"ticket\",\"id\":1500727499158700033,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:23'); INSERT INTO `sys_oper_log` VALUES (10878, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"分组\",\"createTime\":1646635806000,\"englishWord\":\"group\",\"id\":1500725456331325442,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"开始\",\"createTime\":1646635611000,\"englishWord\":\"start\",\"id\":1500724642288222209,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"运行\",\"createTime\":1646635606000,\"englishWord\":\"run\",\"id\":1500724620788219905,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:23'); INSERT INTO `sys_oper_log` VALUES (10879, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"布尔\",\"createTime\":1646635567000,\"englishWord\":\"boolean\",\"id\":1500724457613017090,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"调用\",\"createTime\":1646635549000,\"englishWord\":\"call\",\"id\":1500724380953722882,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"可调用的\",\"createTime\":1646635523000,\"englishWord\":\"callable\",\"id\":1500724273160110082,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:23'); INSERT INTO `sys_oper_log` VALUES (10880, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"并发\",\"createTime\":1646635515000,\"englishWord\":\"concurrent\",\"id\":1500724237093289985,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"线程\",\"createTime\":1646634826000,\"englishWord\":\"thread\",\"id\":1500721347238805506,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"静态\",\"createTime\":1646634790000,\"englishWord\":\"static\",\"id\":1500721196046729217,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:24'); INSERT INTO `sys_oper_log` VALUES (10881, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"人\",\"createTime\":1646632129000,\"englishWord\":\"person\",\"id\":1500710034328502274,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"集\",\"createTime\":1646632098000,\"englishWord\":\"set\",\"id\":1500709907706658818,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"摧毁\",\"createTime\":1646357058000,\"englishWord\":\"destroy\",\"id\":1499556303943737346,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:24'); INSERT INTO `sys_oper_log` VALUES (10882, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"文章\",\"createTime\":1646270833000,\"englishWord\":\"article\",\"id\":1499194651561934849,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"锁\",\"createTime\":1646270680000,\"englishWord\":\"lock\",\"id\":1499194008512217089,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"同步\",\"createTime\":1646270644000,\"englishWord\":\"synchronized\",\"id\":1499193859354378241,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:25'); INSERT INTO `sys_oper_log` VALUES (10883, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"蜘蛛\",\"createTime\":1646202368000,\"englishWord\":\"spider\",\"id\":1498907488693661698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"积分\",\"createTime\":1646099284000,\"englishWord\":\"integral\",\"id\":1498475123475460098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"条件\",\"createTime\":1645497826000,\"englishWord\":\"conditions\",\"id\":1495952426027585537,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:26'); INSERT INTO `sys_oper_log` VALUES (10884, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"资源\",\"createTime\":1645490416000,\"englishWord\":\"source\",\"id\":1495921344716607490,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"重置\",\"createTime\":1645428992000,\"englishWord\":\"reset\",\"id\":1495663714559500290,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"设置\",\"createTime\":1645413604000,\"englishWord\":\"settings\",\"id\":1495599171498057730,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:26'); INSERT INTO `sys_oper_log` VALUES (10885, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"注解\",\"createTime\":1645406032000,\"englishWord\":\"annotation\",\"id\":1495567412718903297,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"爬虫\",\"createTime\":1645281842000,\"englishWord\":\"reptile\",\"id\":1495046521038295041,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"发布\",\"createTime\":1645280419000,\"englishWord\":\"release\",\"id\":1495040553210597378,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:27'); INSERT INTO `sys_oper_log` VALUES (10886, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"平台\",\"createTime\":1645274475000,\"englishWord\":\"platform\",\"id\":1495015622968070145,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"壁纸\",\"createTime\":1645265889000,\"englishWord\":\"wallpaper\",\"id\":1494979609008787457,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:27'); INSERT INTO `sys_oper_log` VALUES (10887, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:27'); INSERT INTO `sys_oper_log` VALUES (10888, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:28'); INSERT INTO `sys_oper_log` VALUES (10889, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:28'); INSERT INTO `sys_oper_log` VALUES (10890, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:28'); INSERT INTO `sys_oper_log` VALUES (10891, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2},{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:28'); INSERT INTO `sys_oper_log` VALUES (10892, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":11,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:29'); INSERT INTO `sys_oper_log` VALUES (10893, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":22,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:29'); INSERT INTO `sys_oper_log` VALUES (10894, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":23,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:29'); INSERT INTO `sys_oper_log` VALUES (10895, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":24,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:30'); INSERT INTO `sys_oper_log` VALUES (10896, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":25,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:30'); INSERT INTO `sys_oper_log` VALUES (10897, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":26,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:31'); INSERT INTO `sys_oper_log` VALUES (10898, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":27,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:31'); INSERT INTO `sys_oper_log` VALUES (10899, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":28,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:31'); INSERT INTO `sys_oper_log` VALUES (10900, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":29,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:31'); INSERT INTO `sys_oper_log` VALUES (10901, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":30,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:32'); INSERT INTO `sys_oper_log` VALUES (10902, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":31,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:32'); INSERT INTO `sys_oper_log` VALUES (10903, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":32,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:33'); INSERT INTO `sys_oper_log` VALUES (10904, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":33,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":47,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":30,\"sort\":0,\"top\":2},{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":43,\"sort\":18,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:33'); INSERT INTO `sys_oper_log` VALUES (10905, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":34,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:33'); INSERT INTO `sys_oper_log` VALUES (10906, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":35,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:33'); INSERT INTO `sys_oper_log` VALUES (10907, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"从\",\"createTime\":1646723956000,\"englishWord\":\"from\",\"id\":1501095187676655618,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"形式\",\"createTime\":1646723949000,\"englishWord\":\"form\",\"id\":1501095156605251585,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"python\",\"createTime\":1646723917000,\"englishWord\":\"python\",\"id\":1501095020613332993,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:43'); INSERT INTO `sys_oper_log` VALUES (10908, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"主要\",\"createTime\":1646723314000,\"englishWord\":\"main\",\"id\":1501092494899933186,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"开放\",\"createTime\":1646723296000,\"englishWord\":\"open\",\"id\":1501092418370662401,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务器\",\"createTime\":1646723290000,\"englishWord\":\"server\",\"id\":1501092394194694145,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:44'); INSERT INTO `sys_oper_log` VALUES (10909, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"客户端\",\"createTime\":1646723284000,\"englishWord\":\"client\",\"id\":1501092365623095298,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"休息\",\"createTime\":1646705173000,\"englishWord\":\"rest\",\"id\":1501016402977615874,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"宁静的\",\"createTime\":1646705158000,\"englishWord\":\"restful\",\"id\":1501016342487363586,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:44'); INSERT INTO `sys_oper_log` VALUES (10910, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"基础\",\"createTime\":1646663624000,\"englishWord\":\"base\",\"id\":1500842137299406850,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"保存\",\"createTime\":1646663608000,\"englishWord\":\"save\",\"id\":1500842067464245249,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"池\",\"createTime\":1646644331000,\"englishWord\":\"pool\",\"id\":1500761212617736193,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:44'); INSERT INTO `sys_oper_log` VALUES (10911, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"完整的\",\"createTime\":1646643210000,\"englishWord\":\"full\",\"id\":1500756511402737665,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"队列\",\"createTime\":1646643201000,\"englishWord\":\"queue\",\"id\":1500756474933264386,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"读\",\"createTime\":1646642039000,\"englishWord\":\"read\",\"id\":1500751599935668225,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:44'); INSERT INTO `sys_oper_log` VALUES (10912, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"日志\",\"createTime\":1646641799000,\"englishWord\":\"log\",\"id\":1500750596200972289,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1646640941000,\"englishWord\":\"write\",\"id\":1500746994665373697,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"票\",\"createTime\":1646636293000,\"englishWord\":\"ticket\",\"id\":1500727499158700033,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:44'); INSERT INTO `sys_oper_log` VALUES (10913, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"分组\",\"createTime\":1646635806000,\"englishWord\":\"group\",\"id\":1500725456331325442,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"开始\",\"createTime\":1646635611000,\"englishWord\":\"start\",\"id\":1500724642288222209,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"运行\",\"createTime\":1646635606000,\"englishWord\":\"run\",\"id\":1500724620788219905,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:45'); INSERT INTO `sys_oper_log` VALUES (10914, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":33,\"records\":[{\"chineseWord\":\"布尔\",\"createTime\":1646635567000,\"englishWord\":\"boolean\",\"id\":1500724457613017090,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"调用\",\"createTime\":1646635549000,\"englishWord\":\"call\",\"id\":1500724380953722882,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"可调用的\",\"createTime\":1646635523000,\"englishWord\":\"callable\",\"id\":1500724273160110082,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":99}}', 0, '', '2022-03-08 15:19:45'); INSERT INTO `sys_oper_log` VALUES (10915, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"选择\",\"top\":2,\"createTime\":1646724664442,\"englishWord\":\"select\",\"isCollect\":1,\"id\":1501098157386493954,\"sort\":0,\"content\":\"select\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 15:31:04'); INSERT INTO `sys_oper_log` VALUES (10916, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646724666758,\"en\":\"Life is for one generation, a good name is forever.\",\"id\":1501098167071141889,\"zh\":\"生命只有一代之久,而美名永存于世.\"}}', 0, '', '2022-03-08 15:31:06'); INSERT INTO `sys_oper_log` VALUES (10917, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"选择器\",\"top\":2,\"createTime\":1646724674912,\"englishWord\":\"selector\",\"isCollect\":1,\"id\":1501098201296662529,\"sort\":0,\"content\":\"selector\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 15:31:14'); INSERT INTO `sys_oper_log` VALUES (10918, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Life is for one generation, a good name is forever.\",\"zh\":\"生命只有一代之久,而美名永存于世.\"}}', 0, '', '2022-03-08 15:31:16'); INSERT INTO `sys_oper_log` VALUES (10919, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"进行\",\"top\":2,\"createTime\":1646727193366,\"englishWord\":\"reacotor\",\"isCollect\":1,\"id\":1501108764496097281,\"sort\":0,\"content\":\"reacotor\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-08 16:13:13'); INSERT INTO `sys_oper_log` VALUES (10920, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646727194859,\"en\":\"When is the most convenient time for you?\",\"id\":1501108770703667201,\"zh\":\"你什么时候最方便?\"}}', 0, '', '2022-03-08 16:13:14'); INSERT INTO `sys_oper_log` VALUES (10921, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-08\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"24\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-08 17:08:32\"}}', 0, '', '2022-03-08 17:16:41'); INSERT INTO `sys_oper_log` VALUES (10922, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646731002333,\"humidity\":\"36\",\"id\":1501124740461617153,\"province\":\"江西\",\"reporttime\":1646730512000,\"temperature\":\"19\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-08 17:16:42'); INSERT INTO `sys_oper_log` VALUES (10923, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"History and reality tell us that we should cherish today and strive for strength.\",\"createTime\":1646731026354,\"dataId\":4179,\"date\":1625155200000,\"id\":1501124841162661890,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3b7ba1d7af240adf51eb12df5d30231d.png\",\"note\":\"历史与现实告诉我们应该珍惜当下,奋发图强。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/4e11996f639fb4762261c1a825866b48.mp3\"}}', 0, '', '2022-03-08 17:17:06'); INSERT INTO `sys_oper_log` VALUES (10924, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"在我面前作威作福,你以为我真的怕你缩阳啊?\",\"createTime\":1641018782000,\"id\":1477165950106738690,\"source\":\"鹿鼎记\",\"type\":3}}', 0, '', '2022-03-08 17:17:09'); INSERT INTO `sys_oper_log` VALUES (10925, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"在我面前作威作福,你以为我真的怕你缩阳啊?\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":32,\"errorCode\":0,\"transResult\":[{\"dst\":\"In front of me liking. Do you think I\'m really afraid of your penis?\",\"src\":\"在我面前作威作福,你以为我真的怕你缩阳啊?\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-08 17:17:13'); INSERT INTO `sys_oper_log` VALUES (10926, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"把剑放下,成为本王的妻子吧。\\\"\",\"createTime\":1646787402596,\"id\":1501361300314488833,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-09 08:56:42'); INSERT INTO `sys_oper_log` VALUES (10927, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\" You have to believe in yourself. That\'s the secret.\",\"createTime\":1646787402819,\"dataId\":3405,\"date\":1559059200000,\"id\":1501361301249818626,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-05-29.jpg\",\"note\":\"人必须相信自己,这是成功的秘诀。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-05-291-day.mp3\"}}', 0, '', '2022-03-09 08:56:42'); INSERT INTO `sys_oper_log` VALUES (10928, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646787404096,\"humidity\":\"67\",\"id\":1501361306605944834,\"province\":\"江西\",\"reporttime\":1646786319000,\"temperature\":\"13\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-09 08:56:44'); INSERT INTO `sys_oper_log` VALUES (10929, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-03-12\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"小雨\",\"nightwind\":\"南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-09 08:38:39\"}}', 0, '', '2022-03-09 08:56:44'); INSERT INTO `sys_oper_log` VALUES (10930, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"魔法\",\"top\":2,\"createTime\":1646787432679,\"englishWord\":\"magic\",\"isCollect\":1,\"id\":1501361426487480322,\"sort\":0,\"content\":\"magic\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 08:57:12'); INSERT INTO `sys_oper_log` VALUES (10931, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646787434704,\"en\":\"Mr.Smith is still in his forties.\",\"id\":1501361434964230146,\"zh\":\" 史密斯先生才四十几岁。\"}}', 0, '', '2022-03-09 08:57:14'); INSERT INTO `sys_oper_log` VALUES (10932, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":35,\"records\":[{\"chineseWord\":\"魔法\",\"createTime\":1646787433000,\"englishWord\":\"magic\",\"id\":1501361426487480322,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"进行\",\"createTime\":1646727193000,\"englishWord\":\"reacotor\",\"id\":1501108764496097281,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"选择器\",\"createTime\":1646724675000,\"englishWord\":\"selector\",\"id\":1501098201296662529,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":103}}', 0, '', '2022-03-09 08:57:37'); INSERT INTO `sys_oper_log` VALUES (10933, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":35,\"records\":[{\"chineseWord\":\"选择\",\"createTime\":1646724664000,\"englishWord\":\"select\",\"id\":1501098157386493954,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"从\",\"createTime\":1646723956000,\"englishWord\":\"from\",\"id\":1501095187676655618,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"形式\",\"createTime\":1646723949000,\"englishWord\":\"form\",\"id\":1501095156605251585,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":103}}', 0, '', '2022-03-09 08:57:37'); INSERT INTO `sys_oper_log` VALUES (10934, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":35,\"records\":[{\"chineseWord\":\"python\",\"createTime\":1646723917000,\"englishWord\":\"python\",\"id\":1501095020613332993,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"主要\",\"createTime\":1646723314000,\"englishWord\":\"main\",\"id\":1501092494899933186,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"开放\",\"createTime\":1646723296000,\"englishWord\":\"open\",\"id\":1501092418370662401,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":103}}', 0, '', '2022-03-09 08:57:38'); INSERT INTO `sys_oper_log` VALUES (10935, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":35,\"records\":[{\"chineseWord\":\"服务器\",\"createTime\":1646723290000,\"englishWord\":\"server\",\"id\":1501092394194694145,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"客户端\",\"createTime\":1646723284000,\"englishWord\":\"client\",\"id\":1501092365623095298,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"休息\",\"createTime\":1646705173000,\"englishWord\":\"rest\",\"id\":1501016402977615874,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":103}}', 0, '', '2022-03-09 08:57:38'); INSERT INTO `sys_oper_log` VALUES (10936, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":35,\"records\":[{\"chineseWord\":\"宁静的\",\"createTime\":1646705158000,\"englishWord\":\"restful\",\"id\":1501016342487363586,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"基础\",\"createTime\":1646663624000,\"englishWord\":\"base\",\"id\":1500842137299406850,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"保存\",\"createTime\":1646663608000,\"englishWord\":\"save\",\"id\":1500842067464245249,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":103}}', 0, '', '2022-03-09 08:57:38'); INSERT INTO `sys_oper_log` VALUES (10937, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":35,\"records\":[{\"chineseWord\":\"池\",\"createTime\":1646644331000,\"englishWord\":\"pool\",\"id\":1500761212617736193,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"完整的\",\"createTime\":1646643210000,\"englishWord\":\"full\",\"id\":1500756511402737665,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"队列\",\"createTime\":1646643201000,\"englishWord\":\"queue\",\"id\":1500756474933264386,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":103}}', 0, '', '2022-03-09 08:57:38'); INSERT INTO `sys_oper_log` VALUES (10938, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":35,\"records\":[{\"chineseWord\":\"读\",\"createTime\":1646642039000,\"englishWord\":\"read\",\"id\":1500751599935668225,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"日志\",\"createTime\":1646641799000,\"englishWord\":\"log\",\"id\":1500750596200972289,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1646640941000,\"englishWord\":\"write\",\"id\":1500746994665373697,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":103}}', 0, '', '2022-03-09 08:57:38'); INSERT INTO `sys_oper_log` VALUES (10939, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":35,\"records\":[{\"chineseWord\":\"票\",\"createTime\":1646636293000,\"englishWord\":\"ticket\",\"id\":1500727499158700033,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"分组\",\"createTime\":1646635806000,\"englishWord\":\"group\",\"id\":1500725456331325442,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"开始\",\"createTime\":1646635611000,\"englishWord\":\"start\",\"id\":1500724642288222209,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":103}}', 0, '', '2022-03-09 08:57:39'); INSERT INTO `sys_oper_log` VALUES (10940, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Mr.Smith is still in his forties.\",\"zh\":\" 史密斯先生才四十几岁。\"}}', 0, '', '2022-03-09 08:57:56'); INSERT INTO `sys_oper_log` VALUES (10941, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Mr.Smith is still in his forties.\",\"zh\":\" 史密斯先生才四十几岁。\"}}', 0, '', '2022-03-09 08:57:57'); INSERT INTO `sys_oper_log` VALUES (10942, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Be yourself; everyone else is already taken.\",\"createTime\":1646787480335,\"dataId\":4086,\"date\":1617379200000,\"id\":1501361626341933058,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/676ca3fc4587141887ee223f018dd557.png\",\"note\":\"做你自己,因为别人都有人做了。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/44f2f311a79f3d10b1a27fa744e2f836.mp3\"}}', 0, '', '2022-03-09 08:58:00'); INSERT INTO `sys_oper_log` VALUES (10943, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"我已经发现了,无论两条腿怎样努力也不能使两颗心灵更加接近\\\"\",\"createTime\":1646787482306,\"id\":1501361634604711938,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-09 08:58:02'); INSERT INTO `sys_oper_log` VALUES (10944, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The size of your dreams must always exceed your current capacity to achieve them.\",\"dataId\":4016,\"date\":1611331200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/94bd189b6d0ee6be0e0c7fe841dfbe13.png\",\"note\":\"你的梦想应该总是比当前的能力要大。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/7be13911cd416ab1ee94e2606b1b217f.mp3\"}}', 0, '', '2022-03-09 09:07:01'); INSERT INTO `sys_oper_log` VALUES (10945, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天他终于约我出去吃饭了,好开心,到了火锅店我发现,他正和另一个女孩子坐一起,他想得真周到,叫上其他人不会容易冷场,我走过去发现他们好像已经吃完了,他说你别吃了去买一下单,他真贴心,知道我最近减肥不能吃太多。我更爱他了……\",\"createTime\":1646788024097,\"id\":1501363907053453313,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-09 09:07:04'); INSERT INTO `sys_oper_log` VALUES (10946, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"学习\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":0,\"errorCode\":0,\"transResult\":[{\"dst\":\"learning\",\"src\":\"学习\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-09 09:07:05'); INSERT INTO `sys_oper_log` VALUES (10947, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"学习\",\"top\":2,\"createTime\":1646788032840,\"englishWord\":\"learn\",\"isCollect\":1,\"id\":1501363943715803138,\"sort\":0,\"content\":\"learn\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 09:07:12'); INSERT INTO `sys_oper_log` VALUES (10948, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646788034331,\"en\":\"There is a time to speak and a time to be silent.\",\"id\":1501363949956988929,\"zh\":\"有该说话的时候,也有该沉默的时候.\"}}', 0, '', '2022-03-09 09:07:14'); INSERT INTO `sys_oper_log` VALUES (10949, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"孩子\",\"top\":2,\"createTime\":1646789521517,\"englishWord\":\"child\",\"isCollect\":1,\"id\":1501370187688087553,\"sort\":0,\"content\":\"child\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 09:32:01'); INSERT INTO `sys_oper_log` VALUES (10950, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646789522961,\"en\":\"How did you like it?\",\"id\":1501370193748918273,\"zh\":\" 你喜欢那儿吗?\"}}', 0, '', '2022-03-09 09:32:02'); INSERT INTO `sys_oper_log` VALUES (10951, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"通道\",\"top\":2,\"createTime\":1646789568821,\"englishWord\":\"channel\",\"isCollect\":1,\"id\":1501370386112221185,\"sort\":0,\"content\":\"channel\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 09:32:48'); INSERT INTO `sys_oper_log` VALUES (10952, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"How did you like it?\",\"zh\":\" 你喜欢那儿吗?\"}}', 0, '', '2022-03-09 09:32:50'); INSERT INTO `sys_oper_log` VALUES (10953, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"system\"}', '', 1, '该词汇已存在!!!!', '2022-03-09 09:33:04'); INSERT INTO `sys_oper_log` VALUES (10954, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"绑定\",\"top\":2,\"createTime\":1646789598050,\"englishWord\":\"bind\",\"isCollect\":1,\"id\":1501370508669784066,\"sort\":0,\"content\":\"bind\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 09:33:18'); INSERT INTO `sys_oper_log` VALUES (10955, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"How did you like it?\",\"zh\":\" 你喜欢那儿吗?\"}}', 0, '', '2022-03-09 09:33:19'); INSERT INTO `sys_oper_log` VALUES (10956, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646791370766,\"englishWord\":\"images\",\"isCollect\":1,\"id\":1501377943996370946,\"sort\":0,\"content\":\"images\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:02:50'); INSERT INTO `sys_oper_log` VALUES (10957, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646791372471,\"en\":\"Hope is itself a species of happiness,and perhaps the chief happiness which this world affords.\",\"id\":1501377951147720705,\"zh\":\"希望本身是一种幸福,也许是这个世界能提供的主要的幸福.\"}}', 0, '', '2022-03-09 10:02:52'); INSERT INTO `sys_oper_log` VALUES (10958, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1501377943996370946', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:02:56'); INSERT INTO `sys_oper_log` VALUES (10959, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"图像\",\"top\":2,\"createTime\":1646791382685,\"englishWord\":\"image\",\"isCollect\":1,\"id\":1501377994005057537,\"sort\":0,\"content\":\"image\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:03:02'); INSERT INTO `sys_oper_log` VALUES (10960, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Hope is itself a species of happiness,and perhaps the chief happiness which this world affords.\",\"zh\":\"希望本身是一种幸福,也许是这个世界能提供的主要的幸福.\"}}', 0, '', '2022-03-09 10:03:04'); INSERT INTO `sys_oper_log` VALUES (10961, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"消息\",\"top\":2,\"createTime\":1646791392659,\"englishWord\":\"message\",\"isCollect\":1,\"id\":1501378035797102594,\"sort\":0,\"content\":\"message\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:03:12'); INSERT INTO `sys_oper_log` VALUES (10962, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Hope is itself a species of happiness,and perhaps the chief happiness which this world affords.\",\"zh\":\"希望本身是一种幸福,也许是这个世界能提供的主要的幸福.\"}}', 0, '', '2022-03-09 10:03:16'); INSERT INTO `sys_oper_log` VALUES (10963, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"消息\",\"createTime\":1646791393000,\"englishWord\":\"message\",\"id\":1501378035797102594,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"图像\",\"createTime\":1646791383000,\"englishWord\":\"image\",\"id\":1501377994005057537,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"绑定\",\"createTime\":1646789598000,\"englishWord\":\"bind\",\"id\":1501370508669784066,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:22'); INSERT INTO `sys_oper_log` VALUES (10964, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"通道\",\"createTime\":1646789569000,\"englishWord\":\"channel\",\"id\":1501370386112221185,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"孩子\",\"createTime\":1646789522000,\"englishWord\":\"child\",\"id\":1501370187688087553,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"学习\",\"createTime\":1646788033000,\"englishWord\":\"learn\",\"id\":1501363943715803138,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:22'); INSERT INTO `sys_oper_log` VALUES (10965, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"魔法\",\"createTime\":1646787433000,\"englishWord\":\"magic\",\"id\":1501361426487480322,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"进行\",\"createTime\":1646727193000,\"englishWord\":\"reacotor\",\"id\":1501108764496097281,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"选择器\",\"createTime\":1646724675000,\"englishWord\":\"selector\",\"id\":1501098201296662529,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:22'); INSERT INTO `sys_oper_log` VALUES (10966, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"选择\",\"createTime\":1646724664000,\"englishWord\":\"select\",\"id\":1501098157386493954,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"从\",\"createTime\":1646723956000,\"englishWord\":\"from\",\"id\":1501095187676655618,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"形式\",\"createTime\":1646723949000,\"englishWord\":\"form\",\"id\":1501095156605251585,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:22'); INSERT INTO `sys_oper_log` VALUES (10967, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"python\",\"createTime\":1646723917000,\"englishWord\":\"python\",\"id\":1501095020613332993,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"主要\",\"createTime\":1646723314000,\"englishWord\":\"main\",\"id\":1501092494899933186,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"开放\",\"createTime\":1646723296000,\"englishWord\":\"open\",\"id\":1501092418370662401,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:23'); INSERT INTO `sys_oper_log` VALUES (10968, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"服务器\",\"createTime\":1646723290000,\"englishWord\":\"server\",\"id\":1501092394194694145,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"客户端\",\"createTime\":1646723284000,\"englishWord\":\"client\",\"id\":1501092365623095298,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"休息\",\"createTime\":1646705173000,\"englishWord\":\"rest\",\"id\":1501016402977615874,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:23'); INSERT INTO `sys_oper_log` VALUES (10969, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"宁静的\",\"createTime\":1646705158000,\"englishWord\":\"restful\",\"id\":1501016342487363586,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"基础\",\"createTime\":1646663624000,\"englishWord\":\"base\",\"id\":1500842137299406850,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"保存\",\"createTime\":1646663608000,\"englishWord\":\"save\",\"id\":1500842067464245249,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:23'); INSERT INTO `sys_oper_log` VALUES (10970, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"池\",\"createTime\":1646644331000,\"englishWord\":\"pool\",\"id\":1500761212617736193,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"完整的\",\"createTime\":1646643210000,\"englishWord\":\"full\",\"id\":1500756511402737665,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"队列\",\"createTime\":1646643201000,\"englishWord\":\"queue\",\"id\":1500756474933264386,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:23'); INSERT INTO `sys_oper_log` VALUES (10971, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"读\",\"createTime\":1646642039000,\"englishWord\":\"read\",\"id\":1500751599935668225,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"日志\",\"createTime\":1646641799000,\"englishWord\":\"log\",\"id\":1500750596200972289,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1646640941000,\"englishWord\":\"write\",\"id\":1500746994665373697,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:25'); INSERT INTO `sys_oper_log` VALUES (10972, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"票\",\"createTime\":1646636293000,\"englishWord\":\"ticket\",\"id\":1500727499158700033,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"分组\",\"createTime\":1646635806000,\"englishWord\":\"group\",\"id\":1500725456331325442,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"开始\",\"createTime\":1646635611000,\"englishWord\":\"start\",\"id\":1500724642288222209,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:26'); INSERT INTO `sys_oper_log` VALUES (10973, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"运行\",\"createTime\":1646635606000,\"englishWord\":\"run\",\"id\":1500724620788219905,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"布尔\",\"createTime\":1646635567000,\"englishWord\":\"boolean\",\"id\":1500724457613017090,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"调用\",\"createTime\":1646635549000,\"englishWord\":\"call\",\"id\":1500724380953722882,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:26'); INSERT INTO `sys_oper_log` VALUES (10974, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"可调用的\",\"createTime\":1646635523000,\"englishWord\":\"callable\",\"id\":1500724273160110082,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"并发\",\"createTime\":1646635515000,\"englishWord\":\"concurrent\",\"id\":1500724237093289985,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"线程\",\"createTime\":1646634826000,\"englishWord\":\"thread\",\"id\":1500721347238805506,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:26'); INSERT INTO `sys_oper_log` VALUES (10975, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"静态\",\"createTime\":1646634790000,\"englishWord\":\"static\",\"id\":1500721196046729217,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"人\",\"createTime\":1646632129000,\"englishWord\":\"person\",\"id\":1500710034328502274,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"集\",\"createTime\":1646632098000,\"englishWord\":\"set\",\"id\":1500709907706658818,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:27'); INSERT INTO `sys_oper_log` VALUES (10976, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"摧毁\",\"createTime\":1646357058000,\"englishWord\":\"destroy\",\"id\":1499556303943737346,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"文章\",\"createTime\":1646270833000,\"englishWord\":\"article\",\"id\":1499194651561934849,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"锁\",\"createTime\":1646270680000,\"englishWord\":\"lock\",\"id\":1499194008512217089,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:28'); INSERT INTO `sys_oper_log` VALUES (10977, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"同步\",\"createTime\":1646270644000,\"englishWord\":\"synchronized\",\"id\":1499193859354378241,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"蜘蛛\",\"createTime\":1646202368000,\"englishWord\":\"spider\",\"id\":1498907488693661698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"积分\",\"createTime\":1646099284000,\"englishWord\":\"integral\",\"id\":1498475123475460098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:28'); INSERT INTO `sys_oper_log` VALUES (10978, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"条件\",\"createTime\":1645497826000,\"englishWord\":\"conditions\",\"id\":1495952426027585537,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1645490416000,\"englishWord\":\"source\",\"id\":1495921344716607490,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"重置\",\"createTime\":1645428992000,\"englishWord\":\"reset\",\"id\":1495663714559500290,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:28'); INSERT INTO `sys_oper_log` VALUES (10979, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"设置\",\"createTime\":1645413604000,\"englishWord\":\"settings\",\"id\":1495599171498057730,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"注解\",\"createTime\":1645406032000,\"englishWord\":\"annotation\",\"id\":1495567412718903297,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"爬虫\",\"createTime\":1645281842000,\"englishWord\":\"reptile\",\"id\":1495046521038295041,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:28'); INSERT INTO `sys_oper_log` VALUES (10980, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"发布\",\"createTime\":1645280419000,\"englishWord\":\"release\",\"id\":1495040553210597378,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"平台\",\"createTime\":1645274475000,\"englishWord\":\"platform\",\"id\":1495015622968070145,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"壁纸\",\"createTime\":1645265889000,\"englishWord\":\"wallpaper\",\"id\":1494979609008787457,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:29'); INSERT INTO `sys_oper_log` VALUES (10981, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"排序\",\"createTime\":1645104915000,\"englishWord\":\"sort\",\"id\":1494304435537620994,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"记事簿\",\"createTime\":1644830213000,\"englishWord\":\"diary\",\"id\":1493152253482860546,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"将来\",\"createTime\":1643169293000,\"englishWord\":\"future\",\"id\":1486185848293789698,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:29'); INSERT INTO `sys_oper_log` VALUES (10982, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"口述\",\"createTime\":1642659171000,\"englishWord\":\"dict\",\"id\":1484046241120800770,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"中国人\",\"createTime\":1642659164000,\"englishWord\":\"Chinese\",\"id\":1484046213794910210,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"图片\",\"createTime\":1642563486000,\"englishWord\":\"picture\",\"id\":1483644909901729793,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:29'); INSERT INTO `sys_oper_log` VALUES (10983, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"自动注入\",\"createTime\":1642513610000,\"englishWord\":\"autowired\",\"id\":1483435716345839618,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"可移动的\",\"createTime\":1642486145000,\"englishWord\":\"mobile\",\"id\":1483320518697414657,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"插件\",\"createTime\":1642478343000,\"englishWord\":\"plugin\",\"id\":1483287794548862978,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:30'); INSERT INTO `sys_oper_log` VALUES (10984, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":22,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"性质\",\"createTime\":1642474316000,\"englishWord\":\"properties\",\"id\":1483270903470092289,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"检查\",\"createTime\":1642383801000,\"englishWord\":\"check\",\"id\":1482891255196405761,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"天气\",\"createTime\":1642334718000,\"englishWord\":\"weather\",\"id\":1482685386079244290,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:30'); INSERT INTO `sys_oper_log` VALUES (10985, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":23,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"搜索\",\"createTime\":1641780081000,\"englishWord\":\"search\",\"id\":1480359071717675009,\"isCollect\":1,\"lookCount\":13,\"sort\":0,\"top\":2},{\"chineseWord\":\"处理程序\",\"createTime\":1641580742000,\"englishWord\":\"handler\",\"id\":1479522982986203137,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"资源\",\"createTime\":1641374137000,\"englishWord\":\"resource\",\"id\":1478656420223324161,\"isCollect\":1,\"lookCount\":15,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:31'); INSERT INTO `sys_oper_log` VALUES (10986, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":24,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"监视\",\"createTime\":1641109553000,\"englishWord\":\"monitor\",\"id\":1477546671002509313,\"isCollect\":1,\"lookCount\":10,\"sort\":0,\"top\":2},{\"chineseWord\":\"任务\",\"createTime\":1641051761000,\"englishWord\":\"task\",\"id\":1477304276453326849,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地服务器\",\"createTime\":1641051742000,\"englishWord\":\"localhost\",\"id\":1477304194626650114,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:31'); INSERT INTO `sys_oper_log` VALUES (10987, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":25,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"公共\",\"createTime\":1641032650000,\"englishWord\":\"public\",\"id\":1477224117046005761,\"isCollect\":1,\"lookCount\":11,\"sort\":0,\"top\":2},{\"chineseWord\":\"私人\",\"createTime\":1641032269000,\"englishWord\":\"private\",\"id\":1477222518877769730,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2},{\"chineseWord\":\"方法\",\"createTime\":1641024558000,\"englishWord\":\"method\",\"id\":1477190180047413250,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:31'); INSERT INTO `sys_oper_log` VALUES (10988, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":26,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"系统\",\"createTime\":1641021176000,\"englishWord\":\"system\",\"id\":1477175992788967425,\"isCollect\":1,\"lookCount\":8,\"sort\":0,\"top\":2},{\"chineseWord\":\"收集\",\"createTime\":1640964549000,\"englishWord\":\"collect\",\"id\":1476938480355069953,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"删除\",\"createTime\":1640964530000,\"englishWord\":\"remove\",\"id\":1476938401682509826,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:32'); INSERT INTO `sys_oper_log` VALUES (10989, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":27,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"删除\",\"createTime\":1640964520000,\"englishWord\":\"delete\",\"id\":1476938359533948929,\"isCollect\":1,\"lookCount\":6,\"sort\":0,\"top\":2},{\"chineseWord\":\"使现代化\",\"createTime\":1640964510000,\"englishWord\":\"update\",\"id\":1476938319759364097,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"插入\",\"createTime\":1640964500000,\"englishWord\":\"insert\",\"id\":1476938277765992449,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:32'); INSERT INTO `sys_oper_log` VALUES (10990, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":28,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"创建\",\"createTime\":1640964490000,\"englishWord\":\"create\",\"id\":1476938235655180289,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"跑龙套\",\"createTime\":1640964475000,\"englishWord\":\"util\",\"id\":1476938172145029121,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"工具\",\"createTime\":1640964469000,\"englishWord\":\"tool\",\"id\":1476938146253590530,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:32'); INSERT INTO `sys_oper_log` VALUES (10991, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":29,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"数据\",\"createTime\":1640964459000,\"englishWord\":\"data\",\"id\":1476938103647850497,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"写\",\"createTime\":1640964345000,\"englishWord\":\"writing\",\"id\":1476937627887947778,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"记录\",\"createTime\":1640964322000,\"englishWord\":\"record\",\"id\":1476937530873696258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:32'); INSERT INTO `sys_oper_log` VALUES (10992, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":30,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"遥远的\",\"createTime\":1640964276000,\"englishWord\":\"remote\",\"id\":1476937337516281858,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常见的\",\"createTime\":1640964261000,\"englishWord\":\"common\",\"id\":1476937272714285057,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"常量\",\"createTime\":1640964253000,\"englishWord\":\"const\",\"id\":1476937240871129089,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:33'); INSERT INTO `sys_oper_log` VALUES (10993, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":31,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"业务\",\"createTime\":1640964242000,\"englishWord\":\"business\",\"id\":1476937196273094658,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"加载\",\"createTime\":1640964191000,\"englishWord\":\"loading\",\"id\":1476936980862029825,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"映射器\",\"createTime\":1640964145000,\"englishWord\":\"mapper\",\"id\":1476936787844354050,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:33'); INSERT INTO `sys_oper_log` VALUES (10994, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":32,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"服务\",\"createTime\":1640964135000,\"englishWord\":\"service\",\"id\":1476936744378781698,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主题\",\"createTime\":1640964063000,\"englishWord\":\"subject\",\"id\":1476936444410548225,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"项目\",\"createTime\":1640964008000,\"englishWord\":\"project\",\"id\":1476936213279232001,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:33'); INSERT INTO `sys_oper_log` VALUES (10995, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":33,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"模型\",\"createTime\":1640963976000,\"englishWord\":\"model\",\"id\":1476936077668995074,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"对象\",\"createTime\":1640963889000,\"englishWord\":\"object\",\"id\":1476935715620868098,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"翻译\",\"createTime\":1640963810000,\"englishWord\":\"translation\",\"id\":1476935381339033601,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:34'); INSERT INTO `sys_oper_log` VALUES (10996, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":34,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"实现\",\"createTime\":1640962854000,\"englishWord\":\"implement\",\"id\":1476931373052416002,\"isCollect\":1,\"lookCount\":4,\"sort\":0,\"top\":2},{\"chineseWord\":\"回答\",\"createTime\":1640962831000,\"englishWord\":\"response\",\"id\":1476931277594251266,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"要求\",\"createTime\":1640962811000,\"englishWord\":\"request\",\"id\":1476931190419836930,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:34'); INSERT INTO `sys_oper_log` VALUES (10997, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":35,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"控制器\",\"createTime\":1640960742000,\"englishWord\":\"controller\",\"id\":1476922513520545793,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"警告\",\"createTime\":1640960580000,\"englishWord\":\"warning\",\"id\":1476921835792322562,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"工厂\",\"createTime\":1640955890000,\"englishWord\":\"factory\",\"id\":1476902162551943170,\"isCollect\":1,\"lookCount\":7,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:34'); INSERT INTO `sys_oper_log` VALUES (10998, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":36,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"存在\",\"createTime\":1640916319000,\"englishWord\":\"exist\",\"id\":1476736189120798721,\"isCollect\":1,\"lookCount\":25,\"sort\":0,\"top\":2},{\"chineseWord\":\"类\",\"createTime\":1640879848000,\"englishWord\":\"class\",\"id\":1476583220205801474,\"isCollect\":1,\"lookCount\":47,\"sort\":0,\"top\":2},{\"chineseWord\":\"抽象\",\"createTime\":1640872128000,\"englishWord\":\"abstract\",\"id\":1476550839990173697,\"isCollect\":1,\"lookCount\":30,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:35'); INSERT INTO `sys_oper_log` VALUES (10999, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":37,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[{\"chineseWord\":\"接口\",\"createTime\":1640859782000,\"englishWord\":\"interface\",\"id\":1476499056043425794,\"isCollect\":1,\"lookCount\":43,\"sort\":18,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:35'); INSERT INTO `sys_oper_log` VALUES (11000, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":38,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:35'); INSERT INTO `sys_oper_log` VALUES (11001, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":39,\"optimizeCountSql\":true,\"orders\":[],\"pages\":37,\"records\":[],\"searchCount\":true,\"size\":3,\"total\":109}}', 0, '', '2022-03-09 10:03:35'); INSERT INTO `sys_oper_log` VALUES (11002, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646791919478,\"englishWord\":\"code\",\"isCollect\":1,\"id\":1501380245486473218,\"sort\":0,\"content\":\"code\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:11:59'); INSERT INTO `sys_oper_log` VALUES (11003, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646791921182,\"en\":\"My country is rich in natural resources.\",\"id\":1501380252579102721,\"zh\":\" 我国自然资源丰富。\"}}', 0, '', '2022-03-09 10:12:01'); INSERT INTO `sys_oper_log` VALUES (11004, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1501380245486473218', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:12:03'); INSERT INTO `sys_oper_log` VALUES (11005, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"代码\",\"top\":2,\"createTime\":1646792192271,\"englishWord\":\"code\",\"isCollect\":1,\"id\":1501381389629689858,\"sort\":0,\"content\":\"code\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:16:32'); INSERT INTO `sys_oper_log` VALUES (11006, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646792193843,\"en\":\"Adventure is just a romantic name for trouble.\",\"id\":1501381396198031362,\"zh\":\"冒险是自找麻烦的浪漫说法。\"}}', 0, '', '2022-03-09 10:16:33'); INSERT INTO `sys_oper_log` VALUES (11007, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Adventure is just a romantic name for trouble.\",\"zh\":\"冒险是自找麻烦的浪漫说法。\"}}', 0, '', '2022-03-09 10:16:41'); INSERT INTO `sys_oper_log` VALUES (11008, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Adventure is just a romantic name for trouble.\",\"zh\":\"冒险是自找麻烦的浪漫说法。\"}}', 0, '', '2022-03-09 10:16:42'); INSERT INTO `sys_oper_log` VALUES (11009, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Adventure is just a romantic name for trouble.\",\"zh\":\"冒险是自找麻烦的浪漫说法。\"}}', 0, '', '2022-03-09 10:16:43'); INSERT INTO `sys_oper_log` VALUES (11010, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"网状的\",\"top\":2,\"createTime\":1646792546293,\"englishWord\":\"netty\",\"isCollect\":1,\"id\":1501382874539134978,\"sort\":0,\"content\":\"netty\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:22:26'); INSERT INTO `sys_oper_log` VALUES (11011, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646792548225,\"en\":\"The bull must be taken by the horns.\",\"id\":1501382882621620225,\"zh\":\"对付公牛得抓其角.\"}}', 0, '', '2022-03-09 10:22:28'); INSERT INTO `sys_oper_log` VALUES (11012, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1501382874539134978', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:22:31'); INSERT INTO `sys_oper_log` VALUES (11013, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"tomcat\",\"top\":2,\"createTime\":1646792555908,\"englishWord\":\"tomcat\",\"isCollect\":1,\"id\":1501382914817036289,\"sort\":0,\"content\":\"tomcat\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:22:35'); INSERT INTO `sys_oper_log` VALUES (11014, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"The bull must be taken by the horns.\",\"zh\":\"对付公牛得抓其角.\"}}', 0, '', '2022-03-09 10:22:37'); INSERT INTO `sys_oper_log` VALUES (11015, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1501382914817036289', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:22:39'); INSERT INTO `sys_oper_log` VALUES (11016, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"事件\",\"top\":2,\"createTime\":1646792571904,\"englishWord\":\"event\",\"isCollect\":1,\"id\":1501382981938483201,\"sort\":0,\"content\":\"event\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 10:22:51'); INSERT INTO `sys_oper_log` VALUES (11017, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"The bull must be taken by the horns.\",\"zh\":\"对付公牛得抓其角.\"}}', 0, '', '2022-03-09 10:22:53'); INSERT INTO `sys_oper_log` VALUES (11018, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"The bull must be taken by the horns.\",\"zh\":\"对付公牛得抓其角.\"}}', 0, '', '2022-03-09 10:23:01'); INSERT INTO `sys_oper_log` VALUES (11019, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"The bull must be taken by the horns.\",\"zh\":\"对付公牛得抓其角.\"}}', 0, '', '2022-03-09 10:23:02'); INSERT INTO `sys_oper_log` VALUES (11020, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646796120858,\"englishWord\":\"socket\",\"isCollect\":1,\"id\":1501397867355607042,\"sort\":0,\"content\":\"socket\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 11:22:00'); INSERT INTO `sys_oper_log` VALUES (11021, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1501397867355607042', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 11:22:04'); INSERT INTO `sys_oper_log` VALUES (11022, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"套接字\",\"top\":2,\"createTime\":1646796131311,\"englishWord\":\"socket\",\"isCollect\":1,\"id\":1501397911165112322,\"sort\":0,\"content\":\"socket\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 11:22:11'); INSERT INTO `sys_oper_log` VALUES (11023, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646796133862,\"en\":\"Can you came down a bit?\",\"id\":1501397921864843266,\"zh\":\" 可以再便宜点吗?\"}}', 0, '', '2022-03-09 11:22:13'); INSERT INTO `sys_oper_log` VALUES (11024, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646796703523,\"englishWord\":\"study\",\"isCollect\":1,\"id\":1501400311208775681,\"sort\":0,\"content\":\"study\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 11:31:43'); INSERT INTO `sys_oper_log` VALUES (11025, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1501400311208775681', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 11:31:46'); INSERT INTO `sys_oper_log` VALUES (11026, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"研究\",\"top\":2,\"createTime\":1646796712411,\"englishWord\":\"study\",\"isCollect\":1,\"id\":1501400348491943937,\"sort\":0,\"content\":\"study\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 11:31:52'); INSERT INTO `sys_oper_log` VALUES (11027, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646796715371,\"en\":\"To be both a speaker of words and a doer of deeds.\",\"id\":1501400360877785089,\"zh\":\"既当演说家,又做实干家.\"}}', 0, '', '2022-03-09 11:31:55'); INSERT INTO `sys_oper_log` VALUES (11028, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"translation\"}', '', 1, '该词汇已存在!!!!', '2022-03-09 11:39:57'); INSERT INTO `sys_oper_log` VALUES (11029, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1646797231265,\"englishWord\":\"default\",\"isCollect\":1,\"id\":1501402524735938562,\"sort\":0,\"content\":\"default\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 11:40:31'); INSERT INTO `sys_oper_log` VALUES (11030, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1501402524735938562', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 11:42:44'); INSERT INTO `sys_oper_log` VALUES (11031, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"默认的\",\"top\":2,\"createTime\":1646797366994,\"englishWord\":\"default\",\"isCollect\":1,\"id\":1501403093991071746,\"sort\":0,\"content\":\"default\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 11:42:47'); INSERT INTO `sys_oper_log` VALUES (11032, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"模块\",\"top\":2,\"createTime\":1646797418300,\"englishWord\":\"module\",\"isCollect\":1,\"id\":1501403309209198594,\"sort\":0,\"content\":\"module\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 11:43:38'); INSERT INTO `sys_oper_log` VALUES (11033, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646797420169,\"en\":\"I was on the track team 10 years ago.\",\"id\":1501403317027348482,\"zh\":\" 十年前,我在田径队。\"}}', 0, '', '2022-03-09 11:43:40'); INSERT INTO `sys_oper_log` VALUES (11034, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"A dream doesn’t become reality through magic; it takes sweat, determination, and hard work.\",\"dataId\":4051,\"date\":1614355200000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/9ec463a413f7c8d885078d9d20833c10.png\",\"note\":\"梦想的实现不是靠魔法,而是靠汗水、决心与努力。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/e0fcf18e9874e49391b0bb026d2f5754.mp3\"}}', 0, '', '2022-03-09 11:46:07'); INSERT INTO `sys_oper_log` VALUES (11035, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"昨晚本王和朋友打了一晚上游戏,我破天荒的的给17号舔狗看了战绩,虽然他看不懂但是他相信本王一定是最厉害的,最棒的!他给本王发了好多消息,告诉我有多崇拜我,我回了他一句“啥b”。并不是因为什么,只是刚刚男神给我打电话,叫我去宾馆。哎一晚上整的我死去活来,第二天就给他打电话叫他来接我,才发现他竟然改了ID,“我是你的啥b啊”\",\"createTime\":1646797568698,\"id\":1501403940036681729,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-09 11:46:08'); INSERT INTO `sys_oper_log` VALUES (11036, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"项目\",\"translationType\":2}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"elapsedTime\":1,\"errorCode\":0,\"transResult\":[{\"dst\":\"project\",\"src\":\"项目\"}],\"type\":\"ZH_CN2EN\"}}', 0, '', '2022-03-09 11:46:12'); INSERT INTO `sys_oper_log` VALUES (11037, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"很多时候女人不是笨,只是懒得聪明,特别是在喜欢的人面前,而且笨的程度和爱这个男人的程度成正比。\",\"createTime\":1646810493814,\"id\":1501458151894032386,\"source\":\"朵朵\",\"type\":5}}', 0, '', '2022-03-09 15:21:33'); INSERT INTO `sys_oper_log` VALUES (11038, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"长度\",\"top\":2,\"createTime\":1646810508512,\"englishWord\":\"length\",\"isCollect\":1,\"id\":1501458213520973826,\"sort\":0,\"content\":\"length\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 15:21:48'); INSERT INTO `sys_oper_log` VALUES (11039, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646810510203,\"en\":\"I didn\'t sleep well.\",\"id\":1501458220605120513,\"zh\":\" 我没睡好。\"}}', 0, '', '2022-03-09 15:21:50'); INSERT INTO `sys_oper_log` VALUES (11040, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I didn\'t sleep well.\",\"zh\":\" 我没睡好。\"}}', 0, '', '2022-03-09 15:22:28'); INSERT INTO `sys_oper_log` VALUES (11041, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"create\"}', '', 1, '该词汇已存在!!!!', '2022-03-09 15:22:49'); INSERT INTO `sys_oper_log` VALUES (11042, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"代理\",\"top\":2,\"createTime\":1646810582814,\"englishWord\":\"proxy\",\"isCollect\":1,\"id\":1501458525145178114,\"sort\":0,\"content\":\"proxy\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 15:23:02'); INSERT INTO `sys_oper_log` VALUES (11043, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"I didn\'t sleep well.\",\"zh\":\" 我没睡好。\"}}', 0, '', '2022-03-09 15:23:04'); INSERT INTO `sys_oper_log` VALUES (11044, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"建造\",\"top\":2,\"createTime\":1646810756003,\"englishWord\":\"bulid\",\"isCollect\":1,\"id\":1501459251594436609,\"sort\":0,\"content\":\"bulid\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 15:25:56'); INSERT INTO `sys_oper_log` VALUES (11045, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"许可证\",\"top\":2,\"createTime\":1646810779583,\"englishWord\":\"license\",\"isCollect\":1,\"id\":1501459350500319234,\"sort\":0,\"content\":\"license\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 15:26:19'); INSERT INTO `sys_oper_log` VALUES (11046, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646810781059,\"en\":\"At need one sees who his friend is.\",\"id\":1501459356678496257,\"zh\":\"处于困境时可以看出谁是自己的朋友.\"}}', 0, '', '2022-03-09 15:26:21'); INSERT INTO `sys_oper_log` VALUES (11047, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"At need one sees who his friend is.\",\"zh\":\"处于困境时可以看出谁是自己的朋友.\"}}', 0, '', '2022-03-09 15:26:27'); INSERT INTO `sys_oper_log` VALUES (11048, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"At need one sees who his friend is.\",\"zh\":\"处于困境时可以看出谁是自己的朋友.\"}}', 0, '', '2022-03-09 15:26:30'); INSERT INTO `sys_oper_log` VALUES (11049, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The only thing I want is to awaken all humans on the planet that we are living on Mother Earth.\",\"createTime\":1646814690097,\"dataId\":3699,\"date\":1583942400000,\"id\":1501475752368021506,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/17ab49a1d5af99772f49c08d3c9e9e23.png\",\"note\":\"我想要提醒这个星球上的人类的唯一一件事就是:我们依赖地球母亲生存。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/0985ecf04609dfaa4f2dbf7329d2b80c.mp3\"}}', 0, '', '2022-03-09 16:31:30'); INSERT INTO `sys_oper_log` VALUES (11050, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"英语老师走进教室:快关上所有窗子。。同学问老师为什么?老师把试卷拿出来说:这次考试成绩很差,我怕有人想不开。。。\",\"createTime\":1646374801000,\"id\":1499630724645543942,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-09 16:31:33'); INSERT INTO `sys_oper_log` VALUES (11051, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"提供者\",\"top\":2,\"createTime\":1646814737014,\"englishWord\":\"provider\",\"isCollect\":1,\"id\":1501475949127049217,\"sort\":0,\"content\":\"provider\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 16:32:17'); INSERT INTO `sys_oper_log` VALUES (11052, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"消费者\",\"top\":2,\"createTime\":1646814745162,\"englishWord\":\"consumer\",\"isCollect\":1,\"id\":1501475983289655297,\"sort\":0,\"content\":\"consumer\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 16:32:25'); INSERT INTO `sys_oper_log` VALUES (11053, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646814746751,\"en\":\"Get busy living, or get busy dying.\",\"id\":1501475990000508930,\"zh\":\"或汲汲于生,或汲汲于死。\"}}', 0, '', '2022-03-09 16:32:26'); INSERT INTO `sys_oper_log` VALUES (11054, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Get busy living, or get busy dying.\",\"zh\":\"或汲汲于生,或汲汲于死。\"}}', 0, '', '2022-03-09 16:32:28'); INSERT INTO `sys_oper_log` VALUES (11055, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Get busy living, or get busy dying.\",\"zh\":\"或汲汲于生,或汲汲于死。\"}}', 0, '', '2022-03-09 16:32:30'); INSERT INTO `sys_oper_log` VALUES (11056, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"自定义\",\"top\":2,\"createTime\":1646814868068,\"englishWord\":\"custom\",\"isCollect\":1,\"id\":1501476498798977026,\"sort\":0,\"content\":\"custom\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 16:34:28'); INSERT INTO `sys_oper_log` VALUES (11057, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"Get busy living, or get busy dying.\",\"zh\":\"或汲汲于生,或汲汲于死。\"}}', 0, '', '2022-03-09 16:34:31'); INSERT INTO `sys_oper_log` VALUES (11058, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"asgaga \"}', '', 1, '不能包含其他符号!!!', '2022-03-09 16:34:35'); INSERT INTO `sys_oper_log` VALUES (11059, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"asgaga\",\"top\":2,\"createTime\":1646814878732,\"englishWord\":\"asgaga\",\"isCollect\":1,\"id\":1501476543560589314,\"sort\":0,\"content\":\"asgaga\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 16:34:38'); INSERT INTO `sys_oper_log` VALUES (11060, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1501476543560589314', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-09 16:34:40'); INSERT INTO `sys_oper_log` VALUES (11061, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"阿飞2\"}', '', 1, '不能包含其他符号!!!', '2022-03-09 16:34:44'); INSERT INTO `sys_oper_log` VALUES (11062, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"阿飞df\"}', '', 1, '不能包含其他符号!!!', '2022-03-09 16:34:47'); INSERT INTO `sys_oper_log` VALUES (11063, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-09\",\"daypower\":\"≤3\",\"daytemp\":\"24\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东\",\"week\":\"周三\"},{\"date\":\"2022-03-10\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周五\"},{\"date\":\"2022-03-12\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"小雨\",\"nightwind\":\"南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-09 20:03:50\"}}', 0, '', '2022-03-09 20:13:31'); INSERT INTO `sys_oper_log` VALUES (11064, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646828011113,\"humidity\":\"48\",\"id\":1501531624765599746,\"province\":\"江西\",\"reporttime\":1646827430000,\"temperature\":\"18\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-09 20:13:31'); INSERT INTO `sys_oper_log` VALUES (11065, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"南\",\"week\":\"周五\"},{\"date\":\"2022-03-12\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周六\"},{\"date\":\"2022-03-13\",\"daypower\":\"4\",\"daytemp\":\"26\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"17\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-10 10:03:48\"}}', 0, '', '2022-03-10 10:27:04'); INSERT INTO `sys_oper_log` VALUES (11066, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"51\",\"province\":\"江西\",\"reporttime\":1646877828000,\"temperature\":\"19\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-10 10:27:04'); INSERT INTO `sys_oper_log` VALUES (11067, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646881767427,\"en\":\"Can this radio receive short-wave?\",\"id\":1501757095047991298,\"zh\":\" 这个收音机能收短波吗?\"}}', 0, '', '2022-03-10 11:09:27'); INSERT INTO `sys_oper_log` VALUES (11068, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"流言蜚语\",\"top\":2,\"createTime\":1646882257441,\"englishWord\":\"gossip\",\"isCollect\":1,\"id\":1501759150366105601,\"sort\":0,\"content\":\"gossip\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-10 11:17:37'); INSERT INTO `sys_oper_log` VALUES (11069, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646882258978,\"en\":\"To govern is to keep straight,If you take a lead in doing so, who will dare to act otherwise?\",\"id\":1501759156783288322,\"zh\":\"政者,正也。子帅以正,孰敢不正?\"}}', 0, '', '2022-03-10 11:17:38'); INSERT INTO `sys_oper_log` VALUES (11070, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646890467097,\"en\":\"One loses time seeking for words; one kiss brings understanding.\",\"id\":1501793584117059585,\"zh\":\"寻找言辞徒费时光,一吻即可得理解.\"}}', 0, '', '2022-03-10 13:34:27'); INSERT INTO `sys_oper_log` VALUES (11071, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-12\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"17\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-03-13\",\"daypower\":\"4\",\"daytemp\":\"26\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"17\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-10 14:03:49\"}}', 0, '', '2022-03-10 14:23:11'); INSERT INTO `sys_oper_log` VALUES (11072, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-12\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-03-13\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-10 15:34:00\"}}', 0, '', '2022-03-10 15:52:21'); INSERT INTO `sys_oper_log` VALUES (11073, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1646897640000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"南\",\"windpower\":\"4\"}}', 0, '', '2022-03-10 15:52:21'); INSERT INTO `sys_oper_log` VALUES (11074, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"λ\",\"top\":2,\"createTime\":1646898747866,\"englishWord\":\"lambda\",\"isCollect\":1,\"id\":1501828316179701762,\"sort\":0,\"content\":\"lambda\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-10 15:52:27'); INSERT INTO `sys_oper_log` VALUES (11075, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646898750997,\"en\":\"Words are like bees, they have honey and a sting.\",\"id\":1501828329353908226,\"zh\":\"言语象蜜蜂,有蜜也有刺.\"}}', 0, '', '2022-03-10 15:52:31'); INSERT INTO `sys_oper_log` VALUES (11076, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"处理器\",\"top\":2,\"createTime\":1646899616926,\"englishWord\":\"processor\",\"isCollect\":1,\"id\":1501831961285730305,\"sort\":0,\"content\":\"processor\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-10 16:06:56'); INSERT INTO `sys_oper_log` VALUES (11077, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646899618914,\"en\":\"In a good house all is quickly ready.\",\"id\":1501831969607127041,\"zh\":\"治家有方,办事快当.\"}}', 0, '', '2022-03-10 16:06:58'); INSERT INTO `sys_oper_log` VALUES (11078, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-10\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-12\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"17\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-03-13\",\"daypower\":\"4\",\"daytemp\":\"26\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"17\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-10 16:03:52\"}}', 0, '', '2022-03-10 16:07:20'); INSERT INTO `sys_oper_log` VALUES (11079, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"输入\",\"top\":2,\"createTime\":1646904229726,\"englishWord\":\"input\",\"isCollect\":1,\"id\":1501851308762832898,\"sort\":0,\"content\":\"input\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-10 17:23:49'); INSERT INTO `sys_oper_log` VALUES (11080, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646904231283,\"en\":\"The fire is the test of gold; adversity is the test of a strong man.\",\"id\":1501851315314233345,\"zh\":\"火对金子是考验,逆境对人是磨炼.\"}}', 0, '', '2022-03-10 17:23:51'); INSERT INTO `sys_oper_log` VALUES (11081, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"输出\",\"top\":2,\"createTime\":1646904237326,\"englishWord\":\"output\",\"isCollect\":1,\"id\":1501851340668903425,\"sort\":0,\"content\":\"output\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-10 17:23:57'); INSERT INTO `sys_oper_log` VALUES (11082, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"The fire is the test of gold; adversity is the test of a strong man.\",\"zh\":\"火对金子是考验,逆境对人是磨炼.\"}}', 0, '', '2022-03-10 17:23:58'); INSERT INTO `sys_oper_log` VALUES (11083, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"管道\",\"top\":2,\"createTime\":1646904248070,\"englishWord\":\"pipeline\",\"isCollect\":1,\"id\":1501851385715728386,\"sort\":0,\"content\":\"pipeline\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-10 17:24:08'); INSERT INTO `sys_oper_log` VALUES (11084, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"The fire is the test of gold; adversity is the test of a strong man.\",\"zh\":\"火对金子是考验,逆境对人是磨炼.\"}}', 0, '', '2022-03-10 17:24:09'); INSERT INTO `sys_oper_log` VALUES (11085, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"等待\",\"top\":2,\"createTime\":1646904465263,\"englishWord\":\"wait\",\"isCollect\":1,\"id\":1501852296680808450,\"sort\":0,\"content\":\"wait\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-10 17:27:45'); INSERT INTO `sys_oper_log` VALUES (11086, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646904466799,\"en\":\"Hitch your wagon to a star.\",\"id\":1501852303160905730,\"zh\":\"把你的马车拴到星星上. /要胸怀大志.\"}}', 0, '', '2022-03-10 17:27:46'); INSERT INTO `sys_oper_log` VALUES (11087, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1501850360497782786', '127.0.0.1', '', '1501850360497782786', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-10 17:27:58'); INSERT INTO `sys_oper_log` VALUES (11088, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-03-11 08:36:59'); INSERT INTO `sys_oper_log` VALUES (11089, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-11 08:36:59'); INSERT INTO `sys_oper_log` VALUES (11090, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-03-11 08:37:05'); INSERT INTO `sys_oper_log` VALUES (11091, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-11 08:37:05'); INSERT INTO `sys_oper_log` VALUES (11092, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"上学时,一同学姓鳌拜的鳌,叫鳌武。 同学来楼下喊他:“鳌武,鳌武,鳌武。” 然后一少妇打开窗户大喊:“嗷呜你个鬼,叫春呢?”\",\"createTime\":1646959028373,\"id\":1502081150993182721,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-11 08:37:08'); INSERT INTO `sys_oper_log` VALUES (11093, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I know someone in the world is waiting for me, although I\'ve no idea of who he is. But I feel happy every day for this.\",\"dataId\":3658,\"date\":1580572800000,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/d59bf2c57adb681fb853b7579c77b393.png\",\"note\":\"我知道这世上有人在等我,尽管我不知道他是谁。但是因为这样,我每天都非常快乐。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/dcd5c1247dae9c2131d01410d73b2dc6.mp3\"}}', 0, '', '2022-03-11 08:37:08'); INSERT INTO `sys_oper_log` VALUES (11094, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-11 08:37:11'); INSERT INTO `sys_oper_log` VALUES (11095, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-11 08:37:31'); INSERT INTO `sys_oper_log` VALUES (11096, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-03-11 08:37:31'); INSERT INTO `sys_oper_log` VALUES (11097, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-03-11 08:37:31'); INSERT INTO `sys_oper_log` VALUES (11098, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"总有一天,我会为一个人,卸下我的面具。\",\"createTime\":1641648144000,\"id\":1479805687732862983,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-03-11 08:37:31'); INSERT INTO `sys_oper_log` VALUES (11099, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-12\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"阵雨\",\"nightwind\":\"南\",\"week\":\"周六\"},{\"date\":\"2022-03-13\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"阴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-11 08:03:46\"}}', 0, '', '2022-03-11 08:37:34'); INSERT INTO `sys_oper_log` VALUES (11100, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-03-11 08:37:36'); INSERT INTO `sys_oper_log` VALUES (11101, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '', 1, '天行每日一句接口调用异常', '2022-03-11 08:37:36'); INSERT INTO `sys_oper_log` VALUES (11102, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"老天从你身上拿走一样东西,一定是在想着要给你更好的。\",\"createTime\":1641799815000,\"id\":1480441842544898056,\"source\":\"shmily\",\"type\":5}}', 0, '', '2022-03-11 08:37:36'); INSERT INTO `sys_oper_log` VALUES (11103, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-12\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"阵雨\",\"nightwind\":\"南\",\"week\":\"周六\"},{\"date\":\"2022-03-13\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"阴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-11 08:03:46\"}}', 0, '', '2022-03-11 08:37:46'); INSERT INTO `sys_oper_log` VALUES (11104, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-12\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"阵雨\",\"nightwind\":\"南\",\"week\":\"周六\"},{\"date\":\"2022-03-13\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"阴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-11 08:03:46\"}}', 0, '', '2022-03-11 08:37:50'); INSERT INTO `sys_oper_log` VALUES (11105, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646959070518,\"humidity\":\"82\",\"id\":1502081327766319106,\"province\":\"江西\",\"reporttime\":1646957026000,\"temperature\":\"16\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-11 08:37:50'); INSERT INTO `sys_oper_log` VALUES (11106, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"If you focus on what you left behind, you will never be able to see what lies ahead. \",\"dataId\":4205,\"date\":1627660800000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/3815124d4be854278b3976ac388611e7.png\",\"note\":\"如果你专注于过去,你将永远看不到未来。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/a99b1c49bc106f215496008f87aefed5.mp3\"}}', 0, '', '2022-03-11 10:03:40'); INSERT INTO `sys_oper_log` VALUES (11107, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"尼克州长参观疯人院时,见一个疯子把自己悬在房梁上,还发出“哈哈”的怪笑声,便问另一个疯子:“他干吗要这样!”“他把自己当成吊灯了。”“咳,你们医院也真不负责,为什么不提醒他,让他下来呢?”“那可不行。他要是下来了,就没了吊灯,四周不成了漆黑一片了吗?”\",\"createTime\":1645924311000,\"id\":1497741232555368450,\"source\":\"笑话大全\",\"type\":10}}', 0, '', '2022-03-11 10:03:42'); INSERT INTO `sys_oper_log` VALUES (11108, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"本地的\",\"top\":2,\"createTime\":1646977060201,\"englishWord\":\"native\",\"isCollect\":1,\"id\":1502156781961506818,\"sort\":0,\"content\":\"native\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-11 13:37:40'); INSERT INTO `sys_oper_log` VALUES (11109, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646977064164,\"en\":\"There are three things that ought to be considered before some things are spoken, the manner,the place, and the time.\",\"id\":1502156798562545665,\"zh\":\"有些事情在谈论之前应该考虑三点:方式、地点和时间。\"}}', 0, '', '2022-03-11 13:37:44'); INSERT INTO `sys_oper_log` VALUES (11110, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"common\"}', '', 1, '该词汇已存在!!!!', '2022-03-11 13:39:19'); INSERT INTO `sys_oper_log` VALUES (11111, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"englishWord\":\"cloud\",\"isCollect\":1,\"content\":\"cloud\"}', '', 1, 'Index 0 out of bounds for length 0', '2022-03-11 13:41:33'); INSERT INTO `sys_oper_log` VALUES (11112, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"englishWord\":\"cloud\",\"isCollect\":1,\"content\":\"cloud\"}', '', 1, 'Index 0 out of bounds for length 0', '2022-03-11 13:41:39'); INSERT INTO `sys_oper_log` VALUES (11113, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"云\",\"top\":2,\"createTime\":1646977310927,\"englishWord\":\"cloud\",\"isCollect\":1,\"id\":1502157833582571521,\"sort\":0,\"content\":\"cloud\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-11 13:41:50'); INSERT INTO `sys_oper_log` VALUES (11114, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646977382971,\"en\":\"My favorite winter sport is skiing.\",\"id\":1502158135740215297,\"zh\":\" 我最喜欢的动机运动是滑雪。\"}}', 0, '', '2022-03-11 13:43:03'); INSERT INTO `sys_oper_log` VALUES (11115, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"translation\"}', '', 1, '该词汇已存在!!!!', '2022-03-11 13:43:20'); INSERT INTO `sys_oper_log` VALUES (11116, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"isCollect\":1,\"content\":\"synchronized\"}', '', 1, '该词汇已存在!!!!', '2022-03-11 13:49:25'); INSERT INTO `sys_oper_log` VALUES (11117, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1646977772066,\"en\":\"The greater the man,the more restrained his anger.\",\"id\":1502159767706152961,\"zh\":\"人越伟大,越能克制怒火\"}}', 0, '', '2022-03-11 13:49:32'); INSERT INTO `sys_oper_log` VALUES (11118, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '', 1, '英语一言接口降级!!!', '2022-03-11 15:56:16'); INSERT INTO `sys_oper_log` VALUES (11119, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-11\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-12\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-03-13\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"阴\",\"nightwind\":\"西\",\"week\":\"周日\"},{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-11 16:03:49\"}}', 0, '', '2022-03-11 16:14:50'); INSERT INTO `sys_oper_log` VALUES (11120, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1646986490074,\"humidity\":\"38\",\"id\":1502196333698756610,\"province\":\"江西\",\"reporttime\":1646985829000,\"temperature\":\"27\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-11 16:14:50'); INSERT INTO `sys_oper_log` VALUES (11121, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"中雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 08:38:32\"}}', 0, '', '2022-03-14 08:55:35'); INSERT INTO `sys_oper_log` VALUES (11122, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我尽可能不去缅怀往事,因为来时的路不可能回头。\",\"createTime\":1647219335867,\"id\":1503172959756513282,\"source\":\"三毛\",\"type\":1}}', 0, '', '2022-03-14 08:55:36'); INSERT INTO `sys_oper_log` VALUES (11123, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647219336101,\"humidity\":\"81\",\"id\":1503172960691843075,\"province\":\"江西\",\"reporttime\":1647218312000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-14 08:55:36'); INSERT INTO `sys_oper_log` VALUES (11124, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In this world there are only two tragedies. One is not getting what one wants, and the other is getting it.\",\"createTime\":1647219336099,\"dataId\":3482,\"date\":1565625600000,\"id\":1503172960691843074,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-13.jpg\",\"note\":\"在这个世界上只有两种悲剧:一种是得不到自己想要的东西,另一种是得到了。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-13-day.mp3\"}}', 0, '', '2022-03-14 08:55:36'); INSERT INTO `sys_oper_log` VALUES (11125, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"刷新\",\"top\":2,\"createTime\":1647219955211,\"englishWord\":\"refresh\",\"isCollect\":1,\"id\":1503175557473611777,\"sort\":0,\"content\":\"refresh\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-14 09:05:55'); INSERT INTO `sys_oper_log` VALUES (11126, '获取历史热搜榜', 0, 'com.xjs.topsearch.controller.ApiTopSearchController.getHistoryTopSearchByDate()', 'GET', 1, 'admin', '', '/topsearch/getHistoryTopSearch', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"douyinList\":[],\"baiduList\":[],\"wechatList\":[],\"allnetworkList\":[],\"weiboList\":[]}}', 0, '', '2022-03-14 10:10:02'); INSERT INTO `sys_oper_log` VALUES (11127, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"大雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 10:03:48\"}}', 0, '', '2022-03-14 10:14:33'); INSERT INTO `sys_oper_log` VALUES (11128, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647224073184,\"humidity\":\"66\",\"id\":1503192829508349954,\"province\":\"江西\",\"reporttime\":1647223428000,\"temperature\":\"24\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-14 10:14:33'); INSERT INTO `sys_oper_log` VALUES (11129, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647224073184,\"humidity\":\"66\",\"id\":1503192829508349954,\"province\":\"江西\",\"reporttime\":1647223428000,\"temperature\":\"24\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-14 10:14:52'); INSERT INTO `sys_oper_log` VALUES (11130, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"大雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 10:03:48\"}}', 0, '', '2022-03-14 10:14:52'); INSERT INTO `sys_oper_log` VALUES (11131, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1647224122657,\"en\":\"Better to reign in hell than serve in heaven.\",\"id\":1503193037013151745,\"zh\":\"宁在地狱为王,不到天堂当差。\"}}', 0, '', '2022-03-14 10:15:22'); INSERT INTO `sys_oper_log` VALUES (11132, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"大雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 10:38:30\"}}', 0, '', '2022-03-14 10:56:18'); INSERT INTO `sys_oper_log` VALUES (11133, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"大雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 10:38:30\"}}', 0, '', '2022-03-14 10:56:18'); INSERT INTO `sys_oper_log` VALUES (11134, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"大雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 10:38:30\"}}', 0, '', '2022-03-14 10:56:18'); INSERT INTO `sys_oper_log` VALUES (11135, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"主\",\"top\":2,\"createTime\":1647240191918,\"englishWord\":\"master\",\"isCollect\":1,\"id\":1503260436362145794,\"sort\":0,\"content\":\"master\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-14 14:43:11'); INSERT INTO `sys_oper_log` VALUES (11136, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"奴隶\",\"top\":2,\"createTime\":1647240198966,\"englishWord\":\"slave\",\"isCollect\":1,\"id\":1503260465885851650,\"sort\":0,\"content\":\"slave\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-14 14:43:18'); INSERT INTO `sys_oper_log` VALUES (11137, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1647240205363,\"en\":\"We are not born for ourselves.\",\"id\":1503260492758675457,\"zh\":\"人之有生,不为一已.\"}}', 0, '', '2022-03-14 14:43:25'); INSERT INTO `sys_oper_log` VALUES (11138, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"We are not born for ourselves.\",\"zh\":\"人之有生,不为一已.\"}}', 0, '', '2022-03-14 14:43:28'); INSERT INTO `sys_oper_log` VALUES (11139, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"会话\",\"top\":2,\"createTime\":1647240417207,\"englishWord\":\"session\",\"isCollect\":1,\"id\":1503261381309476865,\"sort\":0,\"content\":\"session\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-14 14:46:57'); INSERT INTO `sys_oper_log` VALUES (11140, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1647240418733,\"en\":\"These things happen all the time\",\"id\":1503261387688931330,\"zh\":\"这是常有的事。\"}}', 0, '', '2022-03-14 14:46:58'); INSERT INTO `sys_oper_log` VALUES (11141, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"领袖\",\"top\":2,\"createTime\":1647240436229,\"englishWord\":\"leader\",\"isCollect\":1,\"id\":1503261461068361730,\"sort\":0,\"content\":\"leader\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-14 14:47:16'); INSERT INTO `sys_oper_log` VALUES (11142, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"These things happen all the time\",\"zh\":\"这是常有的事。\"}}', 0, '', '2022-03-14 14:47:18'); INSERT INTO `sys_oper_log` VALUES (11143, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1647241325531,\"en\":\"Strike the iron while it is hot.\",\"id\":1503265191079604225,\"zh\":\"打铁要趁热.\"}}', 0, '', '2022-03-14 15:02:05'); INSERT INTO `sys_oper_log` VALUES (11144, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Everyone needs a house to live in, but a supportive family is what builds a home.\",\"createTime\":1647243431013,\"dataId\":4954,\"date\":1598112000000,\"id\":1503274022073430017,\"imgurl\":\"https://media-image1.baydn.com/soup_pub_image/bnznli/ccc325cf907749d76b86030228305fde.61337e8045f78052836d923ad2da8a54.jpeg\",\"note\":\"人人都需要有屋栖身,但拥有支持自己的家人才是有了家。\",\"source\":\"Anthony Liccione\",\"tts\":\"\"}}', 0, '', '2022-03-14 15:37:11'); INSERT INTO `sys_oper_log` VALUES (11145, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"选择比努力更重要,所以我选择不努力\",\"createTime\":1647243431430,\"id\":1503274023864397825,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-03-14 15:37:11'); INSERT INTO `sys_oper_log` VALUES (11146, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:38:56'); INSERT INTO `sys_oper_log` VALUES (11147, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:38:57'); INSERT INTO `sys_oper_log` VALUES (11148, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:39:54'); INSERT INTO `sys_oper_log` VALUES (11149, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:39:54'); INSERT INTO `sys_oper_log` VALUES (11150, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:40:53'); INSERT INTO `sys_oper_log` VALUES (11151, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:40:53'); INSERT INTO `sys_oper_log` VALUES (11152, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:41:03'); INSERT INTO `sys_oper_log` VALUES (11153, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:41:03'); INSERT INTO `sys_oper_log` VALUES (11154, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:41:08'); INSERT INTO `sys_oper_log` VALUES (11155, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:41:08'); INSERT INTO `sys_oper_log` VALUES (11156, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:41:36'); INSERT INTO `sys_oper_log` VALUES (11157, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:41:36'); INSERT INTO `sys_oper_log` VALUES (11158, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"666666,原来电音+古风也别有风味,真是interesting\",\"createTime\":1647243715998,\"id\":1503275217429098498,\"source\":\"红昭愿\",\"type\":2}}', 0, '', '2022-03-14 15:41:56'); INSERT INTO `sys_oper_log` VALUES (11159, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I have spent my entire life putting off things that I thought there’d be time for later. \",\"createTime\":1647243716989,\"dataId\":3741,\"date\":1587571200000,\"id\":1503275221560487937,\"imgurl\":\"https://v-sq.ks3-cn-beijing.ksyun.com/image/7f7350d3f7e6dcf6c9ffa13ee42d8bb2.png\",\"note\":\"我这一辈子都在推迟做那些我以为以后会有时间做的事情。\",\"source\":\"新版每日一句\",\"tts\":\"https://v-sq.ks3-cn-beijing.ksyun.com/audio/eaa953aec5c49f6bd6d81252257962a7.mp3\"}}', 0, '', '2022-03-14 15:41:56'); INSERT INTO `sys_oper_log` VALUES (11160, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:42:32'); INSERT INTO `sys_oper_log` VALUES (11161, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:42:32'); INSERT INTO `sys_oper_log` VALUES (11162, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:42:49'); INSERT INTO `sys_oper_log` VALUES (11163, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:42:49'); INSERT INTO `sys_oper_log` VALUES (11164, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:43:01'); INSERT INTO `sys_oper_log` VALUES (11165, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:43:01'); INSERT INTO `sys_oper_log` VALUES (11166, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:45:30'); INSERT INTO `sys_oper_log` VALUES (11167, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:45:30'); INSERT INTO `sys_oper_log` VALUES (11168, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:45:35'); INSERT INTO `sys_oper_log` VALUES (11169, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:45:35'); INSERT INTO `sys_oper_log` VALUES (11170, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1647243943048,\"en\":\"The sooner,the better\",\"id\":1503276169737433090,\"zh\":\"愈快愈好。\"}}', 0, '', '2022-03-14 15:45:43'); INSERT INTO `sys_oper_log` VALUES (11171, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:45:43'); INSERT INTO `sys_oper_log` VALUES (11172, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:45:43'); INSERT INTO `sys_oper_log` VALUES (11173, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:46:40'); INSERT INTO `sys_oper_log` VALUES (11174, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:46:40'); INSERT INTO `sys_oper_log` VALUES (11175, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:47:07'); INSERT INTO `sys_oper_log` VALUES (11176, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:47:07'); INSERT INTO `sys_oper_log` VALUES (11177, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:47:17'); INSERT INTO `sys_oper_log` VALUES (11178, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:47:18'); INSERT INTO `sys_oper_log` VALUES (11179, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:47:44'); INSERT INTO `sys_oper_log` VALUES (11180, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:47:44'); INSERT INTO `sys_oper_log` VALUES (11181, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:47:59'); INSERT INTO `sys_oper_log` VALUES (11182, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:47:59'); INSERT INTO `sys_oper_log` VALUES (11183, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:48:23'); INSERT INTO `sys_oper_log` VALUES (11184, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:48:23'); INSERT INTO `sys_oper_log` VALUES (11185, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647243537958,\"humidity\":\"70\",\"id\":1503274470687797249,\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:48:34'); INSERT INTO `sys_oper_log` VALUES (11186, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:48:34'); INSERT INTO `sys_oper_log` VALUES (11187, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:49:49'); INSERT INTO `sys_oper_log` VALUES (11188, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:49:51'); INSERT INTO `sys_oper_log` VALUES (11189, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647243225000,\"temperature\":\"25\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-14 15:50:07'); INSERT INTO `sys_oper_log` VALUES (11190, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:50:07'); INSERT INTO `sys_oper_log` VALUES (11191, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:05'); INSERT INTO `sys_oper_log` VALUES (11192, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:08'); INSERT INTO `sys_oper_log` VALUES (11193, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:09'); INSERT INTO `sys_oper_log` VALUES (11194, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:10'); INSERT INTO `sys_oper_log` VALUES (11195, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:10'); INSERT INTO `sys_oper_log` VALUES (11196, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:10'); INSERT INTO `sys_oper_log` VALUES (11197, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:11'); INSERT INTO `sys_oper_log` VALUES (11198, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:11'); INSERT INTO `sys_oper_log` VALUES (11199, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:11'); INSERT INTO `sys_oper_log` VALUES (11200, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:11'); INSERT INTO `sys_oper_log` VALUES (11201, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-14 15:51:11'); INSERT INTO `sys_oper_log` VALUES (11202, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"要是你有幸见到那公主,你逃得比那皇帝还快\",\"createTime\":1647244506644,\"id\":1503278533651361794,\"source\":\"龙凤店\",\"type\":3}}', 0, '', '2022-03-14 15:55:06'); INSERT INTO `sys_oper_log` VALUES (11203, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Never let your persistence and passion turn into stubbornness and ignorance.\",\"dataId\":3966,\"date\":1607011200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/1323abdded83ad84deb74432074d5159.png\",\"note\":\"永远不要让你的坚持和激情变成固执和无知。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/9c7f92d7ce36b23310c54b4b2f638e7e.mp3\"}}', 0, '', '2022-03-14 15:55:06'); INSERT INTO `sys_oper_log` VALUES (11204, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"要是你有幸见到那公主,你逃得比那皇帝还快\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"If you are lucky enough to see the princess, you will run faster than the emperor\",\"src\":\"要是你有幸见到那公主,你逃得比那皇帝还快\"}]}}', 0, '', '2022-03-14 15:55:13'); INSERT INTO `sys_oper_log` VALUES (11205, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"要是你有幸见到那公主,你逃得比那皇帝还快\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"If you are lucky enough to see the princess, you will run faster than the emperor\",\"src\":\"要是你有幸见到那公主,你逃得比那皇帝还快\"}]}}', 0, '', '2022-03-14 15:55:16'); INSERT INTO `sys_oper_log` VALUES (11206, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"“后来这个笨手笨脚的小孩子还是选择了自己把剩下的路走完。”\",\"createTime\":1647244519288,\"id\":1503278586642198530,\"source\":\"这就是爱吗\",\"type\":2}}', 0, '', '2022-03-14 15:55:19'); INSERT INTO `sys_oper_log` VALUES (11207, '获取翻译', 0, 'com.xjs.translation.controller.TranslationController.translation()', 'POST', 1, 'admin', '', '/translation', '127.0.0.1', '', '{\"q\":\"“后来这个笨手笨脚的小孩子还是选择了自己把剩下的路走完。”\",\"translationType\":1}', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"from\":\"zh\",\"to\":\"en\",\"transResult\":[{\"dst\":\"\\\"Later, the clumsy child chose to finish the rest of the way by himself.\\\"\",\"src\":\"“后来这个笨手笨脚的小孩子还是选择了自己把剩下的路走完。”\"}]}}', 0, '', '2022-03-14 15:55:22'); INSERT INTO `sys_oper_log` VALUES (11208, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"4\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 15:33:45\"}}', 0, '', '2022-03-14 15:55:59'); INSERT INTO `sys_oper_log` VALUES (11209, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Till tomorrow\'s sun has set, one day to walk the earth!\",\"createTime\":1647246434665,\"dataId\":3823,\"date\":1594656000000,\"id\":1503286620323999746,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/d604181bcc72b90ac6ea29f74136f102.png\",\"note\":\"明日日落前,行于世一日。\",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/d891cdce87947099953f64482c85cc09.mp3\"}}', 0, '', '2022-03-14 16:27:14'); INSERT INTO `sys_oper_log` VALUES (11210, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"如果爱一个人就要面对对方而不是逃避,爱他应该去对面和表白。\",\"createTime\":1647246435712,\"id\":1503286624719630337,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-03-14 16:27:15'); INSERT INTO `sys_oper_log` VALUES (11211, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 16:03:47\"}}', 0, '', '2022-03-14 16:37:08'); INSERT INTO `sys_oper_log` VALUES (11212, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647245027000,\"temperature\":\"21\",\"weather\":\"大雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-14 16:37:08'); INSERT INTO `sys_oper_log` VALUES (11213, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647245027000,\"temperature\":\"21\",\"weather\":\"大雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-14 16:38:40'); INSERT INTO `sys_oper_log` VALUES (11214, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 16:03:47\"}}', 0, '', '2022-03-14 16:38:40'); INSERT INTO `sys_oper_log` VALUES (11215, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"教育培训\",\"orderNum\":\"0\",\"menuName\":\"尚融宝\",\"params\":{},\"parentId\":0,\"isCache\":\"1\",\"path\":\"srb\",\"children\":[],\"createTime\":1646098701000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2088,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-14 16:38:46'); INSERT INTO `sys_oper_log` VALUES (11216, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 16:03:47\"}}', 0, '', '2022-03-14 16:38:47'); INSERT INTO `sys_oper_log` VALUES (11217, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647245027000,\"temperature\":\"21\",\"weather\":\"大雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-14 16:38:47'); INSERT INTO `sys_oper_log` VALUES (11218, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"教育培训\",\"orderNum\":\"0\",\"menuName\":\"尚融宝\",\"params\":{},\"parentId\":0,\"isCache\":\"1\",\"path\":\"srb\",\"children\":[],\"createTime\":1646098701000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2088,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"1\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-14 16:39:03'); INSERT INTO `sys_oper_log` VALUES (11219, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 16:03:47\"}}', 0, '', '2022-03-14 16:39:05'); INSERT INTO `sys_oper_log` VALUES (11220, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647245027000,\"temperature\":\"21\",\"weather\":\"大雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-14 16:39:05'); INSERT INTO `sys_oper_log` VALUES (11221, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"产品\",\"top\":2,\"createTime\":1647248510567,\"englishWord\":\"product\",\"isCollect\":1,\"id\":1503295327317442562,\"sort\":0,\"content\":\"product\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-14 17:01:50'); INSERT INTO `sys_oper_log` VALUES (11222, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"优惠券\",\"top\":2,\"createTime\":1647249189194,\"englishWord\":\"coupon\",\"isCollect\":1,\"id\":1503298173676994561,\"sort\":0,\"content\":\"coupon\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-14 17:13:09'); INSERT INTO `sys_oper_log` VALUES (11223, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"成员\",\"top\":2,\"createTime\":1647249225719,\"englishWord\":\"member\",\"isCollect\":1,\"id\":1503298326857170945,\"sort\":0,\"content\":\"member\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-14 17:13:45'); INSERT INTO `sys_oper_log` VALUES (11224, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"订单\",\"top\":2,\"createTime\":1647249237668,\"englishWord\":\"order\",\"isCollect\":1,\"id\":1503298376987492353,\"sort\":0,\"content\":\"order\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-14 17:13:57'); INSERT INTO `sys_oper_log` VALUES (11225, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"制品\",\"top\":2,\"createTime\":1647249252571,\"englishWord\":\"ware\",\"isCollect\":1,\"id\":1503298439486816258,\"sort\":0,\"content\":\"ware\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-14 17:14:12'); INSERT INTO `sys_oper_log` VALUES (11226, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1647249254577,\"en\":\"Thanks for your advice but I have to consider it myself.\",\"id\":1503298447883882497,\"zh\":\" 谢谢你的建议,但我得自己想想。\"}}', 0, '', '2022-03-14 17:14:14'); INSERT INTO `sys_oper_log` VALUES (11227, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-14\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周一\"},{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-14 17:08:35\"}}', 0, '', '2022-03-14 17:16:51'); INSERT INTO `sys_oper_log` VALUES (11228, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647249411647,\"humidity\":\"84\",\"id\":1503299106695794689,\"province\":\"江西\",\"reporttime\":1647248915000,\"temperature\":\"20\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-14 17:16:51'); INSERT INTO `sys_oper_log` VALUES (11229, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647304713000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 08:41:24'); INSERT INTO `sys_oper_log` VALUES (11230, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 08:38:33\"}}', 0, '', '2022-03-15 08:41:24'); INSERT INTO `sys_oper_log` VALUES (11231, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"西南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 10:38:40\"}}', 0, '', '2022-03-15 11:00:23'); INSERT INTO `sys_oper_log` VALUES (11232, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_juhui\",\"orderNum\":\"1\",\"menuName\":\"商城管理\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"mall\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-15 11:21:42'); INSERT INTO `sys_oper_log` VALUES (11233, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:08:28\"}}', 0, '', '2022-03-15 11:21:46'); INSERT INTO `sys_oper_log` VALUES (11234, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647313708000,\"temperature\":\"21\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:21:46'); INSERT INTO `sys_oper_log` VALUES (11235, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"svg_collect\",\"orderNum\":\"1\",\"menuName\":\"商品管理\",\"params\":{},\"parentId\":2103,\"isCache\":\"0\",\"path\":\"product\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-15 11:23:06'); INSERT INTO `sys_oper_log` VALUES (11236, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_juhui\",\"orderNum\":\"1\",\"menuName\":\"商城系统\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"mall\",\"children\":[],\"createTime\":1647314502000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2103,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-15 11:23:13'); INSERT INTO `sys_oper_log` VALUES (11237, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"input\",\"orderNum\":\"1\",\"menuName\":\"分类维护\",\"params\":{},\"parentId\":2104,\"isCache\":\"0\",\"path\":\"category\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-15 11:24:38'); INSERT INTO `sys_oper_log` VALUES (11238, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:08:28\"}}', 0, '', '2022-03-15 11:24:43'); INSERT INTO `sys_oper_log` VALUES (11239, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647313708000,\"temperature\":\"21\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:24:43'); INSERT INTO `sys_oper_log` VALUES (11240, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"system\",\"orderNum\":\"2\",\"menuName\":\"系统管理\",\"params\":{},\"parentId\":0,\"isCache\":\"1\",\"path\":\"system\",\"children\":[],\"createTime\":1640336744000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":1,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-15 11:24:56'); INSERT INTO `sys_oper_log` VALUES (11241, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:08:28\"}}', 0, '', '2022-03-15 11:24:58'); INSERT INTO `sys_oper_log` VALUES (11242, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647313708000,\"temperature\":\"21\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:24:58'); INSERT INTO `sys_oper_log` VALUES (11243, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:08:28\"}}', 0, '', '2022-03-15 11:25:08'); INSERT INTO `sys_oper_log` VALUES (11244, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647313708000,\"temperature\":\"21\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:25:08'); INSERT INTO `sys_oper_log` VALUES (11245, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:08:28\"}}', 0, '', '2022-03-15 11:26:43'); INSERT INTO `sys_oper_log` VALUES (11246, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647313708000,\"temperature\":\"21\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:26:43'); INSERT INTO `sys_oper_log` VALUES (11247, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"input\",\"orderNum\":\"1\",\"menuName\":\"分类维护\",\"params\":{},\"parentId\":2104,\"isCache\":\"0\",\"path\":\"category\",\"component\":\"mall/product/category\",\"children\":[],\"createTime\":1647314678000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2105,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-15 11:27:01'); INSERT INTO `sys_oper_log` VALUES (11248, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"类别\",\"top\":2,\"createTime\":1647314830137,\"englishWord\":\"category\",\"isCollect\":1,\"id\":1503573491755143170,\"sort\":0,\"content\":\"category\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-15 11:27:10'); INSERT INTO `sys_oper_log` VALUES (11249, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1647314832079,\"en\":\"It\'s a nice day today\",\"id\":1503573499850153985,\"zh\":\"今天天气很好。\"}}', 0, '', '2022-03-15 11:27:12'); INSERT INTO `sys_oper_log` VALUES (11250, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:08:28\"}}', 0, '', '2022-03-15 11:27:18'); INSERT INTO `sys_oper_log` VALUES (11251, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647313708000,\"temperature\":\"21\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:27:18'); INSERT INTO `sys_oper_log` VALUES (11252, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:34:03\"}}', 0, '', '2022-03-15 11:39:21'); INSERT INTO `sys_oper_log` VALUES (11253, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647315561470,\"humidity\":\"77\",\"id\":1503576559171297282,\"province\":\"江西\",\"reporttime\":1647315243000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:39:21'); INSERT INTO `sys_oper_log` VALUES (11254, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:34:03\"}}', 0, '', '2022-03-15 11:39:25'); INSERT INTO `sys_oper_log` VALUES (11255, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647315561470,\"humidity\":\"77\",\"id\":1503576559171297282,\"province\":\"江西\",\"reporttime\":1647315243000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:39:25'); INSERT INTO `sys_oper_log` VALUES (11256, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647315561470,\"humidity\":\"77\",\"id\":1503576559171297282,\"province\":\"江西\",\"reporttime\":1647315243000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:40:06'); INSERT INTO `sys_oper_log` VALUES (11257, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:34:03\"}}', 0, '', '2022-03-15 11:40:06'); INSERT INTO `sys_oper_log` VALUES (11258, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647315561470,\"humidity\":\"77\",\"id\":1503576559171297282,\"province\":\"江西\",\"reporttime\":1647315243000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:40:09'); INSERT INTO `sys_oper_log` VALUES (11259, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:34:03\"}}', 0, '', '2022-03-15 11:40:09'); INSERT INTO `sys_oper_log` VALUES (11260, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647315561470,\"humidity\":\"77\",\"id\":1503576559171297282,\"province\":\"江西\",\"reporttime\":1647315243000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:40:30'); INSERT INTO `sys_oper_log` VALUES (11261, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:34:03\"}}', 0, '', '2022-03-15 11:40:30'); INSERT INTO `sys_oper_log` VALUES (11262, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The man who removes a mountain begins by carrying away small stones.\",\"createTime\":1647315675443,\"dataId\":4349,\"date\":1640102400000,\"id\":1503577037175152641,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/65515bc895e42ab69fa8142ee1d00edd.png\",\"note\":\"移开山头的人总是从搬小石头开始。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/4a81fb90e7bbb5db681c623128a7ef61.mp3\"}}', 0, '', '2022-03-15 11:41:15'); INSERT INTO `sys_oper_log` VALUES (11263, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天发工资了,发了2000,给你微信转了520 支付宝1314,还剩下166,中午给你发了很多消息你没回,总是正在通话中。你让我别烦,别打扰你和你的宝贝连麦,好吧没关系,宝宝我爱你,所以我不生气,剩下166块我在网上买了你爱吃的零食,还有一盒咽喉片给你寄过去了,希望你保护好嗓子,我爱你\\u007F。\",\"createTime\":1647315675726,\"id\":1503577038366334978,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-15 11:41:15'); INSERT INTO `sys_oper_log` VALUES (11264, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I want to bring out the secrets of nature and apply them for the happiness of man. I don\'t know of any better service to offer for the short time we are in the world.\",\"dataId\":3494,\"date\":1566576000000,\"imgurl\":\"http://cdn.iciba.com/web/news/longweibo/imag/2019-08-24.jpg\",\"note\":\"我想揭示大自然的秘密,用来造福人类。我认为,在我们的短暂一生中,最好的贡献莫过于此了。\",\"source\":\"新版每日一句\",\"tts\":\"http://news.iciba.com/admin/tts/2019-08-24-day.mp3\"}}', 0, '', '2022-03-15 11:42:26'); INSERT INTO `sys_oper_log` VALUES (11265, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"邪说和谬见的崩溃造成了光明。我们这般人推翻了旧世界,旧世界就好像一只苦难的瓶,一旦翻倒在人类的头上,就成了一把欢乐的壶。\",\"createTime\":1647315746802,\"id\":1503577336526823426,\"source\":\"雨果\",\"type\":4}}', 0, '', '2022-03-15 11:42:26'); INSERT INTO `sys_oper_log` VALUES (11266, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:34:03\"}}', 0, '', '2022-03-15 11:57:59'); INSERT INTO `sys_oper_log` VALUES (11267, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1647315243000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 11:57:59'); INSERT INTO `sys_oper_log` VALUES (11268, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 11:34:03\"}}', 0, '', '2022-03-15 12:00:34'); INSERT INTO `sys_oper_log` VALUES (11269, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1647315243000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:00:34'); INSERT INTO `sys_oper_log` VALUES (11270, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:03:58\"}}', 0, '', '2022-03-15 12:11:50'); INSERT INTO `sys_oper_log` VALUES (11271, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647317510501,\"humidity\":\"68\",\"id\":1503584734020870146,\"province\":\"江西\",\"reporttime\":1647317038000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:11:50'); INSERT INTO `sys_oper_log` VALUES (11272, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:03:58\"}}', 0, '', '2022-03-15 12:11:52'); INSERT INTO `sys_oper_log` VALUES (11273, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647317510501,\"humidity\":\"68\",\"id\":1503584734020870146,\"province\":\"江西\",\"reporttime\":1647317038000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:11:52'); INSERT INTO `sys_oper_log` VALUES (11274, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:03:58\"}}', 0, '', '2022-03-15 12:11:59'); INSERT INTO `sys_oper_log` VALUES (11275, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647317510501,\"humidity\":\"68\",\"id\":1503584734020870146,\"province\":\"江西\",\"reporttime\":1647317038000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:11:59'); INSERT INTO `sys_oper_log` VALUES (11276, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647317510501,\"humidity\":\"68\",\"id\":1503584734020870146,\"province\":\"江西\",\"reporttime\":1647317038000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:12:06'); INSERT INTO `sys_oper_log` VALUES (11277, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:03:58\"}}', 0, '', '2022-03-15 12:12:06'); INSERT INTO `sys_oper_log` VALUES (11278, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:03:58\"}}', 0, '', '2022-03-15 12:16:15'); INSERT INTO `sys_oper_log` VALUES (11279, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647317510501,\"humidity\":\"68\",\"id\":1503584734020870146,\"province\":\"江西\",\"reporttime\":1647317038000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:16:15'); INSERT INTO `sys_oper_log` VALUES (11280, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647317510501,\"humidity\":\"68\",\"id\":1503584734020870146,\"province\":\"江西\",\"reporttime\":1647317038000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:16:38'); INSERT INTO `sys_oper_log` VALUES (11281, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:03:58\"}}', 0, '', '2022-03-15 12:16:38'); INSERT INTO `sys_oper_log` VALUES (11282, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这是我用我奶奶的手机给你发的信息 不要再拉黑我了 我真的没有手机联系你了\",\"createTime\":1647318268186,\"id\":1503587911973609474,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-15 12:24:28'); INSERT INTO `sys_oper_log` VALUES (11283, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Readers are plentiful. Thinkers are rare.\",\"dataId\":4235,\"date\":1630252800000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/d187b41ce2e4541bb0f9bf0cc1771524.png\",\"note\":\"阅读的人很多,但思考的人很少。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/2194cec6e07dc5395a4f4772e0371713.mp3\"}}', 0, '', '2022-03-15 12:24:28'); INSERT INTO `sys_oper_log` VALUES (11284, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I love you just the way you are.\",\"createTime\":1647318270456,\"dataId\":4333,\"date\":1638720000000,\"id\":1503587921482096642,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/dfb642b712173161f7fcee40c2c917a0.png\",\"note\":\"我就喜欢原原本本真实的你。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/7d04dd06166aed00df3048db18c40a6f.mp3\"}}', 0, '', '2022-03-15 12:24:30'); INSERT INTO `sys_oper_log` VALUES (11285, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"神不为者,人为之\\\"\",\"createTime\":1647318270976,\"id\":1503587923650551810,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-15 12:24:30'); INSERT INTO `sys_oper_log` VALUES (11286, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"这首歌17年写的 18年发了一版后来不满意删了 这次重新修改后录制了这个版本 还记得当时发这首歌的时候还不到一百个粉丝 也没人听我的歌 一天几十个播放量 录制的时候有两处有点哽咽想重新录的 后来想想算了 就这样吧 挺好的\",\"createTime\":1647318334671,\"id\":1503588190823522305,\"source\":\"飞\",\"type\":2}}', 0, '', '2022-03-15 12:25:34'); INSERT INTO `sys_oper_log` VALUES (11287, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Never let your persistence and passion turn into stubbornness and ignorance.\",\"dataId\":3966,\"date\":1607011200000,\"imgurl\":\"https://staticedu-wps.cache.iciba.com/image/1323abdded83ad84deb74432074d5159.png\",\"note\":\"永远不要让你的坚持和激情变成固执和无知。\",\"source\":\"新版每日一句\",\"tts\":\"https://staticedu-wps.cache.iciba.com/audio/9c7f92d7ce36b23310c54b4b2f638e7e.mp3\"}}', 0, '', '2022-03-15 12:25:34'); INSERT INTO `sys_oper_log` VALUES (11288, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:03:58\"}}', 0, '', '2022-03-15 12:29:15'); INSERT INTO `sys_oper_log` VALUES (11289, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647317038000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:29:15'); INSERT INTO `sys_oper_log` VALUES (11290, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:03:58\"}}', 0, '', '2022-03-15 12:29:16'); INSERT INTO `sys_oper_log` VALUES (11291, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647317038000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:29:16'); INSERT INTO `sys_oper_log` VALUES (11292, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:03:58\"}}', 0, '', '2022-03-15 12:36:52'); INSERT INTO `sys_oper_log` VALUES (11293, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647317038000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:36:52'); INSERT INTO `sys_oper_log` VALUES (11294, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:38:35\"}}', 0, '', '2022-03-15 12:48:59'); INSERT INTO `sys_oper_log` VALUES (11295, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647319115000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:48:59'); INSERT INTO `sys_oper_log` VALUES (11296, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:38:35\"}}', 0, '', '2022-03-15 12:51:05'); INSERT INTO `sys_oper_log` VALUES (11297, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647319115000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:51:05'); INSERT INTO `sys_oper_log` VALUES (11298, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647319115000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:51:39'); INSERT INTO `sys_oper_log` VALUES (11299, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:38:35\"}}', 0, '', '2022-03-15 12:51:39'); INSERT INTO `sys_oper_log` VALUES (11300, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 12:38:35\"}}', 0, '', '2022-03-15 12:51:47'); INSERT INTO `sys_oper_log` VALUES (11301, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647319115000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 12:51:47'); INSERT INTO `sys_oper_log` VALUES (11302, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:21:30'); INSERT INTO `sys_oper_log` VALUES (11303, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:21:30'); INSERT INTO `sys_oper_log` VALUES (11304, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The object of a new year is not that we should have a new year, but rather that we should have a new soul.\",\"createTime\":1647321803312,\"dataId\":3649,\"date\":1579795200000,\"id\":1503602739354148865,\"imgurl\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/image/fc98ea5a61801f6f627b86479f91c1a3.png\",\"note\":\"新年的目的并非是拥有新的一年,而是拥有一个新的灵魂。 \",\"source\":\"新版每日一句\",\"tts\":\"https://edu-wps.ks3-cn-beijing.ksyun.com/audio/1797141403096ba1376d3db9f0c4511a.mp3\"}}', 0, '', '2022-03-15 13:23:23'); INSERT INTO `sys_oper_log` VALUES (11305, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"每次看穷游日志的感受都是,那么穷就别TM出去浪了。\",\"createTime\":1647321805671,\"id\":1503602749231734786,\"source\":\"毒鸡汤\",\"type\":7}}', 0, '', '2022-03-15 13:23:25'); INSERT INTO `sys_oper_log` VALUES (11306, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:30:33'); INSERT INTO `sys_oper_log` VALUES (11307, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:30:33'); INSERT INTO `sys_oper_log` VALUES (11308, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:31:19'); INSERT INTO `sys_oper_log` VALUES (11309, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:31:19'); INSERT INTO `sys_oper_log` VALUES (11310, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:32:12'); INSERT INTO `sys_oper_log` VALUES (11311, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:32:12'); INSERT INTO `sys_oper_log` VALUES (11312, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:33:39'); INSERT INTO `sys_oper_log` VALUES (11313, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:33:39'); INSERT INTO `sys_oper_log` VALUES (11314, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:37:37'); INSERT INTO `sys_oper_log` VALUES (11315, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:37:37'); INSERT INTO `sys_oper_log` VALUES (11316, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:37:58'); INSERT INTO `sys_oper_log` VALUES (11317, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:37:58'); INSERT INTO `sys_oper_log` VALUES (11318, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:38:52'); INSERT INTO `sys_oper_log` VALUES (11319, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:38:52'); INSERT INTO `sys_oper_log` VALUES (11320, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:39:08'); INSERT INTO `sys_oper_log` VALUES (11321, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:39:08'); INSERT INTO `sys_oper_log` VALUES (11322, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:39:48'); INSERT INTO `sys_oper_log` VALUES (11323, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:39:48'); INSERT INTO `sys_oper_log` VALUES (11324, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:40:00'); INSERT INTO `sys_oper_log` VALUES (11325, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:40:00'); INSERT INTO `sys_oper_log` VALUES (11326, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:40:18'); INSERT INTO `sys_oper_log` VALUES (11327, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:40:18'); INSERT INTO `sys_oper_log` VALUES (11328, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:40:39'); INSERT INTO `sys_oper_log` VALUES (11329, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:40:39'); INSERT INTO `sys_oper_log` VALUES (11330, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:41:16'); INSERT INTO `sys_oper_log` VALUES (11331, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:41:16'); INSERT INTO `sys_oper_log` VALUES (11332, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:41:34'); INSERT INTO `sys_oper_log` VALUES (11333, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:41:34'); INSERT INTO `sys_oper_log` VALUES (11334, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:41:56'); INSERT INTO `sys_oper_log` VALUES (11335, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:41:56'); INSERT INTO `sys_oper_log` VALUES (11336, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647320906000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:42:05'); INSERT INTO `sys_oper_log` VALUES (11337, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:08:26\"}}', 0, '', '2022-03-15 13:42:05'); INSERT INTO `sys_oper_log` VALUES (11338, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:42:17'); INSERT INTO `sys_oper_log` VALUES (11339, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:42:17'); INSERT INTO `sys_oper_log` VALUES (11340, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:42:32'); INSERT INTO `sys_oper_log` VALUES (11341, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:42:32'); INSERT INTO `sys_oper_log` VALUES (11342, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:42:39'); INSERT INTO `sys_oper_log` VALUES (11343, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:42:39'); INSERT INTO `sys_oper_log` VALUES (11344, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:45:07'); INSERT INTO `sys_oper_log` VALUES (11345, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:45:07'); INSERT INTO `sys_oper_log` VALUES (11346, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:45:10'); INSERT INTO `sys_oper_log` VALUES (11347, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:45:10'); INSERT INTO `sys_oper_log` VALUES (11348, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:45:35'); INSERT INTO `sys_oper_log` VALUES (11349, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:45:35'); INSERT INTO `sys_oper_log` VALUES (11350, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:46:56'); INSERT INTO `sys_oper_log` VALUES (11351, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:46:56'); INSERT INTO `sys_oper_log` VALUES (11352, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:56:24'); INSERT INTO `sys_oper_log` VALUES (11353, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:56:24'); INSERT INTO `sys_oper_log` VALUES (11354, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:56:30'); INSERT INTO `sys_oper_log` VALUES (11355, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:56:30'); INSERT INTO `sys_oper_log` VALUES (11356, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:56:37'); INSERT INTO `sys_oper_log` VALUES (11357, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:56:37'); INSERT INTO `sys_oper_log` VALUES (11358, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:56:56'); INSERT INTO `sys_oper_log` VALUES (11359, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:56:56'); INSERT INTO `sys_oper_log` VALUES (11360, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:56:59'); INSERT INTO `sys_oper_log` VALUES (11361, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:56:59'); INSERT INTO `sys_oper_log` VALUES (11362, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:57:05'); INSERT INTO `sys_oper_log` VALUES (11363, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:57:05'); INSERT INTO `sys_oper_log` VALUES (11364, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:57:09'); INSERT INTO `sys_oper_log` VALUES (11365, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:57:09'); INSERT INTO `sys_oper_log` VALUES (11366, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:57:10'); INSERT INTO `sys_oper_log` VALUES (11367, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:57:10'); INSERT INTO `sys_oper_log` VALUES (11368, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:57:18'); INSERT INTO `sys_oper_log` VALUES (11369, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:57:18'); INSERT INTO `sys_oper_log` VALUES (11370, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:59:01'); INSERT INTO `sys_oper_log` VALUES (11371, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:59:01'); INSERT INTO `sys_oper_log` VALUES (11372, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:59:05'); INSERT INTO `sys_oper_log` VALUES (11373, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:59:05'); INSERT INTO `sys_oper_log` VALUES (11374, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:59:09'); INSERT INTO `sys_oper_log` VALUES (11375, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:59:09'); INSERT INTO `sys_oper_log` VALUES (11376, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647322427000,\"temperature\":\"23\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 13:59:13'); INSERT INTO `sys_oper_log` VALUES (11377, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 13:59:13'); INSERT INTO `sys_oper_log` VALUES (11378, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 13:33:47\"}}', 0, '', '2022-03-15 14:02:09'); INSERT INTO `sys_oper_log` VALUES (11379, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647324665391,\"humidity\":\"63\",\"id\":1503614743754186753,\"province\":\"江西\",\"reporttime\":1647324226000,\"temperature\":\"24\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:11:05'); INSERT INTO `sys_oper_log` VALUES (11380, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:03:46\"}}', 0, '', '2022-03-15 14:11:05'); INSERT INTO `sys_oper_log` VALUES (11381, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:03:46\"}}', 0, '', '2022-03-15 14:11:24'); INSERT INTO `sys_oper_log` VALUES (11382, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647324665391,\"humidity\":\"63\",\"id\":1503614743754186753,\"province\":\"江西\",\"reporttime\":1647324226000,\"temperature\":\"24\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:11:24'); INSERT INTO `sys_oper_log` VALUES (11383, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:03:46\"}}', 0, '', '2022-03-15 14:31:57'); INSERT INTO `sys_oper_log` VALUES (11384, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1647324226000,\"temperature\":\"24\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:31:57'); INSERT INTO `sys_oper_log` VALUES (11385, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:03:46\"}}', 0, '', '2022-03-15 14:33:26'); INSERT INTO `sys_oper_log` VALUES (11386, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1647324226000,\"temperature\":\"24\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:33:26'); INSERT INTO `sys_oper_log` VALUES (11387, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:03:46\"}}', 0, '', '2022-03-15 14:37:37'); INSERT INTO `sys_oper_log` VALUES (11388, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1647324226000,\"temperature\":\"24\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:37:37'); INSERT INTO `sys_oper_log` VALUES (11389, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647326319000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:42:25'); INSERT INTO `sys_oper_log` VALUES (11390, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:38:39\"}}', 0, '', '2022-03-15 14:42:25'); INSERT INTO `sys_oper_log` VALUES (11391, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:38:39\"}}', 0, '', '2022-03-15 14:43:32'); INSERT INTO `sys_oper_log` VALUES (11392, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647326319000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:43:32'); INSERT INTO `sys_oper_log` VALUES (11393, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:38:39\"}}', 0, '', '2022-03-15 14:43:50'); INSERT INTO `sys_oper_log` VALUES (11394, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647326319000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:43:50'); INSERT INTO `sys_oper_log` VALUES (11395, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:38:39\"}}', 0, '', '2022-03-15 14:53:23'); INSERT INTO `sys_oper_log` VALUES (11396, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647326319000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:53:23'); INSERT INTO `sys_oper_log` VALUES (11397, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647326319000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:54:08'); INSERT INTO `sys_oper_log` VALUES (11398, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:38:39\"}}', 0, '', '2022-03-15 14:54:08'); INSERT INTO `sys_oper_log` VALUES (11399, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:38:39\"}}', 0, '', '2022-03-15 14:56:33'); INSERT INTO `sys_oper_log` VALUES (11400, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647326319000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:56:33'); INSERT INTO `sys_oper_log` VALUES (11401, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 14:38:39\"}}', 0, '', '2022-03-15 14:56:41'); INSERT INTO `sys_oper_log` VALUES (11402, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647326319000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 14:56:41'); INSERT INTO `sys_oper_log` VALUES (11403, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:08:25\"}}', 0, '', '2022-03-15 15:09:48'); INSERT INTO `sys_oper_log` VALUES (11404, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647328188026,\"humidity\":\"59\",\"id\":1503629518773035010,\"province\":\"江西\",\"reporttime\":1647328105000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:09:48'); INSERT INTO `sys_oper_log` VALUES (11405, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:08:25\"}}', 0, '', '2022-03-15 15:18:59'); INSERT INTO `sys_oper_log` VALUES (11406, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647328188026,\"humidity\":\"59\",\"id\":1503629518773035010,\"province\":\"江西\",\"reporttime\":1647328105000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:18:59'); INSERT INTO `sys_oper_log` VALUES (11407, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:08:25\"}}', 0, '', '2022-03-15 15:19:06'); INSERT INTO `sys_oper_log` VALUES (11408, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647328188026,\"humidity\":\"59\",\"id\":1503629518773035010,\"province\":\"江西\",\"reporttime\":1647328105000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:19:06'); INSERT INTO `sys_oper_log` VALUES (11409, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:08:25\"}}', 0, '', '2022-03-15 15:24:04'); INSERT INTO `sys_oper_log` VALUES (11410, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647328105000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:24:04'); INSERT INTO `sys_oper_log` VALUES (11411, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647328105000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:24:42'); INSERT INTO `sys_oper_log` VALUES (11412, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:08:25\"}}', 0, '', '2022-03-15 15:24:42'); INSERT INTO `sys_oper_log` VALUES (11413, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:08:25\"}}', 0, '', '2022-03-15 15:27:17'); INSERT INTO `sys_oper_log` VALUES (11414, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647328105000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:27:17'); INSERT INTO `sys_oper_log` VALUES (11415, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:08:25\"}}', 0, '', '2022-03-15 15:28:06'); INSERT INTO `sys_oper_log` VALUES (11416, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647328105000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:28:06'); INSERT INTO `sys_oper_log` VALUES (11417, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647328105000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:28:39'); INSERT INTO `sys_oper_log` VALUES (11418, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:08:25\"}}', 0, '', '2022-03-15 15:28:39'); INSERT INTO `sys_oper_log` VALUES (11419, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[{\"catId\":2,\"sort\":0},{\"catId\":1,\"parentCid\":0,\"sort\":1,\"catLevel\":1},{\"catId\":3,\"sort\":2},{\"catId\":4,\"sort\":3},{\"catId\":5,\"sort\":4},{\"catId\":6,\"sort\":5},{\"catId\":7,\"sort\":6},{\"catId\":8,\"sort\":7},{\"catId\":9,\"sort\":8},{\"catId\":10,\"sort\":9},{\"catId\":11,\"sort\":10},{\"catId\":12,\"sort\":11},{\"catId\":13,\"sort\":12},{\"catId\":14,\"sort\":13},{\"catId\":15,\"sort\":14},{\"catId\":16,\"sort\":15},{\"catId\":17,\"sort\":16},{\"catId\":18,\"sort\":17},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20}]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-15 15:28:44'); INSERT INTO `sys_oper_log` VALUES (11420, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647328105000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:29:17'); INSERT INTO `sys_oper_log` VALUES (11421, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:08:25\"}}', 0, '', '2022-03-15 15:29:17'); INSERT INTO `sys_oper_log` VALUES (11422, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[{\"catId\":2,\"sort\":0},{\"catId\":1,\"sort\":1},{\"catId\":3,\"sort\":2},{\"catId\":4,\"sort\":3},{\"catId\":6,\"sort\":4},{\"catId\":7,\"sort\":5},{\"catId\":8,\"sort\":6},{\"catId\":9,\"sort\":7},{\"catId\":10,\"sort\":8},{\"catId\":11,\"sort\":9},{\"catId\":5,\"parentCid\":0,\"sort\":10,\"catLevel\":1},{\"catId\":12,\"sort\":11},{\"catId\":13,\"sort\":12},{\"catId\":14,\"sort\":13},{\"catId\":15,\"sort\":14},{\"catId\":16,\"sort\":15},{\"catId\":17,\"sort\":16},{\"catId\":18,\"sort\":17},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20},{\"catId\":2,\"sort\":0},{\"catId\":1,\"sort\":1},{\"catId\":3,\"sort\":2},{\"catId\":4,\"sort\":3},{\"catId\":6,\"sort\":4},{\"catId\":7,\"sort\":5},{\"catId\":8,\"sort\":6},{\"catId\":10,\"sort\":7},{\"catId\":11,\"sort\":8},{\"catId\":5,\"sort\":9},{\"catId\":12,\"sort\":10},{\"catId\":13,\"sort\":11},{\"catId\":14,\"sort\":12},{\"catId\":15,\"sort\":13},{\"catId\":16,\"sort\":14},{\"catId\":9,\"parentCid\":0,\"sort\":15,\"catLevel\":1},{\"catId\":17,\"sort\":16},{\"catId\":18,\"sort\":17},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20}]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-15 15:29:24'); INSERT INTO `sys_oper_log` VALUES (11423, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1647328105000,\"temperature\":\"25\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:29:27'); INSERT INTO `sys_oper_log` VALUES (11424, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:08:25\"}}', 0, '', '2022-03-15 15:29:27'); INSERT INTO `sys_oper_log` VALUES (11425, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"list\",\"orderNum\":\"1\",\"menuName\":\"品牌管理\",\"params\":{},\"parentId\":2104,\"isCache\":\"0\",\"path\":\"brand\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-15 15:34:14'); INSERT INTO `sys_oper_log` VALUES (11426, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:34:19'); INSERT INTO `sys_oper_log` VALUES (11427, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647329659588,\"humidity\":\"58\",\"id\":1503635690930446337,\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:34:19'); INSERT INTO `sys_oper_log` VALUES (11428, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:35:05'); INSERT INTO `sys_oper_log` VALUES (11429, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647329659588,\"humidity\":\"58\",\"id\":1503635690930446337,\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:35:05'); INSERT INTO `sys_oper_log` VALUES (11430, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"list\",\"orderNum\":\"1\",\"menuName\":\"品牌管理\",\"params\":{},\"parentId\":2104,\"isCache\":\"0\",\"path\":\"brand\",\"component\":\"mall/\",\"children\":[],\"createTime\":1647329653000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2106,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-15 15:35:29'); INSERT INTO `sys_oper_log` VALUES (11431, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"list\",\"orderNum\":\"1\",\"menuName\":\"品牌管理\",\"params\":{},\"parentId\":2104,\"isCache\":\"0\",\"path\":\"brand\",\"component\":\"mall/product/brand\",\"children\":[],\"createTime\":1647329653000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2106,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-15 15:35:38'); INSERT INTO `sys_oper_log` VALUES (11432, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"品牌\",\"top\":2,\"createTime\":1647329754588,\"englishWord\":\"brand\",\"isCollect\":1,\"id\":1503636089435553793,\"sort\":0,\"content\":\"brand\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-15 15:35:54'); INSERT INTO `sys_oper_log` VALUES (11433, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1647329756331,\"en\":\"Thanks for your cooperation\",\"id\":1503636096733552642,\"zh\":\"多谢合作。\"}}', 0, '', '2022-03-15 15:35:56'); INSERT INTO `sys_oper_log` VALUES (11434, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:36:06'); INSERT INTO `sys_oper_log` VALUES (11435, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647329659588,\"humidity\":\"58\",\"id\":1503635690930446337,\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:36:06'); INSERT INTO `sys_oper_log` VALUES (11436, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:37:15'); INSERT INTO `sys_oper_log` VALUES (11437, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647329659588,\"humidity\":\"58\",\"id\":1503635690930446337,\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:37:15'); INSERT INTO `sys_oper_log` VALUES (11438, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:41:03'); INSERT INTO `sys_oper_log` VALUES (11439, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647329659588,\"humidity\":\"58\",\"id\":1503635690930446337,\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:41:03'); INSERT INTO `sys_oper_log` VALUES (11440, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647329659588,\"humidity\":\"58\",\"id\":1503635690930446337,\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:41:21'); INSERT INTO `sys_oper_log` VALUES (11441, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:41:21'); INSERT INTO `sys_oper_log` VALUES (11442, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647329659588,\"humidity\":\"58\",\"id\":1503635690930446337,\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:41:48'); INSERT INTO `sys_oper_log` VALUES (11443, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:41:48'); INSERT INTO `sys_oper_log` VALUES (11444, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647329659588,\"humidity\":\"58\",\"id\":1503635690930446337,\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:42:15'); INSERT INTO `sys_oper_log` VALUES (11445, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:42:15'); INSERT INTO `sys_oper_log` VALUES (11446, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647329659588,\"humidity\":\"58\",\"id\":1503635690930446337,\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:42:35'); INSERT INTO `sys_oper_log` VALUES (11447, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:42:35'); INSERT INTO `sys_oper_log` VALUES (11448, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:52:01'); INSERT INTO `sys_oper_log` VALUES (11449, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:52:01'); INSERT INTO `sys_oper_log` VALUES (11450, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 15:53:22'); INSERT INTO `sys_oper_log` VALUES (11451, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 15:53:22'); INSERT INTO `sys_oper_log` VALUES (11452, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 16:02:14'); INSERT INTO `sys_oper_log` VALUES (11453, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:02:14'); INSERT INTO `sys_oper_log` VALUES (11454, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 16:02:53'); INSERT INTO `sys_oper_log` VALUES (11455, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:02:53'); INSERT INTO `sys_oper_log` VALUES (11456, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 16:04:08'); INSERT INTO `sys_oper_log` VALUES (11457, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:04:08'); INSERT INTO `sys_oper_log` VALUES (11458, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 16:05:15'); INSERT INTO `sys_oper_log` VALUES (11459, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:05:15'); INSERT INTO `sys_oper_log` VALUES (11460, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:05:47'); INSERT INTO `sys_oper_log` VALUES (11461, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 16:05:47'); INSERT INTO `sys_oper_log` VALUES (11462, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 15:33:53\"}}', 0, '', '2022-03-15 16:10:14'); INSERT INTO `sys_oper_log` VALUES (11463, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647329633000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:10:14'); INSERT INTO `sys_oper_log` VALUES (11464, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:12:51'); INSERT INTO `sys_oper_log` VALUES (11465, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647331971186,\"humidity\":\"57\",\"id\":1503645386500349954,\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:12:51'); INSERT INTO `sys_oper_log` VALUES (11466, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:13:10'); INSERT INTO `sys_oper_log` VALUES (11467, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647331971186,\"humidity\":\"57\",\"id\":1503645386500349954,\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:13:10'); INSERT INTO `sys_oper_log` VALUES (11468, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:15:03'); INSERT INTO `sys_oper_log` VALUES (11469, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647331971186,\"humidity\":\"57\",\"id\":1503645386500349954,\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:15:03'); INSERT INTO `sys_oper_log` VALUES (11470, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:17:51'); INSERT INTO `sys_oper_log` VALUES (11471, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647331971186,\"humidity\":\"57\",\"id\":1503645386500349954,\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:17:51'); INSERT INTO `sys_oper_log` VALUES (11472, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:18:43'); INSERT INTO `sys_oper_log` VALUES (11473, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647331971186,\"humidity\":\"57\",\"id\":1503645386500349954,\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:18:43'); INSERT INTO `sys_oper_log` VALUES (11474, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:18:53'); INSERT INTO `sys_oper_log` VALUES (11475, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647331971186,\"humidity\":\"57\",\"id\":1503645386500349954,\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:18:53'); INSERT INTO `sys_oper_log` VALUES (11476, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:18:56'); INSERT INTO `sys_oper_log` VALUES (11477, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647331971186,\"humidity\":\"57\",\"id\":1503645386500349954,\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:18:56'); INSERT INTO `sys_oper_log` VALUES (11478, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:19:08'); INSERT INTO `sys_oper_log` VALUES (11479, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647331971186,\"humidity\":\"57\",\"id\":1503645386500349954,\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:19:08'); INSERT INTO `sys_oper_log` VALUES (11480, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:22:25'); INSERT INTO `sys_oper_log` VALUES (11481, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647331971186,\"humidity\":\"57\",\"id\":1503645386500349954,\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:22:25'); INSERT INTO `sys_oper_log` VALUES (11482, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647331971186,\"humidity\":\"57\",\"id\":1503645386500349954,\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:22:29'); INSERT INTO `sys_oper_log` VALUES (11483, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:22:29'); INSERT INTO `sys_oper_log` VALUES (11484, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:23:29'); INSERT INTO `sys_oper_log` VALUES (11485, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:23:29'); INSERT INTO `sys_oper_log` VALUES (11486, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:29:54'); INSERT INTO `sys_oper_log` VALUES (11487, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:29:54'); INSERT INTO `sys_oper_log` VALUES (11488, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:33:02'); INSERT INTO `sys_oper_log` VALUES (11489, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:33:02'); INSERT INTO `sys_oper_log` VALUES (11490, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:36:19'); INSERT INTO `sys_oper_log` VALUES (11491, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:36:19'); INSERT INTO `sys_oper_log` VALUES (11492, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:40:25'); INSERT INTO `sys_oper_log` VALUES (11493, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:40:25'); INSERT INTO `sys_oper_log` VALUES (11494, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:42:52'); INSERT INTO `sys_oper_log` VALUES (11495, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:42:52'); INSERT INTO `sys_oper_log` VALUES (11496, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:43:00'); INSERT INTO `sys_oper_log` VALUES (11497, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:43:00'); INSERT INTO `sys_oper_log` VALUES (11498, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:03:50\"}}', 0, '', '2022-03-15 16:45:48'); INSERT INTO `sys_oper_log` VALUES (11499, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647331430000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:45:48'); INSERT INTO `sys_oper_log` VALUES (11500, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 16:38:33\"}}', 0, '', '2022-03-15 16:46:49'); INSERT INTO `sys_oper_log` VALUES (11501, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647333513000,\"temperature\":\"26\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 16:46:49'); INSERT INTO `sys_oper_log` VALUES (11502, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:03:45\"}}', 0, '', '2022-03-15 20:14:04'); INSERT INTO `sys_oper_log` VALUES (11503, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647346444901,\"humidity\":\"70\",\"id\":1503706093688946690,\"province\":\"江西\",\"reporttime\":1647345825000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:14:04'); INSERT INTO `sys_oper_log` VALUES (11504, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[{\"catId\":2,\"sort\":0},{\"catId\":1,\"sort\":1},{\"catId\":3,\"sort\":2},{\"catId\":4,\"sort\":3},{\"catId\":7,\"sort\":4},{\"catId\":6,\"parentCid\":0,\"sort\":5,\"catLevel\":1},{\"catId\":8,\"sort\":6},{\"catId\":10,\"sort\":7},{\"catId\":11,\"sort\":8},{\"catId\":5,\"sort\":9},{\"catId\":12,\"sort\":10},{\"catId\":13,\"sort\":11},{\"catId\":14,\"sort\":12},{\"catId\":15,\"sort\":13},{\"catId\":16,\"sort\":14},{\"catId\":9,\"sort\":15},{\"catId\":17,\"sort\":16},{\"catId\":18,\"sort\":17},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20}]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-15 20:14:13'); INSERT INTO `sys_oper_log` VALUES (11505, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '', 1, '\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \') AND show_status=1\' at line 1\r\n### The error may exist in com/xjs/mall/product/dao/CategoryDao.java (best guess)\r\n### The error may involve com.xjs.mall.product.dao.CategoryDao.deleteBatchIds-Inline\r\n### The error occurred while setting parameters\r\n### SQL: UPDATE pms_category SET show_status=0 WHERE cat_id IN ( ) AND show_status=1\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \') AND show_status=1\' at line 1\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \') AND show_status=1\' at line 1', '2022-03-15 20:14:25'); INSERT INTO `sys_oper_log` VALUES (11506, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-15 20:15:30'); INSERT INTO `sys_oper_log` VALUES (11507, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-15 20:15:34'); INSERT INTO `sys_oper_log` VALUES (11508, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-15 20:15:53'); INSERT INTO `sys_oper_log` VALUES (11509, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"未知异常,请联系管理员\",\"code\":500}', 0, '', '2022-03-15 20:20:29'); INSERT INTO `sys_oper_log` VALUES (11510, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"请选择删除的分类\",\"code\":500}', 0, '', '2022-03-15 20:21:15'); INSERT INTO `sys_oper_log` VALUES (11511, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"请选择删除的分类\",\"code\":500}', 0, '', '2022-03-15 20:21:16'); INSERT INTO `sys_oper_log` VALUES (11512, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647345825000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:30:37'); INSERT INTO `sys_oper_log` VALUES (11513, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:03:45\"}}', 0, '', '2022-03-15 20:30:37'); INSERT INTO `sys_oper_log` VALUES (11514, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:03:45\"}}', 0, '', '2022-03-15 20:33:09'); INSERT INTO `sys_oper_log` VALUES (11515, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647345825000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:33:09'); INSERT INTO `sys_oper_log` VALUES (11516, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:03:45\"}}', 0, '', '2022-03-15 20:33:58'); INSERT INTO `sys_oper_log` VALUES (11517, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647345825000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:33:58'); INSERT INTO `sys_oper_log` VALUES (11518, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:03:45\"}}', 0, '', '2022-03-15 20:35:48'); INSERT INTO `sys_oper_log` VALUES (11519, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647345825000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:35:48'); INSERT INTO `sys_oper_log` VALUES (11520, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647345825000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:36:42'); INSERT INTO `sys_oper_log` VALUES (11521, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:03:45\"}}', 0, '', '2022-03-15 20:36:42'); INSERT INTO `sys_oper_log` VALUES (11522, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647345825000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:36:44'); INSERT INTO `sys_oper_log` VALUES (11523, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:03:45\"}}', 0, '', '2022-03-15 20:36:44'); INSERT INTO `sys_oper_log` VALUES (11524, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:03:45\"}}', 0, '', '2022-03-15 20:37:55'); INSERT INTO `sys_oper_log` VALUES (11525, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647345825000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:37:55'); INSERT INTO `sys_oper_log` VALUES (11526, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:03:45\"}}', 0, '', '2022-03-15 20:39:25'); INSERT INTO `sys_oper_log` VALUES (11527, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647345825000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:39:25'); INSERT INTO `sys_oper_log` VALUES (11528, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:03:45\"}}', 0, '', '2022-03-15 20:39:52'); INSERT INTO `sys_oper_log` VALUES (11529, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647345825000,\"temperature\":\"22\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:39:52'); INSERT INTO `sys_oper_log` VALUES (11530, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"请选择删除的分类\",\"code\":500}', 0, '', '2022-03-15 20:39:55'); INSERT INTO `sys_oper_log` VALUES (11531, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647347900000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:46:22'); INSERT INTO `sys_oper_log` VALUES (11532, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:38:20\"}}', 0, '', '2022-03-15 20:46:22'); INSERT INTO `sys_oper_log` VALUES (11533, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:38:20\"}}', 0, '', '2022-03-15 20:48:04'); INSERT INTO `sys_oper_log` VALUES (11534, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647347900000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:48:04'); INSERT INTO `sys_oper_log` VALUES (11535, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"请选择删除的分类\",\"code\":500}', 0, '', '2022-03-15 20:48:08'); INSERT INTO `sys_oper_log` VALUES (11536, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647347900000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:48:11'); INSERT INTO `sys_oper_log` VALUES (11537, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:38:20\"}}', 0, '', '2022-03-15 20:48:11'); INSERT INTO `sys_oper_log` VALUES (11538, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:38:20\"}}', 0, '', '2022-03-15 20:49:34'); INSERT INTO `sys_oper_log` VALUES (11539, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647347900000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:49:34'); INSERT INTO `sys_oper_log` VALUES (11540, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647347900000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:49:46'); INSERT INTO `sys_oper_log` VALUES (11541, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:38:20\"}}', 0, '', '2022-03-15 20:49:46'); INSERT INTO `sys_oper_log` VALUES (11542, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647347900000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:50:20'); INSERT INTO `sys_oper_log` VALUES (11543, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:38:20\"}}', 0, '', '2022-03-15 20:50:20'); INSERT INTO `sys_oper_log` VALUES (11544, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:38:20\"}}', 0, '', '2022-03-15 20:52:25'); INSERT INTO `sys_oper_log` VALUES (11545, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647347900000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:52:25'); INSERT INTO `sys_oper_log` VALUES (11546, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"请选择删除的分类\",\"code\":500}', 0, '', '2022-03-15 20:53:16'); INSERT INTO `sys_oper_log` VALUES (11547, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647347900000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:57:10'); INSERT INTO `sys_oper_log` VALUES (11548, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:38:20\"}}', 0, '', '2022-03-15 20:57:10'); INSERT INTO `sys_oper_log` VALUES (11549, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:38:20\"}}', 0, '', '2022-03-15 20:58:35'); INSERT INTO `sys_oper_log` VALUES (11550, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647347900000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:58:35'); INSERT INTO `sys_oper_log` VALUES (11551, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647347900000,\"temperature\":\"21\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 20:59:31'); INSERT INTO `sys_oper_log` VALUES (11552, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"4\",\"daytemp\":\"28\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"20\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"24\",\"dayweather\":\"小雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 20:38:20\"}}', 0, '', '2022-03-15 20:59:31'); INSERT INTO `sys_oper_log` VALUES (11553, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 21:33:50\"}}', 0, '', '2022-03-15 21:44:04'); INSERT INTO `sys_oper_log` VALUES (11554, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647351230000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 21:44:04'); INSERT INTO `sys_oper_log` VALUES (11555, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647351230000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 21:44:12'); INSERT INTO `sys_oper_log` VALUES (11556, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 21:33:50\"}}', 0, '', '2022-03-15 21:44:12'); INSERT INTO `sys_oper_log` VALUES (11557, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"请选择删除的分类\",\"code\":500}', 0, '', '2022-03-15 21:44:19'); INSERT INTO `sys_oper_log` VALUES (11558, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 21:33:50\"}}', 0, '', '2022-03-15 21:45:06'); INSERT INTO `sys_oper_log` VALUES (11559, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647351230000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 21:45:06'); INSERT INTO `sys_oper_log` VALUES (11560, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647351230000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 21:45:19'); INSERT INTO `sys_oper_log` VALUES (11561, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 21:33:50\"}}', 0, '', '2022-03-15 21:45:19'); INSERT INTO `sys_oper_log` VALUES (11562, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', '', '/product/category/save', '127.0.0.1', '', '{\"catId\":1503729105402306561,\"parentCid\":2,\"icon\":\"date-range\",\"name\":\"1\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-15 21:45:31'); INSERT INTO `sys_oper_log` VALUES (11563, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-15 21:45:36'); INSERT INTO `sys_oper_log` VALUES (11564, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', '', '/product/category/save', '127.0.0.1', '', '{\"catId\":1503729173597495297,\"parentCid\":2,\"icon\":\"date\",\"name\":\"1\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-15 21:45:47'); INSERT INTO `sys_oper_log` VALUES (11565, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647351230000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 21:46:18'); INSERT INTO `sys_oper_log` VALUES (11566, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 21:33:50\"}}', 0, '', '2022-03-15 21:46:18'); INSERT INTO `sys_oper_log` VALUES (11567, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 21:33:50\"}}', 0, '', '2022-03-15 21:46:38'); INSERT INTO `sys_oper_log` VALUES (11568, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647351230000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 21:46:38'); INSERT INTO `sys_oper_log` VALUES (11569, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647351230000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 21:46:58'); INSERT INTO `sys_oper_log` VALUES (11570, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 21:33:50\"}}', 0, '', '2022-03-15 21:46:58'); INSERT INTO `sys_oper_log` VALUES (11571, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"请选择删除的分类\",\"code\":500}', 0, '', '2022-03-15 21:47:00'); INSERT INTO `sys_oper_log` VALUES (11572, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647351230000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 21:47:15'); INSERT INTO `sys_oper_log` VALUES (11573, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 21:33:50\"}}', 0, '', '2022-03-15 21:47:15'); INSERT INTO `sys_oper_log` VALUES (11574, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 21:33:50\"}}', 0, '', '2022-03-15 21:47:30'); INSERT INTO `sys_oper_log` VALUES (11575, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647351230000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 21:47:30'); INSERT INTO `sys_oper_log` VALUES (11576, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-15 21:47:35'); INSERT INTO `sys_oper_log` VALUES (11577, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 21:33:50\"}}', 0, '', '2022-03-15 21:48:48'); INSERT INTO `sys_oper_log` VALUES (11578, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647351230000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 21:48:48'); INSERT INTO `sys_oper_log` VALUES (11579, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-15 21:51:47'); INSERT INTO `sys_oper_log` VALUES (11580, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Laziness is like a lock, which bolts you out of the storehouse of information and makes you an intellectual starveling.\",\"createTime\":1647352320194,\"dataId\":3534,\"id\":1503730736458072065,\"imgurl\":\"\",\"note\":\"懒惰就像一把锁,锁住了知识的仓库,使你的智力变得匮乏。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-15 21:52:00'); INSERT INTO `sys_oper_log` VALUES (11581, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你还有钱吗?没有我给你打点。\",\"createTime\":1647352320760,\"id\":1503730738823659521,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-15 21:52:00'); INSERT INTO `sys_oper_log` VALUES (11582, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 22:38:17\"}}', 0, '', '2022-03-15 23:08:01'); INSERT INTO `sys_oper_log` VALUES (11583, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"81\",\"province\":\"江西\",\"reporttime\":1647355097000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:08:01'); INSERT INTO `sys_oper_log` VALUES (11584, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"文件服务异常,请联系管理员\",\"code\":500}', 0, NULL, '2022-03-15 23:08:48'); INSERT INTO `sys_oper_log` VALUES (11585, '用户头像', 2, 'com.ruoyi.system.controller.SysProfileController.avatar()', 'POST', 1, 'admin', NULL, '/user/profile/avatar', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"imgUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/3c84234d-38b6-4234-ba20-a59fd234405b.jpeg\",\"code\":200}', 0, NULL, '2022-03-15 23:10:07'); INSERT INTO `sys_oper_log` VALUES (11586, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:08:12\"}}', 0, '', '2022-03-15 23:21:23'); INSERT INTO `sys_oper_log` VALUES (11587, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647356892000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:21:23'); INSERT INTO `sys_oper_log` VALUES (11588, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:08:12\"}}', 0, '', '2022-03-15 23:21:39'); INSERT INTO `sys_oper_log` VALUES (11589, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647356892000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:21:39'); INSERT INTO `sys_oper_log` VALUES (11590, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:08:12\"}}', 0, '', '2022-03-15 23:22:54'); INSERT INTO `sys_oper_log` VALUES (11591, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647356892000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:22:54'); INSERT INTO `sys_oper_log` VALUES (11592, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:08:12\"}}', 0, '', '2022-03-15 23:29:51'); INSERT INTO `sys_oper_log` VALUES (11593, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647356892000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:29:51'); INSERT INTO `sys_oper_log` VALUES (11594, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:08:12\"}}', 0, '', '2022-03-15 23:33:07'); INSERT INTO `sys_oper_log` VALUES (11595, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647356892000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:33:07'); INSERT INTO `sys_oper_log` VALUES (11596, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:08:12\"}}', 0, '', '2022-03-15 23:36:50'); INSERT INTO `sys_oper_log` VALUES (11597, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647356892000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:36:50'); INSERT INTO `sys_oper_log` VALUES (11598, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:08:12\"}}', 0, '', '2022-03-15 23:37:17'); INSERT INTO `sys_oper_log` VALUES (11599, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647356892000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:37:17'); INSERT INTO `sys_oper_log` VALUES (11600, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:08:12\"}}', 0, '', '2022-03-15 23:39:28'); INSERT INTO `sys_oper_log` VALUES (11601, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647356892000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:39:28'); INSERT INTO `sys_oper_log` VALUES (11602, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:08:12\"}}', 0, '', '2022-03-15 23:42:26'); INSERT INTO `sys_oper_log` VALUES (11603, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647356892000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:42:26'); INSERT INTO `sys_oper_log` VALUES (11604, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:33:56\"}}', 0, '', '2022-03-15 23:45:21'); INSERT INTO `sys_oper_log` VALUES (11605, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647358436000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:45:21'); INSERT INTO `sys_oper_log` VALUES (11606, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:33:56\"}}', 0, '', '2022-03-15 23:47:16'); INSERT INTO `sys_oper_log` VALUES (11607, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647358436000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:47:16'); INSERT INTO `sys_oper_log` VALUES (11608, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:33:56\"}}', 0, '', '2022-03-15 23:53:19'); INSERT INTO `sys_oper_log` VALUES (11609, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647358436000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:53:19'); INSERT INTO `sys_oper_log` VALUES (11610, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:33:56\"}}', 0, '', '2022-03-15 23:55:11'); INSERT INTO `sys_oper_log` VALUES (11611, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647358436000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:55:11'); INSERT INTO `sys_oper_log` VALUES (11612, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:33:56\"}}', 0, '', '2022-03-15 23:56:31'); INSERT INTO `sys_oper_log` VALUES (11613, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647358436000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:56:31'); INSERT INTO `sys_oper_log` VALUES (11614, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:33:56\"}}', 0, '', '2022-03-15 23:57:01'); INSERT INTO `sys_oper_log` VALUES (11615, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647358436000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-15 23:57:01'); INSERT INTO `sys_oper_log` VALUES (11616, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:33:56\"}}', 0, '', '2022-03-16 00:01:34'); INSERT INTO `sys_oper_log` VALUES (11617, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647358436000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:01:34'); INSERT INTO `sys_oper_log` VALUES (11618, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:33:56\"}}', 0, '', '2022-03-16 00:02:30'); INSERT INTO `sys_oper_log` VALUES (11619, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647358436000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:02:30'); INSERT INTO `sys_oper_log` VALUES (11620, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-15 23:33:56\"}}', 0, '', '2022-03-16 00:03:47'); INSERT INTO `sys_oper_log` VALUES (11621, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647358436000,\"temperature\":\"20\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:03:47'); INSERT INTO `sys_oper_log` VALUES (11622, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647360485034,\"humidity\":\"86\",\"id\":1503764982279143425,\"province\":\"江西\",\"reporttime\":1647360235000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:08:05'); INSERT INTO `sys_oper_log` VALUES (11623, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 00:03:55\"}}', 0, '', '2022-03-16 00:08:05'); INSERT INTO `sys_oper_log` VALUES (11624, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 00:03:55\"}}', 0, '', '2022-03-16 00:11:28'); INSERT INTO `sys_oper_log` VALUES (11625, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647360485034,\"humidity\":\"86\",\"id\":1503764982279143425,\"province\":\"江西\",\"reporttime\":1647360235000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:11:28'); INSERT INTO `sys_oper_log` VALUES (11626, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647360485034,\"humidity\":\"86\",\"id\":1503764982279143425,\"province\":\"江西\",\"reporttime\":1647360235000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:11:59'); INSERT INTO `sys_oper_log` VALUES (11627, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 00:03:55\"}}', 0, '', '2022-03-16 00:11:59'); INSERT INTO `sys_oper_log` VALUES (11628, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 00:03:55\"}}', 0, '', '2022-03-16 00:13:04'); INSERT INTO `sys_oper_log` VALUES (11629, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647360485034,\"humidity\":\"86\",\"id\":1503764982279143425,\"province\":\"江西\",\"reporttime\":1647360235000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:13:04'); INSERT INTO `sys_oper_log` VALUES (11630, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 00:03:55\"}}', 0, '', '2022-03-16 00:17:41'); INSERT INTO `sys_oper_log` VALUES (11631, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647360485034,\"humidity\":\"86\",\"id\":1503764982279143425,\"province\":\"江西\",\"reporttime\":1647360235000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:17:41'); INSERT INTO `sys_oper_log` VALUES (11632, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 00:03:55\"}}', 0, '', '2022-03-16 00:24:25'); INSERT INTO `sys_oper_log` VALUES (11633, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1647360235000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:24:25'); INSERT INTO `sys_oper_log` VALUES (11634, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 00:03:55\"}}', 0, '', '2022-03-16 00:25:03'); INSERT INTO `sys_oper_log` VALUES (11635, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1647360235000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:25:03'); INSERT INTO `sys_oper_log` VALUES (11636, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 00:03:55\"}}', 0, '', '2022-03-16 00:26:34'); INSERT INTO `sys_oper_log` VALUES (11637, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1647360235000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:26:34'); INSERT INTO `sys_oper_log` VALUES (11638, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-15\",\"daypower\":\"≤3\",\"daytemp\":\"26\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 00:03:55\"}}', 0, '', '2022-03-16 00:28:17'); INSERT INTO `sys_oper_log` VALUES (11639, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"86\",\"province\":\"江西\",\"reporttime\":1647360235000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 00:28:17'); INSERT INTO `sys_oper_log` VALUES (11640, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 08:47:25'); INSERT INTO `sys_oper_log` VALUES (11641, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 08:47:25'); INSERT INTO `sys_oper_log` VALUES (11642, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 08:48:04'); INSERT INTO `sys_oper_log` VALUES (11643, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 08:48:04'); INSERT INTO `sys_oper_log` VALUES (11644, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 08:50:17'); INSERT INTO `sys_oper_log` VALUES (11645, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 08:50:17'); INSERT INTO `sys_oper_log` VALUES (11646, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 08:51:02'); INSERT INTO `sys_oper_log` VALUES (11647, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 08:51:02'); INSERT INTO `sys_oper_log` VALUES (11648, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 08:54:37'); INSERT INTO `sys_oper_log` VALUES (11649, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 08:54:37'); INSERT INTO `sys_oper_log` VALUES (11650, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:01:13'); INSERT INTO `sys_oper_log` VALUES (11651, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 09:01:13'); INSERT INTO `sys_oper_log` VALUES (11652, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:01:35'); INSERT INTO `sys_oper_log` VALUES (11653, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 09:01:35'); INSERT INTO `sys_oper_log` VALUES (11654, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 09:07:49'); INSERT INTO `sys_oper_log` VALUES (11655, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:07:49'); INSERT INTO `sys_oper_log` VALUES (11656, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 09:08:04'); INSERT INTO `sys_oper_log` VALUES (11657, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:08:04'); INSERT INTO `sys_oper_log` VALUES (11658, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 09:09:06'); INSERT INTO `sys_oper_log` VALUES (11659, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:09:06'); INSERT INTO `sys_oper_log` VALUES (11660, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647391102000,\"temperature\":\"20\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:09:49'); INSERT INTO `sys_oper_log` VALUES (11661, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 08:38:22\"}}', 0, '', '2022-03-16 09:09:49'); INSERT INTO `sys_oper_log` VALUES (11662, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:12:21'); INSERT INTO `sys_oper_log` VALUES (11663, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647393141695,\"humidity\":\"82\",\"id\":1503901954227736577,\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:12:21'); INSERT INTO `sys_oper_log` VALUES (11664, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:12:42'); INSERT INTO `sys_oper_log` VALUES (11665, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647393141695,\"humidity\":\"82\",\"id\":1503901954227736577,\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:12:42'); INSERT INTO `sys_oper_log` VALUES (11666, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:12:47'); INSERT INTO `sys_oper_log` VALUES (11667, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647393141695,\"humidity\":\"82\",\"id\":1503901954227736577,\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:12:47'); INSERT INTO `sys_oper_log` VALUES (11668, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:13:52'); INSERT INTO `sys_oper_log` VALUES (11669, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647393141695,\"humidity\":\"82\",\"id\":1503901954227736577,\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:13:52'); INSERT INTO `sys_oper_log` VALUES (11670, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:15:21'); INSERT INTO `sys_oper_log` VALUES (11671, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647393141695,\"humidity\":\"82\",\"id\":1503901954227736577,\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:15:21'); INSERT INTO `sys_oper_log` VALUES (11672, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:16:06'); INSERT INTO `sys_oper_log` VALUES (11673, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647393141695,\"humidity\":\"82\",\"id\":1503901954227736577,\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:16:06'); INSERT INTO `sys_oper_log` VALUES (11674, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:17:02'); INSERT INTO `sys_oper_log` VALUES (11675, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647393141695,\"humidity\":\"82\",\"id\":1503901954227736577,\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:17:02'); INSERT INTO `sys_oper_log` VALUES (11676, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647393141695,\"humidity\":\"82\",\"id\":1503901954227736577,\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:17:28'); INSERT INTO `sys_oper_log` VALUES (11677, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:17:28'); INSERT INTO `sys_oper_log` VALUES (11678, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:23:17'); INSERT INTO `sys_oper_log` VALUES (11679, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:23:17'); INSERT INTO `sys_oper_log` VALUES (11680, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:23:41'); INSERT INTO `sys_oper_log` VALUES (11681, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:23:41'); INSERT INTO `sys_oper_log` VALUES (11682, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:24:26'); INSERT INTO `sys_oper_log` VALUES (11683, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:24:26'); INSERT INTO `sys_oper_log` VALUES (11684, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:26:40'); INSERT INTO `sys_oper_log` VALUES (11685, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:26:40'); INSERT INTO `sys_oper_log` VALUES (11686, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:28:35'); INSERT INTO `sys_oper_log` VALUES (11687, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:28:35'); INSERT INTO `sys_oper_log` VALUES (11688, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:29:46'); INSERT INTO `sys_oper_log` VALUES (11689, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:29:46'); INSERT INTO `sys_oper_log` VALUES (11690, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:08:22\"}}', 0, '', '2022-03-16 09:31:18'); INSERT INTO `sys_oper_log` VALUES (11691, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647392902000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:31:18'); INSERT INTO `sys_oper_log` VALUES (11692, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:34:32'); INSERT INTO `sys_oper_log` VALUES (11693, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647394472110,\"humidity\":\"78\",\"id\":1503907534405275650,\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:34:32'); INSERT INTO `sys_oper_log` VALUES (11694, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:34:38'); INSERT INTO `sys_oper_log` VALUES (11695, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647394472110,\"humidity\":\"78\",\"id\":1503907534405275650,\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:34:38'); INSERT INTO `sys_oper_log` VALUES (11696, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:35:22'); INSERT INTO `sys_oper_log` VALUES (11697, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647394472110,\"humidity\":\"78\",\"id\":1503907534405275650,\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:35:22'); INSERT INTO `sys_oper_log` VALUES (11698, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:36:48'); INSERT INTO `sys_oper_log` VALUES (11699, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647394472110,\"humidity\":\"78\",\"id\":1503907534405275650,\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:36:48'); INSERT INTO `sys_oper_log` VALUES (11700, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647394472110,\"humidity\":\"78\",\"id\":1503907534405275650,\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:37:03'); INSERT INTO `sys_oper_log` VALUES (11701, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:37:03'); INSERT INTO `sys_oper_log` VALUES (11702, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:38:25'); INSERT INTO `sys_oper_log` VALUES (11703, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647394472110,\"humidity\":\"78\",\"id\":1503907534405275650,\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:38:25'); INSERT INTO `sys_oper_log` VALUES (11704, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:39:56'); INSERT INTO `sys_oper_log` VALUES (11705, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647394472110,\"humidity\":\"78\",\"id\":1503907534405275650,\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:39:56'); INSERT INTO `sys_oper_log` VALUES (11706, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647394472110,\"humidity\":\"78\",\"id\":1503907534405275650,\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:40:47'); INSERT INTO `sys_oper_log` VALUES (11707, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:40:47'); INSERT INTO `sys_oper_log` VALUES (11708, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:45:31'); INSERT INTO `sys_oper_log` VALUES (11709, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:45:31'); INSERT INTO `sys_oper_log` VALUES (11710, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:47:49'); INSERT INTO `sys_oper_log` VALUES (11711, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:47:49'); INSERT INTO `sys_oper_log` VALUES (11712, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:53:51'); INSERT INTO `sys_oper_log` VALUES (11713, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:53:52'); INSERT INTO `sys_oper_log` VALUES (11714, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:56:12'); INSERT INTO `sys_oper_log` VALUES (11715, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:56:12'); INSERT INTO `sys_oper_log` VALUES (11716, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 09:58:37'); INSERT INTO `sys_oper_log` VALUES (11717, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 09:58:37'); INSERT INTO `sys_oper_log` VALUES (11718, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 10:03:33'); INSERT INTO `sys_oper_log` VALUES (11719, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:03:33'); INSERT INTO `sys_oper_log` VALUES (11720, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 10:03:48'); INSERT INTO `sys_oper_log` VALUES (11721, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:03:48'); INSERT INTO `sys_oper_log` VALUES (11722, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 10:04:16'); INSERT INTO `sys_oper_log` VALUES (11723, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:04:16'); INSERT INTO `sys_oper_log` VALUES (11724, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:04:43'); INSERT INTO `sys_oper_log` VALUES (11725, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 10:04:43'); INSERT INTO `sys_oper_log` VALUES (11726, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 09:33:46\"}}', 0, '', '2022-03-16 10:05:47'); INSERT INTO `sys_oper_log` VALUES (11727, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647394426000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:05:47'); INSERT INTO `sys_oper_log` VALUES (11728, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:11:41'); INSERT INTO `sys_oper_log` VALUES (11729, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647396701522,\"humidity\":\"76\",\"id\":1503916885195001858,\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:11:41'); INSERT INTO `sys_oper_log` VALUES (11730, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:11:49'); INSERT INTO `sys_oper_log` VALUES (11731, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647396701522,\"humidity\":\"76\",\"id\":1503916885195001858,\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:11:49'); INSERT INTO `sys_oper_log` VALUES (11732, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:12:18'); INSERT INTO `sys_oper_log` VALUES (11733, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647396701522,\"humidity\":\"76\",\"id\":1503916885195001858,\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:12:18'); INSERT INTO `sys_oper_log` VALUES (11734, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647396701522,\"humidity\":\"76\",\"id\":1503916885195001858,\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:12:56'); INSERT INTO `sys_oper_log` VALUES (11735, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:12:56'); INSERT INTO `sys_oper_log` VALUES (11736, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:16:40'); INSERT INTO `sys_oper_log` VALUES (11737, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647396701522,\"humidity\":\"76\",\"id\":1503916885195001858,\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:16:40'); INSERT INTO `sys_oper_log` VALUES (11738, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:17:06'); INSERT INTO `sys_oper_log` VALUES (11739, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647396701522,\"humidity\":\"76\",\"id\":1503916885195001858,\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:17:06'); INSERT INTO `sys_oper_log` VALUES (11740, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:18:21'); INSERT INTO `sys_oper_log` VALUES (11741, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647396701522,\"humidity\":\"76\",\"id\":1503916885195001858,\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:18:21'); INSERT INTO `sys_oper_log` VALUES (11742, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:18:57'); INSERT INTO `sys_oper_log` VALUES (11743, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647396701522,\"humidity\":\"76\",\"id\":1503916885195001858,\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:18:57'); INSERT INTO `sys_oper_log` VALUES (11744, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647396701522,\"humidity\":\"76\",\"id\":1503916885195001858,\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:20:46'); INSERT INTO `sys_oper_log` VALUES (11745, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:20:46'); INSERT INTO `sys_oper_log` VALUES (11746, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:22:45'); INSERT INTO `sys_oper_log` VALUES (11747, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:22:45'); INSERT INTO `sys_oper_log` VALUES (11748, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:24:31'); INSERT INTO `sys_oper_log` VALUES (11749, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:24:31'); INSERT INTO `sys_oper_log` VALUES (11750, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:25:03'); INSERT INTO `sys_oper_log` VALUES (11751, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:25:03'); INSERT INTO `sys_oper_log` VALUES (11752, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:26:28'); INSERT INTO `sys_oper_log` VALUES (11753, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:26:28'); INSERT INTO `sys_oper_log` VALUES (11754, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:26:53'); INSERT INTO `sys_oper_log` VALUES (11755, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:26:53'); INSERT INTO `sys_oper_log` VALUES (11756, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:28:36'); INSERT INTO `sys_oper_log` VALUES (11757, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:28:36'); INSERT INTO `sys_oper_log` VALUES (11758, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:30:04'); INSERT INTO `sys_oper_log` VALUES (11759, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:30:04'); INSERT INTO `sys_oper_log` VALUES (11760, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:30:37'); INSERT INTO `sys_oper_log` VALUES (11761, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:30:37'); INSERT INTO `sys_oper_log` VALUES (11762, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:30:49'); INSERT INTO `sys_oper_log` VALUES (11763, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:30:49'); INSERT INTO `sys_oper_log` VALUES (11764, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:31:32'); INSERT INTO `sys_oper_log` VALUES (11765, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:31:32'); INSERT INTO `sys_oper_log` VALUES (11766, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:34:12'); INSERT INTO `sys_oper_log` VALUES (11767, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:34:12'); INSERT INTO `sys_oper_log` VALUES (11768, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:35:52'); INSERT INTO `sys_oper_log` VALUES (11769, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:35:52'); INSERT INTO `sys_oper_log` VALUES (11770, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:36:43'); INSERT INTO `sys_oper_log` VALUES (11771, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:36:43'); INSERT INTO `sys_oper_log` VALUES (11772, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:38:33'); INSERT INTO `sys_oper_log` VALUES (11773, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:38:33'); INSERT INTO `sys_oper_log` VALUES (11774, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:39:49'); INSERT INTO `sys_oper_log` VALUES (11775, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:39:49'); INSERT INTO `sys_oper_log` VALUES (11776, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:43:16'); INSERT INTO `sys_oper_log` VALUES (11777, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:43:16'); INSERT INTO `sys_oper_log` VALUES (11778, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647396227000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:43:30'); INSERT INTO `sys_oper_log` VALUES (11779, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:03:47\"}}', 0, '', '2022-03-16 10:43:30'); INSERT INTO `sys_oper_log` VALUES (11780, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:46:23'); INSERT INTO `sys_oper_log` VALUES (11781, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 10:46:23'); INSERT INTO `sys_oper_log` VALUES (11782, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 10:47:54'); INSERT INTO `sys_oper_log` VALUES (11783, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:47:54'); INSERT INTO `sys_oper_log` VALUES (11784, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 10:49:25'); INSERT INTO `sys_oper_log` VALUES (11785, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:49:25'); INSERT INTO `sys_oper_log` VALUES (11786, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:50:03'); INSERT INTO `sys_oper_log` VALUES (11787, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 10:50:03'); INSERT INTO `sys_oper_log` VALUES (11788, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:50:40'); INSERT INTO `sys_oper_log` VALUES (11789, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 10:50:40'); INSERT INTO `sys_oper_log` VALUES (11790, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:50:53'); INSERT INTO `sys_oper_log` VALUES (11791, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 10:50:53'); INSERT INTO `sys_oper_log` VALUES (11792, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 10:51:38'); INSERT INTO `sys_oper_log` VALUES (11793, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:51:38'); INSERT INTO `sys_oper_log` VALUES (11794, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 10:53:11'); INSERT INTO `sys_oper_log` VALUES (11795, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 10:53:11'); INSERT INTO `sys_oper_log` VALUES (11796, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 11:01:41'); INSERT INTO `sys_oper_log` VALUES (11797, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:01:41'); INSERT INTO `sys_oper_log` VALUES (11798, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 11:04:59'); INSERT INTO `sys_oper_log` VALUES (11799, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:04:59'); INSERT INTO `sys_oper_log` VALUES (11800, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 11:06:30'); INSERT INTO `sys_oper_log` VALUES (11801, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:06:30'); INSERT INTO `sys_oper_log` VALUES (11802, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647398300000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:07:04'); INSERT INTO `sys_oper_log` VALUES (11803, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 10:38:20\"}}', 0, '', '2022-03-16 11:07:04'); INSERT INTO `sys_oper_log` VALUES (11804, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":2,\"parentCid\":0,\"children\":[],\"icon\":\"checkbox\",\"name\":\"手机\",\"showStatus\":1,\"productUnit\":\"\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-16 11:24:07'); INSERT INTO `sys_oper_log` VALUES (11805, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 11:08:17\"}}', 0, '', '2022-03-16 11:25:08'); INSERT INTO `sys_oper_log` VALUES (11806, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647400097000,\"temperature\":\"24\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:25:08'); INSERT INTO `sys_oper_log` VALUES (11807, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 11:08:17\"}}', 0, '', '2022-03-16 11:27:32'); INSERT INTO `sys_oper_log` VALUES (11808, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647400097000,\"temperature\":\"24\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:27:32'); INSERT INTO `sys_oper_log` VALUES (11809, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', '', '/product/category/save', '127.0.0.1', '', '{\"catId\":1503936068058230786,\"parentCid\":2,\"icon\":\"\",\"name\":\"maxlength=\\\"50\\\"maxlength=\\\"50\\\"maxlength=\\\"50\\\"maxlengt\",\"showStatus\":1,\"productUnit\":\"\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-16 11:27:55'); INSERT INTO `sys_oper_log` VALUES (11810, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-16 11:28:08'); INSERT INTO `sys_oper_log` VALUES (11811, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647401723434,\"humidity\":\"71\",\"id\":1503937948633174017,\"province\":\"江西\",\"reporttime\":1647401628000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:35:23'); INSERT INTO `sys_oper_log` VALUES (11812, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 11:33:48\"}}', 0, '', '2022-03-16 11:35:23'); INSERT INTO `sys_oper_log` VALUES (11813, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 11:33:48\"}}', 0, '', '2022-03-16 11:36:46'); INSERT INTO `sys_oper_log` VALUES (11814, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647401723434,\"humidity\":\"71\",\"id\":1503937948633174017,\"province\":\"江西\",\"reporttime\":1647401628000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:36:46'); INSERT INTO `sys_oper_log` VALUES (11815, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647401723434,\"humidity\":\"71\",\"id\":1503937948633174017,\"province\":\"江西\",\"reporttime\":1647401628000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:36:53'); INSERT INTO `sys_oper_log` VALUES (11816, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 11:33:48\"}}', 0, '', '2022-03-16 11:36:53'); INSERT INTO `sys_oper_log` VALUES (11817, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 11:33:48\"}}', 0, '', '2022-03-16 11:39:19'); INSERT INTO `sys_oper_log` VALUES (11818, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647401723434,\"humidity\":\"71\",\"id\":1503937948633174017,\"province\":\"江西\",\"reporttime\":1647401628000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:39:19'); INSERT INTO `sys_oper_log` VALUES (11819, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', '', '/product/category/save', '127.0.0.1', '', '{\"catId\":1503939025633935361,\"parentCid\":2,\"children\":[],\"icon\":\"\",\"name\":\"啊\",\"showStatus\":1,\"productUnit\":\"\",\"sort\":0,\"productCount\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-16 11:39:40'); INSERT INTO `sys_oper_log` VALUES (11820, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":1503939025633935361,\"parentCid\":2,\"children\":[],\"icon\":\"component\",\"name\":\"啊\",\"showStatus\":1,\"productUnit\":\"啊\",\"sort\":0,\"productCount\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-16 11:39:46'); INSERT INTO `sys_oper_log` VALUES (11821, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-16 11:39:51'); INSERT INTO `sys_oper_log` VALUES (11822, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 11:33:48\"}}', 0, '', '2022-03-16 11:41:53'); INSERT INTO `sys_oper_log` VALUES (11823, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647401723434,\"humidity\":\"71\",\"id\":1503937948633174017,\"province\":\"江西\",\"reporttime\":1647401628000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:41:53'); INSERT INTO `sys_oper_log` VALUES (11824, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[{\"catId\":1,\"sort\":0},{\"catId\":3,\"sort\":1},{\"catId\":4,\"sort\":2},{\"catId\":7,\"sort\":3},{\"catId\":2,\"parentCid\":0,\"sort\":4,\"catLevel\":1},{\"catId\":6,\"sort\":5},{\"catId\":8,\"sort\":6},{\"catId\":10,\"sort\":7},{\"catId\":11,\"sort\":8},{\"catId\":5,\"sort\":9},{\"catId\":12,\"sort\":10},{\"catId\":13,\"sort\":11},{\"catId\":14,\"sort\":12},{\"catId\":15,\"sort\":13},{\"catId\":16,\"sort\":14},{\"catId\":9,\"sort\":15},{\"catId\":17,\"sort\":16},{\"catId\":18,\"sort\":17},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20}]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-16 11:41:57'); INSERT INTO `sys_oper_log` VALUES (11825, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"radio\",\"orderNum\":\"3\",\"menuName\":\"平台属性\",\"params\":{},\"parentId\":2104,\"isCache\":\"0\",\"path\":\"mall-attribute\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-16 11:51:17'); INSERT INTO `sys_oper_log` VALUES (11826, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"international\",\"orderNum\":\"1\",\"menuName\":\"属性分组\",\"params\":{},\"parentId\":2107,\"isCache\":\"0\",\"path\":\"attribute-group\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-16 11:51:47'); INSERT INTO `sys_oper_log` VALUES (11827, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"组件\",\"top\":2,\"createTime\":1647402988290,\"englishWord\":\"component\",\"isCollect\":1,\"id\":1503943253848899585,\"sort\":0,\"content\":\"component\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-16 11:56:28'); INSERT INTO `sys_oper_log` VALUES (11828, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 11:33:48\"}}', 0, '', '2022-03-16 11:58:10'); INSERT INTO `sys_oper_log` VALUES (11829, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647401628000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:58:10'); INSERT INTO `sys_oper_log` VALUES (11830, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647401628000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:58:49'); INSERT INTO `sys_oper_log` VALUES (11831, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 11:33:48\"}}', 0, '', '2022-03-16 11:58:49'); INSERT INTO `sys_oper_log` VALUES (11832, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 11:33:48\"}}', 0, '', '2022-03-16 11:59:06'); INSERT INTO `sys_oper_log` VALUES (11833, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647401628000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 11:59:06'); INSERT INTO `sys_oper_log` VALUES (11834, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647407311000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:30:42'); INSERT INTO `sys_oper_log` VALUES (11835, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:08:31\"}}', 0, '', '2022-03-16 13:30:42'); INSERT INTO `sys_oper_log` VALUES (11836, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"international\",\"orderNum\":\"1\",\"menuName\":\"属性分组\",\"params\":{},\"parentId\":2107,\"isCache\":\"0\",\"path\":\"attribute-group\",\"component\":\"mall/product/attribute/attr-group\",\"children\":[],\"createTime\":1647402707000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2108,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-16 13:31:05'); INSERT INTO `sys_oper_log` VALUES (11837, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647407311000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:31:09'); INSERT INTO `sys_oper_log` VALUES (11838, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:08:31\"}}', 0, '', '2022-03-16 13:31:09'); INSERT INTO `sys_oper_log` VALUES (11839, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:08:31\"}}', 0, '', '2022-03-16 13:37:37'); INSERT INTO `sys_oper_log` VALUES (11840, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1647407311000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:37:37'); INSERT INTO `sys_oper_log` VALUES (11841, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:34:01\"}}', 0, '', '2022-03-16 13:44:02'); INSERT INTO `sys_oper_log` VALUES (11842, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1647408841000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:44:02'); INSERT INTO `sys_oper_log` VALUES (11843, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:34:01\"}}', 0, '', '2022-03-16 13:44:38'); INSERT INTO `sys_oper_log` VALUES (11844, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1647408841000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:44:38'); INSERT INTO `sys_oper_log` VALUES (11845, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1647408841000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:44:56'); INSERT INTO `sys_oper_log` VALUES (11846, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:34:01\"}}', 0, '', '2022-03-16 13:44:56'); INSERT INTO `sys_oper_log` VALUES (11847, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1647408841000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:51:01'); INSERT INTO `sys_oper_log` VALUES (11848, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:34:01\"}}', 0, '', '2022-03-16 13:51:01'); INSERT INTO `sys_oper_log` VALUES (11849, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:34:01\"}}', 0, '', '2022-03-16 13:51:05'); INSERT INTO `sys_oper_log` VALUES (11850, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1647408841000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:51:05'); INSERT INTO `sys_oper_log` VALUES (11851, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:34:01\"}}', 0, '', '2022-03-16 13:51:31'); INSERT INTO `sys_oper_log` VALUES (11852, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1647408841000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:51:31'); INSERT INTO `sys_oper_log` VALUES (11853, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1647408841000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:52:20'); INSERT INTO `sys_oper_log` VALUES (11854, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:34:01\"}}', 0, '', '2022-03-16 13:52:20'); INSERT INTO `sys_oper_log` VALUES (11855, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:34:01\"}}', 0, '', '2022-03-16 13:55:06'); INSERT INTO `sys_oper_log` VALUES (11856, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1647408841000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:55:06'); INSERT INTO `sys_oper_log` VALUES (11857, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:34:01\"}}', 0, '', '2022-03-16 13:58:45'); INSERT INTO `sys_oper_log` VALUES (11858, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1647408841000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 13:58:45'); INSERT INTO `sys_oper_log` VALUES (11859, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[{\"catId\":2,\"parentCid\":0,\"sort\":0,\"catLevel\":1},{\"catId\":1,\"sort\":1},{\"catId\":3,\"sort\":2},{\"catId\":4,\"sort\":3},{\"catId\":7,\"sort\":4},{\"catId\":6,\"sort\":5},{\"catId\":8,\"sort\":6},{\"catId\":10,\"sort\":7},{\"catId\":11,\"sort\":8},{\"catId\":5,\"sort\":9},{\"catId\":12,\"sort\":10},{\"catId\":13,\"sort\":11},{\"catId\":14,\"sort\":12},{\"catId\":15,\"sort\":13},{\"catId\":16,\"sort\":14},{\"catId\":9,\"sort\":15},{\"catId\":17,\"sort\":16},{\"catId\":18,\"sort\":17},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20}]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-16 13:59:05'); INSERT INTO `sys_oper_log` VALUES (11860, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 13:34:01\"}}', 0, '', '2022-03-16 14:00:53'); INSERT INTO `sys_oper_log` VALUES (11861, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1647408841000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:00:53'); INSERT INTO `sys_oper_log` VALUES (11862, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:03:50\"}}', 0, '', '2022-03-16 14:12:42'); INSERT INTO `sys_oper_log` VALUES (11863, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647411162259,\"humidity\":\"57\",\"id\":1503977537959792641,\"province\":\"江西\",\"reporttime\":1647410630000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:12:42'); INSERT INTO `sys_oper_log` VALUES (11864, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:03:50\"}}', 0, '', '2022-03-16 14:16:29'); INSERT INTO `sys_oper_log` VALUES (11865, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647411162259,\"humidity\":\"57\",\"id\":1503977537959792641,\"province\":\"江西\",\"reporttime\":1647410630000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:16:29'); INSERT INTO `sys_oper_log` VALUES (11866, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:03:50\"}}', 0, '', '2022-03-16 14:21:30'); INSERT INTO `sys_oper_log` VALUES (11867, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647411162259,\"humidity\":\"57\",\"id\":1503977537959792641,\"province\":\"江西\",\"reporttime\":1647410630000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:21:31'); INSERT INTO `sys_oper_log` VALUES (11868, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647410630000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:35:07'); INSERT INTO `sys_oper_log` VALUES (11869, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:03:50\"}}', 0, '', '2022-03-16 14:35:07'); INSERT INTO `sys_oper_log` VALUES (11870, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:03:50\"}}', 0, '', '2022-03-16 14:35:18'); INSERT INTO `sys_oper_log` VALUES (11871, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647410630000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:35:18'); INSERT INTO `sys_oper_log` VALUES (11872, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647410630000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:35:44'); INSERT INTO `sys_oper_log` VALUES (11873, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:03:50\"}}', 0, '', '2022-03-16 14:35:44'); INSERT INTO `sys_oper_log` VALUES (11874, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647410630000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:36:03'); INSERT INTO `sys_oper_log` VALUES (11875, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:03:50\"}}', 0, '', '2022-03-16 14:36:03'); INSERT INTO `sys_oper_log` VALUES (11876, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:03:50\"}}', 0, '', '2022-03-16 14:36:57'); INSERT INTO `sys_oper_log` VALUES (11877, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647410630000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:36:57'); INSERT INTO `sys_oper_log` VALUES (11878, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:03:50\"}}', 0, '', '2022-03-16 14:38:16'); INSERT INTO `sys_oper_log` VALUES (11879, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647410630000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:38:16'); INSERT INTO `sys_oper_log` VALUES (11880, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:03:50\"}}', 0, '', '2022-03-16 14:39:31'); INSERT INTO `sys_oper_log` VALUES (11881, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"57\",\"province\":\"江西\",\"reporttime\":1647410630000,\"temperature\":\"27\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:39:31'); INSERT INTO `sys_oper_log` VALUES (11882, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:38:42\"}}', 0, '', '2022-03-16 14:49:04'); INSERT INTO `sys_oper_log` VALUES (11883, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"52\",\"province\":\"江西\",\"reporttime\":1647412722000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:49:04'); INSERT INTO `sys_oper_log` VALUES (11884, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"52\",\"province\":\"江西\",\"reporttime\":1647412722000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:49:14'); INSERT INTO `sys_oper_log` VALUES (11885, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:38:42\"}}', 0, '', '2022-03-16 14:49:14'); INSERT INTO `sys_oper_log` VALUES (11886, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:38:42\"}}', 0, '', '2022-03-16 14:50:30'); INSERT INTO `sys_oper_log` VALUES (11887, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"52\",\"province\":\"江西\",\"reporttime\":1647412722000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:50:30'); INSERT INTO `sys_oper_log` VALUES (11888, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"52\",\"province\":\"江西\",\"reporttime\":1647412722000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:50:45'); INSERT INTO `sys_oper_log` VALUES (11889, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:38:42\"}}', 0, '', '2022-03-16 14:50:45'); INSERT INTO `sys_oper_log` VALUES (11890, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:38:42\"}}', 0, '', '2022-03-16 14:50:54'); INSERT INTO `sys_oper_log` VALUES (11891, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"52\",\"province\":\"江西\",\"reporttime\":1647412722000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:50:54'); INSERT INTO `sys_oper_log` VALUES (11892, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:38:42\"}}', 0, '', '2022-03-16 14:55:08'); INSERT INTO `sys_oper_log` VALUES (11893, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"52\",\"province\":\"江西\",\"reporttime\":1647412722000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 14:55:08'); INSERT INTO `sys_oper_log` VALUES (11894, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"52\",\"province\":\"江西\",\"reporttime\":1647412722000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:06:48'); INSERT INTO `sys_oper_log` VALUES (11895, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:38:42\"}}', 0, '', '2022-03-16 15:06:49'); INSERT INTO `sys_oper_log` VALUES (11896, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:38:42\"}}', 0, '', '2022-03-16 15:08:20'); INSERT INTO `sys_oper_log` VALUES (11897, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"52\",\"province\":\"江西\",\"reporttime\":1647412722000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:08:20'); INSERT INTO `sys_oper_log` VALUES (11898, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"晴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 14:38:42\"}}', 0, '', '2022-03-16 15:16:19'); INSERT INTO `sys_oper_log` VALUES (11899, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"52\",\"province\":\"江西\",\"reporttime\":1647412722000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:16:19'); INSERT INTO `sys_oper_log` VALUES (11900, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647415187840,\"humidity\":\"56\",\"id\":1503994422474477569,\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:19:47'); INSERT INTO `sys_oper_log` VALUES (11901, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, '', '2022-03-16 15:19:47'); INSERT INTO `sys_oper_log` VALUES (11902, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647415187840,\"humidity\":\"56\",\"id\":1503994422474477569,\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:20:28'); INSERT INTO `sys_oper_log` VALUES (11903, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, '', '2022-03-16 15:20:28'); INSERT INTO `sys_oper_log` VALUES (11904, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, '', '2022-03-16 15:21:32'); INSERT INTO `sys_oper_log` VALUES (11905, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647415187840,\"humidity\":\"56\",\"id\":1503994422474477569,\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:21:32'); INSERT INTO `sys_oper_log` VALUES (11906, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, '', '2022-03-16 15:22:41'); INSERT INTO `sys_oper_log` VALUES (11907, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647415187840,\"humidity\":\"56\",\"id\":1503994422474477569,\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:22:41'); INSERT INTO `sys_oper_log` VALUES (11908, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, '', '2022-03-16 15:30:45'); INSERT INTO `sys_oper_log` VALUES (11909, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:30:45'); INSERT INTO `sys_oper_log` VALUES (11910, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:30:45'); INSERT INTO `sys_oper_log` VALUES (11911, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, '', '2022-03-16 15:30:45'); INSERT INTO `sys_oper_log` VALUES (11912, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, NULL, '2022-03-16 15:32:30'); INSERT INTO `sys_oper_log` VALUES (11913, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 15:32:30'); INSERT INTO `sys_oper_log` VALUES (11914, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, '', '2022-03-16 15:34:40'); INSERT INTO `sys_oper_log` VALUES (11915, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:34:40'); INSERT INTO `sys_oper_log` VALUES (11916, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:34:43'); INSERT INTO `sys_oper_log` VALUES (11917, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, '', '2022-03-16 15:34:43'); INSERT INTO `sys_oper_log` VALUES (11918, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:34:56'); INSERT INTO `sys_oper_log` VALUES (11919, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, '', '2022-03-16 15:34:56'); INSERT INTO `sys_oper_log` VALUES (11920, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 15:08:26\"}}', 0, '', '2022-03-16 15:37:06'); INSERT INTO `sys_oper_log` VALUES (11921, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"56\",\"province\":\"江西\",\"reporttime\":1647414506000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 15:37:06'); INSERT INTO `sys_oper_log` VALUES (11922, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647418069060,\"humidity\":\"56\",\"id\":1504006507166076929,\"province\":\"江西\",\"reporttime\":1647417832000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 16:07:49'); INSERT INTO `sys_oper_log` VALUES (11923, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 16:03:52\"}}', 0, '', '2022-03-16 16:07:49'); INSERT INTO `sys_oper_log` VALUES (11924, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"晴\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 16:03:52\"}}', 0, '', '2022-03-16 16:10:26'); INSERT INTO `sys_oper_log` VALUES (11925, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647418069060,\"humidity\":\"56\",\"id\":1504006507166076929,\"province\":\"江西\",\"reporttime\":1647417832000,\"temperature\":\"28\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 16:10:26'); INSERT INTO `sys_oper_log` VALUES (11926, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', NULL, '/copyWriting', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"时间带着明显的恶意,缓缓在我的头顶流逝。\",\"createTime\":1647423156492,\"id\":1504027845419216897,\"source\":\"Sai\",\"type\":5}}', 0, NULL, '2022-03-16 17:32:36'); INSERT INTO `sys_oper_log` VALUES (11927, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', NULL, '/aword/', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"You are not stuck because you can\'t, you\'re stuck because you won\'t.\",\"createTime\":1647423156758,\"dataId\":4138,\"id\":1504027846497153025,\"imgurl\":\"\",\"note\":\"你不是不能挣脱,你只是不愿意挣脱。\",\"source\":\"\",\"tts\":\"\"}}', 0, NULL, '2022-03-16 17:32:36'); INSERT INTO `sys_oper_log` VALUES (11928, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:25:57'); INSERT INTO `sys_oper_log` VALUES (11929, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:25:57'); INSERT INTO `sys_oper_log` VALUES (11930, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:28:21'); INSERT INTO `sys_oper_log` VALUES (11931, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:28:21'); INSERT INTO `sys_oper_log` VALUES (11932, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":2,\"parentCid\":0,\"icon\":\"drag\",\"name\":\"手机\",\"showStatus\":1,\"productUnit\":\"\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:29:10'); INSERT INTO `sys_oper_log` VALUES (11933, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":34,\"parentCid\":2,\"icon\":\"user\",\"name\":\"手机通讯\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"productCount\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:29:24'); INSERT INTO `sys_oper_log` VALUES (11934, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":34,\"parentCid\":2,\"icon\":\"dashboard\",\"name\":\"手机通讯\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"productCount\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:29:30'); INSERT INTO `sys_oper_log` VALUES (11935, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":14,\"parentCid\":0,\"icon\":\"component\",\"name\":\"食品饮料、保健食品\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":12,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:29:50'); INSERT INTO `sys_oper_log` VALUES (11936, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":6,\"parentCid\":0,\"icon\":\"component\",\"name\":\"电脑办公\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":5,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:29:57'); INSERT INTO `sys_oper_log` VALUES (11937, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":6,\"parentCid\":0,\"icon\":\"svg_collect\",\"name\":\"电脑办公\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":5,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:30:22'); INSERT INTO `sys_oper_log` VALUES (11938, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:32:02'); INSERT INTO `sys_oper_log` VALUES (11939, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:32:02'); INSERT INTO `sys_oper_log` VALUES (11940, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":2,\"parentCid\":0,\"icon\":\"documentation\",\"name\":\"手机\",\"showStatus\":1,\"productUnit\":\"\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:32:13'); INSERT INTO `sys_oper_log` VALUES (11941, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":13,\"parentCid\":0,\"icon\":\"download\",\"name\":\"礼品箱包\",\"showStatus\":1,\"sort\":11,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:32:56'); INSERT INTO `sys_oper_log` VALUES (11942, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:34:18'); INSERT INTO `sys_oper_log` VALUES (11943, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:34:18'); INSERT INTO `sys_oper_log` VALUES (11944, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', NULL, '/product/category/save', '127.0.0.1', '', '{\"catId\":1504103810340691969,\"parentCid\":2,\"icon\":\"clipboard\",\"name\":\"1\",\"showStatus\":1,\"productUnit\":\"12\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:34:27'); INSERT INTO `sys_oper_log` VALUES (11945, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":1504103810340691969,\"parentCid\":2,\"icon\":\"download\",\"name\":\"1\",\"showStatus\":1,\"productUnit\":\"12\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:34:33'); INSERT INTO `sys_oper_log` VALUES (11946, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:34:46'); INSERT INTO `sys_oper_log` VALUES (11947, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:34:46'); INSERT INTO `sys_oper_log` VALUES (11948, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', NULL, '/product/category/save', '127.0.0.1', '', '{\"catId\":1504103901780713474,\"parentCid\":2,\"icon\":\"clipboard\",\"name\":\"1\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:34:49'); INSERT INTO `sys_oper_log` VALUES (11949, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', NULL, '/product/category/delete', '127.0.0.1', '', NULL, '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:34:52'); INSERT INTO `sys_oper_log` VALUES (11950, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:34:53'); INSERT INTO `sys_oper_log` VALUES (11951, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:34:53'); INSERT INTO `sys_oper_log` VALUES (11952, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', NULL, '/product/category/save', '127.0.0.1', '', '{\"catId\":1504103949604167681,\"parentCid\":2,\"icon\":\"email\",\"name\":\"2\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:35:01'); INSERT INTO `sys_oper_log` VALUES (11953, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":14,\"parentCid\":0,\"icon\":\"download\",\"name\":\"食品饮料、保健食品\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":12,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:35:04'); INSERT INTO `sys_oper_log` VALUES (11954, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:35:23'); INSERT INTO `sys_oper_log` VALUES (11955, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:35:23'); INSERT INTO `sys_oper_log` VALUES (11956, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:35:54'); INSERT INTO `sys_oper_log` VALUES (11957, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:35:54'); INSERT INTO `sys_oper_log` VALUES (11958, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', NULL, '/product/category/save', '127.0.0.1', '', '{\"catId\":1504104195851755521,\"parentCid\":2,\"icon\":\"clipboard\",\"name\":\"1\",\"showStatus\":1,\"productUnit\":\"4\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:35:59'); INSERT INTO `sys_oper_log` VALUES (11959, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', NULL, '/product/category/delete', '127.0.0.1', '', NULL, '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:36:05'); INSERT INTO `sys_oper_log` VALUES (11960, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', NULL, '/product/category/save', '127.0.0.1', '', '{\"catId\":1504104268480323585,\"parentCid\":1,\"icon\":\"date\",\"name\":\"24\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:36:17'); INSERT INTO `sys_oper_log` VALUES (11961, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":1504104268480323585,\"parentCid\":1,\"icon\":\"star\",\"name\":\"24\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:36:25'); INSERT INTO `sys_oper_log` VALUES (11962, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:37:20'); INSERT INTO `sys_oper_log` VALUES (11963, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:37:20'); INSERT INTO `sys_oper_log` VALUES (11964, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', NULL, '/product/category/save', '127.0.0.1', '', '{\"catId\":1504105721865379841,\"parentCid\":2,\"icon\":\"date\",\"name\":\"214214\",\"showStatus\":1,\"productUnit\":\"124\",\"sort\":0,\"productCount\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:42:03'); INSERT INTO `sys_oper_log` VALUES (11965, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":1504105721865379841,\"parentCid\":2,\"icon\":\"time\",\"name\":\"214214\",\"showStatus\":1,\"productUnit\":\"124\",\"sort\":0,\"productCount\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:42:11'); INSERT INTO `sys_oper_log` VALUES (11966, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":1504105721865379841,\"parentCid\":2,\"icon\":\"tree\",\"name\":\"214214\",\"showStatus\":1,\"productUnit\":\"124\",\"sort\":0,\"productCount\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:42:18'); INSERT INTO `sys_oper_log` VALUES (11967, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', NULL, '/product/category/save', '127.0.0.1', '', '{\"catId\":1504105809450835969,\"parentCid\":2,\"icon\":\"time\",\"name\":\"124\",\"showStatus\":1,\"productUnit\":\"124\",\"sort\":0,\"productCount\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:42:24'); INSERT INTO `sys_oper_log` VALUES (11968, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:43:47'); INSERT INTO `sys_oper_log` VALUES (11969, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:43:47'); INSERT INTO `sys_oper_log` VALUES (11970, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":2,\"parentCid\":0,\"icon\":\"edit\",\"name\":\"手机\",\"showStatus\":1,\"productUnit\":\"\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:43:58'); INSERT INTO `sys_oper_log` VALUES (11971, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:44:00'); INSERT INTO `sys_oper_log` VALUES (11972, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:44:00'); INSERT INTO `sys_oper_log` VALUES (11973, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647439424000,\"temperature\":\"26\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:44:08'); INSERT INTO `sys_oper_log` VALUES (11974, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:03:44\"}}', 0, NULL, '2022-03-16 22:44:08'); INSERT INTO `sys_oper_log` VALUES (11975, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647441522000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:47:55'); INSERT INTO `sys_oper_log` VALUES (11976, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:38:42\"}}', 0, NULL, '2022-03-16 22:47:55'); INSERT INTO `sys_oper_log` VALUES (11977, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:38:42\"}}', 0, NULL, '2022-03-16 22:48:06'); INSERT INTO `sys_oper_log` VALUES (11978, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647441522000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:48:06'); INSERT INTO `sys_oper_log` VALUES (11979, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/forecast', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:38:42\"}}', 0, NULL, '2022-03-16 22:55:22'); INSERT INTO `sys_oper_log` VALUES (11980, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', NULL, '/weather/now', '127.0.0.1', '', NULL, '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647441522000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, NULL, '2022-03-16 22:55:22'); INSERT INTO `sys_oper_log` VALUES (11981, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":2,\"parentCid\":0,\"icon\":\"date\",\"name\":\"手机\",\"showStatus\":1,\"productUnit\":\"\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:55:27'); INSERT INTO `sys_oper_log` VALUES (11982, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":9,\"parentCid\":0,\"icon\":\"dict\",\"name\":\"服饰内衣\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":15,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:55:43'); INSERT INTO `sys_oper_log` VALUES (11983, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', NULL, '/product/category/save', '127.0.0.1', '', '{\"catId\":1504109194178666498,\"parentCid\":2,\"icon\":\"clipboard\",\"name\":\"1\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"productCount\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:55:51'); INSERT INTO `sys_oper_log` VALUES (11984, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', NULL, '/product/category/update', '127.0.0.1', '', '{\"catId\":1504103901780713474,\"parentCid\":2,\"icon\":\"date-range\",\"name\":\"1\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, NULL, '2022-03-16 22:55:54'); INSERT INTO `sys_oper_log` VALUES (11985, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:38:42\"}}', 0, '', '2022-03-16 22:58:49'); INSERT INTO `sys_oper_log` VALUES (11986, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647441522000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 22:58:49'); INSERT INTO `sys_oper_log` VALUES (11987, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:38:42\"}}', 0, '', '2022-03-16 22:58:49'); INSERT INTO `sys_oper_log` VALUES (11988, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647441522000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 22:58:49'); INSERT INTO `sys_oper_log` VALUES (11989, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":49,\"parentCid\":5,\"children\":[],\"icon\":\"component\",\"name\":\"家纺\",\"showStatus\":1,\"productUnit\":\"\",\"sort\":0,\"productCount\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-16 22:59:19'); INSERT INTO `sys_oper_log` VALUES (11990, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 22:38:42\"}}', 0, '', '2022-03-16 23:00:33'); INSERT INTO `sys_oper_log` VALUES (11991, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647441522000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 23:00:33'); INSERT INTO `sys_oper_log` VALUES (11992, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 23:08:31\"}}', 0, '', '2022-03-16 23:18:53'); INSERT INTO `sys_oper_log` VALUES (11993, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647443933113,\"humidity\":\"75\",\"id\":1504114988848709633,\"province\":\"江西\",\"reporttime\":1647443311000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 23:18:53'); INSERT INTO `sys_oper_log` VALUES (11994, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 23:08:31\"}}', 0, '', '2022-03-16 23:24:31'); INSERT INTO `sys_oper_log` VALUES (11995, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647443933113,\"humidity\":\"75\",\"id\":1504114988848709633,\"province\":\"江西\",\"reporttime\":1647443311000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 23:24:31'); INSERT INTO `sys_oper_log` VALUES (11996, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 23:33:59\"}}', 0, '', '2022-03-16 23:55:51'); INSERT INTO `sys_oper_log` VALUES (11997, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1647444839000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 23:55:51'); INSERT INTO `sys_oper_log` VALUES (11998, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 23:33:59\"}}', 0, '', '2022-03-16 23:56:36'); INSERT INTO `sys_oper_log` VALUES (11999, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1647444839000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 23:56:36'); INSERT INTO `sys_oper_log` VALUES (12000, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 23:33:59\"}}', 0, '', '2022-03-16 23:57:14'); INSERT INTO `sys_oper_log` VALUES (12001, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1647444839000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 23:57:14'); INSERT INTO `sys_oper_log` VALUES (12002, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 23:33:59\"}}', 0, '', '2022-03-16 23:58:40'); INSERT INTO `sys_oper_log` VALUES (12003, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1647444839000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-16 23:58:40'); INSERT INTO `sys_oper_log` VALUES (12004, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-16 23:33:59\"}}', 0, '', '2022-03-17 00:03:02'); INSERT INTO `sys_oper_log` VALUES (12005, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1647444839000,\"temperature\":\"25\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:03:02'); INSERT INTO `sys_oper_log` VALUES (12006, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:15:11'); INSERT INTO `sys_oper_log` VALUES (12007, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647447311687,\"humidity\":\"82\",\"id\":1504129159644512257,\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:15:11'); INSERT INTO `sys_oper_log` VALUES (12008, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:16:00'); INSERT INTO `sys_oper_log` VALUES (12009, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647447311687,\"humidity\":\"82\",\"id\":1504129159644512257,\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:16:00'); INSERT INTO `sys_oper_log` VALUES (12010, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:16:53'); INSERT INTO `sys_oper_log` VALUES (12011, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647447311687,\"humidity\":\"82\",\"id\":1504129159644512257,\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:16:53'); INSERT INTO `sys_oper_log` VALUES (12012, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:23:11'); INSERT INTO `sys_oper_log` VALUES (12013, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647447311687,\"humidity\":\"82\",\"id\":1504129159644512257,\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:23:11'); INSERT INTO `sys_oper_log` VALUES (12014, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647447311687,\"humidity\":\"82\",\"id\":1504129159644512257,\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:23:43'); INSERT INTO `sys_oper_log` VALUES (12015, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:23:43'); INSERT INTO `sys_oper_log` VALUES (12016, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:26:04'); INSERT INTO `sys_oper_log` VALUES (12017, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:26:04'); INSERT INTO `sys_oper_log` VALUES (12018, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:28:38'); INSERT INTO `sys_oper_log` VALUES (12019, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:28:38'); INSERT INTO `sys_oper_log` VALUES (12020, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:32:33'); INSERT INTO `sys_oper_log` VALUES (12021, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:32:33'); INSERT INTO `sys_oper_log` VALUES (12022, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:36:54'); INSERT INTO `sys_oper_log` VALUES (12023, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:36:54'); INSERT INTO `sys_oper_log` VALUES (12024, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:39:14'); INSERT INTO `sys_oper_log` VALUES (12025, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:39:14'); INSERT INTO `sys_oper_log` VALUES (12026, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:39:17'); INSERT INTO `sys_oper_log` VALUES (12027, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:39:17'); INSERT INTO `sys_oper_log` VALUES (12028, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:03:55\"}}', 0, '', '2022-03-17 00:42:31'); INSERT INTO `sys_oper_log` VALUES (12029, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"82\",\"province\":\"江西\",\"reporttime\":1647446635000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 00:42:31'); INSERT INTO `sys_oper_log` VALUES (12030, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:38:35\"}}', 0, '', '2022-03-17 00:57:03'); INSERT INTO `sys_oper_log` VALUES (12031, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647448715000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 00:57:03'); INSERT INTO `sys_oper_log` VALUES (12032, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:38:35\"}}', 0, '', '2022-03-17 01:02:43'); INSERT INTO `sys_oper_log` VALUES (12033, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647448715000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 01:02:43'); INSERT INTO `sys_oper_log` VALUES (12034, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-16\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"中雨\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"大雨\",\"nightwind\":\"东南\",\"week\":\"周三\"},{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 00:38:35\"}}', 0, '', '2022-03-17 01:07:41'); INSERT INTO `sys_oper_log` VALUES (12035, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647448715000,\"temperature\":\"23\",\"weather\":\"小雨\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 01:07:41'); INSERT INTO `sys_oper_log` VALUES (12036, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 08:03:54\"}}', 0, '', '2022-03-17 08:38:34'); INSERT INTO `sys_oper_log` VALUES (12037, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647477514609,\"humidity\":\"92\",\"id\":1504255839890964481,\"province\":\"江西\",\"reporttime\":1647475434000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 08:38:34'); INSERT INTO `sys_oper_log` VALUES (12038, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":12,\"parentCid\":0,\"children\":[],\"icon\":\"cascader\",\"name\":\"母婴\",\"showStatus\":1,\"productUnit\":\"\",\"sort\":10,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 08:38:58'); INSERT INTO `sys_oper_log` VALUES (12039, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 08:38:39\"}}', 0, '', '2022-03-17 08:50:16'); INSERT INTO `sys_oper_log` VALUES (12040, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647477519000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 08:50:16'); INSERT INTO `sys_oper_log` VALUES (12041, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 08:38:39\"}}', 0, '', '2022-03-17 08:55:15'); INSERT INTO `sys_oper_log` VALUES (12042, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647477519000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 08:55:15'); INSERT INTO `sys_oper_log` VALUES (12043, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 08:38:39\"}}', 0, '', '2022-03-17 09:02:18'); INSERT INTO `sys_oper_log` VALUES (12044, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647477519000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:02:18'); INSERT INTO `sys_oper_log` VALUES (12045, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647477519000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:02:56'); INSERT INTO `sys_oper_log` VALUES (12046, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 08:38:39\"}}', 0, '', '2022-03-17 09:02:56'); INSERT INTO `sys_oper_log` VALUES (12047, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 08:38:39\"}}', 0, '', '2022-03-17 09:04:35'); INSERT INTO `sys_oper_log` VALUES (12048, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647477519000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:04:35'); INSERT INTO `sys_oper_log` VALUES (12049, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647477519000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:05:14'); INSERT INTO `sys_oper_log` VALUES (12050, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 08:38:39\"}}', 0, '', '2022-03-17 09:05:14'); INSERT INTO `sys_oper_log` VALUES (12051, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 08:38:39\"}}', 0, '', '2022-03-17 09:08:24'); INSERT INTO `sys_oper_log` VALUES (12052, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647477519000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:08:24'); INSERT INTO `sys_oper_log` VALUES (12053, '属性分组', 3, 'com.xjs.mall.product.controller.AttrGroupController.delete()', 'DELETE', 1, 'admin', '', '/product/attrgroup/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:10:54'); INSERT INTO `sys_oper_log` VALUES (12054, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 08:38:39\"}}', 0, '', '2022-03-17 09:12:13'); INSERT INTO `sys_oper_log` VALUES (12055, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647477519000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:12:13'); INSERT INTO `sys_oper_log` VALUES (12056, '属性分组', 2, 'com.xjs.mall.product.controller.AttrGroupController.update()', 'PUT', 1, 'admin', '', '/product/attrgroup/update', '127.0.0.1', '', '{\"attrGroupId\":1504115487769493505,\"icon\":\"druid\",\"catelogId\":225,\"sort\":1,\"descript\":\"手机内存\",\"attrGroupName\":\"手机\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:12:19'); INSERT INTO `sys_oper_log` VALUES (12057, '属性分组', 2, 'com.xjs.mall.product.controller.AttrGroupController.update()', 'PUT', 1, 'admin', '', '/product/attrgroup/update', '127.0.0.1', '', '{\"attrGroupId\":1504115487769493505,\"icon\":\"druid\",\"catelogId\":225,\"sort\":5,\"descript\":\"手机内存\",\"attrGroupName\":\"手机\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:12:31'); INSERT INTO `sys_oper_log` VALUES (12058, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:15:25'); INSERT INTO `sys_oper_log` VALUES (12059, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647479725223,\"humidity\":\"89\",\"id\":1504265111823581186,\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:15:25'); INSERT INTO `sys_oper_log` VALUES (12060, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647479725223,\"humidity\":\"89\",\"id\":1504265111823581186,\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:16:20'); INSERT INTO `sys_oper_log` VALUES (12061, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:16:20'); INSERT INTO `sys_oper_log` VALUES (12062, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647479725223,\"humidity\":\"89\",\"id\":1504265111823581186,\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:16:39'); INSERT INTO `sys_oper_log` VALUES (12063, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:16:39'); INSERT INTO `sys_oper_log` VALUES (12064, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:18:41'); INSERT INTO `sys_oper_log` VALUES (12065, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647479725223,\"humidity\":\"89\",\"id\":1504265111823581186,\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:18:41'); INSERT INTO `sys_oper_log` VALUES (12066, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647479725223,\"humidity\":\"89\",\"id\":1504265111823581186,\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:19:25'); INSERT INTO `sys_oper_log` VALUES (12067, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:19:25'); INSERT INTO `sys_oper_log` VALUES (12068, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:19:37'); INSERT INTO `sys_oper_log` VALUES (12069, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647479725223,\"humidity\":\"89\",\"id\":1504265111823581186,\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:19:37'); INSERT INTO `sys_oper_log` VALUES (12070, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647479725223,\"humidity\":\"89\",\"id\":1504265111823581186,\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:19:53'); INSERT INTO `sys_oper_log` VALUES (12071, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:19:53'); INSERT INTO `sys_oper_log` VALUES (12072, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:22:23'); INSERT INTO `sys_oper_log` VALUES (12073, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647479725223,\"humidity\":\"89\",\"id\":1504265111823581186,\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:22:23'); INSERT INTO `sys_oper_log` VALUES (12074, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:24:09'); INSERT INTO `sys_oper_log` VALUES (12075, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647479725223,\"humidity\":\"89\",\"id\":1504265111823581186,\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:24:09'); INSERT INTO `sys_oper_log` VALUES (12076, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647479725223,\"humidity\":\"89\",\"id\":1504265111823581186,\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:24:42'); INSERT INTO `sys_oper_log` VALUES (12077, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:24:42'); INSERT INTO `sys_oper_log` VALUES (12078, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:30:10'); INSERT INTO `sys_oper_log` VALUES (12079, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:30:12'); INSERT INTO `sys_oper_log` VALUES (12080, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:30:13'); INSERT INTO `sys_oper_log` VALUES (12081, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:30:18'); INSERT INTO `sys_oper_log` VALUES (12082, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:30:19'); INSERT INTO `sys_oper_log` VALUES (12083, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:30:23'); INSERT INTO `sys_oper_log` VALUES (12084, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:30:29'); INSERT INTO `sys_oper_log` VALUES (12085, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:30:31'); INSERT INTO `sys_oper_log` VALUES (12086, '商品分类', 3, 'com.xjs.mall.product.controller.CategoryController.delete()', 'DELETE', 1, 'admin', '', '/product/category/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 09:30:34'); INSERT INTO `sys_oper_log` VALUES (12087, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:33:39'); INSERT INTO `sys_oper_log` VALUES (12088, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:33:39'); INSERT INTO `sys_oper_log` VALUES (12089, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:34:34'); INSERT INTO `sys_oper_log` VALUES (12090, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:34:34'); INSERT INTO `sys_oper_log` VALUES (12091, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:35:39'); INSERT INTO `sys_oper_log` VALUES (12092, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:35:39'); INSERT INTO `sys_oper_log` VALUES (12093, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:36:32'); INSERT INTO `sys_oper_log` VALUES (12094, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:36:32'); INSERT INTO `sys_oper_log` VALUES (12095, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:36:48'); INSERT INTO `sys_oper_log` VALUES (12096, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:36:48'); INSERT INTO `sys_oper_log` VALUES (12097, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:38:02'); INSERT INTO `sys_oper_log` VALUES (12098, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:38:02'); INSERT INTO `sys_oper_log` VALUES (12099, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:08:47\"}}', 0, '', '2022-03-17 09:39:08'); INSERT INTO `sys_oper_log` VALUES (12100, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647479327000,\"temperature\":\"21\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 09:39:08'); INSERT INTO `sys_oper_log` VALUES (12101, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:44:44'); INSERT INTO `sys_oper_log` VALUES (12102, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:44:44'); INSERT INTO `sys_oper_log` VALUES (12103, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:45:13'); INSERT INTO `sys_oper_log` VALUES (12104, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:45:13'); INSERT INTO `sys_oper_log` VALUES (12105, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:45:29'); INSERT INTO `sys_oper_log` VALUES (12106, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:45:29'); INSERT INTO `sys_oper_log` VALUES (12107, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:46:22'); INSERT INTO `sys_oper_log` VALUES (12108, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:46:22'); INSERT INTO `sys_oper_log` VALUES (12109, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:49:06'); INSERT INTO `sys_oper_log` VALUES (12110, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:49:06'); INSERT INTO `sys_oper_log` VALUES (12111, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:50:37'); INSERT INTO `sys_oper_log` VALUES (12112, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:50:37'); INSERT INTO `sys_oper_log` VALUES (12113, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:52:02'); INSERT INTO `sys_oper_log` VALUES (12114, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:52:02'); INSERT INTO `sys_oper_log` VALUES (12115, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:53:14'); INSERT INTO `sys_oper_log` VALUES (12116, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:53:14'); INSERT INTO `sys_oper_log` VALUES (12117, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:53:42'); INSERT INTO `sys_oper_log` VALUES (12118, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:53:42'); INSERT INTO `sys_oper_log` VALUES (12119, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:54:20'); INSERT INTO `sys_oper_log` VALUES (12120, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:54:20'); INSERT INTO `sys_oper_log` VALUES (12121, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:54:52'); INSERT INTO `sys_oper_log` VALUES (12122, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:54:52'); INSERT INTO `sys_oper_log` VALUES (12123, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:55:01'); INSERT INTO `sys_oper_log` VALUES (12124, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:55:01'); INSERT INTO `sys_oper_log` VALUES (12125, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:55:23'); INSERT INTO `sys_oper_log` VALUES (12126, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:55:23'); INSERT INTO `sys_oper_log` VALUES (12127, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:56:02'); INSERT INTO `sys_oper_log` VALUES (12128, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:56:02'); INSERT INTO `sys_oper_log` VALUES (12129, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:56:33'); INSERT INTO `sys_oper_log` VALUES (12130, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:56:33'); INSERT INTO `sys_oper_log` VALUES (12131, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:56:48'); INSERT INTO `sys_oper_log` VALUES (12132, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:56:48'); INSERT INTO `sys_oper_log` VALUES (12133, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:57:02'); INSERT INTO `sys_oper_log` VALUES (12134, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:57:02'); INSERT INTO `sys_oper_log` VALUES (12135, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:58:17'); INSERT INTO `sys_oper_log` VALUES (12136, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:58:17'); INSERT INTO `sys_oper_log` VALUES (12137, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:58:29'); INSERT INTO `sys_oper_log` VALUES (12138, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:58:29'); INSERT INTO `sys_oper_log` VALUES (12139, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:58:54'); INSERT INTO `sys_oper_log` VALUES (12140, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:58:54'); INSERT INTO `sys_oper_log` VALUES (12141, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 09:59:21'); INSERT INTO `sys_oper_log` VALUES (12142, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 09:59:21'); INSERT INTO `sys_oper_log` VALUES (12143, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 09:33:56\"}}', 0, '', '2022-03-17 10:01:22'); INSERT INTO `sys_oper_log` VALUES (12144, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647480836000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 10:01:22'); INSERT INTO `sys_oper_log` VALUES (12145, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647482634000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 10:23:18'); INSERT INTO `sys_oper_log` VALUES (12146, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 10:03:54\"}}', 0, '', '2022-03-17 10:23:19'); INSERT INTO `sys_oper_log` VALUES (12147, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 10:03:54\"}}', 0, '', '2022-03-17 10:28:40'); INSERT INTO `sys_oper_log` VALUES (12148, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647482634000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 10:28:40'); INSERT INTO `sys_oper_log` VALUES (12149, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647482634000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 10:28:55'); INSERT INTO `sys_oper_log` VALUES (12150, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 10:03:54\"}}', 0, '', '2022-03-17 10:28:55'); INSERT INTO `sys_oper_log` VALUES (12151, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647482634000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 10:29:45'); INSERT INTO `sys_oper_log` VALUES (12152, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 10:03:54\"}}', 0, '', '2022-03-17 10:29:45'); INSERT INTO `sys_oper_log` VALUES (12153, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 10:03:54\"}}', 0, '', '2022-03-17 10:30:49'); INSERT INTO `sys_oper_log` VALUES (12154, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647482634000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 10:30:49'); INSERT INTO `sys_oper_log` VALUES (12155, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 10:03:54\"}}', 0, '', '2022-03-17 10:31:10'); INSERT INTO `sys_oper_log` VALUES (12156, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647482634000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 10:31:10'); INSERT INTO `sys_oper_log` VALUES (12157, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 10:03:54\"}}', 0, '', '2022-03-17 10:33:05'); INSERT INTO `sys_oper_log` VALUES (12158, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647482634000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 10:33:05'); INSERT INTO `sys_oper_log` VALUES (12159, '品牌管理', 1, 'com.xjs.mall.product.controller.BrandController.save()', 'POST', 1, 'admin', '', '/product/brand/save', '127.0.0.1', '', '{\"brandId\":1504286299555762178,\"name\":\"OPPO\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-17/f2b1ff60-1a46-4e23-8042-bf86db43697b_白色樱花~蓝色轻纱露背连衣裙装红唇美女唯美性感私房摄影写真(1-13).jpg\",\"showStatus\":1,\"sort\":4,\"descript\":\"老人机\",\"firstLetter\":\"o\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:39:37'); INSERT INTO `sys_oper_log` VALUES (12160, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1647484725000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 10:43:34'); INSERT INTO `sys_oper_log` VALUES (12161, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 10:38:45\"}}', 0, '', '2022-03-17 10:43:34'); INSERT INTO `sys_oper_log` VALUES (12162, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"华为\",\"brandId\":1503923754248581122,\"catelogName\":\"智能手表\",\"catelogId\":770,\"id\":1504287344465940481}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:43:45'); INSERT INTO `sys_oper_log` VALUES (12163, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"小米\",\"brandId\":1503971604152057858,\"catelogName\":\"平板电视\",\"catelogId\":250,\"id\":1504287474292232194}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:44:16'); INSERT INTO `sys_oper_log` VALUES (12164, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"小米\",\"brandId\":1503971604152057858,\"catelogName\":\"笔记本\",\"catelogId\":449,\"id\":1504287507553062913}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:44:24'); INSERT INTO `sys_oper_log` VALUES (12165, '品牌管理', 1, 'com.xjs.mall.product.controller.BrandController.save()', 'POST', 1, 'admin', '', '/product/brand/save', '127.0.0.1', '', '{\"brandId\":1504287578159976449,\"name\":\"一加\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-17/f73502a9-3988-42db-8fc6-a88811a1b653_超可爱迷人的美胸妹子自拍写真,生活照图片(1-6).jpg\",\"showStatus\":1,\"sort\":2,\"descript\":\"一加\",\"firstLetter\":\"y\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:44:41'); INSERT INTO `sys_oper_log` VALUES (12166, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"华为\",\"brandId\":1503923754248581122,\"catelogName\":\"笔记本\",\"catelogId\":449,\"id\":1504289830044061697}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:53:38'); INSERT INTO `sys_oper_log` VALUES (12167, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503923754248581122,\"name\":\"华为1\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/f2b0ca2b-bbb3-4f94-86f5-9edde65214be_不曾邀约,自有一份心安,给人干净,单纯感觉的甜美少女(1-10).jpg\",\"showStatus\":1,\"sort\":2,\"descript\":\"爱国!!!\",\"firstLetter\":\"h\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:53:49'); INSERT INTO `sys_oper_log` VALUES (12168, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503923754248581122,\"name\":\"华为\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/f2b0ca2b-bbb3-4f94-86f5-9edde65214be_不曾邀约,自有一份心安,给人干净,单纯感觉的甜美少女(1-10).jpg\",\"showStatus\":1,\"sort\":2,\"descript\":\"爱国!!!\",\"firstLetter\":\"h\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:53:58'); INSERT INTO `sys_oper_log` VALUES (12169, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"75\",\"province\":\"江西\",\"reporttime\":1647484725000,\"temperature\":\"22\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 10:58:08'); INSERT INTO `sys_oper_log` VALUES (12170, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 10:38:45\"}}', 0, '', '2022-03-17 10:58:09'); INSERT INTO `sys_oper_log` VALUES (12171, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":225,\"parentCid\":34,\"children\":[],\"icon\":\"wechat\",\"name\":\"手机1\",\"showStatus\":1,\"productUnit\":\"部\",\"sort\":0,\"productCount\":0,\"catLevel\":3}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:58:44'); INSERT INTO `sys_oper_log` VALUES (12172, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":225,\"parentCid\":34,\"children\":[],\"icon\":\"wechat\",\"name\":\"手机\",\"showStatus\":1,\"productUnit\":\"部\",\"sort\":0,\"productCount\":0,\"catLevel\":3}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:58:54'); INSERT INTO `sys_oper_log` VALUES (12173, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971753699966978,\"name\":\"VIVO\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_晨起刷牙的可爱丸子头小姐姐睡衣短裤清新居家私房照(1-8).jpg\",\"showStatus\":0,\"sort\":4,\"descript\":\"傻子买\",\"firstLetter\":\"v\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 10:59:18'); INSERT INTO `sys_oper_log` VALUES (12174, '属性分组', 2, 'com.xjs.mall.product.controller.AttrGroupController.update()', 'PUT', 1, 'admin', '', '/product/attrgroup/update', '127.0.0.1', '', '{\"attrGroupId\":1504115487769493505,\"icon\":\"druid\",\"catelogId\":225,\"sort\":4,\"descript\":\"主体信息\",\"attrGroupName\":\"主体\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 11:06:14'); INSERT INTO `sys_oper_log` VALUES (12175, '属性分组', 1, 'com.xjs.mall.product.controller.AttrGroupController.save()', 'POST', 1, 'admin', '', '/product/attrgroup/save', '127.0.0.1', '', '{\"attrGroupId\":1504293112875573249,\"icon\":\"email\",\"catelogId\":225,\"sort\":3,\"descript\":\"基本信息\",\"attrGroupName\":\"基本信息\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 11:06:41'); INSERT INTO `sys_oper_log` VALUES (12176, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 11:08:35\"}}', 0, '', '2022-03-17 11:09:45'); INSERT INTO `sys_oper_log` VALUES (12177, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647486585895,\"humidity\":\"65\",\"id\":1504293887613730817,\"province\":\"江西\",\"reporttime\":1647486515000,\"temperature\":\"22\",\"weather\":\"中雨\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 11:09:45'); INSERT INTO `sys_oper_log` VALUES (12178, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_saoma\",\"orderNum\":\"3\",\"menuName\":\"规格参数\",\"params\":{},\"parentId\":2107,\"isCache\":\"0\",\"path\":\"specification\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-17 11:11:23'); INSERT INTO `sys_oper_log` VALUES (12179, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_saoma\",\"orderNum\":\"3\",\"menuName\":\"规格参数\",\"params\":{},\"parentId\":2107,\"isCache\":\"0\",\"path\":\"specification\",\"component\":\"mall/product/attribute/specification\",\"children\":[],\"createTime\":1647486683000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2109,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-17 11:11:50'); INSERT INTO `sys_oper_log` VALUES (12180, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 11:08:35\"}}', 0, '', '2022-03-17 11:17:07'); INSERT INTO `sys_oper_log` VALUES (12181, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647486585895,\"humidity\":\"65\",\"id\":1504293887613730817,\"province\":\"江西\",\"reporttime\":1647486515000,\"temperature\":\"22\",\"weather\":\"中雨\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 11:17:08'); INSERT INTO `sys_oper_log` VALUES (12182, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_saoma\",\"orderNum\":\"3\",\"menuName\":\"规格参数\",\"params\":{},\"parentId\":2107,\"isCache\":\"0\",\"path\":\"base-attr\",\"component\":\"mall/product/attribute/base-attr\",\"children\":[],\"createTime\":1647486683000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2109,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-17 11:17:26'); INSERT INTO `sys_oper_log` VALUES (12183, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647486515000,\"temperature\":\"22\",\"weather\":\"中雨\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 11:19:52'); INSERT INTO `sys_oper_log` VALUES (12184, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 11:08:35\"}}', 0, '', '2022-03-17 11:19:52'); INSERT INTO `sys_oper_log` VALUES (12185, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1647486515000,\"temperature\":\"22\",\"weather\":\"中雨\",\"winddirection\":\"西南\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 11:20:28'); INSERT INTO `sys_oper_log` VALUES (12186, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 11:08:35\"}}', 0, '', '2022-03-17 11:20:28'); INSERT INTO `sys_oper_log` VALUES (12187, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1647488023000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 11:47:07'); INSERT INTO `sys_oper_log` VALUES (12188, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 11:33:43\"}}', 0, '', '2022-03-17 11:47:08'); INSERT INTO `sys_oper_log` VALUES (12189, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 11:33:43\"}}', 0, '', '2022-03-17 11:53:13'); INSERT INTO `sys_oper_log` VALUES (12190, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"63\",\"province\":\"江西\",\"reporttime\":1647488023000,\"temperature\":\"23\",\"weather\":\"阴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 11:53:13'); INSERT INTO `sys_oper_log` VALUES (12191, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 13:33:50\"}}', 0, '', '2022-03-17 13:46:19'); INSERT INTO `sys_oper_log` VALUES (12192, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1647495230000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 13:46:19'); INSERT INTO `sys_oper_log` VALUES (12193, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrId\":0,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"icon\":\"icon\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"2022\",\"attrName\":\"上市年份\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 13:46:49'); INSERT INTO `sys_oper_log` VALUES (12194, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 13:33:50\"}}', 0, '', '2022-03-17 13:50:02'); INSERT INTO `sys_oper_log` VALUES (12195, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1647495230000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 13:50:02'); INSERT INTO `sys_oper_log` VALUES (12196, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrId\":0,\"attrGroupId\":1504115487769493505,\"searchType\":0,\"enable\":1,\"icon\":\"icon\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"256G;128G\",\"attrName\":\"内存\",\"attrType\":0}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 13:50:42'); INSERT INTO `sys_oper_log` VALUES (12197, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 13:33:50\"}}', 0, '', '2022-03-17 13:52:41'); INSERT INTO `sys_oper_log` VALUES (12198, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1647495230000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 13:52:41'); INSERT INTO `sys_oper_log` VALUES (12199, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrId\":0,\"attrGroupId\":1504115487769493505,\"searchType\":0,\"enable\":1,\"icon\":\"1\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"1\",\"attrName\":\"1\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 13:53:12'); INSERT INTO `sys_oper_log` VALUES (12200, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrId\":0,\"attrGroupId\":1504115487769493505,\"searchType\":0,\"enable\":1,\"icon\":\"1\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"1\",\"attrName\":\"1\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 13:54:09'); INSERT INTO `sys_oper_log` VALUES (12201, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 13:33:50\"}}', 0, '', '2022-03-17 13:55:29'); INSERT INTO `sys_oper_log` VALUES (12202, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1647495230000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 13:55:29'); INSERT INTO `sys_oper_log` VALUES (12203, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrId\":0,\"attrGroupId\":1504115487769493505,\"searchType\":0,\"enable\":1,\"icon\":\"1\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"1\",\"attrName\":\"1\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 13:55:39'); INSERT INTO `sys_oper_log` VALUES (12204, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1647495230000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 13:56:50'); INSERT INTO `sys_oper_log` VALUES (12205, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 13:33:50\"}}', 0, '', '2022-03-17 13:56:50'); INSERT INTO `sys_oper_log` VALUES (12206, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrGroupId\":1504293112875573249,\"searchType\":0,\"enable\":1,\"icon\":\"2\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"22\",\"attrName\":\"2\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 13:56:57'); INSERT INTO `sys_oper_log` VALUES (12207, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"77\",\"province\":\"江西\",\"reporttime\":1647495230000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 13:57:25'); INSERT INTO `sys_oper_log` VALUES (12208, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 13:33:50\"}}', 0, '', '2022-03-17 13:57:25'); INSERT INTO `sys_oper_log` VALUES (12209, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:03:46\"}}', 0, '', '2022-03-17 14:10:56'); INSERT INTO `sys_oper_log` VALUES (12210, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647497456083,\"humidity\":\"78\",\"id\":1504339480444796929,\"province\":\"江西\",\"reporttime\":1647497026000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 14:10:56'); INSERT INTO `sys_oper_log` VALUES (12211, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:03:46\"}}', 0, '', '2022-03-17 14:11:20'); INSERT INTO `sys_oper_log` VALUES (12212, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647497456083,\"humidity\":\"78\",\"id\":1504339480444796929,\"province\":\"江西\",\"reporttime\":1647497026000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 14:11:20'); INSERT INTO `sys_oper_log` VALUES (12213, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:03:46\"}}', 0, '', '2022-03-17 14:12:48'); INSERT INTO `sys_oper_log` VALUES (12214, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647497456083,\"humidity\":\"78\",\"id\":1504339480444796929,\"province\":\"江西\",\"reporttime\":1647497026000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 14:12:48'); INSERT INTO `sys_oper_log` VALUES (12215, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647497456083,\"humidity\":\"78\",\"id\":1504339480444796929,\"province\":\"江西\",\"reporttime\":1647497026000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 14:13:02'); INSERT INTO `sys_oper_log` VALUES (12216, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:03:46\"}}', 0, '', '2022-03-17 14:13:02'); INSERT INTO `sys_oper_log` VALUES (12217, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:03:46\"}}', 0, '', '2022-03-17 14:14:04'); INSERT INTO `sys_oper_log` VALUES (12218, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647497456083,\"humidity\":\"78\",\"id\":1504339480444796929,\"province\":\"江西\",\"reporttime\":1647497026000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 14:14:04'); INSERT INTO `sys_oper_log` VALUES (12219, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:03:46\"}}', 0, '', '2022-03-17 14:27:35'); INSERT INTO `sys_oper_log` VALUES (12220, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647497026000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 14:27:36'); INSERT INTO `sys_oper_log` VALUES (12221, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:03:46\"}}', 0, '', '2022-03-17 14:30:05'); INSERT INTO `sys_oper_log` VALUES (12222, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647497026000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 14:30:05'); INSERT INTO `sys_oper_log` VALUES (12223, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:03:46\"}}', 0, '', '2022-03-17 14:32:17'); INSERT INTO `sys_oper_log` VALUES (12224, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647497026000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 14:32:17'); INSERT INTO `sys_oper_log` VALUES (12225, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"函数\",\"top\":2,\"createTime\":1647498750445,\"englishWord\":\"function\",\"isCollect\":1,\"id\":1504344909438656514,\"sort\":0,\"content\":\"function\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-17 14:32:30'); INSERT INTO `sys_oper_log` VALUES (12226, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1647498754125,\"en\":\"Haste and wisdom are things far odd.\",\"id\":1504344924848521218,\"zh\":\"轻率与智慧相距遥远。\"}}', 0, '', '2022-03-17 14:32:34'); INSERT INTO `sys_oper_log` VALUES (12227, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:03:46\"}}', 0, '', '2022-03-17 14:34:00'); INSERT INTO `sys_oper_log` VALUES (12228, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647497026000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 14:34:00'); INSERT INTO `sys_oper_log` VALUES (12229, '规格参数', 3, 'com.xjs.mall.product.controller.AttrController.delete()', 'DELETE', 1, 'admin', '', '/product/attr/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 14:34:11'); INSERT INTO `sys_oper_log` VALUES (12230, '规格参数', 3, 'com.xjs.mall.product.controller.AttrController.delete()', 'DELETE', 1, 'admin', '', '/product/attr/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 14:34:16'); INSERT INTO `sys_oper_log` VALUES (12231, '规格参数', 3, 'com.xjs.mall.product.controller.AttrController.delete()', 'DELETE', 1, 'admin', '', '/product/attr/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 14:34:21'); INSERT INTO `sys_oper_log` VALUES (12232, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647499125000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 14:50:19'); INSERT INTO `sys_oper_log` VALUES (12233, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:38:45\"}}', 0, '', '2022-03-17 14:50:19'); INSERT INTO `sys_oper_log` VALUES (12234, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"searchType\":0,\"enable\":1,\"icon\":\"2\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"22\",\"attrName\":\"2\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 14:50:44'); INSERT INTO `sys_oper_log` VALUES (12235, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647499125000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 14:50:54'); INSERT INTO `sys_oper_log` VALUES (12236, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:38:45\"}}', 0, '', '2022-03-17 14:50:54'); INSERT INTO `sys_oper_log` VALUES (12237, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:38:45\"}}', 0, '', '2022-03-17 14:55:04'); INSERT INTO `sys_oper_log` VALUES (12238, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647499125000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 14:55:04'); INSERT INTO `sys_oper_log` VALUES (12239, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"searchType\":0,\"enable\":1,\"icon\":\"2\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"22\",\"attrName\":\"2\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 14:56:06'); INSERT INTO `sys_oper_log` VALUES (12240, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:38:45\"}}', 0, '', '2022-03-17 14:56:21'); INSERT INTO `sys_oper_log` VALUES (12241, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647499125000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 14:56:21'); INSERT INTO `sys_oper_log` VALUES (12242, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"searchType\":0,\"enable\":0,\"icon\":\"2\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"22\",\"attrName\":\"2\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 14:56:29'); INSERT INTO `sys_oper_log` VALUES (12243, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504115487769493505,\"searchType\":0,\"enable\":0,\"icon\":\"2\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"22\",\"attrName\":\"2\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:05:46'); INSERT INTO `sys_oper_log` VALUES (12244, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647499125000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 15:06:21'); INSERT INTO `sys_oper_log` VALUES (12245, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 14:38:45\"}}', 0, '', '2022-03-17 15:06:22'); INSERT INTO `sys_oper_log` VALUES (12246, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"icon\":\"2\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"22\",\"attrName\":\"2\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:06:41'); INSERT INTO `sys_oper_log` VALUES (12247, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"icon\":\"2\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"22\",\"attrName\":\"2\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:06:46'); INSERT INTO `sys_oper_log` VALUES (12248, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"icon\":\"2\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"2\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:06:58'); INSERT INTO `sys_oper_log` VALUES (12249, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"icon\":\"2\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:07:34'); INSERT INTO `sys_oper_log` VALUES (12250, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:08:44\"}}', 0, '', '2022-03-17 15:19:18'); INSERT INTO `sys_oper_log` VALUES (12251, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647501558663,\"humidity\":\"74\",\"id\":1504356687933472770,\"province\":\"江西\",\"reporttime\":1647500924000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 15:19:18'); INSERT INTO `sys_oper_log` VALUES (12252, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:08:44\"}}', 0, '', '2022-03-17 15:19:20'); INSERT INTO `sys_oper_log` VALUES (12253, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647501558663,\"humidity\":\"74\",\"id\":1504356687933472770,\"province\":\"江西\",\"reporttime\":1647500924000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 15:19:20'); INSERT INTO `sys_oper_log` VALUES (12254, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"icon\":\"2\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:19:37'); INSERT INTO `sys_oper_log` VALUES (12255, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"icon\":\"2\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:19:41'); INSERT INTO `sys_oper_log` VALUES (12256, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:08:44\"}}', 0, '', '2022-03-17 15:20:24'); INSERT INTO `sys_oper_log` VALUES (12257, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647501558663,\"humidity\":\"74\",\"id\":1504356687933472770,\"province\":\"江西\",\"reporttime\":1647500924000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 15:20:24'); INSERT INTO `sys_oper_log` VALUES (12258, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:08:44\"}}', 0, '', '2022-03-17 15:25:02'); INSERT INTO `sys_oper_log` VALUES (12259, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647501558663,\"humidity\":\"74\",\"id\":1504356687933472770,\"province\":\"江西\",\"reporttime\":1647500924000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 15:25:02'); INSERT INTO `sys_oper_log` VALUES (12260, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647501558663,\"humidity\":\"74\",\"id\":1504356687933472770,\"province\":\"江西\",\"reporttime\":1647500924000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 15:25:42'); INSERT INTO `sys_oper_log` VALUES (12261, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:08:44\"}}', 0, '', '2022-03-17 15:25:42'); INSERT INTO `sys_oper_log` VALUES (12262, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"valueType\":0,\"icon\":\"2\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:25:47'); INSERT INTO `sys_oper_log` VALUES (12263, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"valueType\":1,\"icon\":\"2\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:25:50'); INSERT INTO `sys_oper_log` VALUES (12264, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"valueType\":0,\"icon\":\"2\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:25:54'); INSERT INTO `sys_oper_log` VALUES (12265, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:08:44\"}}', 0, '', '2022-03-17 15:27:04'); INSERT INTO `sys_oper_log` VALUES (12266, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647501558663,\"humidity\":\"74\",\"id\":1504356687933472770,\"province\":\"江西\",\"reporttime\":1647500924000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 15:27:04'); INSERT INTO `sys_oper_log` VALUES (12267, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647500924000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 15:29:25'); INSERT INTO `sys_oper_log` VALUES (12268, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:08:44\"}}', 0, '', '2022-03-17 15:29:25'); INSERT INTO `sys_oper_log` VALUES (12269, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrGroupId\":1504293112875573249,\"searchType\":0,\"enable\":1,\"valueType\":0,\"icon\":\"404\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"2020;2021\",\"attrName\":\"尺寸\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:29:52'); INSERT INTO `sys_oper_log` VALUES (12270, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:08:44\"}}', 0, '', '2022-03-17 15:31:20'); INSERT INTO `sys_oper_log` VALUES (12271, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647500924000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 15:31:20'); INSERT INTO `sys_oper_log` VALUES (12272, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647500924000,\"temperature\":\"17\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 15:31:34'); INSERT INTO `sys_oper_log` VALUES (12273, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:08:44\"}}', 0, '', '2022-03-17 15:31:34'); INSERT INTO `sys_oper_log` VALUES (12274, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"valueType\":1,\"icon\":\"2\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:32:22'); INSERT INTO `sys_oper_log` VALUES (12275, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504359345142616065,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"valueType\":0,\"icon\":\"404\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"2020;2021\",\"attrName\":\"尺寸\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:32:26'); INSERT INTO `sys_oper_log` VALUES (12276, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":0,\"valueType\":1,\"icon\":\"2\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:32:30'); INSERT INTO `sys_oper_log` VALUES (12277, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":0,\"valueType\":1,\"icon\":\"date-range\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:35:11'); INSERT INTO `sys_oper_log` VALUES (12278, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"华为\",\"brandId\":1503923754248581122,\"catelogName\":\"蓝牙设备\",\"catelogId\":1098,\"id\":1504362066520297473}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 15:40:41'); INSERT INTO `sys_oper_log` VALUES (12279, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:34:03\"}}', 0, '', '2022-03-17 15:43:08'); INSERT INTO `sys_oper_log` VALUES (12280, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647502443000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 16:00:39'); INSERT INTO `sys_oper_log` VALUES (12281, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 15:34:03\"}}', 0, '', '2022-03-17 16:00:39'); INSERT INTO `sys_oper_log` VALUES (12282, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 16:38:46\"}}', 0, '', '2022-03-17 16:59:00'); INSERT INTO `sys_oper_log` VALUES (12283, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647507540727,\"humidity\":\"69\",\"id\":1504381778560528386,\"province\":\"江西\",\"reporttime\":1647506326000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"6\"}}', 0, '', '2022-03-17 16:59:00'); INSERT INTO `sys_oper_log` VALUES (12284, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 16:38:46\"}}', 0, '', '2022-03-17 17:07:41'); INSERT INTO `sys_oper_log` VALUES (12285, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647507540727,\"humidity\":\"69\",\"id\":1504381778560528386,\"province\":\"江西\",\"reporttime\":1647506326000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"6\"}}', 0, '', '2022-03-17 17:07:41'); INSERT INTO `sys_oper_log` VALUES (12286, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrGroupId\":1504115487769493505,\"searchType\":1,\"enable\":1,\"valueType\":1,\"icon\":\"documentation\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"155;588\",\"attrName\":\"价格\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 17:08:03'); INSERT INTO `sys_oper_log` VALUES (12287, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrGroupId\":1504115487769493505,\"searchType\":0,\"enable\":1,\"valueType\":1,\"icon\":\"email\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"199g\",\"attrName\":\"重量\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 17:10:11'); INSERT INTO `sys_oper_log` VALUES (12288, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 17:08:34\"}}', 0, '', '2022-03-17 17:10:46'); INSERT INTO `sys_oper_log` VALUES (12289, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647508246516,\"humidity\":\"70\",\"id\":1504384738816405505,\"province\":\"江西\",\"reporttime\":1647508114000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 17:10:46'); INSERT INTO `sys_oper_log` VALUES (12290, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504384590908440578,\"attrGroupId\":1504115487769493505,\"searchType\":0,\"enable\":1,\"valueType\":1,\"icon\":\"email\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"199g;222\",\"attrName\":\"重量\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 17:10:55'); INSERT INTO `sys_oper_log` VALUES (12291, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 17:08:34\"}}', 0, '', '2022-03-17 17:15:48'); INSERT INTO `sys_oper_log` VALUES (12292, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647508246516,\"humidity\":\"70\",\"id\":1504384738816405505,\"province\":\"江西\",\"reporttime\":1647508114000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 17:15:48'); INSERT INTO `sys_oper_log` VALUES (12293, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647508114000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 17:31:23'); INSERT INTO `sys_oper_log` VALUES (12294, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 17:08:34\"}}', 0, '', '2022-03-17 17:31:23'); INSERT INTO `sys_oper_log` VALUES (12295, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1647508114000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 17:40:42'); INSERT INTO `sys_oper_log` VALUES (12296, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 17:08:34\"}}', 0, '', '2022-03-17 17:40:42'); INSERT INTO `sys_oper_log` VALUES (12297, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 17:33:55\"}}', 0, '', '2022-03-17 17:43:38'); INSERT INTO `sys_oper_log` VALUES (12298, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647509634000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 17:43:38'); INSERT INTO `sys_oper_log` VALUES (12299, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 17:33:55\"}}', 0, '', '2022-03-17 17:46:05'); INSERT INTO `sys_oper_log` VALUES (12300, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647509634000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 17:46:05'); INSERT INTO `sys_oper_log` VALUES (12301, '品牌分类关联', 3, 'com.xjs.mall.product.controller.CategoryBrandRelationController.delete()', 'DELETE', 1, 'admin', '', '/product/categorybrandrelation/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 17:49:39'); INSERT INTO `sys_oper_log` VALUES (12302, '规格参数', 3, 'com.xjs.mall.product.controller.AttrController.delete()', 'DELETE', 1, 'admin', '', '/product/attr/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 17:50:41'); INSERT INTO `sys_oper_log` VALUES (12303, '规格参数', 3, 'com.xjs.mall.product.controller.AttrController.delete()', 'DELETE', 1, 'admin', '', '/product/attr/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 17:57:52'); INSERT INTO `sys_oper_log` VALUES (12304, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647509634000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-17 18:00:48'); INSERT INTO `sys_oper_log` VALUES (12305, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 17:33:55\"}}', 0, '', '2022-03-17 18:00:48'); INSERT INTO `sys_oper_log` VALUES (12306, '规格参数', 3, 'com.xjs.mall.product.controller.AttrController.delete()', 'DELETE', 1, 'admin', '', '/product/attr/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 18:00:52'); INSERT INTO `sys_oper_log` VALUES (12307, '属性分组', 3, 'com.xjs.mall.product.controller.AttrGroupController.delete()', 'DELETE', 1, 'admin', '', '/product/attrgroup/delete', '127.0.0.1', '', '', '', 1, '含有被引用的规格参数未删除,请先删除规格参数', '2022-03-17 18:20:02'); INSERT INTO `sys_oper_log` VALUES (12308, '属性分组', 3, 'com.xjs.mall.product.controller.AttrGroupController.delete()', 'DELETE', 1, 'admin', '', '/product/attrgroup/delete', '127.0.0.1', '', '', '', 1, '含有被引用的规格参数未删除,请先删除规格参数', '2022-03-17 18:20:18'); INSERT INTO `sys_oper_log` VALUES (12309, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"5\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 18:03:50\"}}', 0, '', '2022-03-17 18:20:23'); INSERT INTO `sys_oper_log` VALUES (12310, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1647511430000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-17 18:20:23'); INSERT INTO `sys_oper_log` VALUES (12311, '属性分组', 3, 'com.xjs.mall.product.controller.AttrGroupController.delete()', 'DELETE', 1, 'admin', '', '/product/attrgroup/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 18:20:27'); INSERT INTO `sys_oper_log` VALUES (12312, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"一加\",\"brandId\":1504287578159976449,\"catelogName\":\"对讲机\",\"catelogId\":226,\"id\":1504404410433527809}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 18:28:56'); INSERT INTO `sys_oper_log` VALUES (12313, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"一加\",\"brandId\":1504287578159976449,\"catelogName\":\"电压力锅\",\"catelogId\":272,\"id\":1504404467358621697}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 18:29:10'); INSERT INTO `sys_oper_log` VALUES (12314, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"一加\",\"brandId\":1504287578159976449,\"catelogName\":\"便携/无线音箱\",\"catelogId\":379,\"id\":1504404504457240577}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 18:29:19'); INSERT INTO `sys_oper_log` VALUES (12315, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"OPPO\",\"brandId\":1504286299555762178,\"catelogName\":\"净化器\",\"catelogId\":291,\"id\":1504404547264307202}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-17 18:29:29'); INSERT INTO `sys_oper_log` VALUES (12316, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1504402258663264257', '127.0.0.1', '', '1504402258663264257', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-17 18:29:47'); INSERT INTO `sys_oper_log` VALUES (12317, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"西北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 21:33:44\"}}', 0, '', '2022-03-17 21:36:28'); INSERT INTO `sys_oper_log` VALUES (12318, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1504455015638192130', '127.0.0.1', '', '1504455015638192130', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-17 21:50:08'); INSERT INTO `sys_oper_log` VALUES (12319, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647525828000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-17 22:33:35'); INSERT INTO `sys_oper_log` VALUES (12320, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-17\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"小雨\",\"daywind\":\"西北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"西北\",\"week\":\"周四\"},{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-17 22:03:48\"}}', 0, '', '2022-03-17 22:33:35'); INSERT INTO `sys_oper_log` VALUES (12321, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Let the year ahead be the one where all your dreams come true.\",\"dataId\":3626,\"imgurl\":\"\",\"note\":\"让未来的一年成为你梦想成真的地方。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-17 22:33:38'); INSERT INTO `sys_oper_log` VALUES (12322, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"本想与卿共度余生,奈何世俗绊人心。 \",\"createTime\":1647527618897,\"id\":1504465992475717634,\"source\":\"画\",\"type\":2}}', 0, '', '2022-03-17 22:33:38'); INSERT INTO `sys_oper_log` VALUES (12323, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Life is all about a simple word, just get through it.\",\"dataId\":3817,\"imgurl\":\"\",\"note\":\"生活就是简单的一个词,坚持下去。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-17 22:33:43'); INSERT INTO `sys_oper_log` VALUES (12324, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"舍与得,无非一种轮回,看破了,也就释然了!人生中不可挽回的几样东西:说出去的话,消逝的时间,失去的机会…\",\"createTime\":1641647898000,\"id\":1479804653568491524,\"source\":\"你的美开始扭曲\",\"type\":5}}', 0, '', '2022-03-17 22:33:45'); INSERT INTO `sys_oper_log` VALUES (12325, '参数管理', 1, 'com.ruoyi.system.controller.SysConfigController.add()', 'POST', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"微信图片\",\"configKey\":\"key\",\"createBy\":\"admin\",\"remark\":\"微信文章图片存放磁盘地址\",\"configType\":\"Y\",\"configValue\":\"D:\\\\Dev\\\\WebCrawler\\\\Wechat\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-17 22:39:59'); INSERT INTO `sys_oper_log` VALUES (12326, '参数管理', 2, 'com.ruoyi.system.controller.SysConfigController.edit()', 'PUT', 1, 'admin', NULL, '/config', '127.0.0.1', '', '{\"configName\":\"微信图片\",\"configKey\":\"xjs.webmagic.wechatPicture\",\"createBy\":\"admin\",\"createTime\":1647527999000,\"updateBy\":\"admin\",\"configId\":101,\"remark\":\"微信文章图片存放磁盘地址\",\"configType\":\"Y\",\"configValue\":\"D:\\\\Dev\\\\WebCrawler\\\\Wechat\",\"params\":{}}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-17 22:40:42'); INSERT INTO `sys_oper_log` VALUES (12327, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1647536623000,\"temperature\":\"12\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 01:32:39'); INSERT INTO `sys_oper_log` VALUES (12328, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 01:03:43\"}}', 0, '', '2022-03-18 01:32:39'); INSERT INTO `sys_oper_log` VALUES (12329, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 08:33:51\"}}', 0, '', '2022-03-18 08:34:06'); INSERT INTO `sys_oper_log` VALUES (12330, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647563646986,\"humidity\":\"79\",\"id\":1504617105264472066,\"province\":\"江西\",\"reporttime\":1647563631000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 08:34:07'); INSERT INTO `sys_oper_log` VALUES (12331, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"wechat\",\"orderNum\":\"3\",\"menuName\":\"微信爬取\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"weixincrawler\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:01:31'); INSERT INTO `sys_oper_log` VALUES (12332, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"wechat\",\"orderNum\":\"3\",\"menuName\":\"微信爬取\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"weixin_crawler\",\"children\":[],\"createTime\":1647565291000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2110,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:01:42'); INSERT INTO `sys_oper_log` VALUES (12333, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"wechat\",\"orderNum\":\"3\",\"menuName\":\"微信爬取\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"weixin_crawler\",\"component\":\"business/webmagic/weixincrawler/index\",\"children\":[],\"createTime\":1647565291000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2110,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:02:06'); INSERT INTO `sys_oper_log` VALUES (12334, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 08:33:51\"}}', 0, '', '2022-03-18 09:03:18'); INSERT INTO `sys_oper_log` VALUES (12335, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647563631000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:03:18'); INSERT INTO `sys_oper_log` VALUES (12336, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"wechat\",\"orderNum\":\"3\",\"menuName\":\"微信爬取\",\"params\":{},\"parentId\":2075,\"isCache\":\"0\",\"path\":\"weixin_crawler\",\"component\":\"business/webmagic/weixincrawler/index\",\"children\":[],\"createTime\":1647565291000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2110,\"menuType\":\"C\",\"perms\":\"webmagic:weixinlink:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:03:45'); INSERT INTO `sys_oper_log` VALUES (12337, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"webmagic:weixinsougou:list\",\"icon\":\"time\",\"orderNum\":\"2\",\"menuName\":\"微信搜狗\",\"params\":{},\"parentId\":2075,\"isCache\":\"1\",\"path\":\"weixin_sougou\",\"component\":\"business/webmagic/weixinsougou/index\",\"children\":[],\"createTime\":1645495476000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2087,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:04:27'); INSERT INTO `sys_oper_log` VALUES (12338, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"time\",\"orderNum\":\"2\",\"menuName\":\"微信搜狗\",\"params\":{},\"parentId\":2075,\"isCache\":\"1\",\"path\":\"weixin_sougou\",\"component\":\"business/webmagic/weixinsougou/index\",\"children\":[],\"createTime\":1645495476000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2087,\"menuType\":\"C\",\"perms\":\"webmagic:weixinsougou:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:04:37'); INSERT INTO `sys_oper_log` VALUES (12339, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"tab\",\"orderNum\":\"1\",\"menuName\":\"壁纸\",\"params\":{},\"parentId\":2084,\"isCache\":\"1\",\"path\":\"show\",\"component\":\"business/webmagic/_36wallpaper/show/index\",\"children\":[],\"createTime\":1645413680000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2086,\"menuType\":\"C\",\"perms\":\"webmagic:_36wallpaper:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:04:56'); INSERT INTO `sys_oper_log` VALUES (12340, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"删除按钮\",\"params\":{},\"parentId\":2087,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"webmagic:weixinsougou:remove\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:05:45'); INSERT INTO `sys_oper_log` VALUES (12341, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"peoples\",\"orderNum\":\"1\",\"menuName\":\"导出按钮\",\"params\":{},\"parentId\":2087,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"webmagic:weixinsougou:export\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:06:25'); INSERT INTO `sys_oper_log` VALUES (12342, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647563631000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:10:57'); INSERT INTO `sys_oper_log` VALUES (12343, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 08:33:51\"}}', 0, '', '2022-03-18 09:10:57'); INSERT INTO `sys_oper_log` VALUES (12344, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 08:33:51\"}}', 0, '', '2022-03-18 09:11:26'); INSERT INTO `sys_oper_log` VALUES (12345, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647563631000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:11:26'); INSERT INTO `sys_oper_log` VALUES (12346, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 08:33:51\"}}', 0, '', '2022-03-18 09:12:06'); INSERT INTO `sys_oper_log` VALUES (12347, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647563631000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:12:06'); INSERT INTO `sys_oper_log` VALUES (12348, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:14:08'); INSERT INTO `sys_oper_log` VALUES (12349, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647566048201,\"humidity\":\"78\",\"id\":1504627176690151426,\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:14:08'); INSERT INTO `sys_oper_log` VALUES (12350, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647566048201,\"humidity\":\"78\",\"id\":1504627176690151426,\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:14:25'); INSERT INTO `sys_oper_log` VALUES (12351, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:14:25'); INSERT INTO `sys_oper_log` VALUES (12352, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:14:34'); INSERT INTO `sys_oper_log` VALUES (12353, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647566048201,\"humidity\":\"78\",\"id\":1504627176690151426,\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:14:34'); INSERT INTO `sys_oper_log` VALUES (12354, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647566048201,\"humidity\":\"78\",\"id\":1504627176690151426,\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:15:03'); INSERT INTO `sys_oper_log` VALUES (12355, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:15:03'); INSERT INTO `sys_oper_log` VALUES (12356, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:15:35'); INSERT INTO `sys_oper_log` VALUES (12357, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647566048201,\"humidity\":\"78\",\"id\":1504627176690151426,\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:15:35'); INSERT INTO `sys_oper_log` VALUES (12358, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:17:28'); INSERT INTO `sys_oper_log` VALUES (12359, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647566048201,\"humidity\":\"78\",\"id\":1504627176690151426,\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:17:28'); INSERT INTO `sys_oper_log` VALUES (12360, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647566048201,\"humidity\":\"78\",\"id\":1504627176690151426,\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:17:45'); INSERT INTO `sys_oper_log` VALUES (12361, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:17:45'); INSERT INTO `sys_oper_log` VALUES (12362, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647566048201,\"humidity\":\"78\",\"id\":1504627176690151426,\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:17:52'); INSERT INTO `sys_oper_log` VALUES (12363, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:17:52'); INSERT INTO `sys_oper_log` VALUES (12364, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:23:54'); INSERT INTO `sys_oper_log` VALUES (12365, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647566048201,\"humidity\":\"78\",\"id\":1504627176690151426,\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:23:54'); INSERT INTO `sys_oper_log` VALUES (12366, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647566048201,\"humidity\":\"78\",\"id\":1504627176690151426,\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:24:01'); INSERT INTO `sys_oper_log` VALUES (12367, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:24:01'); INSERT INTO `sys_oper_log` VALUES (12368, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:24:11'); INSERT INTO `sys_oper_log` VALUES (12369, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:24:11'); INSERT INTO `sys_oper_log` VALUES (12370, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:26:53'); INSERT INTO `sys_oper_log` VALUES (12371, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:26:53'); INSERT INTO `sys_oper_log` VALUES (12372, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:28:01'); INSERT INTO `sys_oper_log` VALUES (12373, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:28:01'); INSERT INTO `sys_oper_log` VALUES (12374, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:30:00'); INSERT INTO `sys_oper_log` VALUES (12375, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:30:00'); INSERT INTO `sys_oper_log` VALUES (12376, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:30:19'); INSERT INTO `sys_oper_log` VALUES (12377, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:30:19'); INSERT INTO `sys_oper_log` VALUES (12378, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:31:12'); INSERT INTO `sys_oper_log` VALUES (12379, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:31:12'); INSERT INTO `sys_oper_log` VALUES (12380, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:31:31'); INSERT INTO `sys_oper_log` VALUES (12381, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:31:31'); INSERT INTO `sys_oper_log` VALUES (12382, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:31:58'); INSERT INTO `sys_oper_log` VALUES (12383, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:31:58'); INSERT INTO `sys_oper_log` VALUES (12384, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:32:35'); INSERT INTO `sys_oper_log` VALUES (12385, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:32:35'); INSERT INTO `sys_oper_log` VALUES (12386, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:33:20'); INSERT INTO `sys_oper_log` VALUES (12387, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:33:20'); INSERT INTO `sys_oper_log` VALUES (12388, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:34:05'); INSERT INTO `sys_oper_log` VALUES (12389, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:34:05'); INSERT INTO `sys_oper_log` VALUES (12390, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:34:17'); INSERT INTO `sys_oper_log` VALUES (12391, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:34:17'); INSERT INTO `sys_oper_log` VALUES (12392, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:34:54'); INSERT INTO `sys_oper_log` VALUES (12393, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:34:54'); INSERT INTO `sys_oper_log` VALUES (12394, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:35:12'); INSERT INTO `sys_oper_log` VALUES (12395, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:35:12'); INSERT INTO `sys_oper_log` VALUES (12396, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:35:31'); INSERT INTO `sys_oper_log` VALUES (12397, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:35:31'); INSERT INTO `sys_oper_log` VALUES (12398, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"修改\",\"params\":{},\"parentId\":2085,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"webmagic:_36wallpaper:update\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:37:46'); INSERT INTO `sys_oper_log` VALUES (12399, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"2\",\"menuName\":\"重置\",\"params\":{},\"parentId\":2085,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"webmagic:_36wallpaper:update\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:38:11'); INSERT INTO `sys_oper_log` VALUES (12400, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"修改\",\"params\":{},\"parentId\":2110,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"webmagic:weixinlink:update\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:39:06'); INSERT INTO `sys_oper_log` VALUES (12401, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"2\",\"menuName\":\"重置\",\"params\":{},\"parentId\":2110,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"webmagic:weixinlink:reset\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 09:39:27'); INSERT INTO `sys_oper_log` VALUES (12402, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:40:18'); INSERT INTO `sys_oper_log` VALUES (12403, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:40:18'); INSERT INTO `sys_oper_log` VALUES (12404, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:41:43'); INSERT INTO `sys_oper_log` VALUES (12405, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:41:43'); INSERT INTO `sys_oper_log` VALUES (12406, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647565453000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:42:42'); INSERT INTO `sys_oper_log` VALUES (12407, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:04:13\"}}', 0, '', '2022-03-18 09:42:42'); INSERT INTO `sys_oper_log` VALUES (12408, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:44:54'); INSERT INTO `sys_oper_log` VALUES (12409, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:44:54'); INSERT INTO `sys_oper_log` VALUES (12410, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:45:16'); INSERT INTO `sys_oper_log` VALUES (12411, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:45:16'); INSERT INTO `sys_oper_log` VALUES (12412, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:45:52'); INSERT INTO `sys_oper_log` VALUES (12413, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:45:52'); INSERT INTO `sys_oper_log` VALUES (12414, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:46:02'); INSERT INTO `sys_oper_log` VALUES (12415, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:46:02'); INSERT INTO `sys_oper_log` VALUES (12416, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:48:30'); INSERT INTO `sys_oper_log` VALUES (12417, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:48:30'); INSERT INTO `sys_oper_log` VALUES (12418, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:51:07'); INSERT INTO `sys_oper_log` VALUES (12419, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:51:07'); INSERT INTO `sys_oper_log` VALUES (12420, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:52:04'); INSERT INTO `sys_oper_log` VALUES (12421, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:52:04'); INSERT INTO `sys_oper_log` VALUES (12422, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:52:58'); INSERT INTO `sys_oper_log` VALUES (12423, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:52:58'); INSERT INTO `sys_oper_log` VALUES (12424, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:53:39'); INSERT INTO `sys_oper_log` VALUES (12425, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:53:39'); INSERT INTO `sys_oper_log` VALUES (12426, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:53:50'); INSERT INTO `sys_oper_log` VALUES (12427, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:53:50'); INSERT INTO `sys_oper_log` VALUES (12428, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:55:12'); INSERT INTO `sys_oper_log` VALUES (12429, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:55:12'); INSERT INTO `sys_oper_log` VALUES (12430, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:55:59'); INSERT INTO `sys_oper_log` VALUES (12431, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:55:59'); INSERT INTO `sys_oper_log` VALUES (12432, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:57:40'); INSERT INTO `sys_oper_log` VALUES (12433, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:57:40'); INSERT INTO `sys_oper_log` VALUES (12434, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:59:06'); INSERT INTO `sys_oper_log` VALUES (12435, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:59:06'); INSERT INTO `sys_oper_log` VALUES (12436, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 09:59:55'); INSERT INTO `sys_oper_log` VALUES (12437, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 09:59:55'); INSERT INTO `sys_oper_log` VALUES (12438, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 10:00:13'); INSERT INTO `sys_oper_log` VALUES (12439, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 10:00:13'); INSERT INTO `sys_oper_log` VALUES (12440, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 10:00:50'); INSERT INTO `sys_oper_log` VALUES (12441, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 10:00:50'); INSERT INTO `sys_oper_log` VALUES (12442, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 10:02:09'); INSERT INTO `sys_oper_log` VALUES (12443, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 10:02:10'); INSERT INTO `sys_oper_log` VALUES (12444, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 10:04:56'); INSERT INTO `sys_oper_log` VALUES (12445, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 10:04:56'); INSERT INTO `sys_oper_log` VALUES (12446, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 10:05:06'); INSERT INTO `sys_oper_log` VALUES (12447, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 10:05:06'); INSERT INTO `sys_oper_log` VALUES (12448, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 10:05:13'); INSERT INTO `sys_oper_log` VALUES (12449, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 10:05:13'); INSERT INTO `sys_oper_log` VALUES (12450, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 10:05:36'); INSERT INTO `sys_oper_log` VALUES (12451, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 10:05:36'); INSERT INTO `sys_oper_log` VALUES (12452, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 10:05:56'); INSERT INTO `sys_oper_log` VALUES (12453, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 10:05:56'); INSERT INTO `sys_oper_log` VALUES (12454, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 10:11:49'); INSERT INTO `sys_oper_log` VALUES (12455, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 10:11:49'); INSERT INTO `sys_oper_log` VALUES (12456, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 09:38:36\"}}', 0, '', '2022-03-18 10:13:51'); INSERT INTO `sys_oper_log` VALUES (12457, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1647567516000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 10:13:51'); INSERT INTO `sys_oper_log` VALUES (12458, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[{\"catId\":1,\"sort\":0},{\"catId\":3,\"sort\":1},{\"catId\":4,\"sort\":2},{\"catId\":7,\"sort\":3},{\"catId\":2,\"parentCid\":0,\"sort\":4,\"catLevel\":1},{\"catId\":6,\"sort\":5},{\"catId\":8,\"sort\":6},{\"catId\":10,\"sort\":7},{\"catId\":11,\"sort\":8},{\"catId\":5,\"sort\":9},{\"catId\":12,\"sort\":10},{\"catId\":13,\"sort\":11},{\"catId\":14,\"sort\":12},{\"catId\":15,\"sort\":13},{\"catId\":16,\"sort\":14},{\"catId\":9,\"sort\":15},{\"catId\":17,\"sort\":16},{\"catId\":18,\"sort\":17},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20}]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-18 11:30:12'); INSERT INTO `sys_oper_log` VALUES (12459, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647577056508,\"humidity\":\"72\",\"id\":1504673348830097409,\"province\":\"江西\",\"reporttime\":1647576520000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 12:17:36'); INSERT INTO `sys_oper_log` VALUES (12460, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 12:08:41\"}}', 0, '', '2022-03-18 12:17:36'); INSERT INTO `sys_oper_log` VALUES (12461, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 12:08:41\"}}', 0, '', '2022-03-18 12:19:12'); INSERT INTO `sys_oper_log` VALUES (12462, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647577056508,\"humidity\":\"72\",\"id\":1504673348830097409,\"province\":\"江西\",\"reporttime\":1647576520000,\"temperature\":\"13\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 12:19:12'); INSERT INTO `sys_oper_log` VALUES (12463, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1504691580110618625', '127.0.0.1', '', '1504691580110618625', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-18 13:35:17'); INSERT INTO `sys_oper_log` VALUES (12464, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:03:47\"}}', 0, '', '2022-03-18 13:35:22'); INSERT INTO `sys_oper_log` VALUES (12465, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:03:47\"}}', 0, '', '2022-03-18 13:41:07'); INSERT INTO `sys_oper_log` VALUES (12466, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 13:41:07'); INSERT INTO `sys_oper_log` VALUES (12467, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:03:47\"}}', 0, '', '2022-03-18 13:41:49'); INSERT INTO `sys_oper_log` VALUES (12468, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 13:41:49'); INSERT INTO `sys_oper_log` VALUES (12469, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:03:47\"}}', 0, '', '2022-03-18 13:42:13'); INSERT INTO `sys_oper_log` VALUES (12470, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 13:42:13'); INSERT INTO `sys_oper_log` VALUES (12471, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:03:47\"}}', 0, '', '2022-03-18 13:43:50'); INSERT INTO `sys_oper_log` VALUES (12472, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 13:43:50'); INSERT INTO `sys_oper_log` VALUES (12473, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 13:53:19'); INSERT INTO `sys_oper_log` VALUES (12474, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 13:53:20'); INSERT INTO `sys_oper_log` VALUES (12475, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 13:57:13'); INSERT INTO `sys_oper_log` VALUES (12476, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 13:57:13'); INSERT INTO `sys_oper_log` VALUES (12477, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 13:57:26'); INSERT INTO `sys_oper_log` VALUES (12478, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 13:57:26'); INSERT INTO `sys_oper_log` VALUES (12479, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 13:59:28'); INSERT INTO `sys_oper_log` VALUES (12480, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 13:59:28'); INSERT INTO `sys_oper_log` VALUES (12481, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 14:00:27'); INSERT INTO `sys_oper_log` VALUES (12482, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:00:27'); INSERT INTO `sys_oper_log` VALUES (12483, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:00:32'); INSERT INTO `sys_oper_log` VALUES (12484, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 14:00:32'); INSERT INTO `sys_oper_log` VALUES (12485, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 14:01:03'); INSERT INTO `sys_oper_log` VALUES (12486, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:01:03'); INSERT INTO `sys_oper_log` VALUES (12487, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 14:02:42'); INSERT INTO `sys_oper_log` VALUES (12488, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:02:42'); INSERT INTO `sys_oper_log` VALUES (12489, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 14:04:06'); INSERT INTO `sys_oper_log` VALUES (12490, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:04:06'); INSERT INTO `sys_oper_log` VALUES (12491, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 14:06:07'); INSERT INTO `sys_oper_log` VALUES (12492, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:06:07'); INSERT INTO `sys_oper_log` VALUES (12493, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 14:12:28'); INSERT INTO `sys_oper_log` VALUES (12494, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:12:28'); INSERT INTO `sys_oper_log` VALUES (12495, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 13:38:44\"}}', 0, '', '2022-03-18 14:12:31'); INSERT INTO `sys_oper_log` VALUES (12496, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647581924000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:12:31'); INSERT INTO `sys_oper_log` VALUES (12497, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:08:36\"}}', 0, '', '2022-03-18 14:15:45'); INSERT INTO `sys_oper_log` VALUES (12498, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647584145895,\"humidity\":\"68\",\"id\":1504703083886931970,\"province\":\"江西\",\"reporttime\":1647583716000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:15:45'); INSERT INTO `sys_oper_log` VALUES (12499, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:08:36\"}}', 0, '', '2022-03-18 14:17:59'); INSERT INTO `sys_oper_log` VALUES (12500, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647584145895,\"humidity\":\"68\",\"id\":1504703083886931970,\"province\":\"江西\",\"reporttime\":1647583716000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:17:59'); INSERT INTO `sys_oper_log` VALUES (12501, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:08:36\"}}', 0, '', '2022-03-18 14:17:59'); INSERT INTO `sys_oper_log` VALUES (12502, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647584145895,\"humidity\":\"68\",\"id\":1504703083886931970,\"province\":\"江西\",\"reporttime\":1647583716000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:17:59'); INSERT INTO `sys_oper_log` VALUES (12503, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:08:36\"}}', 0, '', '2022-03-18 14:21:10'); INSERT INTO `sys_oper_log` VALUES (12504, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647584145895,\"humidity\":\"68\",\"id\":1504703083886931970,\"province\":\"江西\",\"reporttime\":1647583716000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:21:10'); INSERT INTO `sys_oper_log` VALUES (12505, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647583716000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:27:25'); INSERT INTO `sys_oper_log` VALUES (12506, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647583716000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:27:25'); INSERT INTO `sys_oper_log` VALUES (12507, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:08:36\"}}', 0, '', '2022-03-18 14:27:25'); INSERT INTO `sys_oper_log` VALUES (12508, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:08:36\"}}', 0, '', '2022-03-18 14:27:25'); INSERT INTO `sys_oper_log` VALUES (12509, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647583716000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:27:48'); INSERT INTO `sys_oper_log` VALUES (12510, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:08:36\"}}', 0, '', '2022-03-18 14:27:48'); INSERT INTO `sys_oper_log` VALUES (12511, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:08:36\"}}', 0, '', '2022-03-18 14:32:22'); INSERT INTO `sys_oper_log` VALUES (12512, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647583716000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:32:22'); INSERT INTO `sys_oper_log` VALUES (12513, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:08:36\"}}', 0, '', '2022-03-18 14:33:27'); INSERT INTO `sys_oper_log` VALUES (12514, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647583716000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:33:27'); INSERT INTO `sys_oper_log` VALUES (12515, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:08:36\"}}', 0, '', '2022-03-18 14:34:57'); INSERT INTO `sys_oper_log` VALUES (12516, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647583716000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:34:57'); INSERT INTO `sys_oper_log` VALUES (12517, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:33:53\"}}', 0, '', '2022-03-18 14:40:04'); INSERT INTO `sys_oper_log` VALUES (12518, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647585233000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:40:04'); INSERT INTO `sys_oper_log` VALUES (12519, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:33:53\"}}', 0, '', '2022-03-18 14:46:09'); INSERT INTO `sys_oper_log` VALUES (12520, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647585233000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:46:09'); INSERT INTO `sys_oper_log` VALUES (12521, '属性分组', 1, 'com.xjs.mall.product.controller.AttrGroupController.save()', 'POST', 1, 'admin', '', '/product/attrgroup/save', '127.0.0.1', '', '{\"attrGroupId\":1504711444099379201,\"icon\":\"log\",\"catelogId\":225,\"sort\":2,\"descript\":\"主体\",\"attrGroupName\":\"主体\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-18 14:48:59'); INSERT INTO `sys_oper_log` VALUES (12522, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504711444099379201,\"searchType\":1,\"enable\":0,\"valueType\":1,\"icon\":\"date-range\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-18 14:49:09'); INSERT INTO `sys_oper_log` VALUES (12523, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:33:53\"}}', 0, '', '2022-03-18 14:55:56'); INSERT INTO `sys_oper_log` VALUES (12524, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647585233000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:55:56'); INSERT INTO `sys_oper_log` VALUES (12525, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:33:53\"}}', 0, '', '2022-03-18 14:57:38'); INSERT INTO `sys_oper_log` VALUES (12526, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647585233000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 14:57:38'); INSERT INTO `sys_oper_log` VALUES (12527, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 14:33:53\"}}', 0, '', '2022-03-18 15:04:34'); INSERT INTO `sys_oper_log` VALUES (12528, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647585233000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:04:34'); INSERT INTO `sys_oper_log` VALUES (12529, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:06:08'); INSERT INTO `sys_oper_log` VALUES (12530, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647587168446,\"humidity\":\"68\",\"id\":1504715761418235905,\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:06:08'); INSERT INTO `sys_oper_log` VALUES (12531, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:07:28'); INSERT INTO `sys_oper_log` VALUES (12532, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647587168446,\"humidity\":\"68\",\"id\":1504715761418235905,\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:07:28'); INSERT INTO `sys_oper_log` VALUES (12533, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:15:14'); INSERT INTO `sys_oper_log` VALUES (12534, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647587168446,\"humidity\":\"68\",\"id\":1504715761418235905,\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:15:14'); INSERT INTO `sys_oper_log` VALUES (12535, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_zhuye\",\"orderNum\":\"1\",\"menuName\":\"销售属性\",\"params\":{},\"parentId\":2107,\"isCache\":\"0\",\"path\":\"a\",\"component\":\"a\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 15:15:40'); INSERT INTO `sys_oper_log` VALUES (12536, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_zhuye\",\"orderNum\":\"1\",\"menuName\":\"销售属性\",\"params\":{},\"parentId\":2107,\"isCache\":\"0\",\"path\":\"a\",\"component\":\"mall/product/attribute/sale-attr\",\"children\":[],\"createTime\":1647587740000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2117,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 15:15:54'); INSERT INTO `sys_oper_log` VALUES (12537, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_zhuye\",\"orderNum\":\"1\",\"menuName\":\"销售属性\",\"params\":{},\"parentId\":2107,\"isCache\":\"0\",\"path\":\"sale-attr\",\"component\":\"mall/product/attribute/sale-attr\",\"children\":[],\"createTime\":1647587740000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2117,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 15:16:24'); INSERT INTO `sys_oper_log` VALUES (12538, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:17:00'); INSERT INTO `sys_oper_log` VALUES (12539, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:17:00'); INSERT INTO `sys_oper_log` VALUES (12540, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:19:43'); INSERT INTO `sys_oper_log` VALUES (12541, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:19:43'); INSERT INTO `sys_oper_log` VALUES (12542, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"searchType\":0,\"enable\":1,\"valueType\":0,\"icon\":\"code\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"黑色\",\"attrName\":\"颜色\",\"attrType\":0}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-18 15:20:38'); INSERT INTO `sys_oper_log` VALUES (12543, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504719409409875969,\"searchType\":0,\"enable\":1,\"valueType\":0,\"icon\":\"cascader\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"黑色\",\"attrName\":\"颜色\",\"attrType\":0}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-18 15:20:55'); INSERT INTO `sys_oper_log` VALUES (12544, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504719409409875969,\"searchType\":0,\"enable\":1,\"valueType\":0,\"icon\":\"cascader\",\"showDesc\":0,\"catelogId\":226,\"valueSelect\":\"黑色\",\"attrName\":\"颜色\",\"attrType\":0}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-18 15:20:59'); INSERT INTO `sys_oper_log` VALUES (12545, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"top\":2,\"createTime\":1647588131448,\"englishWord\":\"relation\",\"isCollect\":1,\"id\":1504719800528670722,\"sort\":0,\"content\":\"relation\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-18 15:22:11'); INSERT INTO `sys_oper_log` VALUES (12546, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1647588133156,\"en\":\"Poetry is the spontaneous overflow of powerful feelings.\",\"id\":1504719807688470530,\"zh\":\"诗乃自发溢出的强烈的情感。\"}}', 0, '', '2022-03-18 15:22:13'); INSERT INTO `sys_oper_log` VALUES (12547, '英语单词', 3, 'com.xjs.word.controller.EnglishWordController.remove()', 'DELETE', 1, 'admin', '', '/word/1504719800528670722', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-18 15:22:18'); INSERT INTO `sys_oper_log` VALUES (12548, '英语单词', 1, 'com.xjs.word.controller.EnglishWordController.add()', 'POST', 1, 'admin', '', '/word', '127.0.0.1', '', '{\"chineseWord\":\"关系\",\"top\":2,\"createTime\":1647588140985,\"englishWord\":\"relation\",\"isCollect\":1,\"id\":1504719840542330881,\"sort\":0,\"content\":\"relation\",\"lookCount\":0}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-18 15:22:20'); INSERT INTO `sys_oper_log` VALUES (12549, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:29:10'); INSERT INTO `sys_oper_log` VALUES (12550, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:29:10'); INSERT INTO `sys_oper_log` VALUES (12551, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:29:26'); INSERT INTO `sys_oper_log` VALUES (12552, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:29:26'); INSERT INTO `sys_oper_log` VALUES (12553, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:33:27'); INSERT INTO `sys_oper_log` VALUES (12554, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:33:27'); INSERT INTO `sys_oper_log` VALUES (12555, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:33:56'); INSERT INTO `sys_oper_log` VALUES (12556, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:33:56'); INSERT INTO `sys_oper_log` VALUES (12557, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:34:27'); INSERT INTO `sys_oper_log` VALUES (12558, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:34:27'); INSERT INTO `sys_oper_log` VALUES (12559, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:35:19'); INSERT INTO `sys_oper_log` VALUES (12560, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:35:19'); INSERT INTO `sys_oper_log` VALUES (12561, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:35:22'); INSERT INTO `sys_oper_log` VALUES (12562, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:35:22'); INSERT INTO `sys_oper_log` VALUES (12563, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:38:20'); INSERT INTO `sys_oper_log` VALUES (12564, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:38:20'); INSERT INTO `sys_oper_log` VALUES (12565, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1647587024000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:38:36'); INSERT INTO `sys_oper_log` VALUES (12566, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:03:44\"}}', 0, '', '2022-03-18 15:38:36'); INSERT INTO `sys_oper_log` VALUES (12567, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647589198920,\"humidity\":\"69\",\"id\":1504724277793124354,\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:39:58'); INSERT INTO `sys_oper_log` VALUES (12568, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 15:39:58'); INSERT INTO `sys_oper_log` VALUES (12569, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 15:40:03'); INSERT INTO `sys_oper_log` VALUES (12570, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647589198920,\"humidity\":\"69\",\"id\":1504724277793124354,\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:40:03'); INSERT INTO `sys_oper_log` VALUES (12571, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 15:41:40'); INSERT INTO `sys_oper_log` VALUES (12572, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647589198920,\"humidity\":\"69\",\"id\":1504724277793124354,\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 15:41:40'); INSERT INTO `sys_oper_log` VALUES (12573, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:08:17'); INSERT INTO `sys_oper_log` VALUES (12574, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:08:17'); INSERT INTO `sys_oper_log` VALUES (12575, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:09:37'); INSERT INTO `sys_oper_log` VALUES (12576, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:09:37'); INSERT INTO `sys_oper_log` VALUES (12577, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504335963437027329,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":0,\"valueType\":1,\"icon\":\"date-range\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"214;123\",\"attrName\":\"内存\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-18 16:09:51'); INSERT INTO `sys_oper_log` VALUES (12578, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrGroupId\":1504293112875573249,\"searchType\":0,\"enable\":1,\"valueType\":0,\"icon\":\"component\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"199g\",\"attrName\":\"质量\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-18 16:10:16'); INSERT INTO `sys_oper_log` VALUES (12579, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:13:00'); INSERT INTO `sys_oper_log` VALUES (12580, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:13:00'); INSERT INTO `sys_oper_log` VALUES (12581, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:20:05'); INSERT INTO `sys_oper_log` VALUES (12582, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:20:05'); INSERT INTO `sys_oper_log` VALUES (12583, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:20:50'); INSERT INTO `sys_oper_log` VALUES (12584, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:20:50'); INSERT INTO `sys_oper_log` VALUES (12585, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:21:25'); INSERT INTO `sys_oper_log` VALUES (12586, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:21:25'); INSERT INTO `sys_oper_log` VALUES (12587, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:48:35'); INSERT INTO `sys_oper_log` VALUES (12588, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:48:35'); INSERT INTO `sys_oper_log` VALUES (12589, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:52:55'); INSERT INTO `sys_oper_log` VALUES (12590, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:52:55'); INSERT INTO `sys_oper_log` VALUES (12591, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:53:50'); INSERT INTO `sys_oper_log` VALUES (12592, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:53:50'); INSERT INTO `sys_oper_log` VALUES (12593, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:53:55'); INSERT INTO `sys_oper_log` VALUES (12594, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:53:55'); INSERT INTO `sys_oper_log` VALUES (12595, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:54:03'); INSERT INTO `sys_oper_log` VALUES (12596, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:54:03'); INSERT INTO `sys_oper_log` VALUES (12597, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:55:23'); INSERT INTO `sys_oper_log` VALUES (12598, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:55:23'); INSERT INTO `sys_oper_log` VALUES (12599, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 15:38:40\"}}', 0, '', '2022-03-18 16:58:08'); INSERT INTO `sys_oper_log` VALUES (12600, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647589120000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 16:58:08'); INSERT INTO `sys_oper_log` VALUES (12601, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 16:53:06\"}}', 0, '', '2022-03-18 17:00:21'); INSERT INTO `sys_oper_log` VALUES (12602, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647593586000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 17:00:21'); INSERT INTO `sys_oper_log` VALUES (12603, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 16:53:06\"}}', 0, '', '2022-03-18 17:02:21'); INSERT INTO `sys_oper_log` VALUES (12604, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647593586000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 17:02:21'); INSERT INTO `sys_oper_log` VALUES (12605, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647593586000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 17:03:16'); INSERT INTO `sys_oper_log` VALUES (12606, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 16:53:06\"}}', 0, '', '2022-03-18 17:03:16'); INSERT INTO `sys_oper_log` VALUES (12607, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 16:53:06\"}}', 0, '', '2022-03-18 17:04:09'); INSERT INTO `sys_oper_log` VALUES (12608, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647593586000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 17:04:09'); INSERT INTO `sys_oper_log` VALUES (12609, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647593586000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 17:04:41'); INSERT INTO `sys_oper_log` VALUES (12610, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 16:53:06\"}}', 0, '', '2022-03-18 17:04:41'); INSERT INTO `sys_oper_log` VALUES (12611, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 16:53:06\"}}', 0, '', '2022-03-18 17:13:41'); INSERT INTO `sys_oper_log` VALUES (12612, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647593586000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 17:13:41'); INSERT INTO `sys_oper_log` VALUES (12613, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 16:53:06\"}}', 0, '', '2022-03-18 17:18:14'); INSERT INTO `sys_oper_log` VALUES (12614, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647593586000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 17:18:14'); INSERT INTO `sys_oper_log` VALUES (12615, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 16:53:06\"}}', 0, '', '2022-03-18 17:19:35'); INSERT INTO `sys_oper_log` VALUES (12616, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647593586000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 17:19:35'); INSERT INTO `sys_oper_log` VALUES (12617, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 16:53:06\"}}', 0, '', '2022-03-18 17:21:08'); INSERT INTO `sys_oper_log` VALUES (12618, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1647593586000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 17:21:08'); INSERT INTO `sys_oper_log` VALUES (12619, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 19:04:06\"}}', 0, '', '2022-03-18 19:05:29'); INSERT INTO `sys_oper_log` VALUES (12620, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647601529272,\"humidity\":\"70\",\"id\":1504775995069775873,\"province\":\"江西\",\"reporttime\":1647601446000,\"temperature\":\"14\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 19:05:29'); INSERT INTO `sys_oper_log` VALUES (12621, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 21:03:58\"}}', 0, '', '2022-03-18 21:38:56'); INSERT INTO `sys_oper_log` VALUES (12622, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647614032000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 22:41:05'); INSERT INTO `sys_oper_log` VALUES (12623, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 22:33:52\"}}', 0, '', '2022-03-18 22:41:05'); INSERT INTO `sys_oper_log` VALUES (12624, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647614032000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 22:41:12'); INSERT INTO `sys_oper_log` VALUES (12625, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 22:33:52\"}}', 0, '', '2022-03-18 22:41:12'); INSERT INTO `sys_oper_log` VALUES (12626, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"华为\",\"brandId\":1503923754248581122,\"catelogName\":\"移动电源\",\"catelogId\":231,\"id\":1504830334618533889}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-18 22:41:24'); INSERT INTO `sys_oper_log` VALUES (12627, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 22:33:52\"}}', 0, '', '2022-03-18 23:01:43'); INSERT INTO `sys_oper_log` VALUES (12628, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647614032000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:01:43'); INSERT INTO `sys_oper_log` VALUES (12629, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 22:33:52\"}}', 0, '', '2022-03-18 23:10:05'); INSERT INTO `sys_oper_log` VALUES (12630, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647614032000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:10:05'); INSERT INTO `sys_oper_log` VALUES (12631, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"number\",\"orderNum\":\"2\",\"menuName\":\"会员管理\",\"params\":{},\"parentId\":2103,\"isCache\":\"0\",\"path\":\"mall-member\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 23:10:37'); INSERT INTO `sys_oper_log` VALUES (12632, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"select\",\"orderNum\":\"1\",\"menuName\":\"会员等级\",\"params\":{},\"parentId\":2118,\"isCache\":\"0\",\"path\":\"member-level\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 23:11:17'); INSERT INTO `sys_oper_log` VALUES (12633, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"select\",\"orderNum\":\"1\",\"menuName\":\"会员等级\",\"params\":{},\"parentId\":2118,\"isCache\":\"0\",\"path\":\"member-level\",\"component\":\"mall/member/level\",\"children\":[],\"createTime\":1647616277000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2119,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-18 23:11:40'); INSERT INTO `sys_oper_log` VALUES (12634, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 22:33:52\"}}', 0, '', '2022-03-18 23:11:42'); INSERT INTO `sys_oper_log` VALUES (12635, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1647614032000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:11:42'); INSERT INTO `sys_oper_log` VALUES (12636, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:12:10'); INSERT INTO `sys_oper_log` VALUES (12637, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647616330472,\"humidity\":\"71\",\"id\":1504838075781169153,\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:12:10'); INSERT INTO `sys_oper_log` VALUES (12638, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:12:38'); INSERT INTO `sys_oper_log` VALUES (12639, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647616330472,\"humidity\":\"71\",\"id\":1504838075781169153,\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:12:38'); INSERT INTO `sys_oper_log` VALUES (12640, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:12:53'); INSERT INTO `sys_oper_log` VALUES (12641, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647616330472,\"humidity\":\"71\",\"id\":1504838075781169153,\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:12:53'); INSERT INTO `sys_oper_log` VALUES (12642, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647616330472,\"humidity\":\"71\",\"id\":1504838075781169153,\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:13:16'); INSERT INTO `sys_oper_log` VALUES (12643, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:13:16'); INSERT INTO `sys_oper_log` VALUES (12644, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647616330472,\"humidity\":\"71\",\"id\":1504838075781169153,\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:13:35'); INSERT INTO `sys_oper_log` VALUES (12645, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:13:35'); INSERT INTO `sys_oper_log` VALUES (12646, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:14:09'); INSERT INTO `sys_oper_log` VALUES (12647, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647616330472,\"humidity\":\"71\",\"id\":1504838075781169153,\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:14:09'); INSERT INTO `sys_oper_log` VALUES (12648, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:14:32'); INSERT INTO `sys_oper_log` VALUES (12649, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647616330472,\"humidity\":\"71\",\"id\":1504838075781169153,\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:14:32'); INSERT INTO `sys_oper_log` VALUES (12650, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:21:16'); INSERT INTO `sys_oper_log` VALUES (12651, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647616330472,\"humidity\":\"71\",\"id\":1504838075781169153,\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:21:16'); INSERT INTO `sys_oper_log` VALUES (12652, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:22:15'); INSERT INTO `sys_oper_log` VALUES (12653, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:22:15'); INSERT INTO `sys_oper_log` VALUES (12654, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:23:52'); INSERT INTO `sys_oper_log` VALUES (12655, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:23:52'); INSERT INTO `sys_oper_log` VALUES (12656, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:24:10'); INSERT INTO `sys_oper_log` VALUES (12657, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:24:10'); INSERT INTO `sys_oper_log` VALUES (12658, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:24:23'); INSERT INTO `sys_oper_log` VALUES (12659, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:24:23'); INSERT INTO `sys_oper_log` VALUES (12660, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"苹果\",\"brandId\":1503971694166016001,\"catelogName\":\"蓝牙耳机\",\"catelogId\":233,\"id\":1504842022684164098}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-18 23:27:51'); INSERT INTO `sys_oper_log` VALUES (12661, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:33:32'); INSERT INTO `sys_oper_log` VALUES (12662, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:33:32'); INSERT INTO `sys_oper_log` VALUES (12663, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:41:14'); INSERT INTO `sys_oper_log` VALUES (12664, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:41:14'); INSERT INTO `sys_oper_log` VALUES (12665, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:03:53\"}}', 0, '', '2022-03-18 23:42:25'); INSERT INTO `sys_oper_log` VALUES (12666, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1647615833000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:42:25'); INSERT INTO `sys_oper_log` VALUES (12667, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:40:06\"}}', 0, '', '2022-03-18 23:45:48'); INSERT INTO `sys_oper_log` VALUES (12668, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647618348467,\"humidity\":\"72\",\"id\":1504846539895029761,\"province\":\"江西\",\"reporttime\":1647618006000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:45:48'); INSERT INTO `sys_oper_log` VALUES (12669, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:40:06\"}}', 0, '', '2022-03-18 23:46:31'); INSERT INTO `sys_oper_log` VALUES (12670, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647618348467,\"humidity\":\"72\",\"id\":1504846539895029761,\"province\":\"江西\",\"reporttime\":1647618006000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:46:31'); INSERT INTO `sys_oper_log` VALUES (12671, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647618348467,\"humidity\":\"72\",\"id\":1504846539895029761,\"province\":\"江西\",\"reporttime\":1647618006000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-18 23:50:33'); INSERT INTO `sys_oper_log` VALUES (12672, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:40:06\"}}', 0, '', '2022-03-18 23:50:33'); INSERT INTO `sys_oper_log` VALUES (12673, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:40:06\"}}', 0, '', '2022-03-19 00:01:17'); INSERT INTO `sys_oper_log` VALUES (12674, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"72\",\"province\":\"江西\",\"reporttime\":1647618006000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 00:01:17'); INSERT INTO `sys_oper_log` VALUES (12675, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:40:06\"}}', 0, '', '2022-03-19 00:03:32'); INSERT INTO `sys_oper_log` VALUES (12676, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"72\",\"province\":\"江西\",\"reporttime\":1647618006000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 00:03:32'); INSERT INTO `sys_oper_log` VALUES (12677, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Live for the moment.\",\"createTime\":1647619440230,\"dataId\":4321,\"id\":1504851119093530626,\"imgurl\":\"\",\"note\":\"活在当下。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-19 00:04:00'); INSERT INTO `sys_oper_log` VALUES (12678, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:40:06\"}}', 0, '', '2022-03-19 00:09:05'); INSERT INTO `sys_oper_log` VALUES (12679, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"72\",\"province\":\"江西\",\"reporttime\":1647618006000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 00:09:05'); INSERT INTO `sys_oper_log` VALUES (12680, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"72\",\"province\":\"江西\",\"reporttime\":1647618006000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 00:09:09'); INSERT INTO `sys_oper_log` VALUES (12681, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-18\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东南\",\"week\":\"周五\"},{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-18 23:40:06\"}}', 0, '', '2022-03-19 00:09:09'); INSERT INTO `sys_oper_log` VALUES (12682, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503923754248581122,\"name\":\"华为\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-19/1f0a73fe-ee6b-4c69-8749-0bc3fc5dee3e_天气.png\",\"showStatus\":1,\"sort\":2,\"descript\":\"爱国!!!\",\"firstLetter\":\"h\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:34:04'); INSERT INTO `sys_oper_log` VALUES (12683, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1504287578159976449,\"name\":\"一加\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-17/f73502a9-3988-42db-8fc6-a88811a1b653_超可爱迷人的美胸妹子自拍写真,生活照图片(1-6).jpg\",\"showStatus\":0,\"sort\":2,\"descript\":\"一加\",\"firstLetter\":\"y\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:13'); INSERT INTO `sys_oper_log` VALUES (12684, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":0,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:18'); INSERT INTO `sys_oper_log` VALUES (12685, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":1,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:18'); INSERT INTO `sys_oper_log` VALUES (12686, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":0,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:18'); INSERT INTO `sys_oper_log` VALUES (12687, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":1,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:18'); INSERT INTO `sys_oper_log` VALUES (12688, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":0,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:18'); INSERT INTO `sys_oper_log` VALUES (12689, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":1,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:19'); INSERT INTO `sys_oper_log` VALUES (12690, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":0,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:19'); INSERT INTO `sys_oper_log` VALUES (12691, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":1,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:19'); INSERT INTO `sys_oper_log` VALUES (12692, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":0,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:19'); INSERT INTO `sys_oper_log` VALUES (12693, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":1,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:19'); INSERT INTO `sys_oper_log` VALUES (12694, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":0,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:19'); INSERT INTO `sys_oper_log` VALUES (12695, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":1,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:19'); INSERT INTO `sys_oper_log` VALUES (12696, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[{\"catId\":1,\"sort\":0},{\"catId\":3,\"sort\":1},{\"catId\":4,\"sort\":2},{\"catId\":7,\"sort\":3},{\"catId\":2,\"sort\":4},{\"catId\":6,\"sort\":5},{\"catId\":8,\"sort\":6},{\"catId\":11,\"sort\":7},{\"catId\":5,\"sort\":8},{\"catId\":12,\"sort\":9},{\"catId\":13,\"sort\":10},{\"catId\":14,\"sort\":11},{\"catId\":15,\"sort\":12},{\"catId\":16,\"sort\":13},{\"catId\":10,\"parentCid\":0,\"sort\":14,\"catLevel\":1},{\"catId\":9,\"sort\":15},{\"catId\":17,\"sort\":16},{\"catId\":18,\"sort\":17},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20}]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 00:36:42'); INSERT INTO `sys_oper_log` VALUES (12697, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 01:03:59\"}}', 0, '', '2022-03-19 01:07:48'); INSERT INTO `sys_oper_log` VALUES (12698, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647623268786,\"humidity\":\"74\",\"id\":1504867177217081346,\"province\":\"江西\",\"reporttime\":1647623039000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 01:07:48'); INSERT INTO `sys_oper_log` VALUES (12699, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 10:33:55\"}}', 0, '', '2022-03-19 10:47:30'); INSERT INTO `sys_oper_log` VALUES (12700, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647658051083,\"humidity\":\"72\",\"id\":1505013064744521730,\"province\":\"江西\",\"reporttime\":1647657235000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 10:47:31'); INSERT INTO `sys_oper_log` VALUES (12701, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503923754248581122,\"name\":\"华为\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-19/1f0a73fe-ee6b-4c69-8749-0bc3fc5dee3e_天气.png\",\"showStatus\":0,\"sort\":2,\"descript\":\"爱国!!!\",\"firstLetter\":\"h\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 14:19:56'); INSERT INTO `sys_oper_log` VALUES (12702, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971604152057858,\"name\":\"小米\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_百叶窗后,蓝衣短裤长发美女私房写真照(1-10).jpg\",\"showStatus\":0,\"sort\":3,\"descript\":\"米猴子\",\"firstLetter\":\"m\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 14:19:56'); INSERT INTO `sys_oper_log` VALUES (12703, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":0,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 14:19:57'); INSERT INTO `sys_oper_log` VALUES (12704, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1504286299555762178,\"name\":\"OPPO\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-17/f2b1ff60-1a46-4e23-8042-bf86db43697b_白色樱花~蓝色轻纱露背连衣裙装红唇美女唯美性感私房摄影写真(1-13).jpg\",\"showStatus\":0,\"sort\":4,\"descript\":\"老人机\",\"firstLetter\":\"o\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 14:19:58'); INSERT INTO `sys_oper_log` VALUES (12705, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503923754248581122,\"name\":\"华为\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-19/1f0a73fe-ee6b-4c69-8749-0bc3fc5dee3e_天气.png\",\"showStatus\":1,\"sort\":2,\"descript\":\"爱国!!!\",\"firstLetter\":\"h\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 15:17:49'); INSERT INTO `sys_oper_log` VALUES (12706, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[{\"catId\":3,\"sort\":0},{\"catId\":4,\"sort\":1},{\"catId\":7,\"sort\":2},{\"catId\":2,\"sort\":3},{\"catId\":6,\"sort\":4},{\"catId\":8,\"sort\":5},{\"catId\":11,\"sort\":6},{\"catId\":5,\"sort\":7},{\"catId\":12,\"sort\":8},{\"catId\":13,\"sort\":9},{\"catId\":14,\"sort\":10},{\"catId\":15,\"sort\":11},{\"catId\":16,\"sort\":12},{\"catId\":10,\"sort\":13},{\"catId\":9,\"sort\":14},{\"catId\":17,\"sort\":15},{\"catId\":18,\"sort\":16},{\"catId\":1,\"parentCid\":0,\"sort\":17,\"catLevel\":1},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20}]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 15:17:58'); INSERT INTO `sys_oper_log` VALUES (12707, '属性分组', 1, 'com.xjs.mall.product.controller.AttrGroupController.save()', 'POST', 1, 'admin', '', '/product/attrgroup/save', '127.0.0.1', '', '{\"attrGroupId\":1505081234566111233,\"icon\":\"download\",\"catelogId\":363,\"sort\":1,\"descript\":\"主体\",\"attrGroupName\":\"主体\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 15:18:24'); INSERT INTO `sys_oper_log` VALUES (12708, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"shopping\",\"orderNum\":\"3\",\"menuName\":\"商品维护\",\"params\":{},\"parentId\":2104,\"isCache\":\"0\",\"path\":\"product-maintain\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-19 15:36:36'); INSERT INTO `sys_oper_log` VALUES (12709, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_paihang\",\"orderNum\":\"1\",\"menuName\":\"发布商品\",\"params\":{},\"parentId\":2120,\"isCache\":\"0\",\"path\":\"publish-product\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-19 15:38:11'); INSERT INTO `sys_oper_log` VALUES (12710, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647676270128,\"humidity\":\"66\",\"id\":1505089480962035714,\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 15:51:10'); INSERT INTO `sys_oper_log` VALUES (12711, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 15:51:10'); INSERT INTO `sys_oper_log` VALUES (12712, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647676270128,\"humidity\":\"66\",\"id\":1505089480962035714,\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 15:51:18'); INSERT INTO `sys_oper_log` VALUES (12713, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 15:51:18'); INSERT INTO `sys_oper_log` VALUES (12714, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 15:53:58'); INSERT INTO `sys_oper_log` VALUES (12715, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647676270128,\"humidity\":\"66\",\"id\":1505089480962035714,\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 15:53:58'); INSERT INTO `sys_oper_log` VALUES (12716, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647676270128,\"humidity\":\"66\",\"id\":1505089480962035714,\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 15:54:19'); INSERT INTO `sys_oper_log` VALUES (12717, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 15:54:19'); INSERT INTO `sys_oper_log` VALUES (12718, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647676270128,\"humidity\":\"66\",\"id\":1505089480962035714,\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 15:54:57'); INSERT INTO `sys_oper_log` VALUES (12719, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 15:54:57'); INSERT INTO `sys_oper_log` VALUES (12720, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647676270128,\"humidity\":\"66\",\"id\":1505089480962035714,\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 15:55:00'); INSERT INTO `sys_oper_log` VALUES (12721, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 15:55:00'); INSERT INTO `sys_oper_log` VALUES (12722, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_paihang\",\"orderNum\":\"1\",\"menuName\":\"发布商品\",\"params\":{},\"parentId\":2120,\"isCache\":\"0\",\"path\":\"publish-product\",\"component\":\"mall/product/maintain/spuadd\",\"children\":[],\"createTime\":1647675491000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2121,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-19 15:55:36'); INSERT INTO `sys_oper_log` VALUES (12723, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647676270128,\"humidity\":\"66\",\"id\":1505089480962035714,\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 15:55:38'); INSERT INTO `sys_oper_log` VALUES (12724, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 15:55:38'); INSERT INTO `sys_oper_log` VALUES (12725, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647676270128,\"humidity\":\"66\",\"id\":1505089480962035714,\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 15:55:39'); INSERT INTO `sys_oper_log` VALUES (12726, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 15:55:39'); INSERT INTO `sys_oper_log` VALUES (12727, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647676270128,\"humidity\":\"66\",\"id\":1505089480962035714,\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 15:56:02'); INSERT INTO `sys_oper_log` VALUES (12728, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 15:56:02'); INSERT INTO `sys_oper_log` VALUES (12729, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"66\",\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 16:04:20'); INSERT INTO `sys_oper_log` VALUES (12730, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 16:04:20'); INSERT INTO `sys_oper_log` VALUES (12731, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"66\",\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 16:04:24'); INSERT INTO `sys_oper_log` VALUES (12732, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 16:04:24'); INSERT INTO `sys_oper_log` VALUES (12733, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"66\",\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 16:05:06'); INSERT INTO `sys_oper_log` VALUES (12734, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 16:05:06'); INSERT INTO `sys_oper_log` VALUES (12735, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 15:40:03\"}}', 0, '', '2022-03-19 16:06:50'); INSERT INTO `sys_oper_log` VALUES (12736, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"66\",\"province\":\"江西\",\"reporttime\":1647675603000,\"temperature\":\"17\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-19 16:06:50'); INSERT INTO `sys_oper_log` VALUES (12737, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647683954563,\"humidity\":\"69\",\"id\":1505121711755579393,\"province\":\"江西\",\"reporttime\":1647682802000,\"temperature\":\"17\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 17:59:14'); INSERT INTO `sys_oper_log` VALUES (12738, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 17:40:02\"}}', 0, '', '2022-03-19 17:59:14'); INSERT INTO `sys_oper_log` VALUES (12739, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647683954563,\"humidity\":\"69\",\"id\":1505121711755579393,\"province\":\"江西\",\"reporttime\":1647682802000,\"temperature\":\"17\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:00:30'); INSERT INTO `sys_oper_log` VALUES (12740, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 17:40:02\"}}', 0, '', '2022-03-19 18:00:30'); INSERT INTO `sys_oper_log` VALUES (12741, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647683954563,\"humidity\":\"69\",\"id\":1505121711755579393,\"province\":\"江西\",\"reporttime\":1647682802000,\"temperature\":\"17\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:00:32'); INSERT INTO `sys_oper_log` VALUES (12742, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 17:40:02\"}}', 0, '', '2022-03-19 18:00:32'); INSERT INTO `sys_oper_log` VALUES (12743, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 17:40:02\"}}', 0, '', '2022-03-19 18:04:23'); INSERT INTO `sys_oper_log` VALUES (12744, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647683954563,\"humidity\":\"69\",\"id\":1505121711755579393,\"province\":\"江西\",\"reporttime\":1647682802000,\"temperature\":\"17\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:04:24'); INSERT INTO `sys_oper_log` VALUES (12745, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 17:40:02\"}}', 0, '', '2022-03-19 18:07:49'); INSERT INTO `sys_oper_log` VALUES (12746, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647683954563,\"humidity\":\"69\",\"id\":1505121711755579393,\"province\":\"江西\",\"reporttime\":1647682802000,\"temperature\":\"17\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:07:49'); INSERT INTO `sys_oper_log` VALUES (12747, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 17:40:02\"}}', 0, '', '2022-03-19 18:08:17'); INSERT INTO `sys_oper_log` VALUES (12748, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647683954563,\"humidity\":\"69\",\"id\":1505121711755579393,\"province\":\"江西\",\"reporttime\":1647682802000,\"temperature\":\"17\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:08:17'); INSERT INTO `sys_oper_log` VALUES (12749, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 17:40:02\"}}', 0, '', '2022-03-19 18:08:21'); INSERT INTO `sys_oper_log` VALUES (12750, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647683954563,\"humidity\":\"69\",\"id\":1505121711755579393,\"province\":\"江西\",\"reporttime\":1647682802000,\"temperature\":\"17\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:08:21'); INSERT INTO `sys_oper_log` VALUES (12751, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647683954563,\"humidity\":\"69\",\"id\":1505121711755579393,\"province\":\"江西\",\"reporttime\":1647682802000,\"temperature\":\"17\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:09:03'); INSERT INTO `sys_oper_log` VALUES (12752, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 17:40:02\"}}', 0, '', '2022-03-19 18:09:03'); INSERT INTO `sys_oper_log` VALUES (12753, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647684720675,\"humidity\":\"72\",\"id\":1505124925099954178,\"province\":\"江西\",\"reporttime\":1647684599000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:12:00'); INSERT INTO `sys_oper_log` VALUES (12754, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 18:09:59\"}}', 0, '', '2022-03-19 18:12:00'); INSERT INTO `sys_oper_log` VALUES (12755, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 18:09:59\"}}', 0, '', '2022-03-19 18:13:13'); INSERT INTO `sys_oper_log` VALUES (12756, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647684720675,\"humidity\":\"72\",\"id\":1505124925099954178,\"province\":\"江西\",\"reporttime\":1647684599000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:13:14'); INSERT INTO `sys_oper_log` VALUES (12757, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 18:09:59\"}}', 0, '', '2022-03-19 18:14:03'); INSERT INTO `sys_oper_log` VALUES (12758, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647684720675,\"humidity\":\"72\",\"id\":1505124925099954178,\"province\":\"江西\",\"reporttime\":1647684599000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:14:03'); INSERT INTO `sys_oper_log` VALUES (12759, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 18:09:59\"}}', 0, '', '2022-03-19 18:16:17'); INSERT INTO `sys_oper_log` VALUES (12760, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647684720675,\"humidity\":\"72\",\"id\":1505124925099954178,\"province\":\"江西\",\"reporttime\":1647684599000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:16:17'); INSERT INTO `sys_oper_log` VALUES (12761, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 18:09:59\"}}', 0, '', '2022-03-19 18:17:12'); INSERT INTO `sys_oper_log` VALUES (12762, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647684720675,\"humidity\":\"72\",\"id\":1505124925099954178,\"province\":\"江西\",\"reporttime\":1647684599000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:17:12'); INSERT INTO `sys_oper_log` VALUES (12763, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"小米\",\"brandId\":1503971604152057858,\"catelogName\":\"手机\",\"catelogId\":225,\"id\":1505126472076713986}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 18:18:09'); INSERT INTO `sys_oper_log` VALUES (12764, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647686125642,\"humidity\":\"76\",\"id\":1505130817967050754,\"province\":\"江西\",\"reporttime\":1647686033000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:35:25'); INSERT INTO `sys_oper_log` VALUES (12765, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 18:33:53\"}}', 0, '', '2022-03-19 18:35:25'); INSERT INTO `sys_oper_log` VALUES (12766, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647686125642,\"humidity\":\"76\",\"id\":1505130817967050754,\"province\":\"江西\",\"reporttime\":1647686033000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:36:21'); INSERT INTO `sys_oper_log` VALUES (12767, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 18:33:53\"}}', 0, '', '2022-03-19 18:36:21'); INSERT INTO `sys_oper_log` VALUES (12768, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 18:33:53\"}}', 0, '', '2022-03-19 18:37:22'); INSERT INTO `sys_oper_log` VALUES (12769, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647686125642,\"humidity\":\"76\",\"id\":1505130817967050754,\"province\":\"江西\",\"reporttime\":1647686033000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:37:22'); INSERT INTO `sys_oper_log` VALUES (12770, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 18:33:53\"}}', 0, '', '2022-03-19 18:38:22'); INSERT INTO `sys_oper_log` VALUES (12771, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647686125642,\"humidity\":\"76\",\"id\":1505130817967050754,\"province\":\"江西\",\"reporttime\":1647686033000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:38:22'); INSERT INTO `sys_oper_log` VALUES (12772, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 18:33:53\"}}', 0, '', '2022-03-19 18:43:28'); INSERT INTO `sys_oper_log` VALUES (12773, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647686125642,\"humidity\":\"76\",\"id\":1505130817967050754,\"province\":\"江西\",\"reporttime\":1647686033000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 18:43:28'); INSERT INTO `sys_oper_log` VALUES (12774, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 19:03:59\"}}', 0, '', '2022-03-19 19:24:46'); INSERT INTO `sys_oper_log` VALUES (12775, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647687839000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 19:24:46'); INSERT INTO `sys_oper_log` VALUES (12776, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 19:03:59\"}}', 0, '', '2022-03-19 19:31:12'); INSERT INTO `sys_oper_log` VALUES (12777, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647687839000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 19:31:12'); INSERT INTO `sys_oper_log` VALUES (12778, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 19:03:59\"}}', 0, '', '2022-03-19 19:32:50'); INSERT INTO `sys_oper_log` VALUES (12779, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647687839000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 19:32:50'); INSERT INTO `sys_oper_log` VALUES (12780, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 19:03:59\"}}', 0, '', '2022-03-19 19:34:23'); INSERT INTO `sys_oper_log` VALUES (12781, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647687839000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 19:34:23'); INSERT INTO `sys_oper_log` VALUES (12782, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647687839000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 19:35:19'); INSERT INTO `sys_oper_log` VALUES (12783, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 19:03:59\"}}', 0, '', '2022-03-19 19:35:19'); INSERT INTO `sys_oper_log` VALUES (12784, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 19:03:59\"}}', 0, '', '2022-03-19 19:43:12'); INSERT INTO `sys_oper_log` VALUES (12785, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647687839000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 19:43:12'); INSERT INTO `sys_oper_log` VALUES (12786, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 19:03:59\"}}', 0, '', '2022-03-19 19:43:16'); INSERT INTO `sys_oper_log` VALUES (12787, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647687839000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 19:43:16'); INSERT INTO `sys_oper_log` VALUES (12788, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 19:03:59\"}}', 0, '', '2022-03-19 19:44:45'); INSERT INTO `sys_oper_log` VALUES (12789, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647687839000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 19:44:45'); INSERT INTO `sys_oper_log` VALUES (12790, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"76\",\"province\":\"江西\",\"reporttime\":1647687839000,\"temperature\":\"16\",\"weather\":\"多云\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 19:44:48'); INSERT INTO `sys_oper_log` VALUES (12791, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 19:03:59\"}}', 0, '', '2022-03-19 19:44:48'); INSERT INTO `sys_oper_log` VALUES (12792, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504719409409875969,\"searchType\":0,\"enable\":1,\"valueType\":0,\"icon\":\"cascader\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"黑色\",\"attrName\":\"颜色\",\"attrType\":0}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 20:10:27'); INSERT INTO `sys_oper_log` VALUES (12793, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"searchType\":0,\"enable\":1,\"valueType\":1,\"icon\":\"icon_zhuye\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"6+128;8+256;21+256\",\"attrName\":\"内存\",\"attrType\":0}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 20:10:54'); INSERT INTO `sys_oper_log` VALUES (12794, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1504719409409875969,\"searchType\":0,\"enable\":1,\"valueType\":1,\"icon\":\"cascader\",\"showDesc\":0,\"catelogId\":225,\"valueSelect\":\"黑色;黄色;红色;绿色\",\"attrName\":\"颜色\",\"attrType\":0}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 20:11:12'); INSERT INTO `sys_oper_log` VALUES (12795, '规格参数', 3, 'com.xjs.mall.product.controller.AttrController.delete()', 'DELETE', 1, 'admin', '', '/product/attr/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 20:11:55'); INSERT INTO `sys_oper_log` VALUES (12796, '规格参数', 3, 'com.xjs.mall.product.controller.AttrController.delete()', 'DELETE', 1, 'admin', '', '/product/attr/delete', '127.0.0.1', '', '', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 20:12:02'); INSERT INTO `sys_oper_log` VALUES (12797, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"valueType\":0,\"icon\":\"icon_zan\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"2020\",\"attrName\":\"上市时间\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 20:12:48'); INSERT INTO `sys_oper_log` VALUES (12798, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"valueType\":0,\"icon\":\"dashboard\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"6.7寸\",\"attrName\":\"尺寸\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 20:13:18'); INSERT INTO `sys_oper_log` VALUES (12799, '规格参数', 1, 'com.xjs.mall.product.controller.AttrController.save()', 'POST', 1, 'admin', '', '/product/attr/save', '127.0.0.1', '', '{\"attrGroupId\":1504711444099379201,\"searchType\":1,\"enable\":1,\"valueType\":0,\"icon\":\"icon_zan\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"麒麟;高通;联发科\",\"attrName\":\"芯片\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 20:13:55'); INSERT INTO `sys_oper_log` VALUES (12800, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 20:10:00\"}}', 0, '', '2022-03-19 20:18:25'); INSERT INTO `sys_oper_log` VALUES (12801, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647692305719,\"humidity\":\"77\",\"id\":1505156739055177730,\"province\":\"江西\",\"reporttime\":1647691800000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 20:18:25'); INSERT INTO `sys_oper_log` VALUES (12802, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 20:10:00\"}}', 0, '', '2022-03-19 20:20:06'); INSERT INTO `sys_oper_log` VALUES (12803, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647692305719,\"humidity\":\"77\",\"id\":1505156739055177730,\"province\":\"江西\",\"reporttime\":1647691800000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 20:20:06'); INSERT INTO `sys_oper_log` VALUES (12804, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 20:10:00\"}}', 0, '', '2022-03-19 20:23:02'); INSERT INTO `sys_oper_log` VALUES (12805, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647692305719,\"humidity\":\"77\",\"id\":1505156739055177730,\"province\":\"江西\",\"reporttime\":1647691800000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 20:23:02'); INSERT INTO `sys_oper_log` VALUES (12806, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 20:34:08\"}}', 0, '', '2022-03-19 20:38:35'); INSERT INTO `sys_oper_log` VALUES (12807, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647693515531,\"humidity\":\"76\",\"id\":1505161813420625921,\"province\":\"江西\",\"reporttime\":1647693248000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 20:38:35'); INSERT INTO `sys_oper_log` VALUES (12808, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1505167219329024002', '127.0.0.1', '', '1505167219329024002', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-19 21:01:07'); INSERT INTO `sys_oper_log` VALUES (12809, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 22:33:52\"}}', 0, '', '2022-03-19 22:40:34'); INSERT INTO `sys_oper_log` VALUES (12810, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647700432000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 22:40:34'); INSERT INTO `sys_oper_log` VALUES (12811, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 22:33:52\"}}', 0, '', '2022-03-19 23:03:52'); INSERT INTO `sys_oper_log` VALUES (12812, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647700432000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 23:03:52'); INSERT INTO `sys_oper_log` VALUES (12813, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647700432000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 23:04:46'); INSERT INTO `sys_oper_log` VALUES (12814, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 22:33:52\"}}', 0, '', '2022-03-19 23:04:46'); INSERT INTO `sys_oper_log` VALUES (12815, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"78\",\"province\":\"江西\",\"reporttime\":1647700432000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 23:05:24'); INSERT INTO `sys_oper_log` VALUES (12816, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 22:33:52\"}}', 0, '', '2022-03-19 23:05:24'); INSERT INTO `sys_oper_log` VALUES (12817, '会员等级', 2, 'com.xjs.mall.member.controller.MemberLevelController.update()', 'PUT', 1, 'admin', '', '/member/memberlevel/update', '127.0.0.1', '', '{\"defaultStatus\":0,\"note\":\"黄金会员\",\"priviledgeBirthday\":1,\"freeFreightPoint\":80,\"name\":\"黄金会员\",\"priviledgeMemberPrice\":1,\"id\":1504846789581967362,\"priviledgeFreeFreight\":0,\"commentGrowthPoint\":3,\"growthPoint\":100}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-19 23:08:17'); INSERT INTO `sys_oper_log` VALUES (12818, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647702838494,\"humidity\":\"77\",\"id\":1505200916765822977,\"province\":\"江西\",\"reporttime\":1647702236000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 23:13:58'); INSERT INTO `sys_oper_log` VALUES (12819, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 23:03:56\"}}', 0, '', '2022-03-19 23:13:58'); INSERT INTO `sys_oper_log` VALUES (12820, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-19 23:03:56\"}}', 0, '', '2022-03-19 23:14:46'); INSERT INTO `sys_oper_log` VALUES (12821, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647702838494,\"humidity\":\"77\",\"id\":1505200916765822977,\"province\":\"江西\",\"reporttime\":1647702236000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-19 23:14:46'); INSERT INTO `sys_oper_log` VALUES (12822, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 00:33:54\"}}', 0, '', '2022-03-20 01:00:34'); INSERT INTO `sys_oper_log` VALUES (12823, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647707634000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 01:00:34'); INSERT INTO `sys_oper_log` VALUES (12824, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 00:33:54\"}}', 0, '', '2022-03-20 01:01:36'); INSERT INTO `sys_oper_log` VALUES (12825, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647707634000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 01:01:36'); INSERT INTO `sys_oper_log` VALUES (12826, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 00:33:54\"}}', 0, '', '2022-03-20 01:07:37'); INSERT INTO `sys_oper_log` VALUES (12827, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647707634000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 01:07:37'); INSERT INTO `sys_oper_log` VALUES (12828, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-19\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 00:33:54\"}}', 0, '', '2022-03-20 01:08:54'); INSERT INTO `sys_oper_log` VALUES (12829, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"79\",\"province\":\"江西\",\"reporttime\":1647707634000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 01:08:54'); INSERT INTO `sys_oper_log` VALUES (12830, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 01:03:59\"}}', 0, '', '2022-03-20 01:13:57'); INSERT INTO `sys_oper_log` VALUES (12831, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647710036994,\"humidity\":\"79\",\"id\":1505231109421223938,\"province\":\"江西\",\"reporttime\":1647709438000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 01:13:57'); INSERT INTO `sys_oper_log` VALUES (12832, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 01:03:59\"}}', 0, '', '2022-03-20 01:14:39'); INSERT INTO `sys_oper_log` VALUES (12833, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647710036994,\"humidity\":\"79\",\"id\":1505231109421223938,\"province\":\"江西\",\"reporttime\":1647709438000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 01:14:39'); INSERT INTO `sys_oper_log` VALUES (12834, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 01:03:59\"}}', 0, '', '2022-03-20 01:17:18'); INSERT INTO `sys_oper_log` VALUES (12835, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647710036994,\"humidity\":\"79\",\"id\":1505231109421223938,\"province\":\"江西\",\"reporttime\":1647709438000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 01:17:18'); INSERT INTO `sys_oper_log` VALUES (12836, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647710036994,\"humidity\":\"79\",\"id\":1505231109421223938,\"province\":\"江西\",\"reporttime\":1647709438000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 01:18:14'); INSERT INTO `sys_oper_log` VALUES (12837, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 01:03:59\"}}', 0, '', '2022-03-20 01:18:14'); INSERT INTO `sys_oper_log` VALUES (12838, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 01:03:59\"}}', 0, '', '2022-03-20 01:18:51'); INSERT INTO `sys_oper_log` VALUES (12839, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Gentle attitude for a heart to be contempt indeed is a great comfort.\",\"dataId\":4115,\"imgurl\":\"\",\"note\":\"柔和的态度对于一颗被轻蔑的心是很大的安慰。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-20 01:19:41'); INSERT INTO `sys_oper_log` VALUES (12840, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"\\\"若不想输给任何人,就得先认清自己的弱小!\\\"\",\"createTime\":1647710381527,\"id\":1505232554522529794,\"source\":\"一言\",\"type\":8}}', 0, '', '2022-03-20 01:19:41'); INSERT INTO `sys_oper_log` VALUES (12841, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-20 01:20:40'); INSERT INTO `sys_oper_log` VALUES (12842, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 01:03:59\"}}', 0, '', '2022-03-20 01:23:22'); INSERT INTO `sys_oper_log` VALUES (12843, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647710036994,\"humidity\":\"79\",\"id\":1505231109421223938,\"province\":\"江西\",\"reporttime\":1647709438000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 01:23:22'); INSERT INTO `sys_oper_log` VALUES (12844, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 01:03:59\"}}', 0, '', '2022-03-20 01:23:26'); INSERT INTO `sys_oper_log` VALUES (12845, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647710036994,\"humidity\":\"79\",\"id\":1505231109421223938,\"province\":\"江西\",\"reporttime\":1647709438000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 01:23:26'); INSERT INTO `sys_oper_log` VALUES (12846, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 10:09:59\"}}', 0, '', '2022-03-20 10:10:19'); INSERT INTO `sys_oper_log` VALUES (12847, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647742219780,\"humidity\":\"82\",\"id\":1505366093830168577,\"province\":\"江西\",\"reporttime\":1647742199000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 10:10:19'); INSERT INTO `sys_oper_log` VALUES (12848, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 11:03:58\"}}', 0, '', '2022-03-20 11:08:16'); INSERT INTO `sys_oper_log` VALUES (12849, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647745696552,\"humidity\":\"81\",\"id\":1505380676460486657,\"province\":\"江西\",\"reporttime\":1647745438000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 11:08:16'); INSERT INTO `sys_oper_log` VALUES (12850, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 13:04:00\"}}', 0, '', '2022-03-20 13:38:23'); INSERT INTO `sys_oper_log` VALUES (12851, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"80\",\"province\":\"江西\",\"reporttime\":1647752640000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 13:38:23'); INSERT INTO `sys_oper_log` VALUES (12852, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 20:09:59\"}}', 0, '', '2022-03-20 20:14:12'); INSERT INTO `sys_oper_log` VALUES (12853, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647778452843,\"humidity\":\"83\",\"id\":1505518066277777410,\"province\":\"江西\",\"reporttime\":1647778198000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 20:14:12'); INSERT INTO `sys_oper_log` VALUES (12854, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"≤3\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 20:09:59\"}}', 0, '', '2022-03-20 20:22:12'); INSERT INTO `sys_oper_log` VALUES (12855, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647778452843,\"humidity\":\"83\",\"id\":1505518066277777410,\"province\":\"江西\",\"reporttime\":1647778198000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 20:22:12'); INSERT INTO `sys_oper_log` VALUES (12856, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"job\",\"orderNum\":\"3\",\"menuName\":\"spu管理\",\"params\":{},\"parentId\":2120,\"isCache\":\"0\",\"path\":\"product-spu\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-20 21:21:42'); INSERT INTO `sys_oper_log` VALUES (12857, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"job\",\"orderNum\":\"3\",\"menuName\":\"spu管理\",\"params\":{},\"parentId\":2120,\"isCache\":\"0\",\"path\":\"product-spu\",\"component\":\"mall/product/maintain/spuadd\",\"children\":[],\"createTime\":1647782501000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2122,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-20 21:22:01'); INSERT INTO `sys_oper_log` VALUES (12858, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"job\",\"orderNum\":\"3\",\"menuName\":\"spu管理\",\"params\":{},\"parentId\":2120,\"isCache\":\"0\",\"path\":\"product-spu\",\"component\":\"mall/product/maintain/spu\",\"children\":[],\"createTime\":1647782501000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2122,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-20 21:22:56'); INSERT INTO `sys_oper_log` VALUES (12859, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 21:03:51\"}}', 0, '', '2022-03-20 21:22:59'); INSERT INTO `sys_oper_log` VALUES (12860, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647781431000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 21:22:59'); INSERT INTO `sys_oper_log` VALUES (12861, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 21:03:51\"}}', 0, '', '2022-03-20 21:23:06'); INSERT INTO `sys_oper_log` VALUES (12862, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647781431000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 21:23:06'); INSERT INTO `sys_oper_log` VALUES (12863, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 21:03:51\"}}', 0, '', '2022-03-20 21:24:41'); INSERT INTO `sys_oper_log` VALUES (12864, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647781431000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 21:24:41'); INSERT INTO `sys_oper_log` VALUES (12865, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647781431000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 21:25:00'); INSERT INTO `sys_oper_log` VALUES (12866, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 21:03:51\"}}', 0, '', '2022-03-20 21:25:00'); INSERT INTO `sys_oper_log` VALUES (12867, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647781431000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 21:25:25'); INSERT INTO `sys_oper_log` VALUES (12868, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 21:03:51\"}}', 0, '', '2022-03-20 21:25:25'); INSERT INTO `sys_oper_log` VALUES (12869, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 21:03:51\"}}', 0, '', '2022-03-20 21:32:11'); INSERT INTO `sys_oper_log` VALUES (12870, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647781431000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 21:32:11'); INSERT INTO `sys_oper_log` VALUES (12871, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 22:09:59\"}}', 0, '', '2022-03-20 22:23:19'); INSERT INTO `sys_oper_log` VALUES (12872, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647785399000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-20 22:23:19'); INSERT INTO `sys_oper_log` VALUES (12873, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 22:09:59\"}}', 0, '', '2022-03-20 22:30:20'); INSERT INTO `sys_oper_log` VALUES (12874, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"84\",\"province\":\"江西\",\"reporttime\":1647785399000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-20 22:30:20'); INSERT INTO `sys_oper_log` VALUES (12875, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 22:34:08\"}}', 0, '', '2022-03-20 22:53:15'); INSERT INTO `sys_oper_log` VALUES (12876, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1647786848000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-20 22:53:15'); INSERT INTO `sys_oper_log` VALUES (12877, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 22:34:08\"}}', 0, '', '2022-03-20 22:57:08'); INSERT INTO `sys_oper_log` VALUES (12878, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1647786848000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-20 22:57:08'); INSERT INTO `sys_oper_log` VALUES (12879, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 23:03:53\"}}', 0, '', '2022-03-20 23:09:37'); INSERT INTO `sys_oper_log` VALUES (12880, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647788977354,\"humidity\":\"85\",\"id\":1505562209326694401,\"province\":\"江西\",\"reporttime\":1647788633000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 23:09:37'); INSERT INTO `sys_oper_log` VALUES (12881, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 23:03:53\"}}', 0, '', '2022-03-20 23:13:48'); INSERT INTO `sys_oper_log` VALUES (12882, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647788977354,\"humidity\":\"85\",\"id\":1505562209326694401,\"province\":\"江西\",\"reporttime\":1647788633000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 23:13:48'); INSERT INTO `sys_oper_log` VALUES (12883, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 23:03:53\"}}', 0, '', '2022-03-20 23:16:37'); INSERT INTO `sys_oper_log` VALUES (12884, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647788977354,\"humidity\":\"85\",\"id\":1505562209326694401,\"province\":\"江西\",\"reporttime\":1647788633000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 23:16:37'); INSERT INTO `sys_oper_log` VALUES (12885, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 23:03:53\"}}', 0, '', '2022-03-20 23:19:08'); INSERT INTO `sys_oper_log` VALUES (12886, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647788977354,\"humidity\":\"85\",\"id\":1505562209326694401,\"province\":\"江西\",\"reporttime\":1647788633000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 23:19:08'); INSERT INTO `sys_oper_log` VALUES (12887, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 23:03:53\"}}', 0, '', '2022-03-20 23:23:04'); INSERT INTO `sys_oper_log` VALUES (12888, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647788633000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 23:23:04'); INSERT INTO `sys_oper_log` VALUES (12889, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 23:03:53\"}}', 0, '', '2022-03-20 23:27:54'); INSERT INTO `sys_oper_log` VALUES (12890, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647788633000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 23:27:54'); INSERT INTO `sys_oper_log` VALUES (12891, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 23:03:53\"}}', 0, '', '2022-03-20 23:29:56'); INSERT INTO `sys_oper_log` VALUES (12892, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647788633000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 23:29:56'); INSERT INTO `sys_oper_log` VALUES (12893, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 23:03:53\"}}', 0, '', '2022-03-20 23:35:32'); INSERT INTO `sys_oper_log` VALUES (12894, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647788633000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 23:35:32'); INSERT INTO `sys_oper_log` VALUES (12895, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-20\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-20 23:03:53\"}}', 0, '', '2022-03-20 23:38:26'); INSERT INTO `sys_oper_log` VALUES (12896, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"85\",\"province\":\"江西\",\"reporttime\":1647788633000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-20 23:38:26'); INSERT INTO `sys_oper_log` VALUES (12897, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"很多时候,我们都不知道,我们究竟在伤心什么...\",\"createTime\":1647790794881,\"id\":1505569832570683393,\"source\":\"匿名\",\"type\":5}}', 0, '', '2022-03-20 23:39:54'); INSERT INTO `sys_oper_log` VALUES (12898, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I had always heard your entire life flashes in front of your eyes the second before you die. First of all, that one second isn’t a second at all, it stretches on forever, like an ocean of time.\",\"dataId\":3422,\"imgurl\":\"\",\"note\":\"听说人在死前的一秒钟,其一生会闪过眼前。其实不是一秒,而是无尽的时间,时间海洋。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-20 23:39:55'); INSERT INTO `sys_oper_log` VALUES (12899, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:03:52\"}}', 0, '', '2022-03-21 01:19:19'); INSERT INTO `sys_oper_log` VALUES (12900, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647796759971,\"humidity\":\"91\",\"id\":1505594851954753537,\"province\":\"江西\",\"reporttime\":1647795832000,\"temperature\":\"9\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:19:19'); INSERT INTO `sys_oper_log` VALUES (12901, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:03:52\"}}', 0, '', '2022-03-21 01:22:26'); INSERT INTO `sys_oper_log` VALUES (12902, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647796759971,\"humidity\":\"91\",\"id\":1505594851954753537,\"province\":\"江西\",\"reporttime\":1647795832000,\"temperature\":\"9\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:22:27'); INSERT INTO `sys_oper_log` VALUES (12903, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:03:52\"}}', 0, '', '2022-03-21 01:27:47'); INSERT INTO `sys_oper_log` VALUES (12904, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647796759971,\"humidity\":\"91\",\"id\":1505594851954753537,\"province\":\"江西\",\"reporttime\":1647795832000,\"temperature\":\"9\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:27:47'); INSERT INTO `sys_oper_log` VALUES (12905, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:03:52\"}}', 0, '', '2022-03-21 01:27:56'); INSERT INTO `sys_oper_log` VALUES (12906, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647796759971,\"humidity\":\"91\",\"id\":1505594851954753537,\"province\":\"江西\",\"reporttime\":1647795832000,\"temperature\":\"9\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:27:56'); INSERT INTO `sys_oper_log` VALUES (12907, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:03:52\"}}', 0, '', '2022-03-21 01:28:51'); INSERT INTO `sys_oper_log` VALUES (12908, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647796759971,\"humidity\":\"91\",\"id\":1505594851954753537,\"province\":\"江西\",\"reporttime\":1647795832000,\"temperature\":\"9\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:28:51'); INSERT INTO `sys_oper_log` VALUES (12909, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647796759971,\"humidity\":\"91\",\"id\":1505594851954753537,\"province\":\"江西\",\"reporttime\":1647795832000,\"temperature\":\"9\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:29:07'); INSERT INTO `sys_oper_log` VALUES (12910, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:03:52\"}}', 0, '', '2022-03-21 01:29:07'); INSERT INTO `sys_oper_log` VALUES (12911, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647795832000,\"temperature\":\"9\",\"weather\":\"中雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:33:36'); INSERT INTO `sys_oper_log` VALUES (12912, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:03:52\"}}', 0, '', '2022-03-21 01:33:36'); INSERT INTO `sys_oper_log` VALUES (12913, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:40:08\"}}', 0, '', '2022-03-21 01:47:30'); INSERT INTO `sys_oper_log` VALUES (12914, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647798450859,\"humidity\":\"91\",\"id\":1505601944090804225,\"province\":\"江西\",\"reporttime\":1647798008000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:47:30'); INSERT INTO `sys_oper_log` VALUES (12915, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:40:08\"}}', 0, '', '2022-03-21 01:51:19'); INSERT INTO `sys_oper_log` VALUES (12916, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647798450859,\"humidity\":\"91\",\"id\":1505601944090804225,\"province\":\"江西\",\"reporttime\":1647798008000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:51:19'); INSERT INTO `sys_oper_log` VALUES (12917, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:40:08\"}}', 0, '', '2022-03-21 01:52:18'); INSERT INTO `sys_oper_log` VALUES (12918, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647798450859,\"humidity\":\"91\",\"id\":1505601944090804225,\"province\":\"江西\",\"reporttime\":1647798008000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:52:18'); INSERT INTO `sys_oper_log` VALUES (12919, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:40:08\"}}', 0, '', '2022-03-21 01:52:31'); INSERT INTO `sys_oper_log` VALUES (12920, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647798450859,\"humidity\":\"91\",\"id\":1505601944090804225,\"province\":\"江西\",\"reporttime\":1647798008000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:52:31'); INSERT INTO `sys_oper_log` VALUES (12921, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:40:08\"}}', 0, '', '2022-03-21 01:53:54'); INSERT INTO `sys_oper_log` VALUES (12922, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647798450859,\"humidity\":\"91\",\"id\":1505601944090804225,\"province\":\"江西\",\"reporttime\":1647798008000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:53:55'); INSERT INTO `sys_oper_log` VALUES (12923, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647798450859,\"humidity\":\"91\",\"id\":1505601944090804225,\"province\":\"江西\",\"reporttime\":1647798008000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:54:21'); INSERT INTO `sys_oper_log` VALUES (12924, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:40:08\"}}', 0, '', '2022-03-21 01:54:21'); INSERT INTO `sys_oper_log` VALUES (12925, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:40:08\"}}', 0, '', '2022-03-21 01:57:25'); INSERT INTO `sys_oper_log` VALUES (12926, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647798450859,\"humidity\":\"91\",\"id\":1505601944090804225,\"province\":\"江西\",\"reporttime\":1647798008000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 01:57:25'); INSERT INTO `sys_oper_log` VALUES (12927, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"query\":\"\",\"icon\":\"monitor\",\"orderNum\":\"3\",\"menuName\":\"系统监控\",\"params\":{},\"parentId\":0,\"isCache\":\"1\",\"path\":\"monitor\",\"children\":[],\"createTime\":1640336744000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-21 01:58:27'); INSERT INTO `sys_oper_log` VALUES (12928, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"svg_collect\",\"orderNum\":\"1\",\"menuName\":\"商品系统\",\"params\":{},\"parentId\":2103,\"isCache\":\"0\",\"path\":\"product\",\"children\":[],\"createTime\":1647314586000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2104,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-21 01:58:52'); INSERT INTO `sys_oper_log` VALUES (12929, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"number\",\"orderNum\":\"2\",\"menuName\":\"会员系统\",\"params\":{},\"parentId\":2103,\"isCache\":\"0\",\"path\":\"mall-member\",\"children\":[],\"createTime\":1647616236000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2118,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-21 01:59:00'); INSERT INTO `sys_oper_log` VALUES (12930, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"system\",\"orderNum\":\"5\",\"menuName\":\"商品管理\",\"params\":{},\"parentId\":2120,\"isCache\":\"0\",\"path\":\"product-sku\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-21 01:59:34'); INSERT INTO `sys_oper_log` VALUES (12931, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"system\",\"orderNum\":\"5\",\"menuName\":\"商品管理\",\"params\":{},\"parentId\":2120,\"isCache\":\"0\",\"path\":\"product-sku\",\"component\":\"mall/product/maintain/sku\",\"children\":[],\"createTime\":1647799174000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2123,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-21 01:59:51'); INSERT INTO `sys_oper_log` VALUES (12932, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"system\",\"orderNum\":\"5\",\"menuName\":\"商品管理\",\"params\":{},\"parentId\":2120,\"isCache\":\"0\",\"path\":\"product-sku\",\"component\":\"mall/product/maintain/manager\",\"children\":[],\"createTime\":1647799174000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2123,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-21 02:01:03'); INSERT INTO `sys_oper_log` VALUES (12933, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:40:08\"}}', 0, '', '2022-03-21 02:02:19'); INSERT INTO `sys_oper_log` VALUES (12934, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647798008000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 02:02:19'); INSERT INTO `sys_oper_log` VALUES (12935, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 01:40:08\"}}', 0, '', '2022-03-21 02:02:35'); INSERT INTO `sys_oper_log` VALUES (12936, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647798008000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 02:02:35'); INSERT INTO `sys_oper_log` VALUES (12937, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 02:09:58\"}}', 0, '', '2022-03-21 02:14:58'); INSERT INTO `sys_oper_log` VALUES (12938, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647800098496,\"humidity\":\"93\",\"id\":1505608854718349313,\"province\":\"江西\",\"reporttime\":1647799797000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 02:14:58'); INSERT INTO `sys_oper_log` VALUES (12939, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 02:09:58\"}}', 0, '', '2022-03-21 02:15:32'); INSERT INTO `sys_oper_log` VALUES (12940, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647800098496,\"humidity\":\"93\",\"id\":1505608854718349313,\"province\":\"江西\",\"reporttime\":1647799797000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 02:15:32'); INSERT INTO `sys_oper_log` VALUES (12941, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 02:09:58\"}}', 0, '', '2022-03-21 02:16:41'); INSERT INTO `sys_oper_log` VALUES (12942, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647800098496,\"humidity\":\"93\",\"id\":1505608854718349313,\"province\":\"江西\",\"reporttime\":1647799797000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 02:16:42'); INSERT INTO `sys_oper_log` VALUES (12943, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 14:34:03\"}}', 0, '', '2022-03-21 15:03:38'); INSERT INTO `sys_oper_log` VALUES (12944, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 14:34:03\"}}', 0, '', '2022-03-21 15:03:38'); INSERT INTO `sys_oper_log` VALUES (12945, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647846219154,\"humidity\":\"94\",\"id\":1505802298837364738,\"province\":\"江西\",\"reporttime\":1647844443000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:03:39'); INSERT INTO `sys_oper_log` VALUES (12946, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"185KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us97hf1xj31c00u0q8b.jpg\"},{\"imageFileLength\":\"201KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us93mjojj31c00u079s.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utbex3o5j31c00u042s.jpg\"},{\"imageFileLength\":\"206KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt5dsewlj31900u0wq1.jpg\"},{\"imageFileLength\":\"243KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfcwvcoj31c00u0dnk.jpg\"},{\"imageFileLength\":\"262KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqeyfe17j31c00u0tf4.jpg\"},{\"imageFileLength\":\"94KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utajswd4j31c00u040r.jpg\"},{\"imageFileLength\":\"168KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8rh3w3j31c00u0aez.jpg\"},{\"imageFileLength\":\"194KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqfi6ibrj31c00u0wku.jpg\"},{\"imageFileLength\":\"201KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1us9h7s6hj31hc0u0gqu.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-21 15:04:59'); INSERT INTO `sys_oper_log` VALUES (12947, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年03月21日\",\"holidayName\":\"世界睡眠日\",\"lunarDate\":\"2022年02月19日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年03月21日\"},{\"date\":\"2022年03月21日\",\"holidayName\":\"世界森林日\",\"lunarDate\":\"2022年02月19日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年03月21日\"},{\"date\":\"2022年03月21日\",\"holidayName\":\"世界儿歌日\",\"lunarDate\":\"2022年02月19日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年03月21日\"},{\"date\":\"2022年03月21日\",\"holidayName\":\"国际消除种族歧视日\",\"lunarDate\":\"2022年02月19日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年03月21日\"},{\"date\":\"2022年03月22日\",\"holidayName\":\"世界水日\",\"lunarDate\":\"2022年02月20日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年03月22日\"},{\"date\":\"2022年03月23日\",\"holidayName\":\"世界气象日\",\"lunarDate\":\"2022年02月21日\",\"lunarHoliday\":false,\"residueDays\":1,\"returnDate\":\"2022年03月23日\"},{\"date\":\"2022年03月24日\",\"holidayName\":\"世界防治结核病日\",\"lunarDate\":\"2022年02月22日\",\"lunarHoliday\":false,\"residueDays\":2,\"returnDate\":\"2022年03月24日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-21 15:05:04'); INSERT INTO `sys_oper_log` VALUES (12948, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:03:52\"}}', 0, '', '2022-03-21 15:25:40'); INSERT INTO `sys_oper_log` VALUES (12949, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647846231000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:25:40'); INSERT INTO `sys_oper_log` VALUES (12950, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647846231000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:25:48'); INSERT INTO `sys_oper_log` VALUES (12951, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:03:52\"}}', 0, '', '2022-03-21 15:25:48'); INSERT INTO `sys_oper_log` VALUES (12952, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647846231000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:25:54'); INSERT INTO `sys_oper_log` VALUES (12953, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:03:52\"}}', 0, '', '2022-03-21 15:25:54'); INSERT INTO `sys_oper_log` VALUES (12954, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647846231000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:37:03'); INSERT INTO `sys_oper_log` VALUES (12955, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:03:52\"}}', 0, '', '2022-03-21 15:37:03'); INSERT INTO `sys_oper_log` VALUES (12956, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:03:52\"}}', 0, '', '2022-03-21 15:38:19'); INSERT INTO `sys_oper_log` VALUES (12957, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647846231000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:38:19'); INSERT INTO `sys_oper_log` VALUES (12958, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:03:52\"}}', 0, '', '2022-03-21 15:42:57'); INSERT INTO `sys_oper_log` VALUES (12959, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647846231000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:42:57'); INSERT INTO `sys_oper_log` VALUES (12960, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647846231000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:43:01'); INSERT INTO `sys_oper_log` VALUES (12961, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:03:52\"}}', 0, '', '2022-03-21 15:43:01'); INSERT INTO `sys_oper_log` VALUES (12962, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647846231000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:43:10'); INSERT INTO `sys_oper_log` VALUES (12963, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:03:52\"}}', 0, '', '2022-03-21 15:43:10'); INSERT INTO `sys_oper_log` VALUES (12964, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647846231000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:43:57'); INSERT INTO `sys_oper_log` VALUES (12965, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:03:52\"}}', 0, '', '2022-03-21 15:43:57'); INSERT INTO `sys_oper_log` VALUES (12966, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:03:52\"}}', 0, '', '2022-03-21 15:46:16'); INSERT INTO `sys_oper_log` VALUES (12967, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647846231000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:46:16'); INSERT INTO `sys_oper_log` VALUES (12968, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647849421617,\"humidity\":\"93\",\"id\":1505815730928152577,\"province\":\"江西\",\"reporttime\":1647848403000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:57:01'); INSERT INTO `sys_oper_log` VALUES (12969, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:40:03\"}}', 0, '', '2022-03-21 15:57:01'); INSERT INTO `sys_oper_log` VALUES (12970, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:40:03\"}}', 0, '', '2022-03-21 15:57:12'); INSERT INTO `sys_oper_log` VALUES (12971, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647849421617,\"humidity\":\"93\",\"id\":1505815730928152577,\"province\":\"江西\",\"reporttime\":1647848403000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:57:12'); INSERT INTO `sys_oper_log` VALUES (12972, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:40:03\"}}', 0, '', '2022-03-21 15:57:58'); INSERT INTO `sys_oper_log` VALUES (12973, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647849421617,\"humidity\":\"93\",\"id\":1505815730928152577,\"province\":\"江西\",\"reporttime\":1647848403000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:57:58'); INSERT INTO `sys_oper_log` VALUES (12974, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647849421617,\"humidity\":\"93\",\"id\":1505815730928152577,\"province\":\"江西\",\"reporttime\":1647848403000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:58:25'); INSERT INTO `sys_oper_log` VALUES (12975, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:40:03\"}}', 0, '', '2022-03-21 15:58:25'); INSERT INTO `sys_oper_log` VALUES (12976, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647849421617,\"humidity\":\"93\",\"id\":1505815730928152577,\"province\":\"江西\",\"reporttime\":1647848403000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 15:59:11'); INSERT INTO `sys_oper_log` VALUES (12977, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 15:40:03\"}}', 0, '', '2022-03-21 15:59:11'); INSERT INTO `sys_oper_log` VALUES (12978, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647850570192,\"humidity\":\"93\",\"id\":1505820548358926337,\"province\":\"江西\",\"reporttime\":1647850196000,\"temperature\":\"9\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 16:16:10'); INSERT INTO `sys_oper_log` VALUES (12979, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:09:56\"}}', 0, '', '2022-03-21 16:16:10'); INSERT INTO `sys_oper_log` VALUES (12980, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 16:40:18'); INSERT INTO `sys_oper_log` VALUES (12981, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 16:40:18'); INSERT INTO `sys_oper_log` VALUES (12982, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 16:41:57'); INSERT INTO `sys_oper_log` VALUES (12983, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 16:41:57'); INSERT INTO `sys_oper_log` VALUES (12984, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:02:45'); INSERT INTO `sys_oper_log` VALUES (12985, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:02:45'); INSERT INTO `sys_oper_log` VALUES (12986, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:03:32'); INSERT INTO `sys_oper_log` VALUES (12987, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:03:32'); INSERT INTO `sys_oper_log` VALUES (12988, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:03:58'); INSERT INTO `sys_oper_log` VALUES (12989, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:03:58'); INSERT INTO `sys_oper_log` VALUES (12990, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:04:44'); INSERT INTO `sys_oper_log` VALUES (12991, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:04:44'); INSERT INTO `sys_oper_log` VALUES (12992, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:06:00'); INSERT INTO `sys_oper_log` VALUES (12993, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:06:00'); INSERT INTO `sys_oper_log` VALUES (12994, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:06:25'); INSERT INTO `sys_oper_log` VALUES (12995, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:06:25'); INSERT INTO `sys_oper_log` VALUES (12996, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:07:35'); INSERT INTO `sys_oper_log` VALUES (12997, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:07:35'); INSERT INTO `sys_oper_log` VALUES (12998, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:08:52'); INSERT INTO `sys_oper_log` VALUES (12999, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:08:52'); INSERT INTO `sys_oper_log` VALUES (13000, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:09:43'); INSERT INTO `sys_oper_log` VALUES (13001, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:09:43'); INSERT INTO `sys_oper_log` VALUES (13002, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:09:48'); INSERT INTO `sys_oper_log` VALUES (13003, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:09:48'); INSERT INTO `sys_oper_log` VALUES (13004, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:10:38'); INSERT INTO `sys_oper_log` VALUES (13005, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:10:38'); INSERT INTO `sys_oper_log` VALUES (13006, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 16:34:11\"}}', 0, '', '2022-03-21 17:12:22'); INSERT INTO `sys_oper_log` VALUES (13007, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647851651000,\"temperature\":\"9\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:12:22'); INSERT INTO `sys_oper_log` VALUES (13008, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 17:03:52\"}}', 0, '', '2022-03-21 17:12:49'); INSERT INTO `sys_oper_log` VALUES (13009, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647853969619,\"humidity\":\"93\",\"id\":1505834806643716098,\"province\":\"江西\",\"reporttime\":1647853432000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:12:49'); INSERT INTO `sys_oper_log` VALUES (13010, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647853969619,\"humidity\":\"93\",\"id\":1505834806643716098,\"province\":\"江西\",\"reporttime\":1647853432000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:12:59'); INSERT INTO `sys_oper_log` VALUES (13011, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 17:03:52\"}}', 0, '', '2022-03-21 17:12:59'); INSERT INTO `sys_oper_log` VALUES (13012, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647853969619,\"humidity\":\"93\",\"id\":1505834806643716098,\"province\":\"江西\",\"reporttime\":1647853432000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-21 17:13:16'); INSERT INTO `sys_oper_log` VALUES (13013, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-21\",\"daypower\":\"4\",\"daytemp\":\"11\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周一\"},{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-21 17:03:52\"}}', 0, '', '2022-03-21 17:13:16'); INSERT INTO `sys_oper_log` VALUES (13014, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 12:34:05\"}}', 0, '', '2022-03-22 12:43:38'); INSERT INTO `sys_oper_log` VALUES (13015, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647924219486,\"humidity\":\"93\",\"id\":1506129455941931010,\"province\":\"江西\",\"reporttime\":1647923645000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 12:43:39'); INSERT INTO `sys_oper_log` VALUES (13016, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_juhui\",\"orderNum\":\"1\",\"menuName\":\"商城\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"mall\",\"children\":[],\"createTime\":1647314502000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2103,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-22 16:23:41'); INSERT INTO `sys_oper_log` VALUES (13017, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_juhui\",\"orderNum\":\"1\",\"menuName\":\"商城\",\"params\":{},\"parentId\":0,\"isCache\":\"0\",\"path\":\"mall\",\"children\":[],\"createTime\":1647314502000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2103,\"menuType\":\"M\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-22 16:23:41'); INSERT INTO `sys_oper_log` VALUES (13018, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647936594000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 16:23:45'); INSERT INTO `sys_oper_log` VALUES (13019, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:09:55\"}}', 0, '', '2022-03-22 16:23:45'); INSERT INTO `sys_oper_log` VALUES (13020, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"theme\",\"orderNum\":\"4\",\"menuName\":\"仓库系统\",\"params\":{},\"parentId\":2103,\"isCache\":\"0\",\"path\":\"ware\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-22 16:25:42'); INSERT INTO `sys_oper_log` VALUES (13021, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"textarea\",\"orderNum\":\"1\",\"menuName\":\"仓库维护\",\"params\":{},\"parentId\":2124,\"isCache\":\"0\",\"path\":\"ware-maintain\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-22 16:38:18'); INSERT INTO `sys_oper_log` VALUES (13022, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:41:33'); INSERT INTO `sys_oper_log` VALUES (13023, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:41:34'); INSERT INTO `sys_oper_log` VALUES (13024, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:46:24'); INSERT INTO `sys_oper_log` VALUES (13025, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:46:24'); INSERT INTO `sys_oper_log` VALUES (13026, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:46:26'); INSERT INTO `sys_oper_log` VALUES (13027, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:46:26'); INSERT INTO `sys_oper_log` VALUES (13028, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"textarea\",\"orderNum\":\"1\",\"menuName\":\"仓库维护\",\"params\":{},\"parentId\":2124,\"isCache\":\"0\",\"path\":\"ware-maintain\",\"component\":\"mall/ware/wareinfo/wareinfo\",\"children\":[],\"createTime\":1647938298000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2125,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-22 16:47:01'); INSERT INTO `sys_oper_log` VALUES (13029, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:47:03'); INSERT INTO `sys_oper_log` VALUES (13030, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:47:03'); INSERT INTO `sys_oper_log` VALUES (13031, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:47:04'); INSERT INTO `sys_oper_log` VALUES (13032, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:47:04'); INSERT INTO `sys_oper_log` VALUES (13033, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:47:09'); INSERT INTO `sys_oper_log` VALUES (13034, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:47:09'); INSERT INTO `sys_oper_log` VALUES (13035, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:47:40'); INSERT INTO `sys_oper_log` VALUES (13036, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:47:40'); INSERT INTO `sys_oper_log` VALUES (13037, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:48:12'); INSERT INTO `sys_oper_log` VALUES (13038, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:48:12'); INSERT INTO `sys_oper_log` VALUES (13039, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:48:34'); INSERT INTO `sys_oper_log` VALUES (13040, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:48:34'); INSERT INTO `sys_oper_log` VALUES (13041, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:50:23'); INSERT INTO `sys_oper_log` VALUES (13042, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:50:23'); INSERT INTO `sys_oper_log` VALUES (13043, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:50:43'); INSERT INTO `sys_oper_log` VALUES (13044, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:50:43'); INSERT INTO `sys_oper_log` VALUES (13045, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:51:31'); INSERT INTO `sys_oper_log` VALUES (13046, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:51:31'); INSERT INTO `sys_oper_log` VALUES (13047, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 16:34:03\"}}', 0, '', '2022-03-22 16:51:52'); INSERT INTO `sys_oper_log` VALUES (13048, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"94\",\"province\":\"江西\",\"reporttime\":1647938043000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"5\"}}', 0, '', '2022-03-22 16:51:52'); INSERT INTO `sys_oper_log` VALUES (13049, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647939928504,\"humidity\":\"93\",\"id\":1506195344309604353,\"province\":\"江西\",\"reporttime\":1647939840000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-22 17:05:28'); INSERT INTO `sys_oper_log` VALUES (13050, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 17:04:00\"}}', 0, '', '2022-03-22 17:05:28'); INSERT INTO `sys_oper_log` VALUES (13051, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647939928504,\"humidity\":\"93\",\"id\":1506195344309604353,\"province\":\"江西\",\"reporttime\":1647939840000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-22 17:06:25'); INSERT INTO `sys_oper_log` VALUES (13052, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 17:04:00\"}}', 0, '', '2022-03-22 17:06:25'); INSERT INTO `sys_oper_log` VALUES (13053, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647939840000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-22 17:23:02'); INSERT INTO `sys_oper_log` VALUES (13054, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 17:04:00\"}}', 0, '', '2022-03-22 17:23:02'); INSERT INTO `sys_oper_log` VALUES (13055, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647939840000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-22 17:23:49'); INSERT INTO `sys_oper_log` VALUES (13056, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 17:04:00\"}}', 0, '', '2022-03-22 17:23:49'); INSERT INTO `sys_oper_log` VALUES (13057, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"time-range\",\"orderNum\":\"3\",\"menuName\":\"通用数据\",\"params\":{},\"parentId\":2000,\"isCache\":\"0\",\"path\":\"common-data\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-22 17:29:53'); INSERT INTO `sys_oper_log` VALUES (13058, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"nested\",\"orderNum\":\"1\",\"menuName\":\"区域管理\",\"params\":{},\"parentId\":2126,\"isCache\":\"0\",\"path\":\"area-data\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-22 17:30:30'); INSERT INTO `sys_oper_log` VALUES (13059, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647939840000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-22 17:30:35'); INSERT INTO `sys_oper_log` VALUES (13060, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 17:04:00\"}}', 0, '', '2022-03-22 17:30:35'); INSERT INTO `sys_oper_log` VALUES (13061, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"93\",\"province\":\"江西\",\"reporttime\":1647939840000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"4\"}}', 0, '', '2022-03-22 17:30:57'); INSERT INTO `sys_oper_log` VALUES (13062, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"7\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"小雨\",\"daywind\":\"南\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"中雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 17:04:00\"}}', 0, '', '2022-03-22 17:30:57'); INSERT INTO `sys_oper_log` VALUES (13063, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 21:40:11\"}}', 0, '', '2022-03-22 21:52:41'); INSERT INTO `sys_oper_log` VALUES (13064, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647957161621,\"humidity\":\"93\",\"id\":1506267625224396801,\"province\":\"江西\",\"reporttime\":1647956411000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 21:52:41'); INSERT INTO `sys_oper_log` VALUES (13065, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647957161621,\"humidity\":\"93\",\"id\":1506267625224396801,\"province\":\"江西\",\"reporttime\":1647956411000,\"temperature\":\"8\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 21:52:54'); INSERT INTO `sys_oper_log` VALUES (13066, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 21:40:11\"}}', 0, '', '2022-03-22 21:52:54'); INSERT INTO `sys_oper_log` VALUES (13067, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 22:34:06\"}}', 0, '', '2022-03-22 22:45:51'); INSERT INTO `sys_oper_log` VALUES (13068, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1647959646000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"4\"}}', 0, '', '2022-03-22 22:45:51'); INSERT INTO `sys_oper_log` VALUES (13069, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"nested\",\"orderNum\":\"1\",\"menuName\":\"区域管理\",\"params\":{},\"parentId\":2126,\"isCache\":\"0\",\"path\":\"area-data\",\"component\":\"business/openapi/commondata/Area\",\"children\":[],\"createTime\":1647941430000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2127,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-22 22:48:44'); INSERT INTO `sys_oper_log` VALUES (13070, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:03:56\"}}', 0, '', '2022-03-22 23:24:32'); INSERT INTO `sys_oper_log` VALUES (13071, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647961436000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:24:32'); INSERT INTO `sys_oper_log` VALUES (13072, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647961436000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:24:34'); INSERT INTO `sys_oper_log` VALUES (13073, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:03:56\"}}', 0, '', '2022-03-22 23:24:34'); INSERT INTO `sys_oper_log` VALUES (13074, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:03:56\"}}', 0, '', '2022-03-22 23:25:44'); INSERT INTO `sys_oper_log` VALUES (13075, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647961436000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:25:44'); INSERT INTO `sys_oper_log` VALUES (13076, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:03:56\"}}', 0, '', '2022-03-22 23:26:46'); INSERT INTO `sys_oper_log` VALUES (13077, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647961436000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:26:46'); INSERT INTO `sys_oper_log` VALUES (13078, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:03:56\"}}', 0, '', '2022-03-22 23:30:24'); INSERT INTO `sys_oper_log` VALUES (13079, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647961436000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:30:24'); INSERT INTO `sys_oper_log` VALUES (13080, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647961436000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:31:01'); INSERT INTO `sys_oper_log` VALUES (13081, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:03:56\"}}', 0, '', '2022-03-22 23:31:01'); INSERT INTO `sys_oper_log` VALUES (13082, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:42:44'); INSERT INTO `sys_oper_log` VALUES (13083, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:42:44'); INSERT INTO `sys_oper_log` VALUES (13084, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:44:18'); INSERT INTO `sys_oper_log` VALUES (13085, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:44:18'); INSERT INTO `sys_oper_log` VALUES (13086, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:45:03'); INSERT INTO `sys_oper_log` VALUES (13087, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:45:03'); INSERT INTO `sys_oper_log` VALUES (13088, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:45:48'); INSERT INTO `sys_oper_log` VALUES (13089, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:45:48'); INSERT INTO `sys_oper_log` VALUES (13090, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:46:43'); INSERT INTO `sys_oper_log` VALUES (13091, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:46:43'); INSERT INTO `sys_oper_log` VALUES (13092, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:47:07'); INSERT INTO `sys_oper_log` VALUES (13093, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:47:07'); INSERT INTO `sys_oper_log` VALUES (13094, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:48:11'); INSERT INTO `sys_oper_log` VALUES (13095, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:48:11'); INSERT INTO `sys_oper_log` VALUES (13096, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:50:11'); INSERT INTO `sys_oper_log` VALUES (13097, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:50:11'); INSERT INTO `sys_oper_log` VALUES (13098, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:50:34'); INSERT INTO `sys_oper_log` VALUES (13099, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:50:34'); INSERT INTO `sys_oper_log` VALUES (13100, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:51:50'); INSERT INTO `sys_oper_log` VALUES (13101, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:51:50'); INSERT INTO `sys_oper_log` VALUES (13102, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:52:25'); INSERT INTO `sys_oper_log` VALUES (13103, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:52:25'); INSERT INTO `sys_oper_log` VALUES (13104, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:53:54'); INSERT INTO `sys_oper_log` VALUES (13105, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:53:54'); INSERT INTO `sys_oper_log` VALUES (13106, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:54:17'); INSERT INTO `sys_oper_log` VALUES (13107, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:54:17'); INSERT INTO `sys_oper_log` VALUES (13108, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:54:26'); INSERT INTO `sys_oper_log` VALUES (13109, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:54:26'); INSERT INTO `sys_oper_log` VALUES (13110, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:59:23'); INSERT INTO `sys_oper_log` VALUES (13111, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:59:23'); INSERT INTO `sys_oper_log` VALUES (13112, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-22 23:59:37'); INSERT INTO `sys_oper_log` VALUES (13113, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-22 23:59:37'); INSERT INTO `sys_oper_log` VALUES (13114, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:02:31'); INSERT INTO `sys_oper_log` VALUES (13115, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:02:31'); INSERT INTO `sys_oper_log` VALUES (13116, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:02:44'); INSERT INTO `sys_oper_log` VALUES (13117, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:02:44'); INSERT INTO `sys_oper_log` VALUES (13118, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:03:26'); INSERT INTO `sys_oper_log` VALUES (13119, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:03:26'); INSERT INTO `sys_oper_log` VALUES (13120, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:04:27'); INSERT INTO `sys_oper_log` VALUES (13121, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:04:27'); INSERT INTO `sys_oper_log` VALUES (13122, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:04:53'); INSERT INTO `sys_oper_log` VALUES (13123, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:04:53'); INSERT INTO `sys_oper_log` VALUES (13124, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:06:02'); INSERT INTO `sys_oper_log` VALUES (13125, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:06:02'); INSERT INTO `sys_oper_log` VALUES (13126, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:08:22'); INSERT INTO `sys_oper_log` VALUES (13127, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:08:22'); INSERT INTO `sys_oper_log` VALUES (13128, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:09:54'); INSERT INTO `sys_oper_log` VALUES (13129, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:09:54'); INSERT INTO `sys_oper_log` VALUES (13130, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:10:50'); INSERT INTO `sys_oper_log` VALUES (13131, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:10:50'); INSERT INTO `sys_oper_log` VALUES (13132, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:11:06'); INSERT INTO `sys_oper_log` VALUES (13133, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:11:06'); INSERT INTO `sys_oper_log` VALUES (13134, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647963600000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:11:20'); INSERT INTO `sys_oper_log` VALUES (13135, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-22 23:40:00\"}}', 0, '', '2022-03-23 00:11:20'); INSERT INTO `sys_oper_log` VALUES (13136, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:15:21'); INSERT INTO `sys_oper_log` VALUES (13137, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647965721689,\"humidity\":\"90\",\"id\":1506303528760238082,\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:15:21'); INSERT INTO `sys_oper_log` VALUES (13138, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647965721689,\"humidity\":\"90\",\"id\":1506303528760238082,\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:15:46'); INSERT INTO `sys_oper_log` VALUES (13139, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:15:46'); INSERT INTO `sys_oper_log` VALUES (13140, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647965721689,\"humidity\":\"90\",\"id\":1506303528760238082,\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:20:58'); INSERT INTO `sys_oper_log` VALUES (13141, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:20:58'); INSERT INTO `sys_oper_log` VALUES (13142, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647965721689,\"humidity\":\"90\",\"id\":1506303528760238082,\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:21:29'); INSERT INTO `sys_oper_log` VALUES (13143, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:21:29'); INSERT INTO `sys_oper_log` VALUES (13144, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647965721689,\"humidity\":\"90\",\"id\":1506303528760238082,\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:22:09'); INSERT INTO `sys_oper_log` VALUES (13145, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:22:09'); INSERT INTO `sys_oper_log` VALUES (13146, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:25:50'); INSERT INTO `sys_oper_log` VALUES (13147, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:25:50'); INSERT INTO `sys_oper_log` VALUES (13148, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:26:12'); INSERT INTO `sys_oper_log` VALUES (13149, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:26:12'); INSERT INTO `sys_oper_log` VALUES (13150, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:26:28'); INSERT INTO `sys_oper_log` VALUES (13151, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:26:28'); INSERT INTO `sys_oper_log` VALUES (13152, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:28:29'); INSERT INTO `sys_oper_log` VALUES (13153, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:28:29'); INSERT INTO `sys_oper_log` VALUES (13154, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:29:02'); INSERT INTO `sys_oper_log` VALUES (13155, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:29:02'); INSERT INTO `sys_oper_log` VALUES (13156, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:29:54'); INSERT INTO `sys_oper_log` VALUES (13157, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:29:54'); INSERT INTO `sys_oper_log` VALUES (13158, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:30:05'); INSERT INTO `sys_oper_log` VALUES (13159, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:30:05'); INSERT INTO `sys_oper_log` VALUES (13160, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:31:45'); INSERT INTO `sys_oper_log` VALUES (13161, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:31:45'); INSERT INTO `sys_oper_log` VALUES (13162, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:32:57'); INSERT INTO `sys_oper_log` VALUES (13163, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:32:57'); INSERT INTO `sys_oper_log` VALUES (13164, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1647965398000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:33:33'); INSERT INTO `sys_oper_log` VALUES (13165, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:09:58\"}}', 0, '', '2022-03-23 00:33:33'); INSERT INTO `sys_oper_log` VALUES (13166, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:34:05\"}}', 0, '', '2022-03-23 00:36:58'); INSERT INTO `sys_oper_log` VALUES (13167, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647967018895,\"humidity\":\"89\",\"id\":1506308969644941313,\"province\":\"江西\",\"reporttime\":1647966845000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:36:58'); INSERT INTO `sys_oper_log` VALUES (13168, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647967018895,\"humidity\":\"89\",\"id\":1506308969644941313,\"province\":\"江西\",\"reporttime\":1647966845000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:37:25'); INSERT INTO `sys_oper_log` VALUES (13169, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:34:05\"}}', 0, '', '2022-03-23 00:37:25'); INSERT INTO `sys_oper_log` VALUES (13170, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647967018895,\"humidity\":\"89\",\"id\":1506308969644941313,\"province\":\"江西\",\"reporttime\":1647966845000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:37:33'); INSERT INTO `sys_oper_log` VALUES (13171, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:34:05\"}}', 0, '', '2022-03-23 00:37:33'); INSERT INTO `sys_oper_log` VALUES (13172, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:34:05\"}}', 0, '', '2022-03-23 00:39:40'); INSERT INTO `sys_oper_log` VALUES (13173, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647967018895,\"humidity\":\"89\",\"id\":1506308969644941313,\"province\":\"江西\",\"reporttime\":1647966845000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:39:40'); INSERT INTO `sys_oper_log` VALUES (13174, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:34:05\"}}', 0, '', '2022-03-23 00:41:29'); INSERT INTO `sys_oper_log` VALUES (13175, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647967018895,\"humidity\":\"89\",\"id\":1506308969644941313,\"province\":\"江西\",\"reporttime\":1647966845000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:41:29'); INSERT INTO `sys_oper_log` VALUES (13176, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"nested\",\"orderNum\":\"1\",\"menuName\":\"区域数据\",\"params\":{},\"parentId\":2126,\"isCache\":\"0\",\"path\":\"area-data\",\"component\":\"business/openapi/commondata/Area\",\"children\":[],\"createTime\":1647941430000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2127,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 00:43:15'); INSERT INTO `sys_oper_log` VALUES (13177, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1647967018895,\"humidity\":\"89\",\"id\":1506308969644941313,\"province\":\"江西\",\"reporttime\":1647966845000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:43:21'); INSERT INTO `sys_oper_log` VALUES (13178, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:34:05\"}}', 0, '', '2022-03-23 00:43:21'); INSERT INTO `sys_oper_log` VALUES (13179, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"The more one judges, the less one loves.\",\"dataId\":3942,\"imgurl\":\"\",\"note\":\"一个人评判的愈多,爱的就愈少。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-23 00:46:34'); INSERT INTO `sys_oper_log` VALUES (13180, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"儿子屁颠屁颠跑来跟我说:爸,我们老师说明天要补习,要交100块的Q币,我望着他手机里的王者荣耀,陷入了深深的沉思。。。\",\"createTime\":1647967594853,\"id\":1506311385408856066,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-23 00:46:34'); INSERT INTO `sys_oper_log` VALUES (13181, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"nested\",\"orderNum\":\"1\",\"menuName\":\"区域数据\",\"params\":{},\"parentId\":2126,\"isCache\":\"0\",\"path\":\"area-data\",\"component\":\"business/openapi/commondata/Area\",\"children\":[],\"createTime\":1647941430000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2127,\"menuType\":\"C\",\"perms\":\"openapi:area:list\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 00:48:32'); INSERT INTO `sys_oper_log` VALUES (13182, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"orderNum\":\"1\",\"menuName\":\"联网获取新数据\",\"params\":{},\"parentId\":2127,\"isCache\":\"0\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"F\",\"perms\":\"openapi:area:rest\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 00:49:07'); INSERT INTO `sys_oper_log` VALUES (13183, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:34:05\"}}', 0, '', '2022-03-23 00:49:48'); INSERT INTO `sys_oper_log` VALUES (13184, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647966845000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:49:48'); INSERT INTO `sys_oper_log` VALUES (13185, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:34:05\"}}', 0, '', '2022-03-23 00:54:25'); INSERT INTO `sys_oper_log` VALUES (13186, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647966845000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:54:25'); INSERT INTO `sys_oper_log` VALUES (13187, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-22\",\"daypower\":\"4\",\"daytemp\":\"10\",\"dayweather\":\"中雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"8\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周二\"},{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 00:34:05\"}}', 0, '', '2022-03-23 00:54:59'); INSERT INTO `sys_oper_log` VALUES (13188, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1647966845000,\"temperature\":\"8\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 00:54:59'); INSERT INTO `sys_oper_log` VALUES (13189, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"144KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut81vzwij31c00u0n10.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uqezevj6j31c00u0456.jpg\"},{\"imageFileLength\":\"167KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utaytucmj31hc0u0jvq.jpg\"},{\"imageFileLength\":\"189KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut58vj0jj31c00u0afm.jpg\"},{\"imageFileLength\":\"116KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfckp37j31c00u041k.jpg\"},{\"imageFileLength\":\"186KB\",\"imageSize\":\"1600x900\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g3jt4utcg2j318g0p0gqt.jpg\"},{\"imageFileLength\":\"221KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1ut8nktemj31hc0u0grf.jpg\"},{\"imageFileLength\":\"137KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb7o6pzj31c00u00wj.jpg\"},{\"imageFileLength\":\"178KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1ut7y18ixj31hc0u0dkg.jpg\"},{\"imageFileLength\":\"193KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1uq5ilfnmj31c00u0435.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-23 00:56:23'); INSERT INTO `sys_oper_log` VALUES (13190, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 13:40:15\"}}', 0, '', '2022-03-23 13:53:46'); INSERT INTO `sys_oper_log` VALUES (13191, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648014826505,\"humidity\":\"58\",\"id\":1506509489311551489,\"province\":\"江西\",\"reporttime\":1648014015000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 13:53:46'); INSERT INTO `sys_oper_log` VALUES (13192, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 13:40:15\"}}', 0, '', '2022-03-23 14:01:11'); INSERT INTO `sys_oper_log` VALUES (13193, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648014826505,\"humidity\":\"58\",\"id\":1506509489311551489,\"province\":\"江西\",\"reporttime\":1648014015000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 14:01:11'); INSERT INTO `sys_oper_log` VALUES (13194, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1648017246000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:01:07'); INSERT INTO `sys_oper_log` VALUES (13195, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 14:34:06\"}}', 0, '', '2022-03-23 15:01:08'); INSERT INTO `sys_oper_log` VALUES (13196, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 14:34:06\"}}', 0, '', '2022-03-23 15:07:29'); INSERT INTO `sys_oper_log` VALUES (13197, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1648017246000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:07:29'); INSERT INTO `sys_oper_log` VALUES (13198, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:21:16'); INSERT INTO `sys_oper_log` VALUES (13199, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:21:16'); INSERT INTO `sys_oper_log` VALUES (13200, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:21:33'); INSERT INTO `sys_oper_log` VALUES (13201, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:21:33'); INSERT INTO `sys_oper_log` VALUES (13202, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:22:37'); INSERT INTO `sys_oper_log` VALUES (13203, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:22:37'); INSERT INTO `sys_oper_log` VALUES (13204, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:23:27'); INSERT INTO `sys_oper_log` VALUES (13205, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:23:27'); INSERT INTO `sys_oper_log` VALUES (13206, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:25:54'); INSERT INTO `sys_oper_log` VALUES (13207, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:25:54'); INSERT INTO `sys_oper_log` VALUES (13208, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:28:04'); INSERT INTO `sys_oper_log` VALUES (13209, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:28:04'); INSERT INTO `sys_oper_log` VALUES (13210, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:31:06'); INSERT INTO `sys_oper_log` VALUES (13211, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:31:06'); INSERT INTO `sys_oper_log` VALUES (13212, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:31:34'); INSERT INTO `sys_oper_log` VALUES (13213, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:31:34'); INSERT INTO `sys_oper_log` VALUES (13214, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:32:02'); INSERT INTO `sys_oper_log` VALUES (13215, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:32:02'); INSERT INTO `sys_oper_log` VALUES (13216, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:32:44'); INSERT INTO `sys_oper_log` VALUES (13217, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:32:44'); INSERT INTO `sys_oper_log` VALUES (13218, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:32:56'); INSERT INTO `sys_oper_log` VALUES (13219, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:32:56'); INSERT INTO `sys_oper_log` VALUES (13220, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:36:32'); INSERT INTO `sys_oper_log` VALUES (13221, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:36:32'); INSERT INTO `sys_oper_log` VALUES (13222, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:36:51'); INSERT INTO `sys_oper_log` VALUES (13223, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:36:51'); INSERT INTO `sys_oper_log` VALUES (13224, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:03:58\"}}', 0, '', '2022-03-23 15:38:28'); INSERT INTO `sys_oper_log` VALUES (13225, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648019038000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:38:28'); INSERT INTO `sys_oper_log` VALUES (13226, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648022017220,\"humidity\":\"59\",\"id\":1506539649331052546,\"province\":\"江西\",\"reporttime\":1648021206000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:53:37'); INSERT INTO `sys_oper_log` VALUES (13227, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:40:06\"}}', 0, '', '2022-03-23 15:53:37'); INSERT INTO `sys_oper_log` VALUES (13228, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:40:06\"}}', 0, '', '2022-03-23 15:54:04'); INSERT INTO `sys_oper_log` VALUES (13229, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648022017220,\"humidity\":\"59\",\"id\":1506539649331052546,\"province\":\"江西\",\"reporttime\":1648021206000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:54:04'); INSERT INTO `sys_oper_log` VALUES (13230, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:40:06\"}}', 0, '', '2022-03-23 15:54:33'); INSERT INTO `sys_oper_log` VALUES (13231, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648022017220,\"humidity\":\"59\",\"id\":1506539649331052546,\"province\":\"江西\",\"reporttime\":1648021206000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:54:33'); INSERT INTO `sys_oper_log` VALUES (13232, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:40:06\"}}', 0, '', '2022-03-23 15:56:16'); INSERT INTO `sys_oper_log` VALUES (13233, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648022017220,\"humidity\":\"59\",\"id\":1506539649331052546,\"province\":\"江西\",\"reporttime\":1648021206000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:56:16'); INSERT INTO `sys_oper_log` VALUES (13234, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:40:06\"}}', 0, '', '2022-03-23 15:56:40'); INSERT INTO `sys_oper_log` VALUES (13235, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648022017220,\"humidity\":\"59\",\"id\":1506539649331052546,\"province\":\"江西\",\"reporttime\":1648021206000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:56:40'); INSERT INTO `sys_oper_log` VALUES (13236, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648022017220,\"humidity\":\"59\",\"id\":1506539649331052546,\"province\":\"江西\",\"reporttime\":1648021206000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 15:57:02'); INSERT INTO `sys_oper_log` VALUES (13237, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:40:06\"}}', 0, '', '2022-03-23 15:57:02'); INSERT INTO `sys_oper_log` VALUES (13238, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:40:06\"}}', 0, '', '2022-03-23 16:09:21'); INSERT INTO `sys_oper_log` VALUES (13239, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1648021206000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 16:09:21'); INSERT INTO `sys_oper_log` VALUES (13240, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"59\",\"province\":\"江西\",\"reporttime\":1648021206000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 16:13:04'); INSERT INTO `sys_oper_log` VALUES (13241, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 15:40:06\"}}', 0, '', '2022-03-23 16:13:04'); INSERT INTO `sys_oper_log` VALUES (13242, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 16:10:08\"}}', 0, '', '2022-03-23 16:20:03'); INSERT INTO `sys_oper_log` VALUES (13243, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"58\",\"province\":\"江西\",\"reporttime\":1648023008000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 16:20:03'); INSERT INTO `sys_oper_log` VALUES (13244, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 16:34:01\"}}', 0, '', '2022-03-23 16:43:58'); INSERT INTO `sys_oper_log` VALUES (13245, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1648024441000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 16:43:58'); INSERT INTO `sys_oper_log` VALUES (13246, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 16:34:01\"}}', 0, '', '2022-03-23 16:45:44'); INSERT INTO `sys_oper_log` VALUES (13247, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1648024441000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 16:45:44'); INSERT INTO `sys_oper_log` VALUES (13248, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1648024441000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 16:57:05'); INSERT INTO `sys_oper_log` VALUES (13249, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 16:34:01\"}}', 0, '', '2022-03-23 16:57:05'); INSERT INTO `sys_oper_log` VALUES (13250, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 16:34:01\"}}', 0, '', '2022-03-23 16:57:14'); INSERT INTO `sys_oper_log` VALUES (13251, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1648024441000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 16:57:14'); INSERT INTO `sys_oper_log` VALUES (13252, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 16:34:01\"}}', 0, '', '2022-03-23 16:58:53'); INSERT INTO `sys_oper_log` VALUES (13253, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1648024441000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 16:58:53'); INSERT INTO `sys_oper_log` VALUES (13254, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 16:34:01\"}}', 0, '', '2022-03-23 16:59:21'); INSERT INTO `sys_oper_log` VALUES (13255, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1648024441000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 16:59:21'); INSERT INTO `sys_oper_log` VALUES (13256, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1648024441000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:00:22'); INSERT INTO `sys_oper_log` VALUES (13257, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 16:34:01\"}}', 0, '', '2022-03-23 17:00:22'); INSERT INTO `sys_oper_log` VALUES (13258, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 16:34:01\"}}', 0, '', '2022-03-23 17:05:50'); INSERT INTO `sys_oper_log` VALUES (13259, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"60\",\"province\":\"江西\",\"reporttime\":1648024441000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:05:50'); INSERT INTO `sys_oper_log` VALUES (13260, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:07:18'); INSERT INTO `sys_oper_log` VALUES (13261, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648026438242,\"humidity\":\"61\",\"id\":1506558192483254274,\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:07:18'); INSERT INTO `sys_oper_log` VALUES (13262, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648026438242,\"humidity\":\"61\",\"id\":1506558192483254274,\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:11:33'); INSERT INTO `sys_oper_log` VALUES (13263, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:11:33'); INSERT INTO `sys_oper_log` VALUES (13264, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648026438242,\"humidity\":\"61\",\"id\":1506558192483254274,\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:12:18'); INSERT INTO `sys_oper_log` VALUES (13265, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:12:18'); INSERT INTO `sys_oper_log` VALUES (13266, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:15:28'); INSERT INTO `sys_oper_log` VALUES (13267, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648026438242,\"humidity\":\"61\",\"id\":1506558192483254274,\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:15:28'); INSERT INTO `sys_oper_log` VALUES (13268, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:16:05'); INSERT INTO `sys_oper_log` VALUES (13269, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648026438242,\"humidity\":\"61\",\"id\":1506558192483254274,\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:16:05'); INSERT INTO `sys_oper_log` VALUES (13270, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648026438242,\"humidity\":\"61\",\"id\":1506558192483254274,\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:17:06'); INSERT INTO `sys_oper_log` VALUES (13271, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:17:06'); INSERT INTO `sys_oper_log` VALUES (13272, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:19:52'); INSERT INTO `sys_oper_log` VALUES (13273, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:19:52'); INSERT INTO `sys_oper_log` VALUES (13274, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:21:40'); INSERT INTO `sys_oper_log` VALUES (13275, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:21:40'); INSERT INTO `sys_oper_log` VALUES (13276, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:24:46'); INSERT INTO `sys_oper_log` VALUES (13277, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:24:46'); INSERT INTO `sys_oper_log` VALUES (13278, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:25:48'); INSERT INTO `sys_oper_log` VALUES (13279, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:25:48'); INSERT INTO `sys_oper_log` VALUES (13280, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:28:19'); INSERT INTO `sys_oper_log` VALUES (13281, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:28:19'); INSERT INTO `sys_oper_log` VALUES (13282, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:33:04'); INSERT INTO `sys_oper_log` VALUES (13283, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:33:04'); INSERT INTO `sys_oper_log` VALUES (13284, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:34:40'); INSERT INTO `sys_oper_log` VALUES (13285, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:34:40'); INSERT INTO `sys_oper_log` VALUES (13286, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:35:54'); INSERT INTO `sys_oper_log` VALUES (13287, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:35:54'); INSERT INTO `sys_oper_log` VALUES (13288, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:37:19'); INSERT INTO `sys_oper_log` VALUES (13289, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:37:19'); INSERT INTO `sys_oper_log` VALUES (13290, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:37:24'); INSERT INTO `sys_oper_log` VALUES (13291, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:37:24'); INSERT INTO `sys_oper_log` VALUES (13292, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:38:03'); INSERT INTO `sys_oper_log` VALUES (13293, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:38:03'); INSERT INTO `sys_oper_log` VALUES (13294, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:40:55'); INSERT INTO `sys_oper_log` VALUES (13295, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:40:55'); INSERT INTO `sys_oper_log` VALUES (13296, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:03:59\"}}', 0, '', '2022-03-23 17:42:31'); INSERT INTO `sys_oper_log` VALUES (13297, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648026239000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:42:31'); INSERT INTO `sys_oper_log` VALUES (13298, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648029063109,\"humidity\":\"62\",\"id\":1506569201952440321,\"province\":\"江西\",\"reporttime\":1648028412000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:51:03'); INSERT INTO `sys_oper_log` VALUES (13299, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:40:12\"}}', 0, '', '2022-03-23 17:51:03'); INSERT INTO `sys_oper_log` VALUES (13300, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648029063109,\"humidity\":\"62\",\"id\":1506569201952440321,\"province\":\"江西\",\"reporttime\":1648028412000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:55:29'); INSERT INTO `sys_oper_log` VALUES (13301, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:40:12\"}}', 0, '', '2022-03-23 17:55:29'); INSERT INTO `sys_oper_log` VALUES (13302, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:40:12\"}}', 0, '', '2022-03-23 17:55:56'); INSERT INTO `sys_oper_log` VALUES (13303, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648029063109,\"humidity\":\"62\",\"id\":1506569201952440321,\"province\":\"江西\",\"reporttime\":1648028412000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:55:56'); INSERT INTO `sys_oper_log` VALUES (13304, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:40:12\"}}', 0, '', '2022-03-23 17:56:39'); INSERT INTO `sys_oper_log` VALUES (13305, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648029063109,\"humidity\":\"62\",\"id\":1506569201952440321,\"province\":\"江西\",\"reporttime\":1648028412000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:56:39'); INSERT INTO `sys_oper_log` VALUES (13306, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648029063109,\"humidity\":\"62\",\"id\":1506569201952440321,\"province\":\"江西\",\"reporttime\":1648028412000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:57:25'); INSERT INTO `sys_oper_log` VALUES (13307, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:40:12\"}}', 0, '', '2022-03-23 17:57:25'); INSERT INTO `sys_oper_log` VALUES (13308, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:40:12\"}}', 0, '', '2022-03-23 17:57:49'); INSERT INTO `sys_oper_log` VALUES (13309, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648029063109,\"humidity\":\"62\",\"id\":1506569201952440321,\"province\":\"江西\",\"reporttime\":1648028412000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:57:49'); INSERT INTO `sys_oper_log` VALUES (13310, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:40:12\"}}', 0, '', '2022-03-23 17:58:02'); INSERT INTO `sys_oper_log` VALUES (13311, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648029063109,\"humidity\":\"62\",\"id\":1506569201952440321,\"province\":\"江西\",\"reporttime\":1648028412000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:58:02'); INSERT INTO `sys_oper_log` VALUES (13312, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648029063109,\"humidity\":\"62\",\"id\":1506569201952440321,\"province\":\"江西\",\"reporttime\":1648028412000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 17:58:19'); INSERT INTO `sys_oper_log` VALUES (13313, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 17:40:12\"}}', 0, '', '2022-03-23 17:58:19'); INSERT INTO `sys_oper_log` VALUES (13314, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:15:09'); INSERT INTO `sys_oper_log` VALUES (13315, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648030509509,\"humidity\":\"65\",\"id\":1506575268589551617,\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:15:09'); INSERT INTO `sys_oper_log` VALUES (13316, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:15:41'); INSERT INTO `sys_oper_log` VALUES (13317, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648030509509,\"humidity\":\"65\",\"id\":1506575268589551617,\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:15:41'); INSERT INTO `sys_oper_log` VALUES (13318, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:16:59'); INSERT INTO `sys_oper_log` VALUES (13319, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648030509509,\"humidity\":\"65\",\"id\":1506575268589551617,\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:16:59'); INSERT INTO `sys_oper_log` VALUES (13320, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:17:57'); INSERT INTO `sys_oper_log` VALUES (13321, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648030509509,\"humidity\":\"65\",\"id\":1506575268589551617,\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:17:57'); INSERT INTO `sys_oper_log` VALUES (13322, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:19:39'); INSERT INTO `sys_oper_log` VALUES (13323, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648030509509,\"humidity\":\"65\",\"id\":1506575268589551617,\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:19:39'); INSERT INTO `sys_oper_log` VALUES (13324, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648030509509,\"humidity\":\"65\",\"id\":1506575268589551617,\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:20:53'); INSERT INTO `sys_oper_log` VALUES (13325, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:20:53'); INSERT INTO `sys_oper_log` VALUES (13326, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:22:16'); INSERT INTO `sys_oper_log` VALUES (13327, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648030509509,\"humidity\":\"65\",\"id\":1506575268589551617,\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:22:16'); INSERT INTO `sys_oper_log` VALUES (13328, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648030509509,\"humidity\":\"65\",\"id\":1506575268589551617,\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:24:28'); INSERT INTO `sys_oper_log` VALUES (13329, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:24:28'); INSERT INTO `sys_oper_log` VALUES (13330, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:25:30'); INSERT INTO `sys_oper_log` VALUES (13331, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:25:30'); INSERT INTO `sys_oper_log` VALUES (13332, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:25:48'); INSERT INTO `sys_oper_log` VALUES (13333, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:25:48'); INSERT INTO `sys_oper_log` VALUES (13334, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:28:13'); INSERT INTO `sys_oper_log` VALUES (13335, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:28:13'); INSERT INTO `sys_oper_log` VALUES (13336, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:10:18\"}}', 0, '', '2022-03-23 18:30:23'); INSERT INTO `sys_oper_log` VALUES (13337, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1648030218000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:30:23'); INSERT INTO `sys_oper_log` VALUES (13338, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:37:38'); INSERT INTO `sys_oper_log` VALUES (13339, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648031858591,\"humidity\":\"69\",\"id\":1506580927049580545,\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:37:38'); INSERT INTO `sys_oper_log` VALUES (13340, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648031858591,\"humidity\":\"69\",\"id\":1506580927049580545,\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:38:31'); INSERT INTO `sys_oper_log` VALUES (13341, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:38:31'); INSERT INTO `sys_oper_log` VALUES (13342, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648031858591,\"humidity\":\"69\",\"id\":1506580927049580545,\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:38:45'); INSERT INTO `sys_oper_log` VALUES (13343, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:38:45'); INSERT INTO `sys_oper_log` VALUES (13344, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:43:00'); INSERT INTO `sys_oper_log` VALUES (13345, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648031858591,\"humidity\":\"69\",\"id\":1506580927049580545,\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:43:00'); INSERT INTO `sys_oper_log` VALUES (13346, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648031858591,\"humidity\":\"69\",\"id\":1506580927049580545,\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:43:15'); INSERT INTO `sys_oper_log` VALUES (13347, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:43:15'); INSERT INTO `sys_oper_log` VALUES (13348, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:43:35'); INSERT INTO `sys_oper_log` VALUES (13349, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648031858591,\"humidity\":\"69\",\"id\":1506580927049580545,\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:43:35'); INSERT INTO `sys_oper_log` VALUES (13350, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:45:40'); INSERT INTO `sys_oper_log` VALUES (13351, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648031858591,\"humidity\":\"69\",\"id\":1506580927049580545,\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:45:40'); INSERT INTO `sys_oper_log` VALUES (13352, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:48:52'); INSERT INTO `sys_oper_log` VALUES (13353, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:48:52'); INSERT INTO `sys_oper_log` VALUES (13354, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:52:48'); INSERT INTO `sys_oper_log` VALUES (13355, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:52:48'); INSERT INTO `sys_oper_log` VALUES (13356, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:53:15'); INSERT INTO `sys_oper_log` VALUES (13357, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:53:15'); INSERT INTO `sys_oper_log` VALUES (13358, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:55:39'); INSERT INTO `sys_oper_log` VALUES (13359, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:55:39'); INSERT INTO `sys_oper_log` VALUES (13360, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 18:57:44'); INSERT INTO `sys_oper_log` VALUES (13361, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 18:57:44'); INSERT INTO `sys_oper_log` VALUES (13362, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 18:33:55\"}}', 0, '', '2022-03-23 19:00:49'); INSERT INTO `sys_oper_log` VALUES (13363, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648031635000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 19:00:49'); INSERT INTO `sys_oper_log` VALUES (13364, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 19:04:11\"}}', 0, '', '2022-03-23 19:21:00'); INSERT INTO `sys_oper_log` VALUES (13365, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648033451000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 19:21:00'); INSERT INTO `sys_oper_log` VALUES (13366, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 20:34:12\"}}', 0, '', '2022-03-23 21:02:15'); INSERT INTO `sys_oper_log` VALUES (13367, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648038852000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:02:15'); INSERT INTO `sys_oper_log` VALUES (13368, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 20:34:12\"}}', 0, '', '2022-03-23 21:04:23'); INSERT INTO `sys_oper_log` VALUES (13369, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648038852000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:04:23'); INSERT INTO `sys_oper_log` VALUES (13370, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648038852000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:04:41'); INSERT INTO `sys_oper_log` VALUES (13371, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 20:34:12\"}}', 0, '', '2022-03-23 21:04:41'); INSERT INTO `sys_oper_log` VALUES (13372, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 20:34:12\"}}', 0, '', '2022-03-23 21:04:55'); INSERT INTO `sys_oper_log` VALUES (13373, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648038852000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:04:55'); INSERT INTO `sys_oper_log` VALUES (13374, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648038852000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:05:20'); INSERT INTO `sys_oper_log` VALUES (13375, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 20:34:12\"}}', 0, '', '2022-03-23 21:05:20'); INSERT INTO `sys_oper_log` VALUES (13376, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"7\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 20:34:12\"}}', 0, '', '2022-03-23 21:07:03'); INSERT INTO `sys_oper_log` VALUES (13377, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648038852000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:07:03'); INSERT INTO `sys_oper_log` VALUES (13378, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:13:27'); INSERT INTO `sys_oper_log` VALUES (13379, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648041207907,\"humidity\":\"69\",\"id\":1506620140902105090,\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:13:27'); INSERT INTO `sys_oper_log` VALUES (13380, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"post\",\"orderNum\":\"3\",\"menuName\":\"仓库库存\",\"params\":{},\"parentId\":2124,\"isCache\":\"0\",\"path\":\"ware-sku\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 21:14:04'); INSERT INTO `sys_oper_log` VALUES (13381, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"post\",\"orderNum\":\"3\",\"menuName\":\"仓库库存\",\"params\":{},\"parentId\":2124,\"isCache\":\"0\",\"path\":\"ware-sku\",\"component\":\"mall/ware/waresku/waresku\",\"children\":[],\"createTime\":1648041244000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2129,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 21:14:17'); INSERT INTO `sys_oper_log` VALUES (13382, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648041207907,\"humidity\":\"69\",\"id\":1506620140902105090,\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:14:19'); INSERT INTO `sys_oper_log` VALUES (13383, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:14:19'); INSERT INTO `sys_oper_log` VALUES (13384, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:14:26'); INSERT INTO `sys_oper_log` VALUES (13385, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648041207907,\"humidity\":\"69\",\"id\":1506620140902105090,\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:14:26'); INSERT INTO `sys_oper_log` VALUES (13386, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:15:43'); INSERT INTO `sys_oper_log` VALUES (13387, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648041207907,\"humidity\":\"69\",\"id\":1506620140902105090,\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:15:43'); INSERT INTO `sys_oper_log` VALUES (13388, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:15:52'); INSERT INTO `sys_oper_log` VALUES (13389, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648041207907,\"humidity\":\"69\",\"id\":1506620140902105090,\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:15:52'); INSERT INTO `sys_oper_log` VALUES (13390, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:16:27'); INSERT INTO `sys_oper_log` VALUES (13391, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648041207907,\"humidity\":\"69\",\"id\":1506620140902105090,\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:16:27'); INSERT INTO `sys_oper_log` VALUES (13392, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:18:09'); INSERT INTO `sys_oper_log` VALUES (13393, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648041207907,\"humidity\":\"69\",\"id\":1506620140902105090,\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:18:09'); INSERT INTO `sys_oper_log` VALUES (13394, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:19:06'); INSERT INTO `sys_oper_log` VALUES (13395, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648041207907,\"humidity\":\"69\",\"id\":1506620140902105090,\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:19:06'); INSERT INTO `sys_oper_log` VALUES (13396, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648041207907,\"humidity\":\"69\",\"id\":1506620140902105090,\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:20:11'); INSERT INTO `sys_oper_log` VALUES (13397, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:20:11'); INSERT INTO `sys_oper_log` VALUES (13398, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:24:00'); INSERT INTO `sys_oper_log` VALUES (13399, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:24:00'); INSERT INTO `sys_oper_log` VALUES (13400, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:25:48'); INSERT INTO `sys_oper_log` VALUES (13401, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:25:48'); INSERT INTO `sys_oper_log` VALUES (13402, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:26:03'); INSERT INTO `sys_oper_log` VALUES (13403, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:26:03'); INSERT INTO `sys_oper_log` VALUES (13404, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:29:34'); INSERT INTO `sys_oper_log` VALUES (13405, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:29:34'); INSERT INTO `sys_oper_log` VALUES (13406, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:03:59\"}}', 0, '', '2022-03-23 21:38:13'); INSERT INTO `sys_oper_log` VALUES (13407, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"69\",\"province\":\"江西\",\"reporttime\":1648040639000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:38:13'); INSERT INTO `sys_oper_log` VALUES (13408, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648043536238,\"humidity\":\"68\",\"id\":1506629906655297537,\"province\":\"江西\",\"reporttime\":1648042811000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:52:16'); INSERT INTO `sys_oper_log` VALUES (13409, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:40:11\"}}', 0, '', '2022-03-23 21:52:16'); INSERT INTO `sys_oper_log` VALUES (13410, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:40:11\"}}', 0, '', '2022-03-23 21:53:15'); INSERT INTO `sys_oper_log` VALUES (13411, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648043536238,\"humidity\":\"68\",\"id\":1506629906655297537,\"province\":\"江西\",\"reporttime\":1648042811000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:53:15'); INSERT INTO `sys_oper_log` VALUES (13412, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:40:11\"}}', 0, '', '2022-03-23 21:57:13'); INSERT INTO `sys_oper_log` VALUES (13413, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648043536238,\"humidity\":\"68\",\"id\":1506629906655297537,\"province\":\"江西\",\"reporttime\":1648042811000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 21:57:13'); INSERT INTO `sys_oper_log` VALUES (13414, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:40:11\"}}', 0, '', '2022-03-23 22:00:37'); INSERT INTO `sys_oper_log` VALUES (13415, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648043536238,\"humidity\":\"68\",\"id\":1506629906655297537,\"province\":\"江西\",\"reporttime\":1648042811000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:00:37'); INSERT INTO `sys_oper_log` VALUES (13416, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:40:11\"}}', 0, '', '2022-03-23 22:06:17'); INSERT INTO `sys_oper_log` VALUES (13417, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648042811000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:06:17'); INSERT INTO `sys_oper_log` VALUES (13418, '商品库存', 1, 'com.xjs.mall.ware.controller.WareSkuController.save()', 'POST', 1, 'admin', '', '/ware/waresku/save', '127.0.0.1', '', '{\"skuName\":\"小米12\",\"wareId\":1506588753864105985,\"stockLocked\":10,\"id\":1506633555838218242,\"stock\":999,\"skuId\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-23 22:06:46'); INSERT INTO `sys_oper_log` VALUES (13419, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:40:11\"}}', 0, '', '2022-03-23 22:13:09'); INSERT INTO `sys_oper_log` VALUES (13420, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648042811000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:13:09'); INSERT INTO `sys_oper_log` VALUES (13421, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648042811000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:13:55'); INSERT INTO `sys_oper_log` VALUES (13422, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:40:11\"}}', 0, '', '2022-03-23 22:13:55'); INSERT INTO `sys_oper_log` VALUES (13423, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 21:40:11\"}}', 0, '', '2022-03-23 22:15:11'); INSERT INTO `sys_oper_log` VALUES (13424, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648042811000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:15:11'); INSERT INTO `sys_oper_log` VALUES (13425, '商品库存', 2, 'com.xjs.mall.ware.controller.WareSkuController.update()', 'PUT', 1, 'admin', '', '/ware/waresku/update', '127.0.0.1', '', '{\"skuName\":\"小米12\",\"wareId\":1506588753864105985,\"stockLocked\":11,\"id\":1506633555838218242,\"stock\":999,\"skuId\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-23 22:15:34'); INSERT INTO `sys_oper_log` VALUES (13426, '商品库存', 2, 'com.xjs.mall.ware.controller.WareSkuController.update()', 'PUT', 1, 'admin', '', '/ware/waresku/update', '127.0.0.1', '', '{\"skuName\":\"小米12\",\"wareId\":1506588753864105985,\"stockLocked\":13,\"id\":1506633555838218242,\"stock\":999,\"skuId\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-23 22:15:37'); INSERT INTO `sys_oper_log` VALUES (13427, '商品库存', 2, 'com.xjs.mall.ware.controller.WareSkuController.update()', 'PUT', 1, 'admin', '', '/ware/waresku/update', '127.0.0.1', '', '{\"skuName\":\"小米12\",\"wareId\":1506588753864105985,\"stockLocked\":13,\"id\":1506633555838218242,\"stock\":999,\"skuId\":1505566927721537537}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-23 22:16:04'); INSERT INTO `sys_oper_log` VALUES (13428, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:10:13\"}}', 0, '', '2022-03-23 22:30:14'); INSERT INTO `sys_oper_log` VALUES (13429, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648044613000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:30:14'); INSERT INTO `sys_oper_log` VALUES (13430, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:10:13\"}}', 0, '', '2022-03-23 22:31:06'); INSERT INTO `sys_oper_log` VALUES (13431, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648044613000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:31:06'); INSERT INTO `sys_oper_log` VALUES (13432, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648044613000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:31:56'); INSERT INTO `sys_oper_log` VALUES (13433, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:10:13\"}}', 0, '', '2022-03-23 22:31:56'); INSERT INTO `sys_oper_log` VALUES (13434, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648044613000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:32:29'); INSERT INTO `sys_oper_log` VALUES (13435, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:10:13\"}}', 0, '', '2022-03-23 22:32:29'); INSERT INTO `sys_oper_log` VALUES (13436, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_yuyin\",\"orderNum\":\"4\",\"menuName\":\"采购单维护\",\"params\":{},\"parentId\":2124,\"isCache\":\"0\",\"path\":\"purchase-maintain\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"M\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 22:33:38'); INSERT INTO `sys_oper_log` VALUES (13437, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_zan\",\"orderNum\":\"1\",\"menuName\":\"采购需求\",\"params\":{},\"parentId\":2130,\"isCache\":\"0\",\"path\":\"purchase-demand\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 22:34:36'); INSERT INTO `sys_oper_log` VALUES (13438, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_zan\",\"orderNum\":\"1\",\"menuName\":\"采购需求\",\"params\":{},\"parentId\":2130,\"isCache\":\"0\",\"path\":\"purchase-demand\",\"component\":\"mall/ware/warepurchase/purchase\",\"children\":[],\"createTime\":1648046076000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2131,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 22:35:01'); INSERT INTO `sys_oper_log` VALUES (13439, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648044613000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:35:03'); INSERT INTO `sys_oper_log` VALUES (13440, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:10:13\"}}', 0, '', '2022-03-23 22:35:03'); INSERT INTO `sys_oper_log` VALUES (13441, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:10:13\"}}', 0, '', '2022-03-23 22:35:16'); INSERT INTO `sys_oper_log` VALUES (13442, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648044613000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:35:16'); INSERT INTO `sys_oper_log` VALUES (13443, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:10:13\"}}', 0, '', '2022-03-23 22:36:56'); INSERT INTO `sys_oper_log` VALUES (13444, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"68\",\"province\":\"江西\",\"reporttime\":1648044613000,\"temperature\":\"11\",\"weather\":\"多云\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:36:56'); INSERT INTO `sys_oper_log` VALUES (13445, '会员等级', 2, 'com.xjs.mall.member.controller.MemberLevelController.update()', 'PUT', 1, 'admin', '', '/member/memberlevel/update', '127.0.0.1', '', '{\"defaultStatus\":0,\"note\":\"黄金会员\",\"priviledgeBirthday\":1,\"freeFreightPoint\":80,\"name\":\"黄金会员\",\"priviledgeMemberPrice\":1,\"id\":1504846789581967362,\"priviledgeFreeFreight\":1,\"commentGrowthPoint\":3,\"growthPoint\":100}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-23 22:38:01'); INSERT INTO `sys_oper_log` VALUES (13446, '会员等级', 2, 'com.xjs.mall.member.controller.MemberLevelController.update()', 'PUT', 1, 'admin', '', '/member/memberlevel/update', '127.0.0.1', '', '{\"defaultStatus\":0,\"note\":\"白银会员1\",\"priviledgeBirthday\":1,\"freeFreightPoint\":90,\"name\":\"白银会员\",\"priviledgeMemberPrice\":1,\"id\":2,\"priviledgeFreeFreight\":0,\"commentGrowthPoint\":2,\"growthPoint\":50}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-23 22:38:04'); INSERT INTO `sys_oper_log` VALUES (13447, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:42:13'); INSERT INTO `sys_oper_log` VALUES (13448, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 22:42:13'); INSERT INTO `sys_oper_log` VALUES (13449, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:42:26'); INSERT INTO `sys_oper_log` VALUES (13450, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 22:42:26'); INSERT INTO `sys_oper_log` VALUES (13451, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 22:43:42'); INSERT INTO `sys_oper_log` VALUES (13452, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:43:42'); INSERT INTO `sys_oper_log` VALUES (13453, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:43:46'); INSERT INTO `sys_oper_log` VALUES (13454, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 22:43:46'); INSERT INTO `sys_oper_log` VALUES (13455, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 22:43:51'); INSERT INTO `sys_oper_log` VALUES (13456, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:43:51'); INSERT INTO `sys_oper_log` VALUES (13457, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 22:48:06'); INSERT INTO `sys_oper_log` VALUES (13458, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:48:06'); INSERT INTO `sys_oper_log` VALUES (13459, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:50:06'); INSERT INTO `sys_oper_log` VALUES (13460, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 22:50:06'); INSERT INTO `sys_oper_log` VALUES (13461, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_zan\",\"orderNum\":\"1\",\"menuName\":\"采购需求\",\"params\":{},\"parentId\":2130,\"isCache\":\"0\",\"path\":\"purchase-demand\",\"component\":\"mall/ware/warepurchase/purchaseitem\",\"children\":[],\"createTime\":1648046076000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2131,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 22:56:21'); INSERT INTO `sys_oper_log` VALUES (13462, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"question\",\"orderNum\":\"2\",\"menuName\":\"采购单\",\"params\":{},\"parentId\":2130,\"isCache\":\"0\",\"path\":\"purchase\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 22:56:50'); INSERT INTO `sys_oper_log` VALUES (13463, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"question\",\"orderNum\":\"2\",\"menuName\":\"采购单\",\"params\":{},\"parentId\":2130,\"isCache\":\"0\",\"path\":\"purchase\",\"component\":\"mall/ware/warepurchase/purchase\",\"children\":[],\"createTime\":1648047410000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2132,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 22:57:00'); INSERT INTO `sys_oper_log` VALUES (13464, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 22:57:03'); INSERT INTO `sys_oper_log` VALUES (13465, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 22:57:03'); INSERT INTO `sys_oper_log` VALUES (13466, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 23:00:27'); INSERT INTO `sys_oper_log` VALUES (13467, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:00:27'); INSERT INTO `sys_oper_log` VALUES (13468, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:00:49'); INSERT INTO `sys_oper_log` VALUES (13469, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 23:00:49'); INSERT INTO `sys_oper_log` VALUES (13470, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 23:01:11'); INSERT INTO `sys_oper_log` VALUES (13471, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:01:11'); INSERT INTO `sys_oper_log` VALUES (13472, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:01:45'); INSERT INTO `sys_oper_log` VALUES (13473, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 23:01:45'); INSERT INTO `sys_oper_log` VALUES (13474, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:01:56'); INSERT INTO `sys_oper_log` VALUES (13475, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 23:01:56'); INSERT INTO `sys_oper_log` VALUES (13476, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:02:11'); INSERT INTO `sys_oper_log` VALUES (13477, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 23:02:11'); INSERT INTO `sys_oper_log` VALUES (13478, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:02:29'); INSERT INTO `sys_oper_log` VALUES (13479, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 23:02:29'); INSERT INTO `sys_oper_log` VALUES (13480, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 23:03:16'); INSERT INTO `sys_oper_log` VALUES (13481, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:03:16'); INSERT INTO `sys_oper_log` VALUES (13482, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:03:26'); INSERT INTO `sys_oper_log` VALUES (13483, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 23:03:26'); INSERT INTO `sys_oper_log` VALUES (13484, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 22:33:58\"}}', 0, '', '2022-03-23 23:04:52'); INSERT INTO `sys_oper_log` VALUES (13485, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1648046038000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:04:52'); INSERT INTO `sys_oper_log` VALUES (13486, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648047837000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:21:21'); INSERT INTO `sys_oper_log` VALUES (13487, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:03:57\"}}', 0, '', '2022-03-23 23:21:21'); INSERT INTO `sys_oper_log` VALUES (13488, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:03:57\"}}', 0, '', '2022-03-23 23:34:33'); INSERT INTO `sys_oper_log` VALUES (13489, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648047837000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:34:33'); INSERT INTO `sys_oper_log` VALUES (13490, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"0\",\"icon\":\"icon_zan\",\"orderNum\":\"1\",\"menuName\":\"采购需求\",\"params\":{},\"parentId\":2130,\"isCache\":\"0\",\"path\":\"purchase-demand\",\"component\":\"mall/ware/warepurchase/purchasedetail\",\"children\":[],\"createTime\":1648046076000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2131,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-23 23:34:51'); INSERT INTO `sys_oper_log` VALUES (13491, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:03:57\"}}', 0, '', '2022-03-23 23:34:56'); INSERT INTO `sys_oper_log` VALUES (13492, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648047837000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:34:56'); INSERT INTO `sys_oper_log` VALUES (13493, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648047837000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:35:44'); INSERT INTO `sys_oper_log` VALUES (13494, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:03:57\"}}', 0, '', '2022-03-23 23:35:44'); INSERT INTO `sys_oper_log` VALUES (13495, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:03:57\"}}', 0, '', '2022-03-23 23:37:35'); INSERT INTO `sys_oper_log` VALUES (13496, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648047837000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:37:35'); INSERT INTO `sys_oper_log` VALUES (13497, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"71\",\"province\":\"江西\",\"reporttime\":1648047837000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:38:00'); INSERT INTO `sys_oper_log` VALUES (13498, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:03:57\"}}', 0, '', '2022-03-23 23:38:00'); INSERT INTO `sys_oper_log` VALUES (13499, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:39:59\"}}', 0, '', '2022-03-23 23:45:52'); INSERT INTO `sys_oper_log` VALUES (13500, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648049999000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:45:52'); INSERT INTO `sys_oper_log` VALUES (13501, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:39:59\"}}', 0, '', '2022-03-23 23:53:11'); INSERT INTO `sys_oper_log` VALUES (13502, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648049999000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:53:11'); INSERT INTO `sys_oper_log` VALUES (13503, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:39:59\"}}', 0, '', '2022-03-23 23:53:31'); INSERT INTO `sys_oper_log` VALUES (13504, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648049999000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:53:31'); INSERT INTO `sys_oper_log` VALUES (13505, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:39:59\"}}', 0, '', '2022-03-23 23:54:03'); INSERT INTO `sys_oper_log` VALUES (13506, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648049999000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-23 23:59:55'); INSERT INTO `sys_oper_log` VALUES (13507, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:39:59\"}}', 0, '', '2022-03-23 23:59:55'); INSERT INTO `sys_oper_log` VALUES (13508, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:39:59\"}}', 0, '', '2022-03-24 00:00:10'); INSERT INTO `sys_oper_log` VALUES (13509, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648049999000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 00:00:10'); INSERT INTO `sys_oper_log` VALUES (13510, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648049999000,\"temperature\":\"11\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 00:00:47'); INSERT INTO `sys_oper_log` VALUES (13511, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-23\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-23 23:39:59\"}}', 0, '', '2022-03-24 00:00:47'); INSERT INTO `sys_oper_log` VALUES (13512, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"华为\",\"brandId\":1503923754248581122,\"catelogName\":\"军刀军具\",\"catelogId\":916,\"id\":1506663157256122369}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 00:04:24'); INSERT INTO `sys_oper_log` VALUES (13513, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"大雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 10:34:03\"}}', 0, '', '2022-03-24 10:57:44'); INSERT INTO `sys_oper_log` VALUES (13514, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648090664496,\"humidity\":\"65\",\"id\":1506827576917327874,\"province\":\"江西\",\"reporttime\":1648089243000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 10:57:44'); INSERT INTO `sys_oper_log` VALUES (13515, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"大雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 10:34:03\"}}', 0, '', '2022-03-24 11:02:32'); INSERT INTO `sys_oper_log` VALUES (13516, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648090664496,\"humidity\":\"65\",\"id\":1506827576917327874,\"province\":\"江西\",\"reporttime\":1648089243000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:02:32'); INSERT INTO `sys_oper_log` VALUES (13517, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"大雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 10:34:03\"}}', 0, '', '2022-03-24 11:02:56'); INSERT INTO `sys_oper_log` VALUES (13518, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648090664496,\"humidity\":\"65\",\"id\":1506827576917327874,\"province\":\"江西\",\"reporttime\":1648089243000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:02:56'); INSERT INTO `sys_oper_log` VALUES (13519, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648090664496,\"humidity\":\"65\",\"id\":1506827576917327874,\"province\":\"江西\",\"reporttime\":1648089243000,\"temperature\":\"13\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:06:08'); INSERT INTO `sys_oper_log` VALUES (13520, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"大雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"北\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 10:34:03\"}}', 0, '', '2022-03-24 11:06:08'); INSERT INTO `sys_oper_log` VALUES (13521, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:03:57\"}}', 0, '', '2022-03-24 11:07:52'); INSERT INTO `sys_oper_log` VALUES (13522, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648091272659,\"humidity\":\"64\",\"id\":1506830127704276993,\"province\":\"江西\",\"reporttime\":1648091037000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:07:52'); INSERT INTO `sys_oper_log` VALUES (13523, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:03:57\"}}', 0, '', '2022-03-24 11:18:42'); INSERT INTO `sys_oper_log` VALUES (13524, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1648091037000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:18:42'); INSERT INTO `sys_oper_log` VALUES (13525, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1648091037000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:18:51'); INSERT INTO `sys_oper_log` VALUES (13526, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:03:57\"}}', 0, '', '2022-03-24 11:18:51'); INSERT INTO `sys_oper_log` VALUES (13527, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1648091037000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:20:17'); INSERT INTO `sys_oper_log` VALUES (13528, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:03:57\"}}', 0, '', '2022-03-24 11:20:17'); INSERT INTO `sys_oper_log` VALUES (13529, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[{\"catId\":3,\"sort\":0},{\"catId\":4,\"sort\":1},{\"catId\":7,\"sort\":2},{\"catId\":2,\"sort\":3},{\"catId\":6,\"sort\":4},{\"catId\":8,\"sort\":5},{\"catId\":11,\"sort\":6},{\"catId\":12,\"sort\":7},{\"catId\":13,\"sort\":8},{\"catId\":14,\"sort\":9},{\"catId\":15,\"sort\":10},{\"catId\":16,\"sort\":11},{\"catId\":5,\"parentCid\":0,\"sort\":12,\"catLevel\":1},{\"catId\":10,\"sort\":13},{\"catId\":9,\"sort\":14},{\"catId\":17,\"sort\":15},{\"catId\":18,\"sort\":16},{\"catId\":1,\"sort\":17},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20}]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 11:24:32'); INSERT INTO `sys_oper_log` VALUES (13530, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:03:57\"}}', 0, '', '2022-03-24 11:32:40'); INSERT INTO `sys_oper_log` VALUES (13531, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1648091037000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:32:40'); INSERT INTO `sys_oper_log` VALUES (13532, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:03:57\"}}', 0, '', '2022-03-24 11:37:09'); INSERT INTO `sys_oper_log` VALUES (13533, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1648091037000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:37:09'); INSERT INTO `sys_oper_log` VALUES (13534, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:03:57\"}}', 0, '', '2022-03-24 11:39:45'); INSERT INTO `sys_oper_log` VALUES (13535, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1648091037000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:39:45'); INSERT INTO `sys_oper_log` VALUES (13536, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 11:46:02'); INSERT INTO `sys_oper_log` VALUES (13537, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648093562273,\"humidity\":\"62\",\"id\":1506839731074990081,\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:46:02'); INSERT INTO `sys_oper_log` VALUES (13538, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 11:48:02'); INSERT INTO `sys_oper_log` VALUES (13539, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648093562273,\"humidity\":\"62\",\"id\":1506839731074990081,\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:48:02'); INSERT INTO `sys_oper_log` VALUES (13540, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"assigneeName\":\"admin\",\"phone\":\"18907084291\",\"id\":1506662045144731649,\"priority\":10,\"assigneeId\":1,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 11:48:07'); INSERT INTO `sys_oper_log` VALUES (13541, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"assigneeName\":\"test\",\"phone\":\"17607993928\",\"id\":1506662045144731649,\"priority\":10,\"assigneeId\":100,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 11:48:54'); INSERT INTO `sys_oper_log` VALUES (13542, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"assigneeName\":\"admin\",\"phone\":\"18907084291\",\"id\":1506662045144731649,\"priority\":10,\"assigneeId\":1,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 11:49:00'); INSERT INTO `sys_oper_log` VALUES (13543, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 11:51:57'); INSERT INTO `sys_oper_log` VALUES (13544, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648093562273,\"humidity\":\"62\",\"id\":1506839731074990081,\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:51:57'); INSERT INTO `sys_oper_log` VALUES (13545, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648093562273,\"humidity\":\"62\",\"id\":1506839731074990081,\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:52:10'); INSERT INTO `sys_oper_log` VALUES (13546, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 11:52:10'); INSERT INTO `sys_oper_log` VALUES (13547, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 11:52:35'); INSERT INTO `sys_oper_log` VALUES (13548, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648093562273,\"humidity\":\"62\",\"id\":1506839731074990081,\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:52:35'); INSERT INTO `sys_oper_log` VALUES (13549, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 11:52:48'); INSERT INTO `sys_oper_log` VALUES (13550, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648093562273,\"humidity\":\"62\",\"id\":1506839731074990081,\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:52:48'); INSERT INTO `sys_oper_log` VALUES (13551, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 11:53:08'); INSERT INTO `sys_oper_log` VALUES (13552, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648093562273,\"humidity\":\"62\",\"id\":1506839731074990081,\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:53:08'); INSERT INTO `sys_oper_log` VALUES (13553, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 11:54:30'); INSERT INTO `sys_oper_log` VALUES (13554, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648093562273,\"humidity\":\"62\",\"id\":1506839731074990081,\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:54:30'); INSERT INTO `sys_oper_log` VALUES (13555, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"id\":1506662045144731649,\"priority\":10,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 11:54:34'); INSERT INTO `sys_oper_log` VALUES (13556, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 11:54:46'); INSERT INTO `sys_oper_log` VALUES (13557, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648093562273,\"humidity\":\"62\",\"id\":1506839731074990081,\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 11:54:46'); INSERT INTO `sys_oper_log` VALUES (13558, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"assigneeName\":\"test\",\"phone\":\"17607993928\",\"id\":1506662045144731649,\"priority\":10,\"assigneeId\":100,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 11:54:49'); INSERT INTO `sys_oper_log` VALUES (13559, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"assigneeName\":\"admin\",\"phone\":\"18907084291\",\"id\":1506662045144731649,\"priority\":10,\"assigneeId\":1,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 11:55:04'); INSERT INTO `sys_oper_log` VALUES (13560, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"id\":1506662045144731649,\"priority\":10,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 11:55:10'); INSERT INTO `sys_oper_log` VALUES (13561, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"assigneeName\":\"test\",\"phone\":\"17607993928\",\"id\":1506662045144731649,\"priority\":10,\"assigneeId\":100,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 11:57:45'); INSERT INTO `sys_oper_log` VALUES (13562, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 12:02:00'); INSERT INTO `sys_oper_log` VALUES (13563, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 12:02:01'); INSERT INTO `sys_oper_log` VALUES (13564, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 12:02:40'); INSERT INTO `sys_oper_log` VALUES (13565, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 12:02:40'); INSERT INTO `sys_oper_log` VALUES (13566, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 11:40:08\"}}', 0, '', '2022-03-24 12:04:41'); INSERT INTO `sys_oper_log` VALUES (13567, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"62\",\"province\":\"江西\",\"reporttime\":1648093208000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 12:04:41'); INSERT INTO `sys_oper_log` VALUES (13568, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"REPTILE\",\"params\":{},\"jobId\":104,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-24 15:41:14'); INSERT INTO `sys_oper_log` VALUES (13569, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 15:42:38'); INSERT INTO `sys_oper_log` VALUES (13570, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648107758969,\"humidity\":\"65\",\"id\":1506899276317032450,\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 15:42:38'); INSERT INTO `sys_oper_log` VALUES (13571, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 15:42:46'); INSERT INTO `sys_oper_log` VALUES (13572, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648107758969,\"humidity\":\"65\",\"id\":1506899276317032450,\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 15:42:46'); INSERT INTO `sys_oper_log` VALUES (13573, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648107758969,\"humidity\":\"65\",\"id\":1506899276317032450,\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 15:43:34'); INSERT INTO `sys_oper_log` VALUES (13574, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 15:43:34'); INSERT INTO `sys_oper_log` VALUES (13575, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648107758969,\"humidity\":\"65\",\"id\":1506899276317032450,\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 15:43:35'); INSERT INTO `sys_oper_log` VALUES (13576, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 15:43:35'); INSERT INTO `sys_oper_log` VALUES (13577, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648107758969,\"humidity\":\"65\",\"id\":1506899276317032450,\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 15:44:23'); INSERT INTO `sys_oper_log` VALUES (13578, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 15:44:23'); INSERT INTO `sys_oper_log` VALUES (13579, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 15:45:52'); INSERT INTO `sys_oper_log` VALUES (13580, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648107758969,\"humidity\":\"65\",\"id\":1506899276317032450,\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 15:45:52'); INSERT INTO `sys_oper_log` VALUES (13581, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648107758969,\"humidity\":\"65\",\"id\":1506899276317032450,\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 15:46:38'); INSERT INTO `sys_oper_log` VALUES (13582, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 15:46:38'); INSERT INTO `sys_oper_log` VALUES (13583, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 15:46:58'); INSERT INTO `sys_oper_log` VALUES (13584, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648107758969,\"humidity\":\"65\",\"id\":1506899276317032450,\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 15:46:58'); INSERT INTO `sys_oper_log` VALUES (13585, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 15:47:34'); INSERT INTO `sys_oper_log` VALUES (13586, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648107758969,\"humidity\":\"65\",\"id\":1506899276317032450,\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 15:47:34'); INSERT INTO `sys_oper_log` VALUES (13587, '采购需求', 1, 'com.xjs.mall.ware.controller.PurchaseDetailController.save()', 'POST', 1, 'admin', '', '/ware/purchasedetail/save', '127.0.0.1', '', '{\"wareId\":1506584936426708993,\"id\":1506904616420999169,\"skuId\":1505566927721537537,\"skuNum\":4,\"status\":0}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 16:03:52'); INSERT INTO `sys_oper_log` VALUES (13588, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 16:07:35'); INSERT INTO `sys_oper_log` VALUES (13589, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 16:07:35'); INSERT INTO `sys_oper_log` VALUES (13590, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 16:08:17'); INSERT INTO `sys_oper_log` VALUES (13591, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 16:08:17'); INSERT INTO `sys_oper_log` VALUES (13592, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 15:40:04\"}}', 0, '', '2022-03-24 16:09:25'); INSERT INTO `sys_oper_log` VALUES (13593, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"65\",\"province\":\"江西\",\"reporttime\":1648107604000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 16:09:25'); INSERT INTO `sys_oper_log` VALUES (13594, '仓库信息', 1, 'com.xjs.mall.ware.controller.WareInfoController.save()', 'POST', 1, 'admin', '', '/ware/wareinfo/save', '127.0.0.1', '', '{\"address\":\"湖北省 宜昌市 兴山县 峡口镇-哇\",\"name\":\"五号仓库\",\"id\":1506914483168837634,\"areacode\":420526}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 16:43:04'); INSERT INTO `sys_oper_log` VALUES (13595, '采购需求', 1, 'com.xjs.mall.ware.controller.PurchaseDetailController.save()', 'POST', 1, 'admin', '', '/ware/purchasedetail/save', '127.0.0.1', '', '{\"wareId\":1506586311478943746,\"id\":1506924167061811202,\"skuId\":1505566927721537537,\"skuNum\":3,\"status\":0}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 17:21:33'); INSERT INTO `sys_oper_log` VALUES (13596, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"assigneeName\":\"\",\"createTime\":1648113702000,\"phone\":\"\",\"updateTime\":1648113771361,\"id\":1506924201941643266,\"priority\":0,\"status\":0}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 17:22:51'); INSERT INTO `sys_oper_log` VALUES (13597, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"assigneeName\":\"test\",\"phone\":\"17607993928\",\"updateTime\":1648113774585,\"id\":1506924201941643266,\"priority\":0,\"assigneeId\":100,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 17:22:54'); INSERT INTO `sys_oper_log` VALUES (13598, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取IP信息异常!!', '2022-03-24 17:30:31'); INSERT INTO `sys_oper_log` VALUES (13599, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取IP信息异常!!', '2022-03-24 17:30:33'); INSERT INTO `sys_oper_log` VALUES (13600, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 17:04:00\"}}', 0, '', '2022-03-24 17:36:04'); INSERT INTO `sys_oper_log` VALUES (13601, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1648112640000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 17:36:04'); INSERT INTO `sys_oper_log` VALUES (13602, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1648112640000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 17:36:07'); INSERT INTO `sys_oper_log` VALUES (13603, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 17:04:00\"}}', 0, '', '2022-03-24 17:36:07'); INSERT INTO `sys_oper_log` VALUES (13604, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 17:04:00\"}}', 0, '', '2022-03-24 17:37:05'); INSERT INTO `sys_oper_log` VALUES (13605, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1648112640000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 17:37:05'); INSERT INTO `sys_oper_log` VALUES (13606, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 17:04:00\"}}', 0, '', '2022-03-24 17:37:48'); INSERT INTO `sys_oper_log` VALUES (13607, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1648112640000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 17:37:48'); INSERT INTO `sys_oper_log` VALUES (13608, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1648112640000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 17:37:53'); INSERT INTO `sys_oper_log` VALUES (13609, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 17:04:00\"}}', 0, '', '2022-03-24 17:37:53'); INSERT INTO `sys_oper_log` VALUES (13610, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 17:04:00\"}}', 0, '', '2022-03-24 17:39:30'); INSERT INTO `sys_oper_log` VALUES (13611, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"67\",\"province\":\"江西\",\"reporttime\":1648112640000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 17:39:30'); INSERT INTO `sys_oper_log` VALUES (13612, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"assigneeName\":\"admin\",\"phone\":\"18907084291\",\"updateTime\":1648114934847,\"id\":1506662045144731649,\"priority\":10,\"assigneeId\":1,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 17:42:14'); INSERT INTO `sys_oper_log` VALUES (13613, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648115303936,\"humidity\":\"68\",\"id\":1506930922164551681,\"province\":\"江西\",\"reporttime\":1648114813000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 17:48:23'); INSERT INTO `sys_oper_log` VALUES (13614, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-24 17:48:24'); INSERT INTO `sys_oper_log` VALUES (13615, '采购单', 2, 'com.xjs.mall.ware.controller.PurchaseController.update()', 'PUT', 1, 'admin', '', '/ware/purchase/update', '127.0.0.1', '', '{\"assigneeName\":\"admin\",\"phone\":\"18907084291\",\"updateTime\":1648115333693,\"id\":1506662045144731649,\"priority\":11,\"assigneeId\":1,\"status\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 17:48:53'); INSERT INTO `sys_oper_log` VALUES (13616, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 18:10:19\"}}', 0, '', '2022-03-24 18:26:37'); INSERT INTO `sys_oper_log` VALUES (13617, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648116619000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 18:26:37'); INSERT INTO `sys_oper_log` VALUES (13618, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 18:33:53\"}}', 0, '', '2022-03-24 18:37:47'); INSERT INTO `sys_oper_log` VALUES (13619, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648118267037,\"humidity\":\"70\",\"id\":1506943350327705601,\"province\":\"江西\",\"reporttime\":1648118033000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 18:37:47'); INSERT INTO `sys_oper_log` VALUES (13620, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 18:33:53\"}}', 0, '', '2022-03-24 18:40:01'); INSERT INTO `sys_oper_log` VALUES (13621, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648118267037,\"humidity\":\"70\",\"id\":1506943350327705601,\"province\":\"江西\",\"reporttime\":1648118033000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 18:40:01'); INSERT INTO `sys_oper_log` VALUES (13622, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 18:33:53\"}}', 0, '', '2022-03-24 18:49:36'); INSERT INTO `sys_oper_log` VALUES (13623, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648118033000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 18:49:36'); INSERT INTO `sys_oper_log` VALUES (13624, '菜单管理', 1, 'com.ruoyi.system.controller.SysMenuController.add()', 'POST', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"tab\",\"orderNum\":\"5\",\"menuName\":\"spu规格\",\"params\":{},\"parentId\":2107,\"isCache\":\"0\",\"path\":\"spu-attribute\",\"createBy\":\"admin\",\"children\":[],\"isFrame\":\"1\",\"menuType\":\"C\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-24 18:51:41'); INSERT INTO `sys_oper_log` VALUES (13625, '菜单管理', 2, 'com.ruoyi.system.controller.SysMenuController.edit()', 'PUT', 1, 'admin', NULL, '/menu', '127.0.0.1', '', '{\"visible\":\"1\",\"icon\":\"tab\",\"orderNum\":\"5\",\"menuName\":\"spu规格\",\"params\":{},\"parentId\":2107,\"isCache\":\"0\",\"path\":\"spu-attribute\",\"component\":\"mall/product/attribute/attrupdate\",\"children\":[],\"createTime\":1648119101000,\"updateBy\":\"admin\",\"isFrame\":\"1\",\"menuId\":2133,\"menuType\":\"C\",\"perms\":\"\",\"status\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-24 18:51:59'); INSERT INTO `sys_oper_log` VALUES (13626, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 18:33:53\"}}', 0, '', '2022-03-24 18:52:25'); INSERT INTO `sys_oper_log` VALUES (13627, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648118033000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 18:52:25'); INSERT INTO `sys_oper_log` VALUES (13628, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 18:33:53\"}}', 0, '', '2022-03-24 18:53:25'); INSERT INTO `sys_oper_log` VALUES (13629, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648118033000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 18:53:25'); INSERT INTO `sys_oper_log` VALUES (13630, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 18:33:53\"}}', 0, '', '2022-03-24 18:53:28'); INSERT INTO `sys_oper_log` VALUES (13631, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648118033000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 18:53:28'); INSERT INTO `sys_oper_log` VALUES (13632, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648118033000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 18:53:55'); INSERT INTO `sys_oper_log` VALUES (13633, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 18:33:53\"}}', 0, '', '2022-03-24 18:53:55'); INSERT INTO `sys_oper_log` VALUES (13634, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648118033000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 18:54:09'); INSERT INTO `sys_oper_log` VALUES (13635, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 18:33:53\"}}', 0, '', '2022-03-24 18:54:09'); INSERT INTO `sys_oper_log` VALUES (13636, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 18:33:53\"}}', 0, '', '2022-03-24 18:55:39'); INSERT INTO `sys_oper_log` VALUES (13637, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1648118033000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 18:55:39'); INSERT INTO `sys_oper_log` VALUES (13638, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '', 1, '获取实时天气数据为空', '2022-03-24 20:00:49'); INSERT INTO `sys_oper_log` VALUES (13639, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-24 20:00:49'); INSERT INTO `sys_oper_log` VALUES (13640, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1648122008000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 20:00:52'); INSERT INTO `sys_oper_log` VALUES (13641, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-24 20:00:54'); INSERT INTO `sys_oper_log` VALUES (13642, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-24 20:00:58'); INSERT INTO `sys_oper_log` VALUES (13643, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-24 20:01:00'); INSERT INTO `sys_oper_log` VALUES (13644, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1648122008000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 20:01:00'); INSERT INTO `sys_oper_log` VALUES (13645, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-24 20:01:02'); INSERT INTO `sys_oper_log` VALUES (13646, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-24 20:01:04'); INSERT INTO `sys_oper_log` VALUES (13647, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-24 20:01:06'); INSERT INTO `sys_oper_log` VALUES (13648, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-24 20:01:08'); INSERT INTO `sys_oper_log` VALUES (13649, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '', 1, '获取预报天气数据为空', '2022-03-24 20:01:10'); INSERT INTO `sys_oper_log` VALUES (13650, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1648122008000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 20:01:31'); INSERT INTO `sys_oper_log` VALUES (13651, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 19:40:08\"}}', 0, '', '2022-03-24 20:01:31'); INSERT INTO `sys_oper_log` VALUES (13652, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 19:40:08\"}}', 0, '', '2022-03-24 20:02:04'); INSERT INTO `sys_oper_log` VALUES (13653, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1648122008000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 20:02:04'); INSERT INTO `sys_oper_log` VALUES (13654, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 19:40:08\"}}', 0, '', '2022-03-24 20:05:11'); INSERT INTO `sys_oper_log` VALUES (13655, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1648122008000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 20:05:11'); INSERT INTO `sys_oper_log` VALUES (13656, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 19:40:08\"}}', 0, '', '2022-03-24 20:05:19'); INSERT INTO `sys_oper_log` VALUES (13657, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1648122008000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 20:05:19'); INSERT INTO `sys_oper_log` VALUES (13658, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 19:40:08\"}}', 0, '', '2022-03-24 20:08:54'); INSERT INTO `sys_oper_log` VALUES (13659, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1648122008000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 20:08:54'); INSERT INTO `sys_oper_log` VALUES (13660, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1648122008000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 20:09:52'); INSERT INTO `sys_oper_log` VALUES (13661, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 19:40:08\"}}', 0, '', '2022-03-24 20:09:52'); INSERT INTO `sys_oper_log` VALUES (13662, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 19:40:08\"}}', 0, '', '2022-03-24 20:10:00'); INSERT INTO `sys_oper_log` VALUES (13663, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"74\",\"province\":\"江西\",\"reporttime\":1648122008000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 20:10:00'); INSERT INTO `sys_oper_log` VALUES (13664, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 20:33:54\"}}', 0, '', '2022-03-24 20:41:17'); INSERT INTO `sys_oper_log` VALUES (13665, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1648125234000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 20:41:17'); INSERT INTO `sys_oper_log` VALUES (13666, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 20:33:54\"}}', 0, '', '2022-03-24 20:53:49'); INSERT INTO `sys_oper_log` VALUES (13667, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1506977586849964034', '127.0.0.1', '', '1506977586849964034', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-24 20:53:54'); INSERT INTO `sys_oper_log` VALUES (13668, '定时任务', 2, 'com.ruoyi.job.controller.SysJobController.run()', 'PUT', 1, 'admin', NULL, '/job/run', '127.0.0.1', '', '{\"jobGroup\":\"REPTILE\",\"params\":{},\"jobId\":104,\"misfirePolicy\":\"0\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-03-24 20:56:00'); INSERT INTO `sys_oper_log` VALUES (13669, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1498195195286671362', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-24 21:00:48'); INSERT INTO `sys_oper_log` VALUES (13670, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 20:33:54\"}}', 0, '', '2022-03-24 21:00:50'); INSERT INTO `sys_oper_log` VALUES (13671, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1648125234000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 21:00:50'); INSERT INTO `sys_oper_log` VALUES (13672, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1493560400479387649', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-24 21:01:41'); INSERT INTO `sys_oper_log` VALUES (13673, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 20:33:54\"}}', 0, '', '2022-03-24 21:01:44'); INSERT INTO `sys_oper_log` VALUES (13674, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1648125234000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 21:01:44'); INSERT INTO `sys_oper_log` VALUES (13675, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"≤3\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"大雨\",\"nightwind\":\"南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 20:33:54\"}}', 0, '', '2022-03-24 21:02:37'); INSERT INTO `sys_oper_log` VALUES (13676, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1648125234000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 21:02:37'); INSERT INTO `sys_oper_log` VALUES (13677, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1648125234000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 21:04:31'); INSERT INTO `sys_oper_log` VALUES (13678, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 21:03:58\"}}', 0, '', '2022-03-24 21:04:32'); INSERT INTO `sys_oper_log` VALUES (13679, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1497921476239249409', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-24 21:04:51'); INSERT INTO `sys_oper_log` VALUES (13680, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 21:03:58\"}}', 0, '', '2022-03-24 21:04:53'); INSERT INTO `sys_oper_log` VALUES (13681, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1648125234000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 21:04:53'); INSERT INTO `sys_oper_log` VALUES (13682, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1493560955989786625', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-24 21:05:50'); INSERT INTO `sys_oper_log` VALUES (13683, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1648125234000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 21:05:52'); INSERT INTO `sys_oper_log` VALUES (13684, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 21:03:58\"}}', 0, '', '2022-03-24 21:05:52'); INSERT INTO `sys_oper_log` VALUES (13685, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1496833622943649794,1495702235928231938,1493896574754582530', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-24 21:06:20'); INSERT INTO `sys_oper_log` VALUES (13686, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 21:03:58\"}}', 0, '', '2022-03-24 21:06:22'); INSERT INTO `sys_oper_log` VALUES (13687, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1648125234000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 21:06:22'); INSERT INTO `sys_oper_log` VALUES (13688, '新浪新闻', 3, 'com.xjs.sina.controller.SinaNewsController.remove()', 'DELETE', 1, 'admin', '', '/sinaNews/1493561075040911362,1493561075045105666,1493561075045105667', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-24 21:07:21'); INSERT INTO `sys_oper_log` VALUES (13689, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 21:03:58\"}}', 0, '', '2022-03-24 21:08:40'); INSERT INTO `sys_oper_log` VALUES (13690, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"83\",\"province\":\"江西\",\"reporttime\":1648125234000,\"temperature\":\"15\",\"weather\":\"阴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 21:08:40'); INSERT INTO `sys_oper_log` VALUES (13691, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1648127477525,\"en\":\"He who has an art has everywhere a part.\",\"id\":1506981981931143169,\"zh\":\"手艺在手,走遍天下能糊口.\"}}', 0, '', '2022-03-24 21:11:17'); INSERT INTO `sys_oper_log` VALUES (13692, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"He who has an art has everywhere a part.\",\"zh\":\"手艺在手,走遍天下能糊口.\"}}', 0, '', '2022-03-24 21:11:22'); INSERT INTO `sys_oper_log` VALUES (13693, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"关系\",\"createTime\":1647588141000,\"englishWord\":\"relation\",\"id\":1504719840542330881,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"函数\",\"createTime\":1647498750000,\"englishWord\":\"function\",\"id\":1504344909438656514,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"组件\",\"createTime\":1647402988000,\"englishWord\":\"component\",\"id\":1503943253848899585,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:27'); INSERT INTO `sys_oper_log` VALUES (13694, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"品牌\",\"createTime\":1647329755000,\"englishWord\":\"brand\",\"id\":1503636089435553793,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"类别\",\"createTime\":1647314830000,\"englishWord\":\"category\",\"id\":1503573491755143170,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"制品\",\"createTime\":1647249253000,\"englishWord\":\"ware\",\"id\":1503298439486816258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:28'); INSERT INTO `sys_oper_log` VALUES (13695, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"订单\",\"createTime\":1647249238000,\"englishWord\":\"order\",\"id\":1503298376987492353,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"成员\",\"createTime\":1647249226000,\"englishWord\":\"member\",\"id\":1503298326857170945,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"优惠券\",\"createTime\":1647249189000,\"englishWord\":\"coupon\",\"id\":1503298173676994561,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:28'); INSERT INTO `sys_oper_log` VALUES (13696, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"产品\",\"createTime\":1647248511000,\"englishWord\":\"product\",\"id\":1503295327317442562,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"领袖\",\"createTime\":1647240436000,\"englishWord\":\"leader\",\"id\":1503261461068361730,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"会话\",\"createTime\":1647240417000,\"englishWord\":\"session\",\"id\":1503261381309476865,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:28'); INSERT INTO `sys_oper_log` VALUES (13697, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"奴隶\",\"createTime\":1647240199000,\"englishWord\":\"slave\",\"id\":1503260465885851650,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主\",\"createTime\":1647240192000,\"englishWord\":\"master\",\"id\":1503260436362145794,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"刷新\",\"createTime\":1647219955000,\"englishWord\":\"refresh\",\"id\":1503175557473611777,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:28'); INSERT INTO `sys_oper_log` VALUES (13698, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"云\",\"createTime\":1646977311000,\"englishWord\":\"cloud\",\"id\":1502157833582571521,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地的\",\"createTime\":1646977060000,\"englishWord\":\"native\",\"id\":1502156781961506818,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"等待\",\"createTime\":1646904465000,\"englishWord\":\"wait\",\"id\":1501852296680808450,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:28'); INSERT INTO `sys_oper_log` VALUES (13699, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"管道\",\"createTime\":1646904248000,\"englishWord\":\"pipeline\",\"id\":1501851385715728386,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"输出\",\"createTime\":1646904237000,\"englishWord\":\"output\",\"id\":1501851340668903425,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"输入\",\"createTime\":1646904230000,\"englishWord\":\"input\",\"id\":1501851308762832898,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:29'); INSERT INTO `sys_oper_log` VALUES (13700, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"处理器\",\"createTime\":1646899617000,\"englishWord\":\"processor\",\"id\":1501831961285730305,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"λ\",\"createTime\":1646898748000,\"englishWord\":\"lambda\",\"id\":1501828316179701762,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"流言蜚语\",\"createTime\":1646882257000,\"englishWord\":\"gossip\",\"id\":1501759150366105601,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:29'); INSERT INTO `sys_oper_log` VALUES (13701, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"自定义\",\"createTime\":1646814868000,\"englishWord\":\"custom\",\"id\":1501476498798977026,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"消费者\",\"createTime\":1646814745000,\"englishWord\":\"consumer\",\"id\":1501475983289655297,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"提供者\",\"createTime\":1646814737000,\"englishWord\":\"provider\",\"id\":1501475949127049217,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:30'); INSERT INTO `sys_oper_log` VALUES (13702, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"许可证\",\"createTime\":1646810780000,\"englishWord\":\"license\",\"id\":1501459350500319234,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"建造\",\"createTime\":1646810756000,\"englishWord\":\"bulid\",\"id\":1501459251594436609,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"代理\",\"createTime\":1646810583000,\"englishWord\":\"proxy\",\"id\":1501458525145178114,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:30'); INSERT INTO `sys_oper_log` VALUES (13703, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"长度\",\"createTime\":1646810509000,\"englishWord\":\"length\",\"id\":1501458213520973826,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"模块\",\"createTime\":1646797418000,\"englishWord\":\"module\",\"id\":1501403309209198594,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"默认的\",\"createTime\":1646797367000,\"englishWord\":\"default\",\"id\":1501403093991071746,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:31'); INSERT INTO `sys_oper_log` VALUES (13704, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"研究\",\"createTime\":1646796712000,\"englishWord\":\"study\",\"id\":1501400348491943937,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"套接字\",\"createTime\":1646796131000,\"englishWord\":\"socket\",\"id\":1501397911165112322,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"事件\",\"createTime\":1646792572000,\"englishWord\":\"event\",\"id\":1501382981938483201,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:31'); INSERT INTO `sys_oper_log` VALUES (13705, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"代码\",\"createTime\":1646792192000,\"englishWord\":\"code\",\"id\":1501381389629689858,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"消息\",\"createTime\":1646791393000,\"englishWord\":\"message\",\"id\":1501378035797102594,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"图像\",\"createTime\":1646791383000,\"englishWord\":\"image\",\"id\":1501377994005057537,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:31'); INSERT INTO `sys_oper_log` VALUES (13706, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"绑定\",\"createTime\":1646789598000,\"englishWord\":\"bind\",\"id\":1501370508669784066,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"通道\",\"createTime\":1646789569000,\"englishWord\":\"channel\",\"id\":1501370386112221185,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"孩子\",\"createTime\":1646789522000,\"englishWord\":\"child\",\"id\":1501370187688087553,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:32'); INSERT INTO `sys_oper_log` VALUES (13707, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"学习\",\"createTime\":1646788033000,\"englishWord\":\"learn\",\"id\":1501363943715803138,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"魔法\",\"createTime\":1646787433000,\"englishWord\":\"magic\",\"id\":1501361426487480322,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"进行\",\"createTime\":1646727193000,\"englishWord\":\"reacotor\",\"id\":1501108764496097281,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:32'); INSERT INTO `sys_oper_log` VALUES (13708, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"选择器\",\"createTime\":1646724675000,\"englishWord\":\"selector\",\"id\":1501098201296662529,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"选择\",\"createTime\":1646724664000,\"englishWord\":\"select\",\"id\":1501098157386493954,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"从\",\"createTime\":1646723956000,\"englishWord\":\"from\",\"id\":1501095187676655618,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:32'); INSERT INTO `sys_oper_log` VALUES (13709, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"形式\",\"createTime\":1646723949000,\"englishWord\":\"form\",\"id\":1501095156605251585,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"python\",\"createTime\":1646723917000,\"englishWord\":\"python\",\"id\":1501095020613332993,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"主要\",\"createTime\":1646723314000,\"englishWord\":\"main\",\"id\":1501092494899933186,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:33'); INSERT INTO `sys_oper_log` VALUES (13710, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"开放\",\"createTime\":1646723296000,\"englishWord\":\"open\",\"id\":1501092418370662401,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务器\",\"createTime\":1646723290000,\"englishWord\":\"server\",\"id\":1501092394194694145,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"客户端\",\"createTime\":1646723284000,\"englishWord\":\"client\",\"id\":1501092365623095298,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:33'); INSERT INTO `sys_oper_log` VALUES (13711, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"休息\",\"createTime\":1646705173000,\"englishWord\":\"rest\",\"id\":1501016402977615874,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"宁静的\",\"createTime\":1646705158000,\"englishWord\":\"restful\",\"id\":1501016342487363586,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"基础\",\"createTime\":1646663624000,\"englishWord\":\"base\",\"id\":1500842137299406850,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:33'); INSERT INTO `sys_oper_log` VALUES (13712, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"保存\",\"createTime\":1646663608000,\"englishWord\":\"save\",\"id\":1500842067464245249,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"池\",\"createTime\":1646644331000,\"englishWord\":\"pool\",\"id\":1500761212617736193,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"完整的\",\"createTime\":1646643210000,\"englishWord\":\"full\",\"id\":1500756511402737665,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:33'); INSERT INTO `sys_oper_log` VALUES (13713, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"队列\",\"createTime\":1646643201000,\"englishWord\":\"queue\",\"id\":1500756474933264386,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"读\",\"createTime\":1646642039000,\"englishWord\":\"read\",\"id\":1500751599935668225,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"日志\",\"createTime\":1646641799000,\"englishWord\":\"log\",\"id\":1500750596200972289,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:34'); INSERT INTO `sys_oper_log` VALUES (13714, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":22,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"写\",\"createTime\":1646640941000,\"englishWord\":\"write\",\"id\":1500746994665373697,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"票\",\"createTime\":1646636293000,\"englishWord\":\"ticket\",\"id\":1500727499158700033,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"分组\",\"createTime\":1646635806000,\"englishWord\":\"group\",\"id\":1500725456331325442,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:34'); INSERT INTO `sys_oper_log` VALUES (13715, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":23,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"开始\",\"createTime\":1646635611000,\"englishWord\":\"start\",\"id\":1500724642288222209,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"运行\",\"createTime\":1646635606000,\"englishWord\":\"run\",\"id\":1500724620788219905,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"布尔\",\"createTime\":1646635567000,\"englishWord\":\"boolean\",\"id\":1500724457613017090,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:34'); INSERT INTO `sys_oper_log` VALUES (13716, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":24,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"调用\",\"createTime\":1646635549000,\"englishWord\":\"call\",\"id\":1500724380953722882,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"可调用的\",\"createTime\":1646635523000,\"englishWord\":\"callable\",\"id\":1500724273160110082,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"并发\",\"createTime\":1646635515000,\"englishWord\":\"concurrent\",\"id\":1500724237093289985,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-24 21:11:35'); INSERT INTO `sys_oper_log` VALUES (13717, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpffz14j31c00u0tk0.jpg\"},{\"imageFileLength\":\"152KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us96gdgnj31c00u0n1m.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utau2zv2j31c00u0wir.jpg\"},{\"imageFileLength\":\"166KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfgnbq2j31c00u0436.jpg\"},{\"imageFileLength\":\"81KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utagolwbj31c00u0jt9.jpg\"},{\"imageFileLength\":\"298KB\",\"imageSize\":\"1680x1050\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9lryjpj31ao0t6n4x.jpg\"},{\"imageFileLength\":\"172KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uraprqzej31c00u0q7s.jpg\"},{\"imageFileLength\":\"133KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utazsu0hj31c00u0n0v.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utbc45nmj31c00u078k.jpg\"},{\"imageFileLength\":\"261KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urayd66kj31c00u0gth.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-24 21:12:17'); INSERT INTO `sys_oper_log` VALUES (13718, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"210KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq59doq3j31c00u0jwf.jpg\"},{\"imageFileLength\":\"180KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9buu8aj31c00u0wjk.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfffcxgj31c00u0djb.jpg\"},{\"imageFileLength\":\"214KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1uqezevj6j31c00u0456.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1ej22aj31hc0u077s.jpg\"},{\"imageFileLength\":\"171KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1uq58w3m4j31c00u0440.jpg\"},{\"imageFileLength\":\"285KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urrw79tij31c00u014j.jpg\"},{\"imageFileLength\":\"120KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usevh49wj31c00u0juh.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf7bm9tj31c00u0q8t.jpg\"},{\"imageFileLength\":\"176KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpggy1g1usfc9bvjj31c00u0q83.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-24 21:12:21'); INSERT INTO `sys_oper_log` VALUES (13719, '获取节假日', 0, 'com.xjs.apitools.controller.ApiToolsController.getHolidayApiData()', 'GET', 1, 'admin', '', '/apitools/holiday', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"date\":\"2022年03月24日\",\"holidayName\":\"世界防治结核病日\",\"lunarDate\":\"2022年02月22日\",\"lunarHoliday\":false,\"residueDays\":0,\"returnDate\":\"2022年03月24日\"},{\"date\":\"2022年03月31日\",\"holidayName\":\"寒食节\",\"lunarDate\":\"2022年02月29日\",\"lunarHoliday\":true,\"residueDays\":6,\"returnDate\":\"壬寅虎年 正月廿九\"},{\"date\":\"2022年04月01日\",\"holidayName\":\"愚人节\",\"lunarDate\":\"2022年03月01日\",\"lunarHoliday\":false,\"residueDays\":7,\"returnDate\":\"2022年04月01日\"},{\"date\":\"2022年04月01日\",\"holidayName\":\"清明节\",\"lunarDate\":\"2022年03月01日\",\"lunarHoliday\":true,\"residueDays\":7,\"returnDate\":\"壬寅虎年 正月廿九\"},{\"date\":\"2022年04月02日\",\"holidayName\":\"国际儿童图书日\",\"lunarDate\":\"2022年03月02日\",\"lunarHoliday\":false,\"residueDays\":8,\"returnDate\":\"2022年04月02日\"},{\"date\":\"2022年04月05日\",\"holidayName\":\"清明\",\"lunarDate\":\"2022年03月05日\",\"lunarHoliday\":true,\"residueDays\":11,\"returnDate\":\"壬寅虎年 二月初三\"},{\"date\":\"2022年04月07日\",\"holidayName\":\"世界卫生日\",\"lunarDate\":\"2022年03月07日\",\"lunarHoliday\":false,\"residueDays\":13,\"returnDate\":\"2022年04月07日\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-24 21:12:49'); INSERT INTO `sys_oper_log` VALUES (13720, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Find a truly original idea. It is the only way I will ever distinguish myself. It is the only way I will ever matter.\",\"createTime\":1648127672330,\"dataId\":3622,\"id\":1506982799010922498,\"imgurl\":\"\",\"note\":\"找到真正的原创思想。这是唯一能够使我永远与众不同的方法,是唯一能让我举足轻重的方法。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-24 21:14:32'); INSERT INTO `sys_oper_log` VALUES (13721, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"约翰:「两周的相处已经足够,两周就足以让我倾心于妳。」\",\"createTime\":1648127672328,\"id\":1506982799010922497,\"source\":\"最后一封情书\",\"type\":3}}', 0, '', '2022-03-24 21:14:32'); INSERT INTO `sys_oper_log` VALUES (13722, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1505155324505178114,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"valueType\":0,\"icon\":\"post\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"2020\",\"attrName\":\"上市时间\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 21:28:53'); INSERT INTO `sys_oper_log` VALUES (13723, '规格参数', 2, 'com.xjs.mall.product.controller.AttrController.update()', 'PUT', 1, 'admin', '', '/product/attr/update', '127.0.0.1', '', '{\"attrId\":1505155324505178114,\"attrGroupId\":1504293112875573249,\"searchType\":1,\"enable\":1,\"valueType\":0,\"icon\":\"post\",\"showDesc\":1,\"catelogId\":225,\"valueSelect\":\"2020;2021\",\"attrName\":\"上市时间\",\"attrType\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-24 21:29:07'); INSERT INTO `sys_oper_log` VALUES (13724, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 21:40:03\"}}', 0, '', '2022-03-24 21:47:06'); INSERT INTO `sys_oper_log` VALUES (13725, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648129626553,\"humidity\":\"84\",\"id\":1506990995612073985,\"province\":\"江西\",\"reporttime\":1648129203000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 21:47:06'); INSERT INTO `sys_oper_log` VALUES (13726, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 21:40:03\"}}', 0, '', '2022-03-24 21:51:39'); INSERT INTO `sys_oper_log` VALUES (13727, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648129626553,\"humidity\":\"84\",\"id\":1506990995612073985,\"province\":\"江西\",\"reporttime\":1648129203000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 21:51:39'); INSERT INTO `sys_oper_log` VALUES (13728, '英语文章', 1, 'com.xjs.article.controller.EnglishArticleController.add()', 'POST', 1, 'admin', '', '/article', '127.0.0.1', '', '{\"contentEnglish\":\"I\'m fine, thank you\",\"titleEnglish\":\"Are you all right, brother\",\"createTime\":1648133602002,\"pictureUrl\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/010f179c-062e-418a-b4cf-609861edb784.jpg\",\"titleChinese\":\"你还好吗,兄弟\",\"createUser\":\"admin\",\"updateTime\":1648133602005,\"id\":1507007669866323970,\"contentChinese\":\"我很好,谢谢\"}', '{\"msg\":\"操作成功\",\"code\":200}', 0, '', '2022-03-24 22:53:22'); INSERT INTO `sys_oper_log` VALUES (13729, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648132429000,\"temperature\":\"15\",\"weather\":\"中雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 23:01:38'); INSERT INTO `sys_oper_log` VALUES (13730, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 22:33:49\"}}', 0, '', '2022-03-24 23:01:38'); INSERT INTO `sys_oper_log` VALUES (13731, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648132429000,\"temperature\":\"15\",\"weather\":\"中雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 23:02:43'); INSERT INTO `sys_oper_log` VALUES (13732, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 22:33:49\"}}', 0, '', '2022-03-24 23:02:43'); INSERT INTO `sys_oper_log` VALUES (13733, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 22:33:49\"}}', 0, '', '2022-03-24 23:02:52'); INSERT INTO `sys_oper_log` VALUES (13734, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648132429000,\"temperature\":\"15\",\"weather\":\"中雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 23:02:52'); INSERT INTO `sys_oper_log` VALUES (13735, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 22:33:49\"}}', 0, '', '2022-03-24 23:03:54'); INSERT INTO `sys_oper_log` VALUES (13736, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648132429000,\"temperature\":\"15\",\"weather\":\"中雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 23:03:54'); INSERT INTO `sys_oper_log` VALUES (13737, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 22:33:49\"}}', 0, '', '2022-03-24 23:06:50'); INSERT INTO `sys_oper_log` VALUES (13738, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648132429000,\"temperature\":\"15\",\"weather\":\"中雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 23:06:50'); INSERT INTO `sys_oper_log` VALUES (13739, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648132429000,\"temperature\":\"15\",\"weather\":\"中雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 23:07:41'); INSERT INTO `sys_oper_log` VALUES (13740, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 22:33:49\"}}', 0, '', '2022-03-24 23:07:41'); INSERT INTO `sys_oper_log` VALUES (13741, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-24\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"15\",\"nightweather\":\"大雨\",\"nightwind\":\"西南\",\"week\":\"周四\"},{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-24 22:33:49\"}}', 0, '', '2022-03-24 23:07:49'); INSERT INTO `sys_oper_log` VALUES (13742, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648132429000,\"temperature\":\"15\",\"weather\":\"中雨\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-24 23:07:49'); INSERT INTO `sys_oper_log` VALUES (13743, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-25 01:03:58\"}}', 0, '', '2022-03-25 01:17:45'); INSERT INTO `sys_oper_log` VALUES (13744, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648142265765,\"humidity\":\"97\",\"id\":1507044008322027522,\"province\":\"江西\",\"reporttime\":1648141438000,\"temperature\":\"15\",\"weather\":\"中雨\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-25 01:17:45'); INSERT INTO `sys_oper_log` VALUES (13745, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-25 11:03:58\"}}', 0, '', '2022-03-25 11:16:32'); INSERT INTO `sys_oper_log` VALUES (13746, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648178192719,\"humidity\":\"97\",\"id\":1507194696888963073,\"province\":\"江西\",\"reporttime\":1648177438000,\"temperature\":\"16\",\"weather\":\"大雨\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-25 11:16:32'); INSERT INTO `sys_oper_log` VALUES (13747, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1507273590929326081', '127.0.0.1', '', '1507273590929326081', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-25 16:34:50'); INSERT INTO `sys_oper_log` VALUES (13748, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-25 16:38:16'); INSERT INTO `sys_oper_log` VALUES (13749, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-03-25 16:38:22'); INSERT INTO `sys_oper_log` VALUES (13750, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1504286299555762178,\"name\":\"OPPO\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-17/f2b1ff60-1a46-4e23-8042-bf86db43697b_白色樱花~蓝色轻纱露背连衣裙装红唇美女唯美性感私房摄影写真(1-13).jpg\",\"showStatus\":1,\"sort\":4,\"descript\":\"老人机\",\"firstLetter\":\"o\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 16:38:44'); INSERT INTO `sys_oper_log` VALUES (13751, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971694166016001,\"name\":\"苹果\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_超高清美女图片,温柔的牛仔裤长发美少女私房写真日记(1-9).jpg\",\"showStatus\":1,\"sort\":4,\"descript\":\"果蛆\",\"firstLetter\":\"a\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 16:38:44'); INSERT INTO `sys_oper_log` VALUES (13752, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971604152057858,\"name\":\"小米\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_百叶窗后,蓝衣短裤长发美女私房写真照(1-10).jpg\",\"showStatus\":1,\"sort\":3,\"descript\":\"米猴子\",\"firstLetter\":\"m\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 16:38:44'); INSERT INTO `sys_oper_log` VALUES (13753, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1503971753699966978,\"name\":\"VIVO\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-16/007310da-e36b-4f85-88b2-014fe1dc1473_晨起刷牙的可爱丸子头小姐姐睡衣短裤清新居家私房照(1-8).jpg\",\"showStatus\":1,\"sort\":4,\"descript\":\"傻子买\",\"firstLetter\":\"v\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 16:38:44'); INSERT INTO `sys_oper_log` VALUES (13754, '品牌管理', 2, 'com.xjs.mall.product.controller.BrandController.update()', 'PUT', 1, 'admin', '', '/product/brand/update', '127.0.0.1', '', '{\"brandId\":1504287578159976449,\"name\":\"一加\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03-17/f73502a9-3988-42db-8fc6-a88811a1b653_超可爱迷人的美胸妹子自拍写真,生活照图片(1-6).jpg\",\"showStatus\":1,\"sort\":2,\"descript\":\"一加\",\"firstLetter\":\"y\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 16:38:45'); INSERT INTO `sys_oper_log` VALUES (13755, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 16:39:27'); INSERT INTO `sys_oper_log` VALUES (13756, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 16:39:32'); INSERT INTO `sys_oper_log` VALUES (13757, '商品分类', 1, 'com.xjs.mall.product.controller.CategoryController.save()', 'POST', 1, 'admin', '', '/product/category/save', '127.0.0.1', '', '{\"catId\":1507276082912038914,\"parentCid\":21,\"icon\":\"system\",\"name\":\"跑车\",\"showStatus\":1,\"productUnit\":\"辆\",\"sort\":0,\"catLevel\":2}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 16:39:56'); INSERT INTO `sys_oper_log` VALUES (13758, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"对一个人最好的就是放下,无论再想念也不会去打扰。终有一天你会知道,有时失去比拥有更踏实。\",\"createTime\":1648202430982,\"id\":1507296359528222721,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-03-25 18:00:31'); INSERT INTO `sys_oper_log` VALUES (13759, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Life moves pretty fast. You don\'t stop and look around once in a while, you could miss it.\",\"createTime\":1648202431156,\"dataId\":4168,\"id\":1507296360258031617,\"imgurl\":\"\",\"note\":\"人生飞快,如果没有偶尔停下来看看四周,你会错过。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-25 18:00:31'); INSERT INTO `sys_oper_log` VALUES (13760, '会员等级', 2, 'com.xjs.mall.member.controller.MemberLevelController.update()', 'PUT', 1, 'admin', '', '/member/memberlevel/update', '127.0.0.1', '', '{\"defaultStatus\":1,\"note\":\"青铜会员\",\"priviledgeBirthday\":1,\"freeFreightPoint\":100,\"name\":\"青铜会员\",\"priviledgeMemberPrice\":0,\"id\":1,\"priviledgeFreeFreight\":0,\"commentGrowthPoint\":1,\"growthPoint\":10}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 19:53:12'); INSERT INTO `sys_oper_log` VALUES (13761, '会员等级', 2, 'com.xjs.mall.member.controller.MemberLevelController.update()', 'PUT', 1, 'admin', '', '/member/memberlevel/update', '127.0.0.1', '', '{\"defaultStatus\":0,\"note\":\"白银会员\",\"priviledgeBirthday\":1,\"freeFreightPoint\":90,\"name\":\"白银会员\",\"priviledgeMemberPrice\":1,\"id\":2,\"priviledgeFreeFreight\":0,\"commentGrowthPoint\":2,\"growthPoint\":50}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 19:53:13'); INSERT INTO `sys_oper_log` VALUES (13762, '仓库信息', 1, 'com.xjs.mall.ware.controller.WareInfoController.save()', 'POST', 1, 'admin', '', '/ware/wareinfo/save', '127.0.0.1', '', '{\"address\":\"广东省 汕头市 濠江区 达濠街道-地点\",\"name\":\"总仓库\",\"id\":1507324972222902274,\"areacode\":440512}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-25 19:54:12'); INSERT INTO `sys_oper_log` VALUES (13763, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"中雨\",\"daywind\":\"西\",\"nightpower\":\"4\",\"nighttemp\":\"14\",\"nightweather\":\"阴\",\"nightwind\":\"西\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"17\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-25 20:09:59\"}}', 0, '', '2022-03-25 20:21:53'); INSERT INTO `sys_oper_log` VALUES (13764, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"90\",\"province\":\"江西\",\"reporttime\":1648210199000,\"temperature\":\"15\",\"weather\":\"大雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-25 20:21:53'); INSERT INTO `sys_oper_log` VALUES (13765, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1507341537400029185', '127.0.0.1', '', '1507341537400029185', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-25 21:04:05'); INSERT INTO `sys_oper_log` VALUES (13766, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1648218837000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-25 22:54:49'); INSERT INTO `sys_oper_log` VALUES (13767, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-25 22:33:57\"}}', 0, '', '2022-03-25 22:54:49'); INSERT INTO `sys_oper_log` VALUES (13768, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-25 22:33:57\"}}', 0, '', '2022-03-25 22:56:08'); INSERT INTO `sys_oper_log` VALUES (13769, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"89\",\"province\":\"江西\",\"reporttime\":1648218837000,\"temperature\":\"14\",\"weather\":\"小雨\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-25 22:56:08'); INSERT INTO `sys_oper_log` VALUES (13770, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-25\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"中雨\",\"daywind\":\"西南\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"西南\",\"week\":\"周五\"},{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-25 23:04:06\"}}', 0, '', '2022-03-25 23:06:46'); INSERT INTO `sys_oper_log` VALUES (13771, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648220806829,\"humidity\":\"82\",\"id\":1507373433425186817,\"province\":\"江西\",\"reporttime\":1648220646000,\"temperature\":\"15\",\"weather\":\"小雨\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-25 23:06:46'); INSERT INTO `sys_oper_log` VALUES (13772, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-26\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"阴\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"小雨\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-26 20:10:04\"}}', 0, '', '2022-03-26 20:10:22'); INSERT INTO `sys_oper_log` VALUES (13773, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648296622703,\"humidity\":\"79\",\"id\":1507691428248805377,\"province\":\"江西\",\"reporttime\":1648296603000,\"temperature\":\"14\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-26 20:10:22'); INSERT INTO `sys_oper_log` VALUES (13774, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-26\",\"daypower\":\"≤3\",\"daytemp\":\"15\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"12\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周六\"},{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"15\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"多云\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 00:09:59\"}}', 0, '', '2022-03-27 00:26:03'); INSERT INTO `sys_oper_log` VALUES (13775, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1648370037000,\"temperature\":\"12\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 16:53:55'); INSERT INTO `sys_oper_log` VALUES (13776, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 16:33:57\"}}', 0, '', '2022-03-27 16:53:55'); INSERT INTO `sys_oper_log` VALUES (13777, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Don\'t close your eyes, the opportunity will appear in the next second.\",\"createTime\":1648371257897,\"dataId\":3747,\"id\":1508004470941503489,\"imgurl\":\"\",\"note\":\"请不要闭眼,机会就在下一秒钟出现。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-27 16:54:17'); INSERT INTO `sys_oper_log` VALUES (13778, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"今天上线看到你把我删了,没关系。我进了你的军团,哈哈哈我聪明吧?!我一直在大厅看着你们俩组队双排,等你们结束后再看看你的战绩,心里无限甜蜜。看看吧,带妹就是比和我玩时弱吧。虽然你从未和我开麦过,可没关系。我能感受到你的温柔,和你每次刚不过时发的那句,你在那不动,在干嘛啊?你的关心总是那么突然\",\"createTime\":1648371258238,\"id\":1508004472317235201,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-27 16:54:18'); INSERT INTO `sys_oper_log` VALUES (13779, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1648370037000,\"temperature\":\"12\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 16:54:36'); INSERT INTO `sys_oper_log` VALUES (13780, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 16:33:57\"}}', 0, '', '2022-03-27 16:54:36'); INSERT INTO `sys_oper_log` VALUES (13781, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1648370037000,\"temperature\":\"12\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 16:55:12'); INSERT INTO `sys_oper_log` VALUES (13782, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 16:33:57\"}}', 0, '', '2022-03-27 16:55:12'); INSERT INTO `sys_oper_log` VALUES (13783, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 16:33:57\"}}', 0, '', '2022-03-27 16:55:14'); INSERT INTO `sys_oper_log` VALUES (13784, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1648370037000,\"temperature\":\"12\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 16:55:14'); INSERT INTO `sys_oper_log` VALUES (13785, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 16:33:57\"}}', 0, '', '2022-03-27 16:55:15'); INSERT INTO `sys_oper_log` VALUES (13786, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1648370037000,\"temperature\":\"12\",\"weather\":\"小雨\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 16:55:15'); INSERT INTO `sys_oper_log` VALUES (13787, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 17:04:01\"}}', 0, '', '2022-03-27 17:21:55'); INSERT INTO `sys_oper_log` VALUES (13788, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648371841000,\"temperature\":\"13\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 17:21:55'); INSERT INTO `sys_oper_log` VALUES (13789, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648371841000,\"temperature\":\"13\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 17:22:01'); INSERT INTO `sys_oper_log` VALUES (13790, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 17:04:01\"}}', 0, '', '2022-03-27 17:22:01'); INSERT INTO `sys_oper_log` VALUES (13791, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 17:04:01\"}}', 0, '', '2022-03-27 17:22:16'); INSERT INTO `sys_oper_log` VALUES (13792, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648371841000,\"temperature\":\"13\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 17:22:16'); INSERT INTO `sys_oper_log` VALUES (13793, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648371841000,\"temperature\":\"13\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 17:22:51'); INSERT INTO `sys_oper_log` VALUES (13794, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 17:04:01\"}}', 0, '', '2022-03-27 17:22:51'); INSERT INTO `sys_oper_log` VALUES (13795, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"≤3\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 17:04:01\"}}', 0, '', '2022-03-27 17:23:59'); INSERT INTO `sys_oper_log` VALUES (13796, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"91\",\"province\":\"江西\",\"reporttime\":1648371841000,\"temperature\":\"13\",\"weather\":\"小雨\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 17:23:59'); INSERT INTO `sys_oper_log` VALUES (13797, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"87\",\"province\":\"江西\",\"reporttime\":1648390193000,\"temperature\":\"11\",\"weather\":\"阴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-27 22:31:52'); INSERT INTO `sys_oper_log` VALUES (13798, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-27\",\"daypower\":\"4\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-03-28\",\"daypower\":\"4\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"4\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-27 22:09:53\"}}', 0, '', '2022-03-27 22:31:52'); INSERT INTO `sys_oper_log` VALUES (13799, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"55\",\"province\":\"江西\",\"reporttime\":1648442039000,\"temperature\":\"16\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-28 13:00:07'); INSERT INTO `sys_oper_log` VALUES (13800, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"23\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"阴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"19\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"11\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-28 12:33:59\"}}', 0, '', '2022-03-28 13:00:07'); INSERT INTO `sys_oper_log` VALUES (13801, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-28\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"11\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"17\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-28 21:40:17\"}}', 0, '', '2022-03-28 21:55:57'); INSERT INTO `sys_oper_log` VALUES (13802, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648475757678,\"humidity\":\"77\",\"id\":1508442774736343041,\"province\":\"江西\",\"reporttime\":1648474817000,\"temperature\":\"14\",\"weather\":\"晴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-28 21:55:57'); INSERT INTO `sys_oper_log` VALUES (13803, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-29 18:02:38\"}}', 0, '', '2022-03-29 18:13:35'); INSERT INTO `sys_oper_log` VALUES (13804, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648548815618,\"humidity\":\"61\",\"id\":1508749201996705793,\"province\":\"江西\",\"reporttime\":1648548158000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-29 18:13:35'); INSERT INTO `sys_oper_log` VALUES (13805, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-29 18:02:38\"}}', 0, '', '2022-03-29 18:13:36'); INSERT INTO `sys_oper_log` VALUES (13806, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648548158000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-29 18:13:36'); INSERT INTO `sys_oper_log` VALUES (13807, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-29 18:02:38\"}}', 0, '', '2022-03-29 18:14:58'); INSERT INTO `sys_oper_log` VALUES (13808, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"61\",\"province\":\"江西\",\"reporttime\":1648548158000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"西南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-29 18:14:58'); INSERT INTO `sys_oper_log` VALUES (13809, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"21\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"18\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-29 18:02:38\"}}', 0, '', '2022-03-29 18:16:25'); INSERT INTO `sys_oper_log` VALUES (13810, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"276KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urb76iomj31c00u046s.jpg\"},{\"imageFileLength\":\"160KB\",\"imageSize\":\"1620x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usf59ixvj31900u043d.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut52253bj31c00u0jui.jpg\"},{\"imageFileLength\":\"192KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpgly1g1utb1kchmj31hc0u0tdp.jpg\"},{\"imageFileLength\":\"119KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1uq1fkgb2j31c00u0jvf.jpg\"},{\"imageFileLength\":\"213KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g1urvuelq1j31c00u0h0p.jpg\"},{\"imageFileLength\":\"147KB\",\"imageSize\":\"1622x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g2uicoymuqj31920u00wn.jpg\"},{\"imageFileLength\":\"282KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpggy1g1uqft14dbj31c00u0gsb.jpg\"},{\"imageFileLength\":\"247KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1urpgdmexj31c00u0n7j.jpg\"},{\"imageFileLength\":\"148KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us8xn6smj31c00u042j.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-03-29 18:28:36'); INSERT INTO `sys_oper_log` VALUES (13811, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"读书是最好的学习,追随伟大人物的思想,是富有趣味的事情啊。\",\"createTime\":1648560494927,\"id\":1508798188518830081,\"source\":\"普希金\",\"type\":4}}', 0, '', '2022-03-29 21:28:14'); INSERT INTO `sys_oper_log` VALUES (13812, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Knowledge is the eye of the mind.\",\"createTime\":1648560494938,\"dataId\":4247,\"id\":1508798188590133250,\"imgurl\":\"\",\"note\":\"知识是心灵的眼睛。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-29 21:28:14'); INSERT INTO `sys_oper_log` VALUES (13813, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"No matter what happens, or how bad it seems today, life does go on, and it will be better tomorrow. \",\"createTime\":1648560503071,\"dataId\":3398,\"id\":1508798222731767810,\"imgurl\":\"\",\"note\":\"不管发生什么,不管今天看起来多么糟糕,生活都会继续,明天会更好。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-29 21:28:23'); INSERT INTO `sys_oper_log` VALUES (13814, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"我最近越来越期待夜晚了,因为白天都没什么机会和你说话,只能憋到晚上和你说句晚安\",\"createTime\":1648560503482,\"id\":1508798224409489410,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-29 21:28:23'); INSERT INTO `sys_oper_log` VALUES (13815, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1648560521184,\"en\":\"The statesman retired as the mayor of New York.\",\"id\":1508798298652864513,\"zh\":\" 那位政治家退休时是纽约市市长。\"}}', 0, '', '2022-03-29 21:28:41'); INSERT INTO `sys_oper_log` VALUES (13816, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":1,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"关系\",\"createTime\":1647588141000,\"englishWord\":\"relation\",\"id\":1504719840542330881,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"函数\",\"createTime\":1647498750000,\"englishWord\":\"function\",\"id\":1504344909438656514,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"组件\",\"createTime\":1647402988000,\"englishWord\":\"component\",\"id\":1503943253848899585,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:45'); INSERT INTO `sys_oper_log` VALUES (13817, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":2,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"品牌\",\"createTime\":1647329755000,\"englishWord\":\"brand\",\"id\":1503636089435553793,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"类别\",\"createTime\":1647314830000,\"englishWord\":\"category\",\"id\":1503573491755143170,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"制品\",\"createTime\":1647249253000,\"englishWord\":\"ware\",\"id\":1503298439486816258,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:45'); INSERT INTO `sys_oper_log` VALUES (13818, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":3,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"订单\",\"createTime\":1647249238000,\"englishWord\":\"order\",\"id\":1503298376987492353,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"成员\",\"createTime\":1647249226000,\"englishWord\":\"member\",\"id\":1503298326857170945,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"优惠券\",\"createTime\":1647249189000,\"englishWord\":\"coupon\",\"id\":1503298173676994561,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:45'); INSERT INTO `sys_oper_log` VALUES (13819, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":4,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"产品\",\"createTime\":1647248511000,\"englishWord\":\"product\",\"id\":1503295327317442562,\"isCollect\":1,\"lookCount\":0,\"sort\":0,\"top\":2},{\"chineseWord\":\"领袖\",\"createTime\":1647240436000,\"englishWord\":\"leader\",\"id\":1503261461068361730,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"会话\",\"createTime\":1647240417000,\"englishWord\":\"session\",\"id\":1503261381309476865,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:46'); INSERT INTO `sys_oper_log` VALUES (13820, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":5,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"奴隶\",\"createTime\":1647240199000,\"englishWord\":\"slave\",\"id\":1503260465885851650,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"主\",\"createTime\":1647240192000,\"englishWord\":\"master\",\"id\":1503260436362145794,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"刷新\",\"createTime\":1647219955000,\"englishWord\":\"refresh\",\"id\":1503175557473611777,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:46'); INSERT INTO `sys_oper_log` VALUES (13821, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":6,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"云\",\"createTime\":1646977311000,\"englishWord\":\"cloud\",\"id\":1502157833582571521,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"本地的\",\"createTime\":1646977060000,\"englishWord\":\"native\",\"id\":1502156781961506818,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"等待\",\"createTime\":1646904465000,\"englishWord\":\"wait\",\"id\":1501852296680808450,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:46'); INSERT INTO `sys_oper_log` VALUES (13822, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":7,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"管道\",\"createTime\":1646904248000,\"englishWord\":\"pipeline\",\"id\":1501851385715728386,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"输出\",\"createTime\":1646904237000,\"englishWord\":\"output\",\"id\":1501851340668903425,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"输入\",\"createTime\":1646904230000,\"englishWord\":\"input\",\"id\":1501851308762832898,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:46'); INSERT INTO `sys_oper_log` VALUES (13823, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":8,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"处理器\",\"createTime\":1646899617000,\"englishWord\":\"processor\",\"id\":1501831961285730305,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"λ\",\"createTime\":1646898748000,\"englishWord\":\"lambda\",\"id\":1501828316179701762,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"流言蜚语\",\"createTime\":1646882257000,\"englishWord\":\"gossip\",\"id\":1501759150366105601,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:46'); INSERT INTO `sys_oper_log` VALUES (13824, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":9,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"自定义\",\"createTime\":1646814868000,\"englishWord\":\"custom\",\"id\":1501476498798977026,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"消费者\",\"createTime\":1646814745000,\"englishWord\":\"consumer\",\"id\":1501475983289655297,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"提供者\",\"createTime\":1646814737000,\"englishWord\":\"provider\",\"id\":1501475949127049217,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:47'); INSERT INTO `sys_oper_log` VALUES (13825, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":10,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"许可证\",\"createTime\":1646810780000,\"englishWord\":\"license\",\"id\":1501459350500319234,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"建造\",\"createTime\":1646810756000,\"englishWord\":\"bulid\",\"id\":1501459251594436609,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"代理\",\"createTime\":1646810583000,\"englishWord\":\"proxy\",\"id\":1501458525145178114,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:48'); INSERT INTO `sys_oper_log` VALUES (13826, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":11,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"长度\",\"createTime\":1646810509000,\"englishWord\":\"length\",\"id\":1501458213520973826,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"模块\",\"createTime\":1646797418000,\"englishWord\":\"module\",\"id\":1501403309209198594,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"默认的\",\"createTime\":1646797367000,\"englishWord\":\"default\",\"id\":1501403093991071746,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:48'); INSERT INTO `sys_oper_log` VALUES (13827, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":12,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"研究\",\"createTime\":1646796712000,\"englishWord\":\"study\",\"id\":1501400348491943937,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"套接字\",\"createTime\":1646796131000,\"englishWord\":\"socket\",\"id\":1501397911165112322,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"事件\",\"createTime\":1646792572000,\"englishWord\":\"event\",\"id\":1501382981938483201,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:48'); INSERT INTO `sys_oper_log` VALUES (13828, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":13,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"代码\",\"createTime\":1646792192000,\"englishWord\":\"code\",\"id\":1501381389629689858,\"isCollect\":1,\"lookCount\":5,\"sort\":0,\"top\":2},{\"chineseWord\":\"消息\",\"createTime\":1646791393000,\"englishWord\":\"message\",\"id\":1501378035797102594,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"图像\",\"createTime\":1646791383000,\"englishWord\":\"image\",\"id\":1501377994005057537,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:49'); INSERT INTO `sys_oper_log` VALUES (13829, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":14,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"绑定\",\"createTime\":1646789598000,\"englishWord\":\"bind\",\"id\":1501370508669784066,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"通道\",\"createTime\":1646789569000,\"englishWord\":\"channel\",\"id\":1501370386112221185,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"孩子\",\"createTime\":1646789522000,\"englishWord\":\"child\",\"id\":1501370187688087553,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:49'); INSERT INTO `sys_oper_log` VALUES (13830, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":15,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"学习\",\"createTime\":1646788033000,\"englishWord\":\"learn\",\"id\":1501363943715803138,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"魔法\",\"createTime\":1646787433000,\"englishWord\":\"magic\",\"id\":1501361426487480322,\"isCollect\":1,\"lookCount\":9,\"sort\":0,\"top\":2},{\"chineseWord\":\"进行\",\"createTime\":1646727193000,\"englishWord\":\"reacotor\",\"id\":1501108764496097281,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:49'); INSERT INTO `sys_oper_log` VALUES (13831, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":16,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"选择器\",\"createTime\":1646724675000,\"englishWord\":\"selector\",\"id\":1501098201296662529,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"选择\",\"createTime\":1646724664000,\"englishWord\":\"select\",\"id\":1501098157386493954,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"从\",\"createTime\":1646723956000,\"englishWord\":\"from\",\"id\":1501095187676655618,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:50'); INSERT INTO `sys_oper_log` VALUES (13832, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":17,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"形式\",\"createTime\":1646723949000,\"englishWord\":\"form\",\"id\":1501095156605251585,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"python\",\"createTime\":1646723917000,\"englishWord\":\"python\",\"id\":1501095020613332993,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"主要\",\"createTime\":1646723314000,\"englishWord\":\"main\",\"id\":1501092494899933186,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:50'); INSERT INTO `sys_oper_log` VALUES (13833, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":18,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"开放\",\"createTime\":1646723296000,\"englishWord\":\"open\",\"id\":1501092418370662401,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"服务器\",\"createTime\":1646723290000,\"englishWord\":\"server\",\"id\":1501092394194694145,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"客户端\",\"createTime\":1646723284000,\"englishWord\":\"client\",\"id\":1501092365623095298,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:50'); INSERT INTO `sys_oper_log` VALUES (13834, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":19,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"休息\",\"createTime\":1646705173000,\"englishWord\":\"rest\",\"id\":1501016402977615874,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"宁静的\",\"createTime\":1646705158000,\"englishWord\":\"restful\",\"id\":1501016342487363586,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"基础\",\"createTime\":1646663624000,\"englishWord\":\"base\",\"id\":1500842137299406850,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:51'); INSERT INTO `sys_oper_log` VALUES (13835, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":20,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"保存\",\"createTime\":1646663608000,\"englishWord\":\"save\",\"id\":1500842067464245249,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"池\",\"createTime\":1646644331000,\"englishWord\":\"pool\",\"id\":1500761212617736193,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2},{\"chineseWord\":\"完整的\",\"createTime\":1646643210000,\"englishWord\":\"full\",\"id\":1500756511402737665,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:51'); INSERT INTO `sys_oper_log` VALUES (13836, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":21,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"队列\",\"createTime\":1646643201000,\"englishWord\":\"queue\",\"id\":1500756474933264386,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"读\",\"createTime\":1646642039000,\"englishWord\":\"read\",\"id\":1500751599935668225,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"日志\",\"createTime\":1646641799000,\"englishWord\":\"log\",\"id\":1500750596200972289,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:51'); INSERT INTO `sys_oper_log` VALUES (13837, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":22,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"写\",\"createTime\":1646640941000,\"englishWord\":\"write\",\"id\":1500746994665373697,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"票\",\"createTime\":1646636293000,\"englishWord\":\"ticket\",\"id\":1500727499158700033,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"分组\",\"createTime\":1646635806000,\"englishWord\":\"group\",\"id\":1500725456331325442,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:52'); INSERT INTO `sys_oper_log` VALUES (13838, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":23,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"开始\",\"createTime\":1646635611000,\"englishWord\":\"start\",\"id\":1500724642288222209,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"运行\",\"createTime\":1646635606000,\"englishWord\":\"run\",\"id\":1500724620788219905,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"布尔\",\"createTime\":1646635567000,\"englishWord\":\"boolean\",\"id\":1500724457613017090,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:52'); INSERT INTO `sys_oper_log` VALUES (13839, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":24,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"调用\",\"createTime\":1646635549000,\"englishWord\":\"call\",\"id\":1500724380953722882,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"可调用的\",\"createTime\":1646635523000,\"englishWord\":\"callable\",\"id\":1500724273160110082,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"并发\",\"createTime\":1646635515000,\"englishWord\":\"concurrent\",\"id\":1500724237093289985,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:52'); INSERT INTO `sys_oper_log` VALUES (13840, '查看单词夹', 0, 'com.xjs.word.controller.EnglishWordController.collect()', 'GET', 1, 'admin', '', '/word/collect', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"current\":25,\"optimizeCountSql\":true,\"orders\":[],\"pages\":49,\"records\":[{\"chineseWord\":\"线程\",\"createTime\":1646634826000,\"englishWord\":\"thread\",\"id\":1500721347238805506,\"isCollect\":1,\"lookCount\":2,\"sort\":0,\"top\":2},{\"chineseWord\":\"静态\",\"createTime\":1646634790000,\"englishWord\":\"static\",\"id\":1500721196046729217,\"isCollect\":1,\"lookCount\":1,\"sort\":0,\"top\":2},{\"chineseWord\":\"人\",\"createTime\":1646632129000,\"englishWord\":\"person\",\"id\":1500710034328502274,\"isCollect\":1,\"lookCount\":3,\"sort\":0,\"top\":2}],\"searchCount\":true,\"size\":3,\"total\":146}}', 0, '', '2022-03-29 21:28:52'); INSERT INTO `sys_oper_log` VALUES (13841, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-29 22:02:29\"}}', 0, '', '2022-03-29 22:16:52'); INSERT INTO `sys_oper_log` VALUES (13842, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1508808702531682305', '127.0.0.1', '', '1508808702531682305', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-03-29 22:16:53'); INSERT INTO `sys_oper_log` VALUES (13843, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-29\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"东南\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"雷阵雨\",\"nightwind\":\"东南\",\"week\":\"周二\"},{\"date\":\"2022-03-30\",\"daypower\":\"≤3\",\"daytemp\":\"20\",\"dayweather\":\"雷阵雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"≤3\",\"daytemp\":\"17\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"≤3\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-29 22:02:29\"}}', 0, '', '2022-03-29 22:16:54'); INSERT INTO `sys_oper_log` VALUES (13844, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"苹果\",\"brandId\":1503971694166016001,\"catelogName\":\"移动电源\",\"catelogId\":231,\"id\":1508811643791532033}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-29 22:21:43'); INSERT INTO `sys_oper_log` VALUES (13845, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"OPPO\",\"brandId\":1504286299555762178,\"catelogName\":\"鼠标\",\"catelogId\":474,\"id\":1508811675584356353}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-03-29 22:21:50'); INSERT INTO `sys_oper_log` VALUES (13846, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-04-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-30 20:39:58\"}}', 0, '', '2022-03-30 20:52:46'); INSERT INTO `sys_oper_log` VALUES (13847, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648644766376,\"humidity\":\"96\",\"id\":1509151648644833281,\"province\":\"江西\",\"reporttime\":1648643998000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-30 20:52:46'); INSERT INTO `sys_oper_log` VALUES (13848, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"I wish every day is merry, not just Christmas.\",\"createTime\":1648644964941,\"dataId\":4352,\"id\":1509152481491001346,\"imgurl\":\"\",\"note\":\"我希望每天都快乐,不止圣诞。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-30 20:56:04'); INSERT INTO `sys_oper_log` VALUES (13849, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"终于知道我啥我没朋友,因为太帅,帅到没朋友。\",\"createTime\":1648644965028,\"id\":1509152481813962753,\"source\":\"笑话大全\",\"type\":10}}', 0, '', '2022-03-30 20:56:05'); INSERT INTO `sys_oper_log` VALUES (13850, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648644766376,\"humidity\":\"96\",\"id\":1509151648644833281,\"province\":\"江西\",\"reporttime\":1648643998000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-30 20:56:08'); INSERT INTO `sys_oper_log` VALUES (13851, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-04-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-30 20:39:58\"}}', 0, '', '2022-03-30 20:56:08'); INSERT INTO `sys_oper_log` VALUES (13852, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Sarcasm is the lowest form of wit.\",\"createTime\":1648644969064,\"dataId\":3950,\"id\":1509152498784116737,\"imgurl\":\"\",\"note\":\"讽刺是最低级的智慧。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-30 20:56:09'); INSERT INTO `sys_oper_log` VALUES (13853, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"重要的是无论我们选择哪条路,都要担负起选择的责任。\",\"createTime\":1648644969434,\"id\":1509152500310843394,\"source\":\"funkyholic\",\"type\":5}}', 0, '', '2022-03-30 20:56:09'); INSERT INTO `sys_oper_log` VALUES (13854, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-04-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-30 20:39:58\"}}', 0, '', '2022-03-30 20:56:12'); INSERT INTO `sys_oper_log` VALUES (13855, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648644766376,\"humidity\":\"96\",\"id\":1509151648644833281,\"province\":\"江西\",\"reporttime\":1648643998000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-30 20:56:12'); INSERT INTO `sys_oper_log` VALUES (13856, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"老婆:“特么你竟然背我搞小蜜?” 老公:“人家不常说女人如衣服吗?” 老婆:“特么我这么漂亮的衣服给你穿你还不满足吗?” 老公:“老婆如内衣,小蜜如外套,内衣漂亮我留着自己欣赏,外套是出门要穿的啊!”\",\"createTime\":1648644972640,\"id\":1509152513766170625,\"source\":\"搞笑段子\",\"type\":11}}', 0, '', '2022-03-30 20:56:12'); INSERT INTO `sys_oper_log` VALUES (13857, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"In this world, you can either do things the easy way or the right way.\",\"createTime\":1648644972653,\"dataId\":4147,\"id\":1509152513833279489,\"imgurl\":\"\",\"note\":\"在这个世界,办事情一旦偷懒就办不好。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-30 20:56:12'); INSERT INTO `sys_oper_log` VALUES (13858, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-04-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-30 20:39:58\"}}', 0, '', '2022-03-30 20:56:17'); INSERT INTO `sys_oper_log` VALUES (13859, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648644766376,\"humidity\":\"96\",\"id\":1509151648644833281,\"province\":\"江西\",\"reporttime\":1648643998000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-30 20:56:17'); INSERT INTO `sys_oper_log` VALUES (13860, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"There\'s no one I\'d rather be than me.\",\"createTime\":1648644977210,\"dataId\":4151,\"id\":1509152532892196866,\"imgurl\":\"\",\"note\":\"我不愿做任何人除了我自己。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-30 20:56:17'); INSERT INTO `sys_oper_log` VALUES (13861, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你昨天晚上又没回我的消息 在我孜孜不倦地骚扰下你终于舍得回我了 你说“滚” 这其中一定有什么含义 我想了很久 滚是三点水这代表你对我的思念也如滚滚流水一样汹涌 我感动哭了 不知道你现在在干嘛 我很想你\",\"createTime\":1648644977722,\"id\":1509152535085817857,\"source\":\"舔狗日记\",\"type\":6}}', 0, '', '2022-03-30 20:56:17'); INSERT INTO `sys_oper_log` VALUES (13862, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"What we do for ourselves dies with us. What we do for others, that’s beyond us.\",\"dataId\":4099,\"imgurl\":\"\",\"note\":\"我们为自己做的事,会随我们化归尘土。为他人做的事,才能超越生死。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-30 20:56:22'); INSERT INTO `sys_oper_log` VALUES (13863, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"遥控电流香蕉,一按开关就放电,电得他秀斗,是相当主流派的整人武器!\",\"createTime\":1648644982176,\"id\":1509152553775636481,\"source\":\"整人专家\",\"type\":3}}', 0, '', '2022-03-30 20:56:22'); INSERT INTO `sys_oper_log` VALUES (13864, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648644766376,\"humidity\":\"96\",\"id\":1509151648644833281,\"province\":\"江西\",\"reporttime\":1648643998000,\"temperature\":\"16\",\"weather\":\"小雨\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-03-30 20:56:26'); INSERT INTO `sys_oper_log` VALUES (13865, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-04-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-30 20:39:58\"}}', 0, '', '2022-03-30 20:56:26'); INSERT INTO `sys_oper_log` VALUES (13866, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"腰里挂着死耗子还装着打猎的.\",\"createTime\":1648644986684,\"id\":1509152572641615874,\"source\":\"功夫\",\"type\":3}}', 0, '', '2022-03-30 20:56:26'); INSERT INTO `sys_oper_log` VALUES (13867, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Work hard!Work will save you. Work is the only thing that will see you through this.\",\"dataId\":3610,\"imgurl\":\"\",\"note\":\"努力工作!工作能拯救你。埋头苦干可令你忘记痛楚。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-03-30 20:56:26'); INSERT INTO `sys_oper_log` VALUES (13868, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-30\",\"daypower\":\"4\",\"daytemp\":\"19\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"16\",\"nightweather\":\"中雨\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"16\",\"dayweather\":\"小雨\",\"daywind\":\"北\",\"nightpower\":\"5\",\"nighttemp\":\"12\",\"nightweather\":\"小雨\",\"nightwind\":\"北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"≤3\",\"daytemp\":\"13\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-04-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"北\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-03-30 20:39:58\"}}', 0, '', '2022-03-30 20:57:16'); INSERT INTO `sys_oper_log` VALUES (13869, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-03-31\",\"daypower\":\"5\",\"daytemp\":\"15\",\"dayweather\":\"中雨\",\"daywind\":\"东北\",\"nightpower\":\"5\",\"nighttemp\":\"10\",\"nightweather\":\"小雨\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-01\",\"daypower\":\"≤3\",\"daytemp\":\"12\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"8\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-04-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-04-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-01 00:02:32\"}}', 0, '', '2022-04-01 00:13:52'); INSERT INTO `sys_oper_log` VALUES (13870, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648743232527,\"humidity\":\"84\",\"id\":1509564645619978242,\"province\":\"江西\",\"reporttime\":1648742552000,\"temperature\":\"12\",\"weather\":\"阴\",\"winddirection\":\"东北\",\"windpower\":\"5\"}}', 0, '', '2022-04-01 00:13:52'); INSERT INTO `sys_oper_log` VALUES (13871, '删除重复文案', 3, 'com.xjs.copywriting.controller.CopyWritingController.deleteRepeatData()', 'DELETE', 1, 'admin', '', '/copyWriting/Repeat/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":0}', 0, '', '2022-04-01 00:15:13'); INSERT INTO `sys_oper_log` VALUES (13872, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-01\",\"daypower\":\"4\",\"daytemp\":\"14\",\"dayweather\":\"小雨\",\"daywind\":\"东北\",\"nightpower\":\"4\",\"nighttemp\":\"9\",\"nightweather\":\"阴\",\"nightwind\":\"东北\",\"week\":\"周五\"},{\"date\":\"2022-04-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-04-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-04-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-01 21:09:00\"}}', 0, '', '2022-04-01 21:32:29'); INSERT INTO `sys_oper_log` VALUES (13873, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648819949691,\"humidity\":\"68\",\"id\":1509886420706791426,\"province\":\"江西\",\"reporttime\":1648818540000,\"temperature\":\"10\",\"weather\":\"阴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-01 21:32:29'); INSERT INTO `sys_oper_log` VALUES (13874, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-02\",\"daypower\":\"≤3\",\"daytemp\":\"18\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"9\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周六\"},{\"date\":\"2022-04-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-04-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-04-05\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"北\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"多云\",\"nightwind\":\"北\",\"week\":\"周二\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-02 20:02:30\"}}', 0, '', '2022-04-02 20:34:59'); INSERT INTO `sys_oper_log` VALUES (13875, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648902899676,\"humidity\":\"60\",\"id\":1510234338177515522,\"province\":\"江西\",\"reporttime\":1648900950000,\"temperature\":\"13\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-02 20:34:59'); INSERT INTO `sys_oper_log` VALUES (13876, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-03\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"10\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周日\"},{\"date\":\"2022-04-04\",\"daypower\":\"≤3\",\"daytemp\":\"21\",\"dayweather\":\"多云\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"13\",\"nightweather\":\"多云\",\"nightwind\":\"东北\",\"week\":\"周一\"},{\"date\":\"2022-04-05\",\"daypower\":\"≤3\",\"daytemp\":\"22\",\"dayweather\":\"多云\",\"daywind\":\"西\",\"nightpower\":\"≤3\",\"nighttemp\":\"14\",\"nightweather\":\"晴\",\"nightwind\":\"西\",\"week\":\"周二\"},{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-03 19:09:58\"}}', 0, '', '2022-04-03 19:17:29'); INSERT INTO `sys_oper_log` VALUES (13877, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1648984649339,\"humidity\":\"34\",\"id\":1510577221069918210,\"province\":\"江西\",\"reporttime\":1648984198000,\"temperature\":\"16\",\"weather\":\"阴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-03 19:17:29'); INSERT INTO `sys_oper_log` VALUES (13878, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1648984673931,\"en\":\"What did he say in the letter?\",\"id\":1510577324216242178,\"zh\":\" 他在信里说什么了?\"}}', 0, '', '2022-04-03 19:17:53'); INSERT INTO `sys_oper_log` VALUES (13879, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"What did he say in the letter?\",\"zh\":\" 他在信里说什么了?\"}}', 0, '', '2022-04-03 19:17:58'); INSERT INTO `sys_oper_log` VALUES (13880, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"en\":\"What did he say in the letter?\",\"zh\":\" 他在信里说什么了?\"}}', 0, '', '2022-04-03 19:18:00'); INSERT INTO `sys_oper_log` VALUES (13881, '仓库信息', 1, 'com.xjs.mall.ware.controller.WareInfoController.save()', 'POST', 1, 'admin', '', '/ware/wareinfo/save', '127.0.0.1', '', '{\"address\":\"江苏省 宿迁市 泗洪县 车门乡-xx\",\"name\":\"小仓库\",\"id\":1510577500800593921,\"areacode\":321324}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-03 19:18:36'); INSERT INTO `sys_oper_log` VALUES (13882, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 08:40:01\"}}', 0, '', '2022-04-06 08:46:46'); INSERT INTO `sys_oper_log` VALUES (13883, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649206006583,\"humidity\":\"73\",\"id\":1511505660687273986,\"province\":\"江西\",\"reporttime\":1649205601000,\"temperature\":\"17\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 08:46:46'); INSERT INTO `sys_oper_log` VALUES (13884, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 08:40:01\"}}', 0, '', '2022-04-06 09:04:53'); INSERT INTO `sys_oper_log` VALUES (13885, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 08:40:01\"}}', 0, '', '2022-04-06 09:04:54'); INSERT INTO `sys_oper_log` VALUES (13886, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 08:40:01\"}}', 0, '', '2022-04-06 09:05:04'); INSERT INTO `sys_oper_log` VALUES (13887, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"73\",\"province\":\"江西\",\"reporttime\":1649205601000,\"temperature\":\"17\",\"weather\":\"多云\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 09:05:04'); INSERT INTO `sys_oper_log` VALUES (13888, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1649208749000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 09:42:05'); INSERT INTO `sys_oper_log` VALUES (13889, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 09:32:29\"}}', 0, '', '2022-04-06 09:42:06'); INSERT INTO `sys_oper_log` VALUES (13890, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 09:32:29\"}}', 0, '', '2022-04-06 09:43:32'); INSERT INTO `sys_oper_log` VALUES (13891, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1649208749000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 09:43:32'); INSERT INTO `sys_oper_log` VALUES (13892, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 09:32:29\"}}', 0, '', '2022-04-06 09:43:57'); INSERT INTO `sys_oper_log` VALUES (13893, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1649208749000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 09:43:57'); INSERT INTO `sys_oper_log` VALUES (13894, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 09:32:29\"}}', 0, '', '2022-04-06 09:44:58'); INSERT INTO `sys_oper_log` VALUES (13895, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1649208749000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 09:44:58'); INSERT INTO `sys_oper_log` VALUES (13896, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 09:32:29\"}}', 0, '', '2022-04-06 09:45:07'); INSERT INTO `sys_oper_log` VALUES (13897, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1649208749000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 09:45:07'); INSERT INTO `sys_oper_log` VALUES (13898, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1649208749000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 09:45:15'); INSERT INTO `sys_oper_log` VALUES (13899, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 09:32:29\"}}', 0, '', '2022-04-06 09:45:15'); INSERT INTO `sys_oper_log` VALUES (13900, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 09:32:29\"}}', 0, '', '2022-04-06 09:45:37'); INSERT INTO `sys_oper_log` VALUES (13901, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1649208749000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 09:45:37'); INSERT INTO `sys_oper_log` VALUES (13902, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 09:32:29\"}}', 0, '', '2022-04-06 09:49:57'); INSERT INTO `sys_oper_log` VALUES (13903, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"64\",\"province\":\"江西\",\"reporttime\":1649208749000,\"temperature\":\"19\",\"weather\":\"多云\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 09:49:57'); INSERT INTO `sys_oper_log` VALUES (13904, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1649227196000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 14:41:44'); INSERT INTO `sys_oper_log` VALUES (13905, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 14:39:56\"}}', 0, '', '2022-04-06 14:41:44'); INSERT INTO `sys_oper_log` VALUES (13906, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 14:39:56\"}}', 0, '', '2022-04-06 14:41:51'); INSERT INTO `sys_oper_log` VALUES (13907, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1649227196000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 14:41:51'); INSERT INTO `sys_oper_log` VALUES (13908, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 14:39:56\"}}', 0, '', '2022-04-06 14:49:44'); INSERT INTO `sys_oper_log` VALUES (13909, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1649227196000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 14:49:44'); INSERT INTO `sys_oper_log` VALUES (13910, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 14:39:56\"}}', 0, '', '2022-04-06 14:55:25'); INSERT INTO `sys_oper_log` VALUES (13911, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1649227196000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 14:55:25'); INSERT INTO `sys_oper_log` VALUES (13912, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 14:39:56\"}}', 0, '', '2022-04-06 14:57:03'); INSERT INTO `sys_oper_log` VALUES (13913, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"39\",\"province\":\"江西\",\"reporttime\":1649227196000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 14:57:03'); INSERT INTO `sys_oper_log` VALUES (13914, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649229163957,\"humidity\":\"36\",\"id\":1511602789749477378,\"province\":\"江西\",\"reporttime\":1649228986000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:12:43'); INSERT INTO `sys_oper_log` VALUES (13915, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:09:46\"}}', 0, '', '2022-04-06 15:12:43'); INSERT INTO `sys_oper_log` VALUES (13916, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649229163957,\"humidity\":\"36\",\"id\":1511602789749477378,\"province\":\"江西\",\"reporttime\":1649228986000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:20:11'); INSERT INTO `sys_oper_log` VALUES (13917, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:09:46\"}}', 0, '', '2022-04-06 15:20:11'); INSERT INTO `sys_oper_log` VALUES (13918, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649229163957,\"humidity\":\"36\",\"id\":1511602789749477378,\"province\":\"江西\",\"reporttime\":1649228986000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:20:19'); INSERT INTO `sys_oper_log` VALUES (13919, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:09:46\"}}', 0, '', '2022-04-06 15:20:19'); INSERT INTO `sys_oper_log` VALUES (13920, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:09:46\"}}', 0, '', '2022-04-06 15:22:55'); INSERT INTO `sys_oper_log` VALUES (13921, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"36\",\"province\":\"江西\",\"reporttime\":1649228986000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:22:55'); INSERT INTO `sys_oper_log` VALUES (13922, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:09:46\"}}', 0, '', '2022-04-06 15:23:34'); INSERT INTO `sys_oper_log` VALUES (13923, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"36\",\"province\":\"江西\",\"reporttime\":1649228986000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"西北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:23:34'); INSERT INTO `sys_oper_log` VALUES (13924, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649230458404,\"humidity\":\"34\",\"id\":1511608219062095874,\"province\":\"江西\",\"reporttime\":1649230362000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:34:18'); INSERT INTO `sys_oper_log` VALUES (13925, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:32:42\"}}', 0, '', '2022-04-06 15:34:19'); INSERT INTO `sys_oper_log` VALUES (13926, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:32:42\"}}', 0, '', '2022-04-06 15:36:21'); INSERT INTO `sys_oper_log` VALUES (13927, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649230458404,\"humidity\":\"34\",\"id\":1511608219062095874,\"province\":\"江西\",\"reporttime\":1649230362000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:36:21'); INSERT INTO `sys_oper_log` VALUES (13928, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:32:42\"}}', 0, '', '2022-04-06 15:43:55'); INSERT INTO `sys_oper_log` VALUES (13929, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649230458404,\"humidity\":\"34\",\"id\":1511608219062095874,\"province\":\"江西\",\"reporttime\":1649230362000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:43:55'); INSERT INTO `sys_oper_log` VALUES (13930, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:32:42\"}}', 0, '', '2022-04-06 15:45:48'); INSERT INTO `sys_oper_log` VALUES (13931, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1649230362000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:45:48'); INSERT INTO `sys_oper_log` VALUES (13932, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1649230362000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:51:04'); INSERT INTO `sys_oper_log` VALUES (13933, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:32:42\"}}', 0, '', '2022-04-06 15:51:04'); INSERT INTO `sys_oper_log` VALUES (13934, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1649230362000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:51:44'); INSERT INTO `sys_oper_log` VALUES (13935, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:32:42\"}}', 0, '', '2022-04-06 15:51:44'); INSERT INTO `sys_oper_log` VALUES (13936, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:32:42\"}}', 0, '', '2022-04-06 15:54:00'); INSERT INTO `sys_oper_log` VALUES (13937, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1649230362000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:54:00'); INSERT INTO `sys_oper_log` VALUES (13938, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 15:32:42\"}}', 0, '', '2022-04-06 15:55:37'); INSERT INTO `sys_oper_log` VALUES (13939, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1649230362000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 15:55:37'); INSERT INTO `sys_oper_log` VALUES (13940, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 16:02:35\"}}', 0, '', '2022-04-06 16:21:03'); INSERT INTO `sys_oper_log` VALUES (13941, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"31\",\"province\":\"江西\",\"reporttime\":1649232155000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 16:21:03'); INSERT INTO `sys_oper_log` VALUES (13942, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 16:02:35\"}}', 0, '', '2022-04-06 16:29:07'); INSERT INTO `sys_oper_log` VALUES (13943, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"31\",\"province\":\"江西\",\"reporttime\":1649232155000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 16:29:07'); INSERT INTO `sys_oper_log` VALUES (13944, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 16:02:35\"}}', 0, '', '2022-04-06 16:29:58'); INSERT INTO `sys_oper_log` VALUES (13945, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"31\",\"province\":\"江西\",\"reporttime\":1649232155000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 16:29:58'); INSERT INTO `sys_oper_log` VALUES (13946, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 16:02:35\"}}', 0, '', '2022-04-06 16:38:03'); INSERT INTO `sys_oper_log` VALUES (13947, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"31\",\"province\":\"江西\",\"reporttime\":1649232155000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 16:38:03'); INSERT INTO `sys_oper_log` VALUES (13948, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 16:39:56\"}}', 0, '', '2022-04-06 16:52:08'); INSERT INTO `sys_oper_log` VALUES (13949, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"31\",\"province\":\"江西\",\"reporttime\":1649234396000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 16:52:08'); INSERT INTO `sys_oper_log` VALUES (13950, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 16:39:56\"}}', 0, '', '2022-04-06 16:58:03'); INSERT INTO `sys_oper_log` VALUES (13951, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"31\",\"province\":\"江西\",\"reporttime\":1649234396000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 16:58:03'); INSERT INTO `sys_oper_log` VALUES (13952, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"31\",\"province\":\"江西\",\"reporttime\":1649234396000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-06 17:00:08'); INSERT INTO `sys_oper_log` VALUES (13953, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-06\",\"daypower\":\"≤3\",\"daytemp\":\"25\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周三\"},{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-06 16:39:56\"}}', 0, '', '2022-04-06 17:00:08'); INSERT INTO `sys_oper_log` VALUES (13954, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 08:39:54\"}}', 0, '', '2022-04-07 08:43:16'); INSERT INTO `sys_oper_log` VALUES (13955, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649292197294,\"humidity\":\"72\",\"id\":1511867170735386625,\"province\":\"江西\",\"reporttime\":1649291994000,\"temperature\":\"18\",\"weather\":\"晴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-07 08:43:17'); INSERT INTO `sys_oper_log` VALUES (13956, '获取mm图片分类', 0, 'com.xjs.apitools.controller.ApiToolsController.getBeautyPictureApiData()', 'GET', 1, 'admin', '', '/apitools/beautypicture', '127.0.0.1', '', '', '{\"code\":200,\"data\":[{\"imageFileLength\":\"218KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1ursh5e59j31c00u0ana.jpg\"},{\"imageFileLength\":\"129KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfffcxgj31c00u0djb.jpg\"},{\"imageFileLength\":\"224KB\",\"imageSize\":\"1920x1200\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005UYuA2gy1fvzhwudggdj31hc0xc44r.jpg\"},{\"imageFileLength\":\"260KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1usfai3htj31c00u0qf2.jpg\"},{\"imageFileLength\":\"130KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax1.sinaimg.cn/large/005BYqpgly1g1us9kgu7aj31c00u0422.jpg\"},{\"imageFileLength\":\"223KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpbwzsmj31c00u0ajx.jpg\"},{\"imageFileLength\":\"135KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax4.sinaimg.cn/large/005BYqpggy1g1utb67eomj31hc0u041x.jpg\"},{\"imageFileLength\":\"369KB\",\"imageSize\":\"1920x1080\",\"imageUrl\":\"https://tvax2.sinaimg.cn/large/005BYqpgly1g1urpd5djpj31hc0u0k21.jpg\"},{\"imageFileLength\":\"380KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpggy1g28dz3hwx2j31c00u0u0x.jpg\"},{\"imageFileLength\":\"165KB\",\"imageSize\":\"1728x1080\",\"imageUrl\":\"https://tvax3.sinaimg.cn/large/005BYqpgly1g1ut7mxgq1j31c00u0q7p.jpg\"}],\"msg\":\"操作成功\"}', 0, '', '2022-04-07 08:49:07'); INSERT INTO `sys_oper_log` VALUES (13957, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 09:10:02\"}}', 0, '', '2022-04-07 09:12:57'); INSERT INTO `sys_oper_log` VALUES (13958, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649293977918,\"humidity\":\"64\",\"id\":1511874639209558018,\"province\":\"江西\",\"reporttime\":1649293802000,\"temperature\":\"20\",\"weather\":\"晴\",\"winddirection\":\"西\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-07 09:12:57'); INSERT INTO `sys_oper_log` VALUES (13959, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[{\"catId\":17,\"parentCid\":0,\"sort\":0,\"catLevel\":1},{\"catId\":3,\"sort\":1},{\"catId\":4,\"sort\":2},{\"catId\":7,\"sort\":3},{\"catId\":2,\"sort\":4},{\"catId\":6,\"sort\":5},{\"catId\":8,\"sort\":6},{\"catId\":11,\"sort\":7},{\"catId\":12,\"sort\":8},{\"catId\":13,\"sort\":9},{\"catId\":14,\"sort\":10},{\"catId\":15,\"sort\":11},{\"catId\":16,\"sort\":12},{\"catId\":5,\"sort\":13},{\"catId\":10,\"sort\":14},{\"catId\":9,\"sort\":15},{\"catId\":18,\"sort\":16},{\"catId\":1,\"sort\":17},{\"catId\":19,\"sort\":18},{\"catId\":20,\"sort\":19},{\"catId\":21,\"sort\":20}]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-07 10:27:53'); INSERT INTO `sys_oper_log` VALUES (13960, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-07 11:57:54'); INSERT INTO `sys_oper_log` VALUES (13961, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"15\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 11:32:32\"}}', 0, '', '2022-04-07 11:57:57'); INSERT INTO `sys_oper_log` VALUES (13962, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"44\",\"province\":\"江西\",\"reporttime\":1649302352000,\"temperature\":\"25\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-07 11:57:57'); INSERT INTO `sys_oper_log` VALUES (13963, '品牌管理', 1, 'com.xjs.mall.product.controller.BrandController.save()', 'POST', 1, 'admin', '', '/product/brand/save', '127.0.0.1', '', '{\"brandId\":1511916529556496385,\"name\":\"荣耀\",\"logo\":\"https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-04-07/2abe3f0c-c766-4f8f-8e4f-bd1da7c5db5f_logo.png\",\"showStatus\":1,\"sort\":1,\"descript\":\"卖手机的\",\"firstLetter\":\"r\"}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-07 11:59:25'); INSERT INTO `sys_oper_log` VALUES (13964, '品牌分类关联', 1, 'com.xjs.mall.product.controller.CategoryBrandRelationController.save()', 'POST', 1, 'admin', '', '/product/categorybrandrelation/save', '127.0.0.1', '', '{\"brandName\":\"荣耀\",\"brandId\":1511916529556496385,\"catelogName\":\"手机\",\"catelogId\":225,\"id\":1511916573047234562}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-07 11:59:35'); INSERT INTO `sys_oper_log` VALUES (13965, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 13:32:35\"}}', 0, '', '2022-04-07 13:55:57'); INSERT INTO `sys_oper_log` VALUES (13966, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"心无旁骛似明镜,无风何处起涟漪\",\"createTime\":1649311116046,\"id\":1511946521732575234,\"source\":\"佚名\",\"type\":1}}', 0, '', '2022-04-07 13:58:36'); INSERT INTO `sys_oper_log` VALUES (13967, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Everything negative- pressure, challenges- is all an opportunity for me to rise.\",\"dataId\":3662,\"imgurl\":\"\",\"note\":\"每件负面的事情-压力、挑战-都是令我崛起的机会。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-04-07 13:58:36'); INSERT INTO `sys_oper_log` VALUES (13968, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"不得我长久以来都在做同样的一个恶梦,在一个漆黑孤独的梦境里,一对对非常色瞇瞇的眼睛一直在盯着我看,看得我都非常不好意思,就是你那种眼神,有好几次还盯得我脸都红了。\",\"createTime\":1649311122260,\"id\":1511946547787591682,\"source\":\"齐天大圣东游记\",\"type\":3}}', 0, '', '2022-04-07 13:58:42'); INSERT INTO `sys_oper_log` VALUES (13969, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Things do not change. We do.\",\"createTime\":1649311122263,\"dataId\":4274,\"id\":1511946547800174594,\"imgurl\":\"\",\"note\":\"万物不变,是我们在变。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-04-07 13:58:42'); INSERT INTO `sys_oper_log` VALUES (13970, '获取每日一句', 0, 'com.xjs.aword.controller.ApiAWordController.getApiAWord()', 'GET', 1, 'admin', '', '/aword/', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"Instead of wondering when your next vacation is, maybe you should set up a life you don\'t need to escape from.\",\"dataId\":4945,\"imgurl\":\"\",\"note\":\"与其期盼下一次假期,不如创造一种不需要逃离的生活。\",\"source\":\"\",\"tts\":\"\"}}', 0, '', '2022-04-07 13:59:01'); INSERT INTO `sys_oper_log` VALUES (13971, '获取文案', 0, 'com.xjs.copywriting.controller.CopyWritingController.copyWriting()', 'GET', 1, 'admin', '', '/copyWriting', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"content\":\"你们能想象我一早上起来,发现v神,三哥,洁匪,小马丁,喀什米尔和 ILLENIUM都发新歌了的表情嘛!!!我现在还沉浸在727那天烟卷,教主,断眉和黄老板的新歌里呢,这是要我心脏炸裂嘛[爱心][爱心][爱心]大爱v神!!新歌也超好听!!\",\"createTime\":1649311141601,\"id\":1511946628905431042,\"source\":\"Walk Thru Fire\",\"type\":2}}', 0, '', '2022-04-07 13:59:01'); INSERT INTO `sys_oper_log` VALUES (13972, '获取英语一言', 0, 'com.xjs.oneenglish.controller.ApiEnglishController.getOneEnglish()', 'GET', 1, 'admin', '', '/oneenglish/getOneEnglish', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"createTime\":1649311149719,\"en\":\"He knows the water the best who has waded through it.\",\"id\":1511946662958985217,\"zh\":\"要知水深浅,须问过河人.\"}}', 0, '', '2022-04-07 13:59:09'); INSERT INTO `sys_oper_log` VALUES (13973, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 13:32:35\"}}', 0, '', '2022-04-07 13:59:24'); INSERT INTO `sys_oper_log` VALUES (13974, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"37\",\"province\":\"江西\",\"reporttime\":1649309555000,\"temperature\":\"27\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-07 13:59:25'); INSERT INTO `sys_oper_log` VALUES (13975, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 14:02:29\"}}', 0, '', '2022-04-07 14:06:07'); INSERT INTO `sys_oper_log` VALUES (13976, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 14:02:29\"}}', 0, '', '2022-04-07 14:06:08'); INSERT INTO `sys_oper_log` VALUES (13977, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"16\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 14:02:29\"}}', 0, '', '2022-04-07 14:06:30'); INSERT INTO `sys_oper_log` VALUES (13978, '处理单个预警', 0, 'com.xjs.controller.ApiWarningController.handleWarning()', 'PUT', 1, 'admin', '', '/apiwarning/handle/1511946880265785346', '127.0.0.1', '', '1511946880265785346', '{\"code\":200,\"msg\":\"操作成功\"}', 0, '', '2022-04-07 14:09:19'); INSERT INTO `sys_oper_log` VALUES (13979, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 15:09:43\"}}', 0, '', '2022-04-07 15:32:21'); INSERT INTO `sys_oper_log` VALUES (13980, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"35\",\"province\":\"江西\",\"reporttime\":1649315382000,\"temperature\":\"28\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-07 15:32:21'); INSERT INTO `sys_oper_log` VALUES (13981, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"30\",\"province\":\"江西\",\"reporttime\":1649318551000,\"temperature\":\"28\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-07 16:36:26'); INSERT INTO `sys_oper_log` VALUES (13982, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 16:02:31\"}}', 0, '', '2022-04-07 16:36:26'); INSERT INTO `sys_oper_log` VALUES (13983, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.updateSort()', 'PUT', 1, 'admin', '', '/product/category/update/sort', '127.0.0.1', '', '[]', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-07 17:05:26'); INSERT INTO `sys_oper_log` VALUES (13984, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-07\",\"daypower\":\"≤3\",\"daytemp\":\"28\",\"dayweather\":\"晴\",\"daywind\":\"东北\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东北\",\"week\":\"周四\"},{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"27\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周日\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-07 17:09:46\"}}', 0, '', '2022-04-07 17:27:07'); INSERT INTO `sys_oper_log` VALUES (13985, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"34\",\"province\":\"江西\",\"reporttime\":1649322586000,\"temperature\":\"27\",\"weather\":\"晴\",\"winddirection\":\"南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-07 17:27:07'); INSERT INTO `sys_oper_log` VALUES (13986, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"21\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 08:02:30\"}}', 0, '', '2022-04-08 08:36:29'); INSERT INTO `sys_oper_log` VALUES (13987, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649378189777,\"humidity\":\"75\",\"id\":1512227849350766594,\"province\":\"江西\",\"reporttime\":1649376150000,\"temperature\":\"19\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 08:36:29'); INSERT INTO `sys_oper_log` VALUES (13988, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"21\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 08:39:52\"}}', 0, '', '2022-04-08 08:52:01'); INSERT INTO `sys_oper_log` VALUES (13989, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1649378392000,\"temperature\":\"20\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 08:52:01'); INSERT INTO `sys_oper_log` VALUES (13990, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"21\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 08:39:52\"}}', 0, '', '2022-04-08 09:07:42'); INSERT INTO `sys_oper_log` VALUES (13991, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1649378392000,\"temperature\":\"20\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 09:07:42'); INSERT INTO `sys_oper_log` VALUES (13992, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 09:07:49'); INSERT INTO `sys_oper_log` VALUES (13993, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"1\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 09:08:50'); INSERT INTO `sys_oper_log` VALUES (13994, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"12\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 09:10:48'); INSERT INTO `sys_oper_log` VALUES (13995, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"122\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 09:12:08'); INSERT INTO `sys_oper_log` VALUES (13996, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"多云\",\"daywind\":\"南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"21\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 08:39:52\"}}', 0, '', '2022-04-08 09:14:20'); INSERT INTO `sys_oper_log` VALUES (13997, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"70\",\"province\":\"江西\",\"reporttime\":1649378392000,\"temperature\":\"20\",\"weather\":\"晴\",\"winddirection\":\"东北\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 09:14:20'); INSERT INTO `sys_oper_log` VALUES (13998, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"12\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 09:14:35'); INSERT INTO `sys_oper_log` VALUES (13999, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 09:10:00\"}}', 0, '', '2022-04-08 09:18:02'); INSERT INTO `sys_oper_log` VALUES (14000, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649380682929,\"humidity\":\"58\",\"id\":1512238306388172801,\"province\":\"江西\",\"reporttime\":1649380200000,\"temperature\":\"22\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 09:18:02'); INSERT INTO `sys_oper_log` VALUES (14001, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"122\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 09:18:29'); INSERT INTO `sys_oper_log` VALUES (14002, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 09:10:00\"}}', 0, '', '2022-04-08 09:19:51'); INSERT INTO `sys_oper_log` VALUES (14003, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649380682929,\"humidity\":\"58\",\"id\":1512238306388172801,\"province\":\"江西\",\"reporttime\":1649380200000,\"temperature\":\"22\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 09:19:51'); INSERT INTO `sys_oper_log` VALUES (14004, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"1222\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 09:20:49'); INSERT INTO `sys_oper_log` VALUES (14005, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 09:10:00\"}}', 0, '', '2022-04-08 09:23:13'); INSERT INTO `sys_oper_log` VALUES (14006, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649380682929,\"humidity\":\"58\",\"id\":1512238306388172801,\"province\":\"江西\",\"reporttime\":1649380200000,\"temperature\":\"22\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 09:23:13'); INSERT INTO `sys_oper_log` VALUES (14007, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1649385599000,\"temperature\":\"24\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 11:00:12'); INSERT INTO `sys_oper_log` VALUES (14008, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 10:39:59\"}}', 0, '', '2022-04-08 11:00:12'); INSERT INTO `sys_oper_log` VALUES (14009, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"12222\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 11:00:28'); INSERT INTO `sys_oper_log` VALUES (14010, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"122222\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 11:02:05'); INSERT INTO `sys_oper_log` VALUES (14011, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"29\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 10:39:59\"}}', 0, '', '2022-04-08 11:02:57'); INSERT INTO `sys_oper_log` VALUES (14012, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"45\",\"province\":\"江西\",\"reporttime\":1649385599000,\"temperature\":\"24\",\"weather\":\"晴\",\"winddirection\":\"东\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 11:02:57'); INSERT INTO `sys_oper_log` VALUES (14013, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 14:40:04\"}}', 0, '', '2022-04-08 14:55:06'); INSERT INTO `sys_oper_log` VALUES (14014, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"24\",\"province\":\"江西\",\"reporttime\":1649400004000,\"temperature\":\"29\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 14:55:06'); INSERT INTO `sys_oper_log` VALUES (14015, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"122\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 15:20:58'); INSERT INTO `sys_oper_log` VALUES (14016, '商品分类', 2, 'com.xjs.mall.product.controller.CategoryController.update()', 'PUT', 1, 'admin', '', '/product/category/update', '127.0.0.1', '', '{\"catId\":17,\"parentCid\":0,\"children\":[],\"icon\":\"date\",\"name\":\"运动健康\",\"showStatus\":1,\"productUnit\":\"kg\",\"sort\":0,\"productCount\":0,\"catLevel\":1}', '{\"msg\":\"success\",\"code\":0}', 0, '', '2022-04-08 15:22:36'); INSERT INTO `sys_oper_log` VALUES (14017, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 15:09:51\"}}', 0, '', '2022-04-08 15:29:53'); INSERT INTO `sys_oper_log` VALUES (14018, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 15:09:51\"}}', 0, '', '2022-04-08 15:29:53'); INSERT INTO `sys_oper_log` VALUES (14019, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"humidity\":\"25\",\"province\":\"江西\",\"reporttime\":1649401791000,\"temperature\":\"29\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 15:29:53'); INSERT INTO `sys_oper_log` VALUES (14020, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 15:32:33\"}}', 0, '', '2022-04-08 15:47:56'); INSERT INTO `sys_oper_log` VALUES (14021, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649404076617,\"humidity\":\"24\",\"id\":1512336426623045633,\"province\":\"江西\",\"reporttime\":1649403153000,\"temperature\":\"29\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 15:47:56'); INSERT INTO `sys_oper_log` VALUES (14022, '获取预报天气', 0, 'com.xjs.weather.controller.WeatherController.getForecastWeatherApiData()', 'GET', 1, 'admin', '', '/weather/forecast', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"casts\":[{\"date\":\"2022-04-08\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"东\",\"nightpower\":\"≤3\",\"nighttemp\":\"17\",\"nightweather\":\"晴\",\"nightwind\":\"东\",\"week\":\"周五\"},{\"date\":\"2022-04-09\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"18\",\"nightweather\":\"多云\",\"nightwind\":\"西南\",\"week\":\"周六\"},{\"date\":\"2022-04-10\",\"daypower\":\"≤3\",\"daytemp\":\"30\",\"dayweather\":\"多云\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"19\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周日\"},{\"date\":\"2022-04-11\",\"daypower\":\"≤3\",\"daytemp\":\"32\",\"dayweather\":\"晴\",\"daywind\":\"西南\",\"nightpower\":\"≤3\",\"nighttemp\":\"20\",\"nightweather\":\"晴\",\"nightwind\":\"西南\",\"week\":\"周一\"}],\"city\":\"南昌市\",\"province\":\"江西\",\"reporttime\":\"2022-04-08 15:32:33\"}}', 0, '', '2022-04-08 15:48:35'); INSERT INTO `sys_oper_log` VALUES (14023, '获取实时天气', 0, 'com.xjs.weather.controller.WeatherController.getNowWeatherApiData()', 'GET', 1, 'admin', '', '/weather/now', '127.0.0.1', '', '', '{\"msg\":\"操作成功\",\"code\":200,\"data\":{\"adcode\":\"360100\",\"city\":\"南昌市\",\"createTime\":1649404076617,\"humidity\":\"24\",\"id\":1512336426623045633,\"province\":\"江西\",\"reporttime\":1649403153000,\"temperature\":\"29\",\"weather\":\"晴\",\"winddirection\":\"东南\",\"windpower\":\"≤3\"}}', 0, '', '2022-04-08 15:48:35'); -- ---------------------------- -- Table structure for sys_post -- ---------------------------- DROP TABLE IF EXISTS `sys_post`; CREATE TABLE `sys_post` ( `post_id` bigint NOT NULL AUTO_INCREMENT COMMENT '岗位ID', `post_code` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '岗位编码', `post_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '岗位名称', `post_sort` int NOT NULL COMMENT '显示顺序', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '状态(0正常 1停用)', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', PRIMARY KEY (`post_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '岗位信息表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_post -- ---------------------------- INSERT INTO `sys_post` VALUES (1, 'ceo', '董事长', 1, '0', 'admin', '2021-12-24 17:05:44', '', NULL, ''); -- ---------------------------- -- Table structure for sys_role -- ---------------------------- DROP TABLE IF EXISTS `sys_role`; CREATE TABLE `sys_role` ( `role_id` bigint NOT NULL AUTO_INCREMENT COMMENT '角色ID', `role_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色名称', `role_key` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色权限字符串', `role_sort` int NOT NULL COMMENT '显示顺序', `data_scope` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)', `menu_check_strictly` tinyint(1) NULL DEFAULT 1 COMMENT '菜单树选择项是否关联显示', `dept_check_strictly` tinyint(1) NULL DEFAULT 1 COMMENT '部门树选择项是否关联显示', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色状态(0正常 1停用)', `del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', PRIMARY KEY (`role_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 100 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色信息表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_role -- ---------------------------- INSERT INTO `sys_role` VALUES (1, '超级管理员', 'admin', 1, '1', 1, 1, '0', '0', 'admin', '2021-12-24 17:05:44', '', NULL, '超级管理员'); INSERT INTO `sys_role` VALUES (2, '普通角色', 'common', 2, '2', 1, 1, '0', '0', 'admin', '2021-12-24 17:05:44', 'admin', '2022-01-15 10:12:51', '普通角色'); -- ---------------------------- -- 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`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色和部门关联表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_role_dept -- ---------------------------- INSERT INTO `sys_role_dept` VALUES (2, 100); INSERT INTO `sys_role_dept` VALUES (2, 101); INSERT INTO `sys_role_dept` VALUES (2, 103); -- ---------------------------- -- 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`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色和菜单关联表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_role_menu -- ---------------------------- -- ---------------------------- -- Table structure for sys_user -- ---------------------------- DROP TABLE IF EXISTS `sys_user`; CREATE TABLE `sys_user` ( `user_id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户ID', `dept_id` bigint NULL DEFAULT NULL COMMENT '部门ID', `user_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '用户账号', `nick_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '用户昵称', `user_type` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '00' COMMENT '用户类型(00系统用户)', `email` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '用户邮箱', `phonenumber` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '手机号码', `sex` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)', `avatar` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '头像地址', `password` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '密码', `login_count` int NULL DEFAULT NULL COMMENT '登录次数', `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '帐号状态(0正常 1停用)', `del_flag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)', `login_ip` varchar(128) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '最后登录IP', `login_date` datetime NULL DEFAULT NULL COMMENT '最后登录时间', `create_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '创建者', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `update_by` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '' COMMENT '更新者', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', PRIMARY KEY (`user_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 102 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户信息表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_user -- ---------------------------- INSERT INTO `sys_user` VALUES (1, 100, 'admin', '谢哥', '00', '1294405880@qq.com', '18907084291', '0', 'https://xjs-cloud.oss-cn-hangzhou.aliyuncs.com/2022-03/3c84234d-38b6-4234-ba20-a59fd234405b.jpeg', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', 123, '0', '0', '127.0.0.1', '2021-12-24 17:05:44', 'admin', '2021-12-24 17:05:44', 'admin', '2021-12-27 13:35:57', '管理员'); INSERT INTO `sys_user` VALUES (2, 105, 'ry', '若依', '00', 'ry@qq.com', '15666666666', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', NULL, '0', '2', '127.0.0.1', '2021-12-24 17:05:44', 'admin', '2021-12-24 17:05:44', '', NULL, '测试员'); INSERT INTO `sys_user` VALUES (100, 100, 'test', '大哥', '00', '123946@qq.com', '17607993928', '1', '', '$2a$10$ymmp7bP7DzDuERqJk0ataOyP5sGQJs4GgVjOwqM5MgV5QNG.IYQ2q', 1, '0', '0', '', NULL, 'admin', '2021-12-26 16:46:07', '', NULL, NULL); INSERT INTO `sys_user` VALUES (101, NULL, 'xjs', 'xjs', '00', '', '', '0', '', '$2a$10$9c7N2HSOQhIJq2dATz0VquolXYgGknO5c9c7R4j7pvkadhbaAmoRe', NULL, '0', '2', '', NULL, '', '2022-01-09 11:22:35', '', NULL, NULL); -- ---------------------------- -- 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`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户与岗位关联表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_user_post -- ---------------------------- INSERT INTO `sys_user_post` VALUES (1, 1); INSERT INTO `sys_user_post` VALUES (100, 1); -- ---------------------------- -- 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`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户和角色关联表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sys_user_role -- ---------------------------- INSERT INTO `sys_user_role` VALUES (1, 1); INSERT INTO `sys_user_role` VALUES (1, 2); INSERT INTO `sys_user_role` VALUES (100, 2); SET FOREIGN_KEY_CHECKS = 1;